From 04a2e716fe9cc4b30f99816177c5b420935504b3 Mon Sep 17 00:00:00 2001 From: yangduo Date: Tue, 24 Dec 2024 13:22:22 +0800 Subject: [PATCH] 1 --- .../config/currencys/11155111/currency.json | 12 - .../config/currencys/13473/currency.json | 7 - .../config/currencys/421614/currency.json | 12 - .../config/currencys/97/currency.json | 12 - bin/payserver/config/login.redis.json | 8 + bin/payserver/config/nets | 1 - bin/payserver/config/nets.json | 1 - bin/payserver/config/nftdb.mysql.json | 9 - bin/payserver/config/web3service.cluster.json | 5 - bin/payserver/config/web3sign.cluster.json | 5 - bin/payserver/res/gamegoods/1004.json | 50 + bin/payserver/res/gamegoods/2004.json | 50 + bin/payserver/res/item@item.json | 34346 ---------------- bin/payserver/res/language@language.json | 17150 -------- bin/payserver/res/recharge@recharge.json | 42 - bin/payserver/res/stakingVip@stakingVip.json | 1 - bin/payserver/res/wxconfig@wxconfig.json | 16 + server/payserver/api/v1/activity/bitget.go | 61 - .../payserver/api/v1/activity/contribution.go | 148 - server/payserver/api/v1/activity/enter.go | 6 - server/payserver/api/v1/asset/asset.go | 105 - server/payserver/api/v1/asset/enter.go | 5 - server/payserver/api/v1/enter.go | 24 +- server/payserver/api/v1/event/enter.go | 5 - server/payserver/api/v1/event/event.go | 198 - server/payserver/api/v1/game_switch/enter.go | 5 - .../payserver/api/v1/game_switch/gswitch.go | 23 - server/payserver/api/v1/gold_bullion/enter.go | 5 - .../api/v1/gold_bullion/gold_bullion.go | 9 - server/payserver/api/v1/hero/enter.go | 5 - server/payserver/api/v1/hero/hero.go | 8 - server/payserver/api/v1/ingame/ingame.go | 81 +- server/payserver/api/v1/market/enter.go | 5 - server/payserver/api/v1/market/market.go | 739 - server/payserver/api/v1/recharge/enter.go | 5 - server/payserver/api/v1/recharge/recharge.go | 340 - server/payserver/api/v1/shopcart/enter.go | 5 - server/payserver/api/v1/shopcart/shopcart.go | 423 - server/payserver/api/v1/user/enter.go | 5 - server/payserver/api/v1/user/user.go | 134 - server/payserver/api/v1/vip/enter.go | 5 - server/payserver/api/v1/vip/vip.go | 167 - server/payserver/app/app.go | 28 +- server/payserver/constant/constant.go | 22 +- server/payserver/middleware/jwtauth.go | 257 +- server/payserver/model/inapp_order.go | 8 - server/payserver/mt/Config.go | 5 +- server/payserver/mt/Contract.go | 112 - server/payserver/mt/Currency.go | 164 - server/payserver/mt/Item.go | 60 - server/payserver/mt/Language.go | 14 - server/payserver/mt/LoginRedis.go | 15 + server/payserver/mt/NftDb.go | 17 - server/payserver/mt/StakingVip.go | 14 - server/payserver/mt/Web3ServiceCluster.go | 18 - server/payserver/mt/Web3SignCluster.go | 18 - server/payserver/mt/Wxconfig.go | 14 + server/payserver/mt/export.go | 53 +- server/payserver/mtb/mtb.auto_gen.go | 266 +- server/payserver/proto/mt.proto | 43 +- server/payserver/router/activity/bitget.go | 14 - .../payserver/router/activity/contribution.go | 16 - server/payserver/router/activity/enter.go | 6 - server/payserver/router/asset/asset.go | 14 - server/payserver/router/asset/enter.go | 5 - server/payserver/router/event/enter.go | 5 - server/payserver/router/event/event.go | 14 - server/payserver/router/game_switch/enter.go | 5 - .../router/game_switch/game_switch.go | 13 - server/payserver/router/gold_bullion/enter.go | 5 - .../router/gold_bullion/gold_bullion.go | 13 - server/payserver/router/hero/enter.go | 5 - server/payserver/router/hero/hero.go | 13 - server/payserver/router/market/enter.go | 5 - server/payserver/router/market/market.go | 26 - server/payserver/router/recharge/enter.go | 5 - server/payserver/router/recharge/recharge.go | 17 - server/payserver/router/routermgr.go | 36 +- server/payserver/router/shopcart/enter.go | 5 - server/payserver/router/shopcart/shopcart.go | 19 - server/payserver/router/user/enter.go | 5 - server/payserver/router/user/user.go | 16 - server/payserver/router/vip/enter.go | 5 - server/payserver/router/vip/vip.go | 22 - server/payserver/service/contribution.go | 341 - server/payserver/service/export.go | 6 +- server/payserver/service/gameswitch.go | 52 - server/payserver/service/jwtauth.go | 149 - server/payserver/service/recharge.go | 54 - server/payserver/service/redis.go | 79 + server/payserver/service/servicemgr.go | 10 +- server/payserver/service/shopcart.go | 28 - server/payserver/service/user.go | 43 - server/payserver/service/wxpay.go | 259 + 94 files changed, 835 insertions(+), 55846 deletions(-) delete mode 100644 bin/payserver/config/currencys/11155111/currency.json delete mode 100644 bin/payserver/config/currencys/13473/currency.json delete mode 100644 bin/payserver/config/currencys/421614/currency.json delete mode 100644 bin/payserver/config/currencys/97/currency.json create mode 100644 bin/payserver/config/login.redis.json delete mode 120000 bin/payserver/config/nets delete mode 120000 bin/payserver/config/nets.json delete mode 100644 bin/payserver/config/nftdb.mysql.json delete mode 100644 bin/payserver/config/web3service.cluster.json delete mode 100644 bin/payserver/config/web3sign.cluster.json create mode 100644 bin/payserver/res/gamegoods/1004.json create mode 100644 bin/payserver/res/gamegoods/2004.json delete mode 100644 bin/payserver/res/item@item.json delete mode 100644 bin/payserver/res/language@language.json delete mode 100644 bin/payserver/res/recharge@recharge.json delete mode 120000 bin/payserver/res/stakingVip@stakingVip.json create mode 100644 bin/payserver/res/wxconfig@wxconfig.json delete mode 100644 server/payserver/api/v1/activity/bitget.go delete mode 100644 server/payserver/api/v1/activity/contribution.go delete mode 100644 server/payserver/api/v1/activity/enter.go delete mode 100644 server/payserver/api/v1/asset/asset.go delete mode 100644 server/payserver/api/v1/asset/enter.go delete mode 100644 server/payserver/api/v1/event/enter.go delete mode 100644 server/payserver/api/v1/event/event.go delete mode 100644 server/payserver/api/v1/game_switch/enter.go delete mode 100644 server/payserver/api/v1/game_switch/gswitch.go delete mode 100644 server/payserver/api/v1/gold_bullion/enter.go delete mode 100644 server/payserver/api/v1/gold_bullion/gold_bullion.go delete mode 100644 server/payserver/api/v1/hero/enter.go delete mode 100644 server/payserver/api/v1/hero/hero.go delete mode 100644 server/payserver/api/v1/market/enter.go delete mode 100644 server/payserver/api/v1/market/market.go delete mode 100644 server/payserver/api/v1/recharge/enter.go delete mode 100644 server/payserver/api/v1/recharge/recharge.go delete mode 100644 server/payserver/api/v1/shopcart/enter.go delete mode 100644 server/payserver/api/v1/shopcart/shopcart.go delete mode 100644 server/payserver/api/v1/user/enter.go delete mode 100644 server/payserver/api/v1/user/user.go delete mode 100644 server/payserver/api/v1/vip/enter.go delete mode 100644 server/payserver/api/v1/vip/vip.go delete mode 100644 server/payserver/mt/Contract.go delete mode 100644 server/payserver/mt/Currency.go delete mode 100644 server/payserver/mt/Item.go delete mode 100644 server/payserver/mt/Language.go create mode 100644 server/payserver/mt/LoginRedis.go delete mode 100644 server/payserver/mt/NftDb.go delete mode 100644 server/payserver/mt/StakingVip.go delete mode 100644 server/payserver/mt/Web3ServiceCluster.go delete mode 100644 server/payserver/mt/Web3SignCluster.go create mode 100644 server/payserver/mt/Wxconfig.go delete mode 100644 server/payserver/router/activity/bitget.go delete mode 100644 server/payserver/router/activity/contribution.go delete mode 100644 server/payserver/router/activity/enter.go delete mode 100644 server/payserver/router/asset/asset.go delete mode 100644 server/payserver/router/asset/enter.go delete mode 100644 server/payserver/router/event/enter.go delete mode 100644 server/payserver/router/event/event.go delete mode 100644 server/payserver/router/game_switch/enter.go delete mode 100644 server/payserver/router/game_switch/game_switch.go delete mode 100644 server/payserver/router/gold_bullion/enter.go delete mode 100644 server/payserver/router/gold_bullion/gold_bullion.go delete mode 100644 server/payserver/router/hero/enter.go delete mode 100644 server/payserver/router/hero/hero.go delete mode 100644 server/payserver/router/market/enter.go delete mode 100644 server/payserver/router/market/market.go delete mode 100644 server/payserver/router/recharge/enter.go delete mode 100644 server/payserver/router/recharge/recharge.go delete mode 100644 server/payserver/router/shopcart/enter.go delete mode 100644 server/payserver/router/shopcart/shopcart.go delete mode 100644 server/payserver/router/user/enter.go delete mode 100644 server/payserver/router/user/user.go delete mode 100644 server/payserver/router/vip/enter.go delete mode 100644 server/payserver/router/vip/vip.go delete mode 100644 server/payserver/service/contribution.go delete mode 100644 server/payserver/service/gameswitch.go delete mode 100644 server/payserver/service/jwtauth.go delete mode 100644 server/payserver/service/recharge.go create mode 100644 server/payserver/service/redis.go delete mode 100644 server/payserver/service/shopcart.go delete mode 100644 server/payserver/service/user.go create mode 100644 server/payserver/service/wxpay.go diff --git a/bin/payserver/config/currencys/11155111/currency.json b/bin/payserver/config/currencys/11155111/currency.json deleted file mode 100644 index 00ec2ea..0000000 --- a/bin/payserver/config/currencys/11155111/currency.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "currency_name": "USDC", - "contract_name": "BEUSDC", - "currency_decimal": 6 - }, - { - "currency_name": "USDT", - "contract_name": "BEUSDT", - "currency_decimal": 6 - } -] diff --git a/bin/payserver/config/currencys/13473/currency.json b/bin/payserver/config/currencys/13473/currency.json deleted file mode 100644 index b77c514..0000000 --- a/bin/payserver/config/currencys/13473/currency.json +++ /dev/null @@ -1,7 +0,0 @@ -[ - { - "currency_name": "USDC", - "contract_name": "BEUSDC", - "currency_decimal": 6 - } -] diff --git a/bin/payserver/config/currencys/421614/currency.json b/bin/payserver/config/currencys/421614/currency.json deleted file mode 100644 index 00ec2ea..0000000 --- a/bin/payserver/config/currencys/421614/currency.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "currency_name": "USDC", - "contract_name": "BEUSDC", - "currency_decimal": 6 - }, - { - "currency_name": "USDT", - "contract_name": "BEUSDT", - "currency_decimal": 6 - } -] diff --git a/bin/payserver/config/currencys/97/currency.json b/bin/payserver/config/currencys/97/currency.json deleted file mode 100644 index 2cdb2bb..0000000 --- a/bin/payserver/config/currencys/97/currency.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "currency_name": "USDC", - "contract_name": "BEUSDC", - "currency_decimal": 18 - }, - { - "currency_name": "USDT", - "contract_name": "BEUSDT", - "currency_decimal": 18 - } -] diff --git a/bin/payserver/config/login.redis.json b/bin/payserver/config/login.redis.json new file mode 100644 index 0000000..1162efa --- /dev/null +++ b/bin/payserver/config/login.redis.json @@ -0,0 +1,8 @@ +{ + "host": "127.0.0.1", + "port": 6379, + "passwd": "", + "database": 0, + "max_open_conns": 1, + "max_idle_conns": 1 + } \ No newline at end of file diff --git a/bin/payserver/config/nets b/bin/payserver/config/nets deleted file mode 120000 index 86cee12..0000000 --- a/bin/payserver/config/nets +++ /dev/null @@ -1 +0,0 @@ -../../backtask/config/nets/ \ No newline at end of file diff --git a/bin/payserver/config/nets.json b/bin/payserver/config/nets.json deleted file mode 120000 index 7380967..0000000 --- a/bin/payserver/config/nets.json +++ /dev/null @@ -1 +0,0 @@ -../../backtask/config/nets.json \ No newline at end of file diff --git a/bin/payserver/config/nftdb.mysql.json b/bin/payserver/config/nftdb.mysql.json deleted file mode 100644 index 775d99c..0000000 --- a/bin/payserver/config/nftdb.mysql.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "host": "login-test.kingsome.cn", - "port": 3306, - "user": "root", - "passwd": "keji178", - "database": "bcnft_dev", - "max_open_conns": 1, - "max_idle_conns": 1 -} diff --git a/bin/payserver/config/web3service.cluster.json b/bin/payserver/config/web3service.cluster.json deleted file mode 100644 index 89356d8..0000000 --- a/bin/payserver/config/web3service.cluster.json +++ /dev/null @@ -1,5 +0,0 @@ -[ - { - "url": "http://127.0.0.1:7682" - } -] diff --git a/bin/payserver/config/web3sign.cluster.json b/bin/payserver/config/web3sign.cluster.json deleted file mode 100644 index 9df4444..0000000 --- a/bin/payserver/config/web3sign.cluster.json +++ /dev/null @@ -1,5 +0,0 @@ -[ - { - "url": "http://127.0.0.1:7672" - } -] diff --git a/bin/payserver/res/gamegoods/1004.json b/bin/payserver/res/gamegoods/1004.json new file mode 100644 index 0000000..8cd2ec7 --- /dev/null +++ b/bin/payserver/res/gamegoods/1004.json @@ -0,0 +1,50 @@ +[ + { + "id": 100001, + "name": "60钻石", + "icon": "10_101", + "type": 1, + "price": 6, + "count": 60 + }, + { + "id": 100002, + "name": "300钻石", + "icon": "10_102", + "type": 1, + "price": 30, + "count": 300 + }, + { + "id": 100003, + "name": "680钻石", + "icon": "10_103", + "type": 1, + "price": 68, + "count": 680 + }, + { + "id": 100004, + "name": "1280钻石", + "icon": "10_104", + "type": 1, + "price": 128, + "count": 1280 + }, + { + "id": 100005, + "name": "3280钻石", + "icon": "10_105", + "type": 1, + "price": 328, + "count": 3280 + }, + { + "id": 100006, + "name": "6480钻石", + "icon": "10_106", + "type": 1, + "price": 648, + "count": 6480 + } +] \ No newline at end of file diff --git a/bin/payserver/res/gamegoods/2004.json b/bin/payserver/res/gamegoods/2004.json new file mode 100644 index 0000000..52bff7f --- /dev/null +++ b/bin/payserver/res/gamegoods/2004.json @@ -0,0 +1,50 @@ +[ + { + "id": 1, + "name": "60钻石", + "icon": "10_101", + "type": 1, + "price": 6, + "count": 60 + }, + { + "id": 2, + "name": "300钻石", + "icon": "10_102", + "type": 1, + "price": 30, + "count": 300 + }, + { + "id": 3, + "name": "680钻石", + "icon": "10_103", + "type": 1, + "price": 68, + "count": 680 + }, + { + "id": 4, + "name": "1280钻石", + "icon": "10_104", + "type": 1, + "price": 128, + "count": 1280 + }, + { + "id": 5, + "name": "3280钻石", + "icon": "10_105", + "type": 1, + "price": 328, + "count": 3280 + }, + { + "id": 6, + "name": "6480钻石", + "icon": "10_106", + "type": 1, + "price": 648, + "count": 6480 + } +] \ No newline at end of file diff --git a/bin/payserver/res/item@item.json b/bin/payserver/res/item@item.json deleted file mode 100644 index 38531fe..0000000 --- a/bin/payserver/res/item@item.json +++ /dev/null @@ -1,34346 +0,0 @@ -[ - { - "hero_head": "", - "des": "item_desc_10001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 10001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ts_main_bceg", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_10001", - "purchase": "", - "_item_name": "Gold", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 10002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ts_main_tceg", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_10002", - "purchase": "", - "_item_name": "CEG", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 10003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "lottery_box6", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_10003", - "purchase": "", - "_item_name": "Charactor Experience", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 10004, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "pic_act", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 4, - "name": "item_name_10004", - "purchase": "", - "_item_name": "Daily Active", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10005", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 10005, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "lottery_box5", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 5, - "name": "item_name_10005", - "purchase": "", - "_item_name": "Week Active", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10006", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 10006, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "pic_t_huoyue", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 7, - "name": "item_name_10006", - "purchase": "", - "_item_name": "Manual Experience", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10009", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 10009, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gold_supply", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 9, - "name": "item_name_10009", - "purchase": "", - "_item_name": "Battle Skill", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10010", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 10010, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ts_main_zuanshi", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_10010", - "purchase": "", - "_item_name": "Test CEC", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10011", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 10011, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "seasonRoad_icon_star", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 10, - "name": "item_name_10011", - "purchase": "", - "_item_name": "Star", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10012", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 10012, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "pic_act", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 11, - "name": "item_name_10012", - "purchase": "", - "_item_name": "Platinum Battle Pass ", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10013", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 10013, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "pic_act", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 12, - "name": "item_name_10013", - "purchase": "", - "_item_name": "reset card", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10014", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 10014, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ts_main_diand", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 13, - "name": "item_name_10014", - "purchase": "", - "_item_name": "Diamond", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10015", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 10015, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "icon_rankingPiont", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 14, - "name": "item_name_10015", - "purchase": "", - "_item_name": "SV\u79ef\u5206", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10015", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 10016, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gems/icon_gems05", - "type": 1, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 15, - "name": "item_name_10015", - "purchase": "", - "_item_name": "\u7b97\u529b\u66ff\u4ee3", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10017", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 10017, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "Coin_icon_10000", - "type": 31, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_10017", - "purchase": "", - "_item_name": "\u4e00\u5806\u91d1\u5e01\uff085000\u91d1\u5e01\u5408\u6210\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_10018", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 10018, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_1", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "Coin_icon_100000", - "type": 31, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_10018", - "purchase": "", - "_item_name": "\u91d1\u7816\uff0810000\u91d1\u5e01\u5408\u6210\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_20001", - "init_tili": "", - "tab": 1, - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 20001, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_2", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "lottery_box8", - "type": 2, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_20001", - "purchase": "", - "_item_name": "Newbie Gift", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 90101, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_20002", - "init_tili": "", - "tab": 1, - "gold": 1000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "2021-12-02 00:00:00", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 20002, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_2", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "lottery_box8", - "type": 2, - "diamond": 10, - "relationship": "", - "discount_end": "2021-12-03 23:59:59", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "50|50", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_20002", - "purchase": "", - "_item_name": "Golden Gift", - "limit_num": 5, - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 90102, - "limit_type": 1, - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_20003", - "init_tili": "", - "tab": 1, - "gold": 0, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 20003, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_2", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "lottery_box8", - "type": 2, - "diamond": 0, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_20003", - "purchase": "", - "_item_name": "Large-golden Gift", - "limit_num": 1, - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 90103, - "limit_type": 1, - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_20004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 20004, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_2", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "lottery_box8", - "type": 2, - "diamond": 688, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_20004", - "purchase": "", - "_item_name": "Advenced Gift", - "limit_num": 1, - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 90104, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_20005", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 20005, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_2", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "lottery_box8", - "type": 2, - "diamond": 1688, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_20005", - "purchase": "", - "_item_name": "Supreme Gift", - "limit_num": 1, - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 90105, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_20006", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 20006, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_2", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ts_box1", - "type": 2, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_20006", - "purchase": "", - "_item_name": "Daily Active 30", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 90106, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_20007", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 20007, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_2", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ts_box1", - "type": 2, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_20007", - "purchase": "", - "_item_name": "Daily Active 60", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 90106, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_20008", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 20008, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_2", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ts_box1", - "type": 2, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_20008", - "purchase": "", - "_item_name": "Daily Active 90", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 90106, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_20009", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 20009, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_2", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ts_box1", - "type": 2, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_20009", - "purchase": "", - "_item_name": "Daily Active 120", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 90106, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_20010", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 20010, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_2", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ts_box2", - "type": 2, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_20010", - "purchase": "", - "_item_name": "Daily Active 150", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 90107, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": 50001, - "des": "item_desc_30100", - "init_tili": 100, - "tab": "", - "gold": 50, - "evaluate_title": "Attack|Defence|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "4|3|4", - "evaluate_icon": "currency_attack_img|currency_defence_img|currency_operability_img", - "quality": 4, - "id": 30100, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_3", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "50001|160001", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_1", - "type": 3, - "diamond": 0, - "relationship": 1001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_30100", - "purchase": "", - "_item_name": "Hill", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": 50002, - "des": "item_desc_30200", - "init_tili": 100, - "tab": "", - "gold": 50, - "evaluate_title": "Attack|Defence|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "4|3|4", - "evaluate_icon": "currency_attack_img|currency_defence_img|currency_operability_img", - "quality": 4, - "id": 30200, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_3", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "50002|160002", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_2", - "type": 3, - "diamond": 0, - "relationship": 1001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_30200", - "purchase": "", - "_item_name": "Yamada", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": 50003, - "des": "item_desc_30300", - "init_tili": 100, - "tab": "", - "gold": 50, - "evaluate_title": "Attack|Defence|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "3|4|3", - "evaluate_icon": "currency_attack_img|currency_defence_img|currency_operability_img", - "quality": 4, - "id": 30300, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_3", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "50003|160003", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_3", - "type": 3, - "diamond": 0, - "relationship": 1001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_30300", - "purchase": "", - "_item_name": "Aoi", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": 50004, - "des": "item_desc_30400", - "init_tili": 100, - "tab": "", - "gold": 50, - "evaluate_title": "Attack|Defence|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "3|4|3", - "evaluate_icon": "currency_attack_img|currency_defence_img|currency_operability_img", - "quality": 4, - "id": 30400, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_3", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "50004|160004", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_4", - "type": 3, - "diamond": 0, - "relationship": 1001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_30400", - "purchase": "", - "_item_name": "Astral", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": 50005, - "des": "item_desc_30500", - "init_tili": 100, - "tab": "", - "gold": 50, - "evaluate_title": "Attack|Defence|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "5|2|5", - "evaluate_icon": "currency_attack_img|currency_defence_img|currency_operability_img", - "quality": 4, - "id": 30500, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_3", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "50005|160005", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_5", - "type": 3, - "diamond": 0, - "relationship": 1001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_30500", - "purchase": "", - "_item_name": "Miffy", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": 50006, - "des": "item_desc_30600", - "init_tili": 100, - "tab": "", - "gold": 50, - "evaluate_title": "Attack|Defence|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "5|2|3", - "evaluate_icon": "currency_attack_img|currency_defence_img|currency_operability_img", - "quality": 4, - "id": 30600, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_3", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "50006|160006", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_6", - "type": 3, - "diamond": 0, - "relationship": 1001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_30600", - "purchase": "", - "_item_name": "Canoe", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": 50007, - "des": "item_desc_30700", - "init_tili": 100, - "tab": "", - "gold": 50, - "evaluate_title": "Attack|Defence|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "4|3|5", - "evaluate_icon": "currency_attack_img|currency_defence_img|currency_operability_img", - "quality": 4, - "id": 30700, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_3", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "50007|160007", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_7", - "type": 3, - "diamond": 0, - "relationship": 1001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_30700", - "purchase": "", - "_item_name": "Mariana", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": 50008, - "des": "item_desc_30800", - "init_tili": 100, - "tab": "", - "gold": 50, - "evaluate_title": "Attack|Defence|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "3|4|3", - "evaluate_icon": "currency_attack_img|currency_defence_img|currency_operability_img", - "quality": 4, - "id": 30800, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_3", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "50008|160008", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_8", - "type": 3, - "diamond": 0, - "relationship": 1001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_30800", - "purchase": "", - "_item_name": "Dragonscale", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": 50009, - "des": "item_desc_30900", - "init_tili": 100, - "tab": "", - "gold": 50, - "evaluate_title": "Attack|Defence|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "2|5|2", - "evaluate_icon": "currency_attack_img|currency_defence_img|currency_operability_img", - "quality": 4, - "id": 30900, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_3", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "50009|160009", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_9", - "type": 3, - "diamond": 0, - "relationship": 1001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_30900", - "purchase": "", - "_item_name": "Lazar", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": 50010, - "des": "item_desc_31000", - "init_tili": 100, - "tab": "", - "gold": 50, - "evaluate_title": "Attack|Defence|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "2|5|2", - "evaluate_icon": "currency_attack_img|currency_defence_img|currency_operability_img", - "quality": 4, - "id": 31000, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_3", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "50010|160010", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_10", - "type": 3, - "diamond": 0, - "relationship": 1001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_31000", - "purchase": "", - "_item_name": "Kurosawa", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40101", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40101, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30100, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 1, - "icon": "skin/40101", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 0, - "use_cost": "", - "sub_type": "", - "name": "item_name_40101", - "purchase": "", - "_item_name": "Original", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero1", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40102", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40102, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30100, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 0, - "icon": "skin/40102", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 1, - "use_cost": "", - "sub_type": "", - "name": "item_name_40102", - "purchase": "", - "_item_name": "Nine-tailed", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero1", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40201", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40201, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30200, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 1, - "icon": "skin/40201", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 0, - "use_cost": "", - "sub_type": "", - "name": "item_name_40201", - "purchase": "", - "_item_name": "Original", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero2", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40202", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40202, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30200, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 0, - "icon": "skin/40202", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 1, - "use_cost": "", - "sub_type": "", - "name": "item_name_40202", - "purchase": "", - "_item_name": "Time Travel", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero2", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40301", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40301, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30300, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 1, - "icon": "skin/40301", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 0, - "use_cost": "", - "sub_type": "", - "name": "item_name_40301", - "purchase": "", - "_item_name": "Original", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero3", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40302", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40302, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30300, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 0, - "icon": "skin/40302", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 1, - "use_cost": "", - "sub_type": "", - "name": "item_name_40302", - "purchase": "", - "_item_name": "Green Scene", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero3", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40401", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40401, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30400, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 1, - "icon": "skin/40401", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 0, - "use_cost": "", - "sub_type": "", - "name": "item_name_40401", - "purchase": "", - "_item_name": "Original", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero4", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40501", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40501, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30500, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 1, - "icon": "skin/40501", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 0, - "use_cost": "", - "sub_type": "", - "name": "item_name_40501", - "purchase": "", - "_item_name": "Original", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero5", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40601", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40601, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30600, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 1, - "icon": "skin/40601", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 0, - "use_cost": "", - "sub_type": "", - "name": "item_name_40601", - "purchase": "", - "_item_name": "Original", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero6", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40602", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40602, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30600, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 0, - "icon": "skin/40602", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 1, - "use_cost": "", - "sub_type": "", - "name": "item_name_40602", - "purchase": "", - "_item_name": "Peace Envoy", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero6", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40701", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40701, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30700, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 1, - "icon": "skin/40701", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 0, - "use_cost": "", - "sub_type": "", - "name": "item_name_40701", - "purchase": "", - "_item_name": "Original", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero7", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40702", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40702, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30700, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 0, - "icon": "skin/40702", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 1, - "use_cost": "", - "sub_type": "", - "name": "item_name_40702", - "purchase": "", - "_item_name": "Beast Mode", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero7", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40801", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40801, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30800, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 1, - "icon": "skin/40801", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 0, - "use_cost": "", - "sub_type": "", - "name": "item_name_40801", - "purchase": "", - "_item_name": "Original", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero8", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40802", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40802, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30800, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 0, - "icon": "skin/40802", - "type": 4, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 1, - "use_cost": "", - "sub_type": "", - "name": "item_name_40802", - "purchase": "", - "_item_name": "Ice Dragon", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero8", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40901", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40901, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30900, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 1, - "icon": "skin/40901", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 0, - "use_cost": "", - "sub_type": "", - "name": "item_name_40901", - "purchase": "", - "_item_name": "Original", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero9", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_40902", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 40902, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 30900, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 0, - "icon": "skin/40902", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 1, - "use_cost": "", - "sub_type": "", - "name": "item_name_40902", - "purchase": "", - "_item_name": "Machinist ", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero9", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_41001", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 41001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_4", - "playerid": 31000, - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": 1, - "icon": "skin/41001", - "type": 4, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": 0, - "use_cost": "", - "sub_type": "", - "name": "item_name_41001", - "purchase": "", - "_item_name": "Original", - "limit_num": "", - "chest_open_effects": "", - "spine": "pic_hero10", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_50001", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 50001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_5", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_1_a", - "type": 5, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_50001", - "purchase": "", - "_item_name": "Hill", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_50002", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 50002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_5", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_2_a", - "type": 5, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_50002", - "purchase": "", - "_item_name": "Yamada", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_50003", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 50003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_5", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_3_a", - "type": 5, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_50003", - "purchase": "", - "_item_name": "Aoi", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_50004", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 50004, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_5", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_4_a", - "type": 5, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_50004", - "purchase": "", - "_item_name": "Astral", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_50005", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 50005, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_5", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_5_a", - "type": 5, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_50005", - "purchase": "", - "_item_name": "Miffy", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_50006", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 50006, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_5", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_6_a", - "type": 5, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_50006", - "purchase": "", - "_item_name": "Canoe", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_50007", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 50007, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_5", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_7_a", - "type": 5, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_50007", - "purchase": "", - "_item_name": "Mariana", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_50008", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 50008, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_5", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_8_a", - "type": 5, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_50008", - "purchase": "", - "_item_name": "Dragonscale", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_50009", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 50009, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_5", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_9_a", - "type": 5, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_50009", - "purchase": "", - "_item_name": "Lazar", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_50010", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 50010, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_5", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headicon/head_10_a", - "type": 5, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_50010", - "purchase": "", - "_item_name": "Kurosawa", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_60000", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 60000, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_6", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "headbg/head_bg0", - "type": 6, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_60000", - "purchase": "", - "_item_name": "Basic", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_60003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 60003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_6", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "", - "type": 6, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_60003", - "purchase": "", - "_item_name": "Thearchy", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_70001", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "Attack|Clip|Range|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "2|4|3|5", - "evaluate_icon": "currency_attack_img|currency_clip_img|currency_Range_img|currency_operability_img", - "quality": 4, - "id": 70001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "guns/firearms20", - "type": 7, - "diamond": 100, - "relationship": 20111, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_70001", - "purchase": "", - "_item_name": "Submachine", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": 100, - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_70002", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "Attack|Clip|Range|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "4|2|1|3", - "evaluate_icon": "currency_attack_img|currency_clip_img|currency_Range_img|currency_operability_img", - "quality": 4, - "id": 70002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "guns/firearms19", - "type": 7, - "diamond": 100, - "relationship": 20211, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_70002", - "purchase": "", - "_item_name": "Shotgun", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": 100, - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_70003", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "Attack|Clip|Range|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "5|1|5|2", - "evaluate_icon": "currency_attack_img|currency_clip_img|currency_Range_img|currency_operability_img", - "quality": 4, - "id": 70003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "guns/firearms18", - "type": 7, - "diamond": 100, - "relationship": 20311, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_70003", - "purchase": "", - "_item_name": "Sniper", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": 100, - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_70004", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "Attack|Clip|Range|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "5|1|3|3", - "evaluate_icon": "currency_attack_img|currency_clip_img|currency_Range_img|currency_operability_img", - "quality": 4, - "id": 70004, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "guns/firearms23", - "type": 7, - "diamond": 100, - "relationship": 20711, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_70004", - "purchase": "", - "_item_name": "Bazooka", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": 100, - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_70005", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "Attack|Clip|Range|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "4|2|3|3", - "evaluate_icon": "currency_attack_img|currency_clip_img|currency_Range_img|currency_operability_img", - "quality": 4, - "id": 70005, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "guns/firearms17", - "type": 7, - "diamond": 100, - "relationship": 20411, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_70005", - "purchase": "", - "_item_name": "Laser", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": 100, - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_70006", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "Attack|Clip|Range|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "2|4|4|3", - "evaluate_icon": "currency_attack_img|currency_clip_img|currency_Range_img|currency_operability_img", - "quality": 4, - "id": 70006, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "guns/firearms12", - "type": 7, - "diamond": 100, - "relationship": 20511, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_70006", - "purchase": "", - "_item_name": "Freeze", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": 100, - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_70007", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "Attack|Clip|Range|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "2|4|1|4", - "evaluate_icon": "currency_attack_img|currency_clip_img|currency_Range_img|currency_operability_img", - "quality": 4, - "id": 70007, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "guns/firearms07", - "type": 7, - "diamond": 100, - "relationship": 20611, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_70007", - "purchase": "", - "_item_name": "Flame", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": 100, - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_70008", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "Attack|Clip|Range|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "2|4|4|3", - "evaluate_icon": "currency_attack_img|currency_clip_img|currency_Range_img|currency_operability_img", - "quality": 4, - "id": 70008, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "guns/gun_12", - "type": 7, - "diamond": 100, - "relationship": 20911, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_70008", - "purchase": "", - "_item_name": "Dual pistols", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": 100, - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_70009", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "Attack|Clip|Range|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "2|4|4|3", - "evaluate_icon": "currency_attack_img|currency_clip_img|currency_Range_img|currency_operability_img", - "quality": 4, - "id": 70009, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "guns/gun_13", - "type": 7, - "diamond": 100, - "relationship": 21011, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_70009", - "purchase": "", - "_item_name": "Grenade launcher", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": 100, - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_70010", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "Attack|Clip|Range|Operability", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "2|4|4|3", - "evaluate_icon": "currency_attack_img|currency_clip_img|currency_Range_img|currency_operability_img", - "quality": 4, - "id": 70010, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "guns/gun_14", - "type": 7, - "diamond": 100, - "relationship": 21111, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_70010", - "purchase": "", - "_item_name": "Railgun", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": 100, - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_80001", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 80001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gun2012", - "type": 8, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_80001", - "purchase": "", - "_item_name": "Submachine", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_80002", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 80002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "firearms19", - "type": 8, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_80002", - "purchase": "", - "_item_name": "Shotgun", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_80003", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 80003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "firearms18", - "type": 8, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_80003", - "purchase": "", - "_item_name": "Sniper", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_80004", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 80004, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gun2081", - "type": 8, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_80004", - "purchase": "", - "_item_name": "Bazooka", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_80005", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 80005, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gun2042", - "type": 8, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_80005", - "purchase": "", - "_item_name": "Laser", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_80006", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 80006, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "firearms12", - "type": 8, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_80006", - "purchase": "", - "_item_name": "Freeze", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_80007", - "init_tili": "", - "tab": "", - "gold": 10000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 80007, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "firearms07", - "type": 8, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_80007", - "purchase": "", - "_item_name": "Flame", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_90001", - "init_tili": "", - "tab": 2, - "gold": 100, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 90001, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_9", - "playerid": "", - "bag_type": 1, - "bag_handle_type": 4, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "name_card", - "type": 9, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 2, - "discount": "0|50", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_90001", - "purchase": "", - "_item_name": "Rename Card", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 0, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "UIUserChangeNameCtrl" - }, - { - "hero_head": "", - "des": "item_desc_90002", - "init_tili": "", - "tab": 2, - "gold": 100, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 90002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_9", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "chat_item", - "type": 9, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 2, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_90002", - "purchase": "", - "_item_name": "Speaker", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 0, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_90003", - "init_tili": "", - "tab": 2, - "gold": 100, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 90003, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_9", - "playerid": "", - "bag_type": 1, - "bag_handle_type": 4, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "name_card2", - "type": 9, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 2, - "discount": "0|50", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_90003", - "purchase": "", - "_item_name": "Guild Rename Card", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 0, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "UIUserChangeNameCtrl" - }, - { - "hero_head": "", - "des": "item_desc_900004", - "init_tili": "", - "tab": "", - "gold": 1000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 900004, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_9", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "icon_restoreGold", - "type": 9, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 2, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 4, - "name": "item_name_900004", - "purchase": 2, - "_item_name": "Stamina potion\uff08\u6062\u590d\u5929\u6570\u836f\u6c34\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_900005", - "init_tili": "", - "tab": "", - "gold": 2000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 900005, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_9", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "icon_heroPackage", - "type": 9, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 2, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 5, - "name": "item_name_900005", - "purchase": 3, - "_item_name": "Health Potion\uff08\u5c01\u88c5\u836f\u6c34\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_900006", - "init_tili": "", - "tab": "", - "gold": 500, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 900006, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_9", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "icon_bountyTicket", - "type": 9, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 2, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 6, - "name": "item_name_900006", - "purchase": 1, - "_item_name": "Bounty tickets\uff08\u8d4f\u91d1\u8d5b\u95e8\u7968\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_101001", - "init_tili": "", - "tab": 3, - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 101001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "name_card", - "type": 10, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 2, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_101001", - "purchase": "", - "_item_name": "Test - Material", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": 1, - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_100001", - "init_tili": "", - "tab": 3, - "gold": 100, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 100001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "name_card", - "type": 10, - "diamond": 10, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_100001", - "purchase": "", - "_item_name": "Unkown - Normal", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_100002", - "init_tili": "", - "tab": 3, - "gold": 100, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 100002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "name_card", - "type": 10, - "diamond": 10, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_100002", - "purchase": "", - "_item_name": "Unkown - Rare", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_100003", - "init_tili": "", - "tab": 3, - "gold": 100, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 100003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "name_card", - "type": 10, - "diamond": 10, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_100003", - "purchase": "", - "_item_name": "Unkown - Epic", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_100004", - "init_tili": "", - "tab": 3, - "gold": 100, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 100004, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "name_card", - "type": 10, - "diamond": 10, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_100004", - "purchase": "", - "_item_name": "Unkown - Legend", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_100005", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 100005, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_10", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "icon_crystal", - "type": 10, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_100005", - "purchase": "", - "_item_name": "Hero Crystal", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_100006", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 100006, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_10", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "weapon_parts", - "type": 10, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_100006", - "purchase": "", - "_item_name": "Weapon Parts", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_100007", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 100007, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_10", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "chip_parts", - "type": 10, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_100007", - "purchase": "", - "_item_name": "Chip Parts", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_91000", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 91000, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_2", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "lottery_box8", - "type": 2, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "10001:1000", - "sub_type": 2, - "name": "item_name_91000", - "purchase": "", - "_item_name": "Treasure", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 90108, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_90004", - "init_tili": "", - "tab": 2, - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 90004, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_9", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "shop/vitalityagent", - "type": 9, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 4, - "name": "item_name_90004", - "purchase": "", - "_item_name": "Fatigue", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_90005", - "init_tili": "", - "tab": 2, - "gold": 100, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 90005, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_9", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "shop/vitalityagent", - "type": 9, - "diamond": 100, - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": 1, - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 4, - "name": "item_name_90005", - "purchase": "", - "_item_name": "Stamina Potion", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": 91000, - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 60, - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_90006", - "init_tili": "", - "tab": 2, - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 90006, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_9", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "shop/vitalityagent", - "type": 9, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 5, - "name": "item_name_90006", - "purchase": "", - "_item_name": "Repair Tools", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 60, - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 110001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "", - "type": 12, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_110001", - "purchase": "", - "_item_name": "Mystery Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip101", - "type": 13, - "diamond": "", - "relationship": 130001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_130001", - "purchase": "", - "_item_name": "Brutal force", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip102", - "type": 13, - "diamond": "", - "relationship": 130002, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_130002", - "purchase": "", - "_item_name": "Sniper eye", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip103", - "type": 13, - "diamond": "", - "relationship": 130003, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_130003", - "purchase": "", - "_item_name": "Vampirism", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130004, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip104", - "type": 13, - "diamond": "", - "relationship": 130004, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_130004", - "purchase": "", - "_item_name": "Cold blood ", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130011", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130011, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip201", - "type": 13, - "diamond": "", - "relationship": 130011, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130011", - "purchase": "", - "_item_name": "Fast resume", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130012", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130012, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip202", - "type": 13, - "diamond": "", - "relationship": 130012, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130012", - "purchase": "", - "_item_name": "Vision", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130013", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130013, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip203", - "type": 13, - "diamond": "", - "relationship": 130013, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130013", - "purchase": "", - "_item_name": "Speed rescue", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130014", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130014, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip204", - "type": 13, - "diamond": "", - "relationship": 130014, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130014", - "purchase": "", - "_item_name": "Drug effect", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130021", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130021, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip301", - "type": 13, - "diamond": "", - "relationship": 130021, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_130021", - "purchase": "", - "_item_name": "Life source", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130022", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130022, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip302", - "type": 13, - "diamond": "", - "relationship": 130022, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130022", - "purchase": "", - "_item_name": "Original guard", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130023", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130023, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip303", - "type": 13, - "diamond": "", - "relationship": 130023, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_130023", - "purchase": "", - "_item_name": "Solid shell", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_130024", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 130024, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 0, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": 1, - "isdefaultskin": "", - "icon": "chip304", - "type": 13, - "diamond": "", - "relationship": 130024, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_130024", - "purchase": "", - "_item_name": "Original life", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_140001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 140001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 1, - "bag_handle_type": 0, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "reviveCoin", - "type": 14, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_140001", - "purchase": "", - "_item_name": "Revive Coin", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110290", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110290, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_1_f", - "type": 11, - "diamond": "", - "relationship": 30100, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110290", - "purchase": "", - "_item_name": "Hill Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110291", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110291, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_2_f", - "type": 11, - "diamond": "", - "relationship": 30200, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110291", - "purchase": "", - "_item_name": "Yamada Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110292", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110292, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_3_f", - "type": 11, - "diamond": "", - "relationship": 30300, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110292", - "purchase": "", - "_item_name": "Aoi Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110293", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110293, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_4_f", - "type": 11, - "diamond": "", - "relationship": 30400, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110293", - "purchase": "", - "_item_name": "Astral Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110294", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110294, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_5_f", - "type": 11, - "diamond": "", - "relationship": 30500, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110294", - "purchase": "", - "_item_name": "Miffy Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110295", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110295, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_6_f", - "type": 11, - "diamond": "", - "relationship": 30600, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110295", - "purchase": "", - "_item_name": "Canoe Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110296", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110296, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_7_f", - "type": 11, - "diamond": "", - "relationship": 30700, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110296", - "purchase": "", - "_item_name": "Mariana Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110297", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110297, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_8_f", - "type": 11, - "diamond": "", - "relationship": 30800, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110297", - "purchase": "", - "_item_name": "Dragonscale Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110298", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110298, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_9_f", - "type": 11, - "diamond": "", - "relationship": 30900, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110298", - "purchase": "", - "_item_name": "Lazar Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110299", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110299, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_10_f", - "type": 11, - "diamond": "", - "relationship": 31000, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110299", - "purchase": "", - "_item_name": "Kurosawa Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110101", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110101, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_h_0", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110101", - "purchase": "", - "_item_name": "Testimonial Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110100, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110111", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110111, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_h_1", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110111", - "purchase": "", - "_item_name": "Shoulder Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110110, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110121", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110121, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_h_2", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110121", - "purchase": "", - "_item_name": "Left Arm Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110120, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110131", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110131, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_h_3", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110131", - "purchase": "", - "_item_name": "Abdomen Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110130, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110141", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110141, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_h_4", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110141", - "purchase": "", - "_item_name": "Left Leg Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110140, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110151", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110151, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_h_5", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110151", - "purchase": "", - "_item_name": "Head Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110150, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110161", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110161, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_h_6", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110161", - "purchase": "", - "_item_name": "Chest Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110160, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110171", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110171, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_h_7", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110171", - "purchase": "", - "_item_name": "Right Arm Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110170, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110181", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110181, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_h_8", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110181", - "purchase": "", - "_item_name": "Right Leg Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110180, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110201", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110201, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_w_0", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_110201", - "purchase": "", - "_item_name": "Blueprint Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110200, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110211", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110211, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_w_1", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_110211", - "purchase": "", - "_item_name": "Sight Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110210, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110221", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110221, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_w_2", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_110221", - "purchase": "", - "_item_name": "Stock Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110220, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110231", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110231, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_w_3", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_110231", - "purchase": "", - "_item_name": "Trigger Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110230, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110241", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110241, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_w_4", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_110241", - "purchase": "", - "_item_name": "Ammo Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110240, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110251", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110251, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_w_5", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_110251", - "purchase": "", - "_item_name": "Bolt Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110250, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110261", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110261, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_w_6", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_110261", - "purchase": "", - "_item_name": "Barrel Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110260, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110271", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110271, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_w_7", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_110271", - "purchase": "", - "_item_name": "Grip Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110270, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110281", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 110281, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "bag/box/jigsaw_box_w_8", - "type": 15, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_110281", - "purchase": "", - "_item_name": "Clip Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": 110280, - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_170001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 170001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "parachute1", - "type": 16, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_170001", - "purchase": "", - "_item_name": "Parachute Default", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_170002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 170002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "parachute2", - "type": 16, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_170002", - "purchase": "", - "_item_name": "Parachute S1", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_150101", - "init_tili": "", - "tab": "", - "gold": 1, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": 1, - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 150101, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "heroChip1", - "type": 17, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_150101", - "purchase": "", - "_item_name": "Hero Chip Box 1", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "130001|130002|130003|130004|130005|130006|130007|130008|", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_150102", - "init_tili": "", - "tab": "", - "gold": 1, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": 1, - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 150102, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "heroChip3", - "type": 17, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_150102", - "purchase": "", - "_item_name": "Hero Chip Box 3", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "130001|130002|130003|130004|130005|130006|130007|130008|", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_150103", - "init_tili": "", - "tab": "", - "gold": 1, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": 1, - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 150103, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "heroChip5", - "type": 17, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_150103", - "purchase": "", - "_item_name": "Hero Chip Box 5", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "130001|130002|130003|130004|130005|130006|130007|130008|", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_150201", - "init_tili": "", - "tab": "", - "gold": 1, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": 1, - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 150201, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "weaponChip1", - "type": 17, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_150201", - "purchase": "", - "_item_name": "Weapon Chip Box 1", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "130011|130012|130013|130014|130015|130016", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_150202", - "init_tili": "", - "tab": "", - "gold": 1, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": 1, - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 150202, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "weaponChip3", - "type": 17, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_150202", - "purchase": "", - "_item_name": "Weapon Chip Box 3", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "130011|130012|130013|130014|130015|130016", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_150203", - "init_tili": "", - "tab": "", - "gold": 1, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": 1, - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 150203, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": 2, - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "weaponChip5", - "type": 17, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_150203", - "purchase": "", - "_item_name": "Weapon Chip Box 5", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "130011|130012|130013|130014|130015|130016", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_160001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 160001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "hero_1", - "type": 18, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_160001", - "purchase": "", - "_item_name": "Hill Fgimage", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_160002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 160002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "hero_2", - "type": 18, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_160002", - "purchase": "", - "_item_name": "Yamada Fgimage", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_160003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 160003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "hero_3", - "type": 18, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_160003", - "purchase": "", - "_item_name": "Aoi Fgimage", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_160004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 160004, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "hero_4", - "type": 18, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_160004", - "purchase": "", - "_item_name": "Astral Fgimage", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_160005", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 160005, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "hero_5", - "type": 18, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_160005", - "purchase": "", - "_item_name": "Miffy Fgimage", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_160006", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 160006, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "hero_6", - "type": 18, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_160006", - "purchase": "", - "_item_name": "Canoe Fgimage", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_160007", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 160007, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "hero_7", - "type": 18, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_160007", - "purchase": "", - "_item_name": "Mariana Fgimage", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_160008", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 160008, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "hero_8", - "type": 18, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_160008", - "purchase": "", - "_item_name": "Dragonscale Fgimage", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_160009", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 160009, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "hero_9", - "type": 18, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_160009", - "purchase": "", - "_item_name": "Lazar Fgimage", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_160010", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 160010, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "hero_10", - "type": 18, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_160010", - "purchase": "", - "_item_name": "Kurosawa Fgimage", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_190001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 190001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ring1", - "type": 19, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_190001", - "purchase": "", - "_item_name": "The First Ring", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_190002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 190002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ring2", - "type": 19, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_190002", - "purchase": "", - "_item_name": "The Second Ring", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_190003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 190003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "ring3", - "type": 19, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_190003", - "purchase": "", - "_item_name": "The Third Ring", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_200001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 200001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "Expression_dance_img", - "type": 20, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_200001", - "purchase": "", - "_item_name": "Smile", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 150, - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_200002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 200002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "Expression_hi_img", - "type": 20, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_200002", - "purchase": "", - "_item_name": "Like", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "151", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_200003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 200003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "Expression_love_img", - "type": 20, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_200003", - "purchase": "", - "_item_name": "Shy", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "152", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_200004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 200004, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "Expression_clap_img", - "type": 20, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_200004", - "purchase": "", - "_item_name": "Gluttonous", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "153", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_200005", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 200005, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "Expression_shit_img", - "type": 20, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_200005", - "purchase": "", - "_item_name": "Shock", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "154", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_200006", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 200006, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "Expression_nymphomaniac_img", - "type": 20, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_200006", - "purchase": "", - "_item_name": "Angry", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "155", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_200007", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 200007, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "Expression_sarcasm_img", - "type": 20, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_200007", - "purchase": "", - "_item_name": "Nothing to say", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "156", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_200008", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 200008, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "Expression_victory_img", - "type": 20, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_200008", - "purchase": "", - "_item_name": "Disappoint", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "157", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_200009", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 200009, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "Expression_surrender_img", - "type": 20, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_200009", - "purchase": "", - "_item_name": "Chicken", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "158|eff_31000_qizhi", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_200010", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 200010, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "Expression_cry_img", - "type": 20, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_200010", - "purchase": "", - "_item_name": "cry", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "159|mat|cry|cry|Bip001 Neck", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_200011", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 200011, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "Expression_anger_img", - "type": 20, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "item_name_200011", - "purchase": "", - "_item_name": "take offence", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 160, - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_210001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 210001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "box/gun1001", - "type": 21, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_210001", - "purchase": "", - "_item_name": "Random Weapon", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "70001|70002|70003|70004|70005|70006|70007", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_210002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 210002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "box/hero2001", - "type": 21, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_210002", - "purchase": "", - "_item_name": "Random Hero", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "30100|30200|30300|30400|30500|30600|30700|30800|30900|31000", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_210003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 210003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "box/chip3001", - "type": 21, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": 1, - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_210003", - "purchase": "", - "_item_name": "Random Chip", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "130001|130002|130003|130004|130011|130012|130013|130014|130021|130022|130023|130024", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_210011", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 210011, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "box/p_gun1101", - "type": 21, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 11, - "name": "item_name_210011", - "purchase": "", - "_item_name": "Random Weapon Piece Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "110210|110220|110230|110240|110250|110260|110270|110280", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_210012", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 210012, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "box/p_hero1201", - "type": 21, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 12, - "name": "item_name_210012", - "purchase": "", - "_item_name": "Random Hero Piece Box", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "110110|110120|110130|110140|110150|110160|110170|110180", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_900001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 900001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_23", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "store_chest_box01", - "type": 23, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_900001", - "purchase": "", - "_item_name": "Special Chest", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_900002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 900002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_23", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "store_chest_box02", - "type": 23, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_900002", - "purchase": "", - "_item_name": "Chip Chest", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_900003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 900003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_23", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "store_chest_box03", - "type": 23, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_900003", - "purchase": "", - "_item_name": "Hero Chest", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_240001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 240001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "type_desc_24", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gacha/Gacha01", - "type": 24, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_240001", - "purchase": "", - "_item_name": "GACHA", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 250001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gacha/Gacha01", - "type": 25, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_250001", - "purchase": "", - "_item_name": "\u52cb\u7ae0", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_260001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 260001, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_26", - "playerid": "", - "bag_type": "", - "bag_handle_type": 4, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gems/icon_gems01", - "type": 26, - "diamond": "", - "relationship": 1, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_260001", - "purchase": "", - "_item_name": "Micro crystal ", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "UIHashRateCtrl" - }, - { - "hero_head": "", - "des": "item_desc_260002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 260002, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_26", - "playerid": "", - "bag_type": "", - "bag_handle_type": 4, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gems/icon_gems02", - "type": 26, - "diamond": "", - "relationship": 2, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_260002", - "purchase": "", - "_item_name": "Standard crystal", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "UIHashRateCtrl" - }, - { - "hero_head": "", - "des": "item_desc_260003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 260003, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_26", - "playerid": "", - "bag_type": "", - "bag_handle_type": 4, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gems/icon_gems03", - "type": 26, - "diamond": "", - "relationship": 3, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_260003", - "purchase": "", - "_item_name": "Large crystal", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "UIHashRateCtrl" - }, - { - "hero_head": "", - "des": "item_desc_260004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 260004, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_26", - "playerid": "", - "bag_type": "", - "bag_handle_type": 4, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gems/icon_gems04", - "type": 26, - "diamond": "", - "relationship": 4, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 4, - "name": "item_name_260004", - "purchase": "", - "_item_name": "Giant crystal", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "UIHashRateCtrl" - }, - { - "hero_head": "", - "des": "item_desc_260010", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 260010, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_26", - "playerid": "", - "bag_type": "", - "bag_handle_type": 4, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "gems/icon_gems05", - "type": 26, - "diamond": "", - "relationship": 4, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 4, - "name": "item_name_260010", - "purchase": "", - "_item_name": "Hashrate Crystal", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "UIHashRateCtrl" - }, - { - "hero_head": "", - "des": "", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 27010001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "", - "type": 27, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_260003", - "purchase": "", - "_item_name": "Genesis", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 27020001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "", - "type": 27, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_260004", - "purchase": "", - "_item_name": "Planet", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280001, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280001", - "purchase": "", - "_item_name": "Planet_001", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280002, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280002, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280002", - "purchase": "", - "_item_name": "Planet_002", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280003, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280003, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280003", - "purchase": "", - "_item_name": "Planet_003", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280004, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280004, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280004", - "purchase": "", - "_item_name": "Planet_004", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280005", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280005, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280005, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280005", - "purchase": "", - "_item_name": "Planet_005", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280006", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280006, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280006, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280006", - "purchase": "", - "_item_name": "Planet_006", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280007", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280007, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280007, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280007", - "purchase": "", - "_item_name": "Planet_007", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280008", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280008, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280008, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280008", - "purchase": "", - "_item_name": "Planet_008", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280009", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280009, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280009, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280009", - "purchase": "", - "_item_name": "Planet_009", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280010", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280010, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280010, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280010", - "purchase": "", - "_item_name": "Planet_010", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280011", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280011, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280011, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280011", - "purchase": "", - "_item_name": "Planet_011", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280012", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280012, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280012, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280012", - "purchase": "", - "_item_name": "Planet_012", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280013", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280013, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280013, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280013", - "purchase": "", - "_item_name": "Planet_013", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280014", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280014, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280014, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280014", - "purchase": "", - "_item_name": "Planet_014", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280015", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280015, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280015, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280015", - "purchase": "", - "_item_name": "Planet_015", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280016", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280016, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280016, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280016", - "purchase": "", - "_item_name": "Planet_016", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280017", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280017, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280017, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280017", - "purchase": "", - "_item_name": "Planet_017", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280018", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280018, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280018, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280018", - "purchase": "", - "_item_name": "Planet_018", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280019", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280019, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280019, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280019", - "purchase": "", - "_item_name": "Planet_019", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280020", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280020, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280020, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280020", - "purchase": "", - "_item_name": "Planet_020", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280021", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280021, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280021, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280021", - "purchase": "", - "_item_name": "Planet_021", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280022", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280022, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280022, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280022", - "purchase": "", - "_item_name": "Planet_022", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280023", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280023, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280023, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280023", - "purchase": "", - "_item_name": "Planet_023", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280024", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280024, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280024, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280024", - "purchase": "", - "_item_name": "Planet_024", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280025", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280025, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280025, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280025", - "purchase": "", - "_item_name": "Planet_025", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280026", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280026, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280026, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280026", - "purchase": "", - "_item_name": "Planet_026", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280027", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280027, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280027, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280027", - "purchase": "", - "_item_name": "Planet_027", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280028", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280028, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280028, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280028", - "purchase": "", - "_item_name": "Planet_028", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280029", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280029, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280029, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280029", - "purchase": "", - "_item_name": "Planet_029", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280030", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280030, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280030, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280030", - "purchase": "", - "_item_name": "Planet_030", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280031", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280031, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280031, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280031", - "purchase": "", - "_item_name": "Planet_031", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280032", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280032, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280032, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280032", - "purchase": "", - "_item_name": "Planet_032", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280033", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280033, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280033, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280033", - "purchase": "", - "_item_name": "Planet_033", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280034", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280034, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280034, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280034", - "purchase": "", - "_item_name": "Planet_034", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280035", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280035, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280035, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280035", - "purchase": "", - "_item_name": "Planet_035", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280036", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280036, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280036, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280036", - "purchase": "", - "_item_name": "Planet_036", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280037", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280037, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280037, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280037", - "purchase": "", - "_item_name": "Planet_037", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280038", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280038, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280038, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280038", - "purchase": "", - "_item_name": "Planet_038", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280039", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280039, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280039, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280039", - "purchase": "", - "_item_name": "Planet_039", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280040", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280040, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280040, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280040", - "purchase": "", - "_item_name": "Planet_040", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280041", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280041, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280041, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280041", - "purchase": "", - "_item_name": "Planet_041", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280042", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280042, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280042, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280042", - "purchase": "", - "_item_name": "Planet_042", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280043", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280043, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280043, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280043", - "purchase": "", - "_item_name": "Planet_043", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280044", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280044, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280044, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280044", - "purchase": "", - "_item_name": "Planet_044", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280045", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280045, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280045, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280045", - "purchase": "", - "_item_name": "Planet_045", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280046", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280046, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280046, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280046", - "purchase": "", - "_item_name": "Planet_046", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280047", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280047, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280047, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280047", - "purchase": "", - "_item_name": "Planet_047", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280048", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280048, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280048, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280048", - "purchase": "", - "_item_name": "Planet_048", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280049", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280049, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280049, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280049", - "purchase": "", - "_item_name": "Planet_049", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280050", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280050, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280050, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280050", - "purchase": "", - "_item_name": "Planet_050", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280051", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280051, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280051, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280051", - "purchase": "", - "_item_name": "Planet_051", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280052", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280052, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280052, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280052", - "purchase": "", - "_item_name": "Planet_052", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280053", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280053, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280053, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280053", - "purchase": "", - "_item_name": "Planet_053", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280054", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280054, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280054, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280054", - "purchase": "", - "_item_name": "Planet_054", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280055", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280055, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280055, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280055", - "purchase": "", - "_item_name": "Planet_055", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280056", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280056, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280056, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280056", - "purchase": "", - "_item_name": "Planet_056", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280057", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280057, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280057, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280057", - "purchase": "", - "_item_name": "Planet_057", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280058", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280058, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280058, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280058", - "purchase": "", - "_item_name": "Planet_058", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280059", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280059, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280059, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280059", - "purchase": "", - "_item_name": "Planet_059", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280060", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280060, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280060, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280060", - "purchase": "", - "_item_name": "Planet_060", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280061", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280061, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280061, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280061", - "purchase": "", - "_item_name": "Planet_061", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280062", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280062, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280062, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280062", - "purchase": "", - "_item_name": "Planet_062", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280063", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280063, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280063, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280063", - "purchase": "", - "_item_name": "Planet_063", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280064", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280064, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280064, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280064", - "purchase": "", - "_item_name": "Planet_064", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280065", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280065, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280065, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280065", - "purchase": "", - "_item_name": "Planet_065", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280066", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280066, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280066, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280066", - "purchase": "", - "_item_name": "Planet_066", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280067", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280067, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280067, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280067", - "purchase": "", - "_item_name": "Planet_067", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280068", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280068, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280068, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280068", - "purchase": "", - "_item_name": "Planet_068", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280069", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280069, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280069, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280069", - "purchase": "", - "_item_name": "Planet_069", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280070", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280070, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280070, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280070", - "purchase": "", - "_item_name": "Planet_070", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280071", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280071, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280071, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280071", - "purchase": "", - "_item_name": "Planet_071", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280072", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280072, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280072, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280072", - "purchase": "", - "_item_name": "Planet_072", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280073", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280073, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280073, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280073", - "purchase": "", - "_item_name": "Planet_073", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280074", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280074, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280074, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280074", - "purchase": "", - "_item_name": "Planet_074", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280075", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280075, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280075, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280075", - "purchase": "", - "_item_name": "Planet_075", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280076", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280076, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280076, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280076", - "purchase": "", - "_item_name": "Planet_076", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280077", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280077, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280077, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280077", - "purchase": "", - "_item_name": "Planet_077", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280078", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280078, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280078, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280078", - "purchase": "", - "_item_name": "Planet_078", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280079", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280079, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280079, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280079", - "purchase": "", - "_item_name": "Planet_079", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280080", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280080, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280080, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280080", - "purchase": "", - "_item_name": "Planet_080", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280081", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280081, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280081, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280081", - "purchase": "", - "_item_name": "Planet_081", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280082", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280082, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280082, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280082", - "purchase": "", - "_item_name": "Planet_082", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280083", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280083, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280083, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280083", - "purchase": "", - "_item_name": "Planet_083", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280084", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280084, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280084, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280084", - "purchase": "", - "_item_name": "Planet_084", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280085", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280085, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280085, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280085", - "purchase": "", - "_item_name": "Planet_085", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280086", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280086, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280086, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280086", - "purchase": "", - "_item_name": "Planet_086", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280087", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280087, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280087, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280087", - "purchase": "", - "_item_name": "Planet_087", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280088", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280088, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280088, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280088", - "purchase": "", - "_item_name": "Planet_088", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280089", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280089, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280089, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280089", - "purchase": "", - "_item_name": "Planet_089", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280090", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280090, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280090, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280090", - "purchase": "", - "_item_name": "Planet_090", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280091", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280091, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280091, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280091", - "purchase": "", - "_item_name": "Planet_091", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280092", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280092, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280092, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280092", - "purchase": "", - "_item_name": "Planet_092", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280093", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280093, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280093, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280093", - "purchase": "", - "_item_name": "Planet_093", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280094", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280094, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280094, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280094", - "purchase": "", - "_item_name": "Planet_094", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280095", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280095, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280095, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280095", - "purchase": "", - "_item_name": "Planet_095", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280096", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280096, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280096, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280096", - "purchase": "", - "_item_name": "Planet_096", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280097", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280097, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280097, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280097", - "purchase": "", - "_item_name": "Planet_097", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280098", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280098, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280098, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280098", - "purchase": "", - "_item_name": "Planet_098", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280099", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280099, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280099, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280099", - "purchase": "", - "_item_name": "Planet_099", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280100", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280100, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280100, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280100", - "purchase": "", - "_item_name": "Planet_100", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280101", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280101, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280101, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280101", - "purchase": "", - "_item_name": "Planet_101", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280102", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280102, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280102, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280102", - "purchase": "", - "_item_name": "Planet_102", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280103", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280103, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280103, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280103", - "purchase": "", - "_item_name": "Planet_103", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280104", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280104, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280104, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280104", - "purchase": "", - "_item_name": "Planet_104", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280105", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280105, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280105, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280105", - "purchase": "", - "_item_name": "Planet_105", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280106", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280106, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280106, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280106", - "purchase": "", - "_item_name": "Planet_106", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280107", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280107, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280107, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280107", - "purchase": "", - "_item_name": "Planet_107", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280108", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280108, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280108, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280108", - "purchase": "", - "_item_name": "Planet_108", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280109", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280109, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280109, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280109", - "purchase": "", - "_item_name": "Planet_109", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280110", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280110, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280110, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280110", - "purchase": "", - "_item_name": "Planet_110", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280111", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280111, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280111, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280111", - "purchase": "", - "_item_name": "Planet_111", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280112", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280112, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280112, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280112", - "purchase": "", - "_item_name": "Planet_112", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280113", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280113, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280113, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280113", - "purchase": "", - "_item_name": "Planet_113", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280114", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280114, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280114, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280114", - "purchase": "", - "_item_name": "Planet_114", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280115", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280115, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280115, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280115", - "purchase": "", - "_item_name": "Planet_115", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280116", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280116, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280116, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280116", - "purchase": "", - "_item_name": "Planet_116", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280117", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280117, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280117, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280117", - "purchase": "", - "_item_name": "Planet_117", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280118", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280118, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280118, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280118", - "purchase": "", - "_item_name": "Planet_118", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280119", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280119, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280119, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280119", - "purchase": "", - "_item_name": "Planet_119", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280120", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280120, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280120, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280120", - "purchase": "", - "_item_name": "Planet_120", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280121", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280121, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280121, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280121", - "purchase": "", - "_item_name": "Planet_121", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280122", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280122, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280122, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280122", - "purchase": "", - "_item_name": "Planet_122", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280123", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280123, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280123, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280123", - "purchase": "", - "_item_name": "Planet_123", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280124", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280124, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280124, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280124", - "purchase": "", - "_item_name": "Planet_124", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280125", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280125, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280125, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280125", - "purchase": "", - "_item_name": "Planet_125", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280126", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280126, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280126, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280126", - "purchase": "", - "_item_name": "Planet_126", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280127", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280127, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280127, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280127", - "purchase": "", - "_item_name": "Planet_127", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280128", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280128, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280128, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280128", - "purchase": "", - "_item_name": "Planet_128", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280129", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280129, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280129, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280129", - "purchase": "", - "_item_name": "Planet_129", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280130", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280130, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280130, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280130", - "purchase": "", - "_item_name": "Planet_130", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280131", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280131, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280131, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280131", - "purchase": "", - "_item_name": "Planet_131", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280132", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280132, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280132, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280132", - "purchase": "", - "_item_name": "Planet_132", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280133", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280133, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280133, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280133", - "purchase": "", - "_item_name": "Planet_133", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280134", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280134, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280134, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280134", - "purchase": "", - "_item_name": "Planet_134", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280135", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280135, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280135, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280135", - "purchase": "", - "_item_name": "Planet_135", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280136", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280136, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280136, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280136", - "purchase": "", - "_item_name": "Planet_136", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280137", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280137, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280137, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280137", - "purchase": "", - "_item_name": "Planet_137", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280138", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280138, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280138, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280138", - "purchase": "", - "_item_name": "Planet_138", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280139", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280139, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280139, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280139", - "purchase": "", - "_item_name": "Planet_139", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280140", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280140, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280140, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280140", - "purchase": "", - "_item_name": "Planet_140", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280141", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280141, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280141, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280141", - "purchase": "", - "_item_name": "Planet_141", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280142", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280142, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280142, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280142", - "purchase": "", - "_item_name": "Planet_142", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280143", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280143, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280143, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280143", - "purchase": "", - "_item_name": "Planet_143", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280144", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280144, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280144, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280144", - "purchase": "", - "_item_name": "Planet_144", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280145", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280145, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280145, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280145", - "purchase": "", - "_item_name": "Planet_145", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280146", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280146, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280146, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280146", - "purchase": "", - "_item_name": "Planet_146", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280147", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280147, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280147, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280147", - "purchase": "", - "_item_name": "Planet_147", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280148", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280148, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280148, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280148", - "purchase": "", - "_item_name": "Planet_148", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280149", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280149, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280149, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280149", - "purchase": "", - "_item_name": "Planet_149", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280150", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280150, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280150, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280150", - "purchase": "", - "_item_name": "Planet_150", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280151", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280151, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280151, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280151", - "purchase": "", - "_item_name": "Planet_151", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280152", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280152, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280152, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280152", - "purchase": "", - "_item_name": "Planet_152", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280153", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280153, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280153, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280153", - "purchase": "", - "_item_name": "Planet_153", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280154", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280154, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280154, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280154", - "purchase": "", - "_item_name": "Planet_154", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280155", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280155, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280155, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280155", - "purchase": "", - "_item_name": "Planet_155", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280156", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280156, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280156, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280156", - "purchase": "", - "_item_name": "Planet_156", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280157", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280157, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280157, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280157", - "purchase": "", - "_item_name": "Planet_157", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280158", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280158, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280158, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280158", - "purchase": "", - "_item_name": "Planet_158", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280159", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280159, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280159, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280159", - "purchase": "", - "_item_name": "Planet_159", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280160", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280160, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280160, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280160", - "purchase": "", - "_item_name": "Planet_160", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280161", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280161, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280161, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280161", - "purchase": "", - "_item_name": "Planet_161", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280162", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280162, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280162, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280162", - "purchase": "", - "_item_name": "Planet_162", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280163", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280163, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280163, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280163", - "purchase": "", - "_item_name": "Planet_163", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280164", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280164, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280164, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280164", - "purchase": "", - "_item_name": "Planet_164", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280165", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280165, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280165, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280165", - "purchase": "", - "_item_name": "Planet_165", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280166", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280166, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280166, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280166", - "purchase": "", - "_item_name": "Planet_166", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280167", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280167, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280167, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280167", - "purchase": "", - "_item_name": "Planet_167", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280168", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280168, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280168, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280168", - "purchase": "", - "_item_name": "Planet_168", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280169", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280169, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280169, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280169", - "purchase": "", - "_item_name": "Planet_169", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280170", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280170, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280170, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280170", - "purchase": "", - "_item_name": "Planet_170", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280171", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280171, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280171, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280171", - "purchase": "", - "_item_name": "Planet_171", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280172", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280172, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280172, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280172", - "purchase": "", - "_item_name": "Planet_172", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280173", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280173, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280173, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280173", - "purchase": "", - "_item_name": "Planet_173", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280174", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280174, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280174, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280174", - "purchase": "", - "_item_name": "Planet_174", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280175", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280175, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280175, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280175", - "purchase": "", - "_item_name": "Planet_175", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280176", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280176, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280176, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280176", - "purchase": "", - "_item_name": "Planet_176", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280177", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280177, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280177, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280177", - "purchase": "", - "_item_name": "Planet_177", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280178", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280178, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280178, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280178", - "purchase": "", - "_item_name": "Planet_178", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280179", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280179, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280179, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280179", - "purchase": "", - "_item_name": "Planet_179", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280180", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280180, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280180, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280180", - "purchase": "", - "_item_name": "Planet_180", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280181", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280181, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280181, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280181", - "purchase": "", - "_item_name": "Planet_181", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280182", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280182, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280182, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280182", - "purchase": "", - "_item_name": "Planet_182", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280183", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280183, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280183, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280183", - "purchase": "", - "_item_name": "Planet_183", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280184", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280184, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280184, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280184", - "purchase": "", - "_item_name": "Planet_184", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280185", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280185, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280185, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280185", - "purchase": "", - "_item_name": "Planet_185", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280186", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280186, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280186, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280186", - "purchase": "", - "_item_name": "Planet_186", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280187", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280187, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280187, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280187", - "purchase": "", - "_item_name": "Planet_187", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280188", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280188, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280188, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280188", - "purchase": "", - "_item_name": "Planet_188", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280189", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280189, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280189, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280189", - "purchase": "", - "_item_name": "Planet_189", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280190", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280190, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280190, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280190", - "purchase": "", - "_item_name": "Planet_190", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280191", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280191, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280191, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280191", - "purchase": "", - "_item_name": "Planet_191", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280192", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280192, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280192, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280192", - "purchase": "", - "_item_name": "Planet_192", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280193", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280193, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280193, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280193", - "purchase": "", - "_item_name": "Planet_193", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280194", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280194, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280194, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280194", - "purchase": "", - "_item_name": "Planet_194", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280195", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280195, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280195, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280195", - "purchase": "", - "_item_name": "Planet_195", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280196", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280196, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280196, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280196", - "purchase": "", - "_item_name": "Planet_196", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280197", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280197, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280197, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280197", - "purchase": "", - "_item_name": "Planet_197", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280198", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280198, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280198, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280198", - "purchase": "", - "_item_name": "Planet_198", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280199", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280199, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280199, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280199", - "purchase": "", - "_item_name": "Planet_199", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280200", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280200, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280200, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280200", - "purchase": "", - "_item_name": "Planet_200", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280201", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280201, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280201, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280201", - "purchase": "", - "_item_name": "Planet_201", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280202", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280202, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280202, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280202", - "purchase": "", - "_item_name": "Planet_202", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280203", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280203, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280203, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280203", - "purchase": "", - "_item_name": "Planet_203", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280204", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280204, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280204, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280204", - "purchase": "", - "_item_name": "Planet_204", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280205", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280205, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280205, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280205", - "purchase": "", - "_item_name": "Planet_205", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280206", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280206, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280206, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280206", - "purchase": "", - "_item_name": "Planet_206", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280207", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280207, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280207, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280207", - "purchase": "", - "_item_name": "Planet_207", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280208", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280208, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280208, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280208", - "purchase": "", - "_item_name": "Planet_208", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280209", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280209, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280209, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280209", - "purchase": "", - "_item_name": "Planet_209", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280210", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280210, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280210, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280210", - "purchase": "", - "_item_name": "Planet_210", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280211", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280211, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280211, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280211", - "purchase": "", - "_item_name": "Planet_211", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280212", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280212, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280212, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280212", - "purchase": "", - "_item_name": "Planet_212", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280213", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280213, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280213, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280213", - "purchase": "", - "_item_name": "Planet_213", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280214", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280214, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280214, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280214", - "purchase": "", - "_item_name": "Planet_214", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280215", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280215, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280215, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280215", - "purchase": "", - "_item_name": "Planet_215", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280216", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280216, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280216, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280216", - "purchase": "", - "_item_name": "Planet_216", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280217", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280217, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280217, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280217", - "purchase": "", - "_item_name": "Planet_217", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280218", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280218, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280218, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280218", - "purchase": "", - "_item_name": "Planet_218", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280219", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280219, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280219, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280219", - "purchase": "", - "_item_name": "Planet_219", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280220", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280220, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280220, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280220", - "purchase": "", - "_item_name": "Planet_220", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280221", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280221, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280221, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280221", - "purchase": "", - "_item_name": "Planet_221", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280222", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280222, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280222, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280222", - "purchase": "", - "_item_name": "Planet_222", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280223", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280223, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280223, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280223", - "purchase": "", - "_item_name": "Planet_223", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280224", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280224, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280224, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280224", - "purchase": "", - "_item_name": "Planet_224", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280225", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280225, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280225, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280225", - "purchase": "", - "_item_name": "Planet_225", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280226", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280226, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280226, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280226", - "purchase": "", - "_item_name": "Planet_226", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280227", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280227, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280227, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280227", - "purchase": "", - "_item_name": "Planet_227", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280228", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280228, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280228, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280228", - "purchase": "", - "_item_name": "Planet_228", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280229", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280229, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280229, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280229", - "purchase": "", - "_item_name": "Planet_229", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280230", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280230, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280230, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280230", - "purchase": "", - "_item_name": "Planet_230", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280231", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280231, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280231, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280231", - "purchase": "", - "_item_name": "Planet_231", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280232", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280232, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280232, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280232", - "purchase": "", - "_item_name": "Planet_232", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280233", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280233, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280233, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280233", - "purchase": "", - "_item_name": "Planet_233", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280234", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280234, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280234, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280234", - "purchase": "", - "_item_name": "Planet_234", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280235", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280235, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280235, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280235", - "purchase": "", - "_item_name": "Planet_235", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280236", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280236, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280236, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280236", - "purchase": "", - "_item_name": "Planet_236", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280237", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280237, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280237, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280237", - "purchase": "", - "_item_name": "Planet_237", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280238", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280238, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280238, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280238", - "purchase": "", - "_item_name": "Planet_238", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280239", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280239, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280239, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280239", - "purchase": "", - "_item_name": "Planet_239", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280240", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280240, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280240, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280240", - "purchase": "", - "_item_name": "Planet_240", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280241", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280241, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280241, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280241", - "purchase": "", - "_item_name": "Planet_241", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280242", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280242, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280242, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280242", - "purchase": "", - "_item_name": "Planet_242", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280243", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280243, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280243, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280243", - "purchase": "", - "_item_name": "Planet_243", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280244", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280244, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280244, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280244", - "purchase": "", - "_item_name": "Planet_244", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280245", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280245, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280245, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280245", - "purchase": "", - "_item_name": "Planet_245", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280246", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280246, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280246, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280246", - "purchase": "", - "_item_name": "Planet_246", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280247", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280247, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280247, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280247", - "purchase": "", - "_item_name": "Planet_247", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280248", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280248, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280248, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280248", - "purchase": "", - "_item_name": "Planet_248", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280249", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280249, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280249, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280249", - "purchase": "", - "_item_name": "Planet_249", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280250", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280250, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280250, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280250", - "purchase": "", - "_item_name": "Planet_250", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280251", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280251, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280251, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280251", - "purchase": "", - "_item_name": "Planet_251", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280252", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280252, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280252, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280252", - "purchase": "", - "_item_name": "Planet_252", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280253", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280253, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280253, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280253", - "purchase": "", - "_item_name": "Planet_253", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280254", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280254, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280254, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280254", - "purchase": "", - "_item_name": "Planet_254", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280255", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280255, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280255, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280255", - "purchase": "", - "_item_name": "Planet_255", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280256", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280256, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280256, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280256", - "purchase": "", - "_item_name": "Planet_256", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280257", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280257, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280257, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280257", - "purchase": "", - "_item_name": "Planet_257", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280258", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280258, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280258, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280258", - "purchase": "", - "_item_name": "Planet_258", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280259", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280259, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280259, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280259", - "purchase": "", - "_item_name": "Planet_259", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280260", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280260, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280260, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280260", - "purchase": "", - "_item_name": "Planet_260", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280261", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280261, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280261, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280261", - "purchase": "", - "_item_name": "Planet_261", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280262", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280262, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280262, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280262", - "purchase": "", - "_item_name": "Planet_262", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280263", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280263, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280263, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280263", - "purchase": "", - "_item_name": "Planet_263", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280264", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280264, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280264, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280264", - "purchase": "", - "_item_name": "Planet_264", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280265", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280265, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280265, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280265", - "purchase": "", - "_item_name": "Planet_265", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280266", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280266, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280266, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280266", - "purchase": "", - "_item_name": "Planet_266", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280267", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280267, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280267, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280267", - "purchase": "", - "_item_name": "Planet_267", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280268", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280268, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280268, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280268", - "purchase": "", - "_item_name": "Planet_268", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280269", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280269, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280269, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280269", - "purchase": "", - "_item_name": "Planet_269", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280270", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280270, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280270, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280270", - "purchase": "", - "_item_name": "Planet_270", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280271", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280271, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280271, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280271", - "purchase": "", - "_item_name": "Planet_271", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280272", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280272, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280272, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280272", - "purchase": "", - "_item_name": "Planet_272", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280273", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280273, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280273, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280273", - "purchase": "", - "_item_name": "Planet_273", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280274", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280274, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280274, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280274", - "purchase": "", - "_item_name": "Planet_274", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280275", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280275, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280275, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280275", - "purchase": "", - "_item_name": "Planet_275", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280276", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280276, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280276, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280276", - "purchase": "", - "_item_name": "Planet_276", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280277", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280277, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280277, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280277", - "purchase": "", - "_item_name": "Planet_277", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280278", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280278, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280278, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280278", - "purchase": "", - "_item_name": "Planet_278", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280279", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280279, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280279, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280279", - "purchase": "", - "_item_name": "Planet_279", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280280", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280280, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280280, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280280", - "purchase": "", - "_item_name": "Planet_280", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280281", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280281, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280281, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280281", - "purchase": "", - "_item_name": "Planet_281", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280282", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280282, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280282, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280282", - "purchase": "", - "_item_name": "Planet_282", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280283", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280283, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280283, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280283", - "purchase": "", - "_item_name": "Planet_283", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280284", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280284, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280284, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280284", - "purchase": "", - "_item_name": "Planet_284", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280285", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280285, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280285, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280285", - "purchase": "", - "_item_name": "Planet_285", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280286", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280286, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280286, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280286", - "purchase": "", - "_item_name": "Planet_286", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280287", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280287, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280287, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280287", - "purchase": "", - "_item_name": "Planet_287", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280288", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280288, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280288, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280288", - "purchase": "", - "_item_name": "Planet_288", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280289", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280289, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280289, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280289", - "purchase": "", - "_item_name": "Planet_289", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280290", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280290, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280290, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280290", - "purchase": "", - "_item_name": "Planet_290", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280291", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280291, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280291, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280291", - "purchase": "", - "_item_name": "Planet_291", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280292", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280292, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280292, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280292", - "purchase": "", - "_item_name": "Planet_292", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280293", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280293, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280293, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280293", - "purchase": "", - "_item_name": "Planet_293", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280294", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280294, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280294, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280294", - "purchase": "", - "_item_name": "Planet_294", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280295", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280295, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280295, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280295", - "purchase": "", - "_item_name": "Planet_295", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280296", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280296, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280296, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280296", - "purchase": "", - "_item_name": "Planet_296", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280297", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280297, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280297, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280297", - "purchase": "", - "_item_name": "Planet_297", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280298", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280298, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280298, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280298", - "purchase": "", - "_item_name": "Planet_298", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280299", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280299, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280299, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280299", - "purchase": "", - "_item_name": "Planet_299", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_280300", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 280300, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": 280300, - "type": 28, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_280300", - "purchase": "", - "_item_name": "Planet_300", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_290001", - "init_tili": "", - "tab": "", - "gold": 2000, - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 290001, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_20", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "avatar/290001", - "type": 29, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_290001", - "purchase": "", - "_item_name": "wings_001", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 300000, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest01", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "10001:100", - "sub_type": 1, - "name": "item_name_300001", - "purchase": "", - "_item_name": "\u6d4b\u8bd5\u5b9d\u7bb1", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 100, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 300001, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest01", - "type": 30, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "10001:100", - "sub_type": 1, - "name": "item_name_300001", - "purchase": "", - "_item_name": "\u670d\u52a1\u5668\u5927\u4e8b\u4ef6\u5b9d\u7bb11\uff08\u5e9f\u5f03\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 300002, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest02", - "type": 30, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "10001:150", - "sub_type": 1, - "name": "item_name_300002", - "purchase": "", - "_item_name": "\u670d\u52a1\u5668\u5927\u4e8b\u4ef6\u5b9d\u7bb12\uff08\u5e9f\u5f03\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 300003, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest03", - "type": 30, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "10001:200", - "sub_type": 1, - "name": "item_name_300003", - "purchase": "", - "_item_name": "\u670d\u52a1\u5668\u5927\u4e8b\u4ef6\u5b9d\u7bb13\uff08\u5e9f\u5f03\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 300004, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest04", - "type": 30, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "10001:250", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "\u670d\u52a1\u5668\u5927\u4e8b\u4ef6\u5b9d\u7bb14\uff08\u5e9f\u5f03\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300005", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 300005, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest05", - "type": 30, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "10001:300", - "sub_type": 1, - "name": "item_name_300005", - "purchase": "", - "_item_name": "\u670d\u52a1\u5668\u5927\u4e8b\u4ef6\u5b9d\u7bb15\uff08\u5e9f\u5f03\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "Treasure Chest_A", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 400101, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest01", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "\u6218\u6597\u5956\u52b1-20\u4eba\u5403\u9e21-\u5b9d\u7bb1\u6389\u843d-\u5e78\u8fd0\u6863\u4f4d1", - "limit_num": "", - "chest_open_effects": "VFX_Treasure_white", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1211, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "Treasure Chest_F", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 400102, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest_box06", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "\u6218\u6597\u5956\u52b1-20\u4eba\u5403\u9e21-\u5b9d\u7bb1\u6389\u843d-\u5e78\u8fd0\u6863\u4f4d2", - "limit_num": "", - "chest_open_effects": "VFX_Treasure_green", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1212, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "Treasure Chest_B", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 400103, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest02", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "\u6218\u6597\u5956\u52b1-20\u4eba\u5403\u9e21-\u5b9d\u7bb1\u6389\u843d-\u5e78\u8fd0\u6863\u4f4d3", - "limit_num": "", - "chest_open_effects": "VFX_Treasure_blue", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1213, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "Treasure Chest_C", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 400104, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest03", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "\u6218\u6597\u5956\u52b1-20\u4eba\u5403\u9e21-\u5b9d\u7bb1\u6389\u843d-\u5e78\u8fd0\u6863\u4f4d4", - "limit_num": "", - "chest_open_effects": "VFX_Treasure_purple", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1214, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "Treasure Chest_D", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 400105, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest04", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "\u6218\u6597\u5956\u52b1-20\u4eba\u5403\u9e21-\u5b9d\u7bb1\u6389\u843d-\u5e78\u8fd0\u6863\u4f4d5", - "limit_num": "", - "chest_open_effects": "VFX_Treasure_golden", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1215, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "Treasure Chest_E", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 400106, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest05", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "\u6218\u6597\u5956\u52b1-20\u4eba\u5403\u9e21-\u5b9d\u7bb1\u6389\u843d-\u5e78\u8fd0\u6863\u4f4d6", - "limit_num": "", - "chest_open_effects": "VFX_Treasure_orange", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1216, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 400201, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "box05", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "MOBA\u6a21\u5f0f\u7ed3\u7b97-\u5b9d\u7bb1-\u82af\u7247\u788e\u7247", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1311, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 400202, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "box06", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "MOBA\u6a21\u5f0f\u7ed3\u7b97-\u5b9d\u7bb1-\u82af\u7247\u788e\u7247", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1311, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 400203, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "box07", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "MOBA\u6a21\u5f0f\u7ed3\u7b97-\u5b9d\u7bb1-\u82af\u7247\u788e\u7247", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1311, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 400204, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "box08", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "MOBA\u6a21\u5f0f\u7ed3\u7b97-\u5b9d\u7bb1-\u82af\u7247\u788e\u7247", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1311, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 400205, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "box09", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "MOBA\u6a21\u5f0f\u7ed3\u7b97-\u5b9d\u7bb1-\u82af\u7247\u788e\u7247", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1311, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 400206, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "box10", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "MOBA\u6a21\u5f0f\u7ed3\u7b97-\u5b9d\u7bb1-\u82af\u7247\u788e\u7247", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1311, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 400301, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest04", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "\u6218\u6597\u5956\u52b1-20\u4eba\u5403\u9e21-\u5b9d\u7bb1\u6389\u843d-\u767d", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1421, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 400302, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest04", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "\u6218\u6597\u5956\u52b1-20\u4eba\u5403\u9e21-\u5b9d\u7bb1\u6389\u843d-\u7eff", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1422, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_300004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 400303, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_30", - "playerid": "", - "bag_type": "", - "bag_handle_type": 1, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "AllHands_chest04", - "type": 32, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_300004", - "purchase": "", - "_item_name": "\u6218\u6597\u5956\u52b1-20\u4eba\u5403\u9e21-\u5b9d\u7bb1\u6389\u843d-\u7d2b", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": 1423, - "jump_to": "" - }, - { - "hero_head": "", - "des": "item_desc_110290", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11130100, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_1_f", - "type": 11, - "diamond": "", - "relationship": 30100, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110290", - "purchase": "", - "_item_name": "Hill Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110290", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11230100, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_1_f", - "type": 11, - "diamond": "", - "relationship": 30100, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110290", - "purchase": "", - "_item_name": "Hill Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110290", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11330100, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_1_f", - "type": 11, - "diamond": "", - "relationship": 30100, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110290", - "purchase": "", - "_item_name": "Hill Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110290", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11430100, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_1_f", - "type": 11, - "diamond": "", - "relationship": 30100, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110290", - "purchase": "", - "_item_name": "Hill Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110290", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11530100, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_1_f", - "type": 11, - "diamond": "", - "relationship": 30100, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110290", - "purchase": "", - "_item_name": "Hill Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110290", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11630100, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_1_f", - "type": 11, - "diamond": "", - "relationship": 30100, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110290", - "purchase": "", - "_item_name": "Hill Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110291", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11130200, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_2_f", - "type": 11, - "diamond": "", - "relationship": 30200, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110291", - "purchase": "", - "_item_name": "Yamada Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110291", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11230200, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_2_f", - "type": 11, - "diamond": "", - "relationship": 30200, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110291", - "purchase": "", - "_item_name": "Yamada Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110291", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11330200, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_2_f", - "type": 11, - "diamond": "", - "relationship": 30200, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110291", - "purchase": "", - "_item_name": "Yamada Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110291", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11430200, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_2_f", - "type": 11, - "diamond": "", - "relationship": 30200, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110291", - "purchase": "", - "_item_name": "Yamada Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110291", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11530200, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_2_f", - "type": 11, - "diamond": "", - "relationship": 30200, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110291", - "purchase": "", - "_item_name": "Yamada Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110291", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11630200, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_2_f", - "type": 11, - "diamond": "", - "relationship": 30200, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110291", - "purchase": "", - "_item_name": "Yamada Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110292", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11130300, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_3_f", - "type": 11, - "diamond": "", - "relationship": 30300, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110292", - "purchase": "", - "_item_name": "Aoi Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110292", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11230300, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_3_f", - "type": 11, - "diamond": "", - "relationship": 30300, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110292", - "purchase": "", - "_item_name": "Aoi Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110292", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11330300, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_3_f", - "type": 11, - "diamond": "", - "relationship": 30300, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110292", - "purchase": "", - "_item_name": "Aoi Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110292", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11430300, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_3_f", - "type": 11, - "diamond": "", - "relationship": 30300, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110292", - "purchase": "", - "_item_name": "Aoi Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110292", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11530300, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_3_f", - "type": 11, - "diamond": "", - "relationship": 30300, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110292", - "purchase": "", - "_item_name": "Aoi Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110292", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11630300, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_3_f", - "type": 11, - "diamond": "", - "relationship": 30300, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110292", - "purchase": "", - "_item_name": "Aoi Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110293", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11130400, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_4_f", - "type": 11, - "diamond": "", - "relationship": 30400, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110293", - "purchase": "", - "_item_name": "Astral Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110293", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11230400, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_4_f", - "type": 11, - "diamond": "", - "relationship": 30400, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110293", - "purchase": "", - "_item_name": "Astral Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110293", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11330400, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_4_f", - "type": 11, - "diamond": "", - "relationship": 30400, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110293", - "purchase": "", - "_item_name": "Astral Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110293", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11430400, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_4_f", - "type": 11, - "diamond": "", - "relationship": 30400, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110293", - "purchase": "", - "_item_name": "Astral Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110293", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11530400, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_4_f", - "type": 11, - "diamond": "", - "relationship": 30400, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110293", - "purchase": "", - "_item_name": "Astral Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110293", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11630400, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_4_f", - "type": 11, - "diamond": "", - "relationship": 30400, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110293", - "purchase": "", - "_item_name": "Astral Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110294", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11130500, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_5_f", - "type": 11, - "diamond": "", - "relationship": 30500, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110294", - "purchase": "", - "_item_name": "Miffy Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110294", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11230500, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_5_f", - "type": 11, - "diamond": "", - "relationship": 30500, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110294", - "purchase": "", - "_item_name": "Miffy Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110294", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11330500, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_5_f", - "type": 11, - "diamond": "", - "relationship": 30500, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110294", - "purchase": "", - "_item_name": "Miffy Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110294", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11430500, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_5_f", - "type": 11, - "diamond": "", - "relationship": 30500, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110294", - "purchase": "", - "_item_name": "Miffy Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110294", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11530500, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_5_f", - "type": 11, - "diamond": "", - "relationship": 30500, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110294", - "purchase": "", - "_item_name": "Miffy Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110294", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11630500, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_5_f", - "type": 11, - "diamond": "", - "relationship": 30500, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110294", - "purchase": "", - "_item_name": "Miffy Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110295", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11130600, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_6_f", - "type": 11, - "diamond": "", - "relationship": 30600, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110295", - "purchase": "", - "_item_name": "Canoe Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110295", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11230600, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_6_f", - "type": 11, - "diamond": "", - "relationship": 30600, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110295", - "purchase": "", - "_item_name": "Canoe Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110295", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11330600, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_6_f", - "type": 11, - "diamond": "", - "relationship": 30600, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110295", - "purchase": "", - "_item_name": "Canoe Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110295", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11430600, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_6_f", - "type": 11, - "diamond": "", - "relationship": 30600, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110295", - "purchase": "", - "_item_name": "Canoe Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110295", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11530600, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_6_f", - "type": 11, - "diamond": "", - "relationship": 30600, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110295", - "purchase": "", - "_item_name": "Canoe Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110295", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11630600, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_6_f", - "type": 11, - "diamond": "", - "relationship": 30600, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110295", - "purchase": "", - "_item_name": "Canoe Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110296", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11130700, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_7_f", - "type": 11, - "diamond": "", - "relationship": 30700, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110296", - "purchase": "", - "_item_name": "Mariana Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110296", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11230700, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_7_f", - "type": 11, - "diamond": "", - "relationship": 30700, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110296", - "purchase": "", - "_item_name": "Mariana Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110296", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11330700, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_7_f", - "type": 11, - "diamond": "", - "relationship": 30700, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110296", - "purchase": "", - "_item_name": "Mariana Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110296", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11430700, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_7_f", - "type": 11, - "diamond": "", - "relationship": 30700, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110296", - "purchase": "", - "_item_name": "Mariana Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110296", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11530700, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_7_f", - "type": 11, - "diamond": "", - "relationship": 30700, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110296", - "purchase": "", - "_item_name": "Mariana Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110296", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11630700, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_7_f", - "type": 11, - "diamond": "", - "relationship": 30700, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110296", - "purchase": "", - "_item_name": "Mariana Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110297", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11130800, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_8_f", - "type": 11, - "diamond": "", - "relationship": 30800, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110297", - "purchase": "", - "_item_name": "Dragonscale Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110297", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11230800, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_8_f", - "type": 11, - "diamond": "", - "relationship": 30800, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110297", - "purchase": "", - "_item_name": "Dragonscale Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110297", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11330800, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_8_f", - "type": 11, - "diamond": "", - "relationship": 30800, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110297", - "purchase": "", - "_item_name": "Dragonscale Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110297", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11430800, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_8_f", - "type": 11, - "diamond": "", - "relationship": 30800, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110297", - "purchase": "", - "_item_name": "Dragonscale Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110297", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11530800, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_8_f", - "type": 11, - "diamond": "", - "relationship": 30800, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110297", - "purchase": "", - "_item_name": "Dragonscale Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110297", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11630800, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_8_f", - "type": 11, - "diamond": "", - "relationship": 30800, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110297", - "purchase": "", - "_item_name": "Dragonscale Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110298", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11130900, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_9_f", - "type": 11, - "diamond": "", - "relationship": 30900, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110298", - "purchase": "", - "_item_name": "Lazar Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110298", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11230900, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_9_f", - "type": 11, - "diamond": "", - "relationship": 30900, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110298", - "purchase": "", - "_item_name": "Lazar Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110298", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11330900, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_9_f", - "type": 11, - "diamond": "", - "relationship": 30900, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110298", - "purchase": "", - "_item_name": "Lazar Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110298", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11430900, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_9_f", - "type": 11, - "diamond": "", - "relationship": 30900, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110298", - "purchase": "", - "_item_name": "Lazar Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110298", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11530900, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_9_f", - "type": 11, - "diamond": "", - "relationship": 30900, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110298", - "purchase": "", - "_item_name": "Lazar Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110298", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11630900, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_9_f", - "type": 11, - "diamond": "", - "relationship": 30900, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110298", - "purchase": "", - "_item_name": "Lazar Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110299", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11131000, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_10_f", - "type": 11, - "diamond": "", - "relationship": 31000, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110299", - "purchase": "", - "_item_name": "Kurosawa Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110299", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11231000, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_10_f", - "type": 11, - "diamond": "", - "relationship": 31000, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110299", - "purchase": "", - "_item_name": "Kurosawa Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110299", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11331000, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_10_f", - "type": 11, - "diamond": "", - "relationship": 31000, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110299", - "purchase": "", - "_item_name": "Kurosawa Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110299", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11431000, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_10_f", - "type": 11, - "diamond": "", - "relationship": 31000, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110299", - "purchase": "", - "_item_name": "Kurosawa Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110299", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11531000, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_10_f", - "type": 11, - "diamond": "", - "relationship": 31000, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110299", - "purchase": "", - "_item_name": "Kurosawa Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_110299", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11631000, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_27", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/head_10_f", - "type": 11, - "diamond": "", - "relationship": 31000, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 1, - "name": "item_name_110299", - "purchase": "", - "_item_name": "Kurosawa Piece", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213001, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip101_f", - "type": 11, - "diamond": "", - "relationship": 130001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130001", - "purchase": "", - "_item_name": "Brutal force", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213002, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip101_f", - "type": 11, - "diamond": "", - "relationship": 130001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130001", - "purchase": "", - "_item_name": "Brutal force", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213003, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip101_f", - "type": 11, - "diamond": "", - "relationship": 130001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130001", - "purchase": "", - "_item_name": "Brutal force", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213004, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip101_f", - "type": 11, - "diamond": "", - "relationship": 130001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130001", - "purchase": "", - "_item_name": "Brutal force", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213005, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip101_f", - "type": 11, - "diamond": "", - "relationship": 130001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130001", - "purchase": "", - "_item_name": "Brutal force", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130001", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213006, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip101_f", - "type": 11, - "diamond": "", - "relationship": 130001, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130001", - "purchase": "", - "_item_name": "Brutal force", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213007, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip102_f", - "type": 11, - "diamond": "", - "relationship": 130002, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130002", - "purchase": "", - "_item_name": "Sniper eye", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213008, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip102_f", - "type": 11, - "diamond": "", - "relationship": 130002, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130002", - "purchase": "", - "_item_name": "Sniper eye", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213009, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip102_f", - "type": 11, - "diamond": "", - "relationship": 130002, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130002", - "purchase": "", - "_item_name": "Sniper eye", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213010, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip102_f", - "type": 11, - "diamond": "", - "relationship": 130002, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130002", - "purchase": "", - "_item_name": "Sniper eye", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213011, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip102_f", - "type": 11, - "diamond": "", - "relationship": 130002, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130002", - "purchase": "", - "_item_name": "Sniper eye", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130002", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213012, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip102_f", - "type": 11, - "diamond": "", - "relationship": 130002, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130002", - "purchase": "", - "_item_name": "Sniper eye", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213013, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip103_f", - "type": 11, - "diamond": "", - "relationship": 130003, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130003", - "purchase": "", - "_item_name": "Vampirism", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213014, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip103_f", - "type": 11, - "diamond": "", - "relationship": 130003, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130003", - "purchase": "", - "_item_name": "Vampirism", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213015, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip103_f", - "type": 11, - "diamond": "", - "relationship": 130003, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130003", - "purchase": "", - "_item_name": "Vampirism", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213016, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip103_f", - "type": 11, - "diamond": "", - "relationship": 130003, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130003", - "purchase": "", - "_item_name": "Vampirism", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213017, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip103_f", - "type": 11, - "diamond": "", - "relationship": 130003, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130003", - "purchase": "", - "_item_name": "Vampirism", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130003", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213018, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip103_f", - "type": 11, - "diamond": "", - "relationship": 130003, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130003", - "purchase": "", - "_item_name": "Vampirism", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213019, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip104_f", - "type": 11, - "diamond": "", - "relationship": 130004, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130004", - "purchase": "", - "_item_name": "Cold blood ", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213020, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip104_f", - "type": 11, - "diamond": "", - "relationship": 130004, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130004", - "purchase": "", - "_item_name": "Cold blood ", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213021, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip104_f", - "type": 11, - "diamond": "", - "relationship": 130004, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130004", - "purchase": "", - "_item_name": "Cold blood ", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213022, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip104_f", - "type": 11, - "diamond": "", - "relationship": 130004, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130004", - "purchase": "", - "_item_name": "Cold blood ", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213023, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip104_f", - "type": 11, - "diamond": "", - "relationship": 130004, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130004", - "purchase": "", - "_item_name": "Cold blood ", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130004", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213024, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip104_f", - "type": 11, - "diamond": "", - "relationship": 130004, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130004", - "purchase": "", - "_item_name": "Cold blood ", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130011", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213025, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip201_f", - "type": 11, - "diamond": "", - "relationship": 130011, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130011", - "purchase": "", - "_item_name": "Fast resume", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130011", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213026, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip201_f", - "type": 11, - "diamond": "", - "relationship": 130011, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130011", - "purchase": "", - "_item_name": "Fast resume", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130011", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213027, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip201_f", - "type": 11, - "diamond": "", - "relationship": 130011, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130011", - "purchase": "", - "_item_name": "Fast resume", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130011", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213028, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip201_f", - "type": 11, - "diamond": "", - "relationship": 130011, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130011", - "purchase": "", - "_item_name": "Fast resume", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130011", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213029, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip201_f", - "type": 11, - "diamond": "", - "relationship": 130011, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130011", - "purchase": "", - "_item_name": "Fast resume", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130011", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213030, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip201_f", - "type": 11, - "diamond": "", - "relationship": 130011, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130011", - "purchase": "", - "_item_name": "Fast resume", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130012", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213031, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip202_f", - "type": 11, - "diamond": "", - "relationship": 130012, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130012", - "purchase": "", - "_item_name": "Vision", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130012", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213032, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip202_f", - "type": 11, - "diamond": "", - "relationship": 130012, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130012", - "purchase": "", - "_item_name": "Vision", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130012", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213033, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip202_f", - "type": 11, - "diamond": "", - "relationship": 130012, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130012", - "purchase": "", - "_item_name": "Vision", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130012", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213034, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip202_f", - "type": 11, - "diamond": "", - "relationship": 130012, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130012", - "purchase": "", - "_item_name": "Vision", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130012", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213035, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip202_f", - "type": 11, - "diamond": "", - "relationship": 130012, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130012", - "purchase": "", - "_item_name": "Vision", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130012", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213036, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip202_f", - "type": 11, - "diamond": "", - "relationship": 130012, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130012", - "purchase": "", - "_item_name": "Vision", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130013", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213037, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip203_f", - "type": 11, - "diamond": "", - "relationship": 130013, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130013", - "purchase": "", - "_item_name": "Speed rescue", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130013", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213038, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip203_f", - "type": 11, - "diamond": "", - "relationship": 130013, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130013", - "purchase": "", - "_item_name": "Speed rescue", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130013", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213039, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip203_f", - "type": 11, - "diamond": "", - "relationship": 130013, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130013", - "purchase": "", - "_item_name": "Speed rescue", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130013", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213040, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip203_f", - "type": 11, - "diamond": "", - "relationship": 130013, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130013", - "purchase": "", - "_item_name": "Speed rescue", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130013", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213041, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip203_f", - "type": 11, - "diamond": "", - "relationship": 130013, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130013", - "purchase": "", - "_item_name": "Speed rescue", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130013", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213042, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip203_f", - "type": 11, - "diamond": "", - "relationship": 130013, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130013", - "purchase": "", - "_item_name": "Speed rescue", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130014", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213043, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip204_f", - "type": 11, - "diamond": "", - "relationship": 130014, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130014", - "purchase": "", - "_item_name": "Drug effect", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130014", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213044, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip204_f", - "type": 11, - "diamond": "", - "relationship": 130014, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130014", - "purchase": "", - "_item_name": "Drug effect", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130014", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213045, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip204_f", - "type": 11, - "diamond": "", - "relationship": 130014, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130014", - "purchase": "", - "_item_name": "Drug effect", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130014", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213046, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip204_f", - "type": 11, - "diamond": "", - "relationship": 130014, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130014", - "purchase": "", - "_item_name": "Drug effect", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130014", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213047, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip204_f", - "type": 11, - "diamond": "", - "relationship": 130014, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130014", - "purchase": "", - "_item_name": "Drug effect", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130014", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213048, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip204_f", - "type": 11, - "diamond": "", - "relationship": 130014, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130014", - "purchase": "", - "_item_name": "Drug effect", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130021", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213049, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip301_f", - "type": 11, - "diamond": "", - "relationship": 130021, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130021", - "purchase": "", - "_item_name": "Life source", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130021", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213050, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip301_f", - "type": 11, - "diamond": "", - "relationship": 130021, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130021", - "purchase": "", - "_item_name": "Life source", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130021", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213051, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip301_f", - "type": 11, - "diamond": "", - "relationship": 130021, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130021", - "purchase": "", - "_item_name": "Life source", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130021", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213052, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip301_f", - "type": 11, - "diamond": "", - "relationship": 130021, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130021", - "purchase": "", - "_item_name": "Life source", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130021", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213053, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip301_f", - "type": 11, - "diamond": "", - "relationship": 130021, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130021", - "purchase": "", - "_item_name": "Life source", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130021", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213054, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip301_f", - "type": 11, - "diamond": "", - "relationship": 130021, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130021", - "purchase": "", - "_item_name": "Life source", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130022", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213055, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip302_f", - "type": 11, - "diamond": "", - "relationship": 130022, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130022", - "purchase": "", - "_item_name": "Original guard", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130022", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213056, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip302_f", - "type": 11, - "diamond": "", - "relationship": 130022, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130022", - "purchase": "", - "_item_name": "Original guard", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130022", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213057, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip302_f", - "type": 11, - "diamond": "", - "relationship": 130022, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130022", - "purchase": "", - "_item_name": "Original guard", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130022", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213058, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip302_f", - "type": 11, - "diamond": "", - "relationship": 130022, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130022", - "purchase": "", - "_item_name": "Original guard", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130022", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213059, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip302_f", - "type": 11, - "diamond": "", - "relationship": 130022, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130022", - "purchase": "", - "_item_name": "Original guard", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130022", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213060, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip302_f", - "type": 11, - "diamond": "", - "relationship": 130022, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130022", - "purchase": "", - "_item_name": "Original guard", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130023", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213061, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip303_f", - "type": 11, - "diamond": "", - "relationship": 130023, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130023", - "purchase": "", - "_item_name": "Solid shell", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130023", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213062, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip303_f", - "type": 11, - "diamond": "", - "relationship": 130023, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130023", - "purchase": "", - "_item_name": "Solid shell", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130023", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213063, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip303_f", - "type": 11, - "diamond": "", - "relationship": 130023, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130023", - "purchase": "", - "_item_name": "Solid shell", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130023", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213064, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip303_f", - "type": 11, - "diamond": "", - "relationship": 130023, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130023", - "purchase": "", - "_item_name": "Solid shell", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130023", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213065, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip303_f", - "type": 11, - "diamond": "", - "relationship": 130023, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130023", - "purchase": "", - "_item_name": "Solid shell", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130023", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213066, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip303_f", - "type": 11, - "diamond": "", - "relationship": 130023, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130023", - "purchase": "", - "_item_name": "Solid shell", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130024", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 1, - "id": 11213067, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip304_f", - "type": 11, - "diamond": "", - "relationship": 130024, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130024", - "purchase": "", - "_item_name": "Original life", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130024", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 2, - "id": 11213068, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip304_f", - "type": 11, - "diamond": "", - "relationship": 130024, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130024", - "purchase": "", - "_item_name": "Original life", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130024", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 3, - "id": 11213069, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip304_f", - "type": 11, - "diamond": "", - "relationship": 130024, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130024", - "purchase": "", - "_item_name": "Original life", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130024", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 4, - "id": 11213070, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip304_f", - "type": 11, - "diamond": "", - "relationship": 130024, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130024", - "purchase": "", - "_item_name": "Original life", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130024", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11213071, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip304_f", - "type": 11, - "diamond": "", - "relationship": 130024, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130024", - "purchase": "", - "_item_name": "Original life", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_desc_130024", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11213072, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/chip304_f", - "type": 11, - "diamond": "", - "relationship": 130024, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 2, - "name": "item_name_130024", - "purchase": "", - "_item_name": "Original life", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 30, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_name_10017", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 5, - "id": 11510017, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/Coin_icon_10000", - "type": 11, - "diamond": "", - "relationship": 10017, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_10017", - "purchase": "", - "_item_name": "\u91d1\u5e01\u5408\u6210\u7528\uff08\u4e00\u5806\u91d1\u5e01\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 10000, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "item_name_10018", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": 6, - "id": 11610018, - "buy_cond": "", - "use": 1, - "buy_gift": "", - "type_desc": "type_desc_28", - "playerid": "", - "bag_type": "", - "bag_handle_type": 5, - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "fragment/Coin_icon_100000", - "type": 11, - "diamond": "", - "relationship": 10018, - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": 3, - "name": "item_name_10018", - "purchase": "", - "_item_name": "\u91d1\u5e01\u5408\u6210\u7528\uff08\u91d1\u7816\uff09", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": 100000, - "init_durability": "", - "loot": "", - "jump_to": "UIFragmentSynthesisCtrl" - }, - { - "hero_head": "", - "des": "", - "init_tili": "", - "tab": "", - "gold": "", - "evaluate_title": "", - "chest_open": "", - "discount_begin": "", - "use_value": "", - "evaluate_ability": "", - "evaluate_icon": "", - "quality": "", - "id": 30000001, - "buy_cond": "", - "use": "", - "buy_gift": "", - "type_desc": "", - "playerid": "", - "bag_type": "", - "bag_handle_type": "", - "normal_gift": "", - "sell_price": "", - "cannot_stack": "", - "isdefaultskin": "", - "icon": "", - "type": 30, - "diamond": "", - "relationship": "", - "discount_end": "", - "chain_type": "", - "nft_des": "", - "getway": "", - "discount": "", - "skinid": "", - "use_cost": "", - "sub_type": "", - "name": "", - "purchase": "", - "_item_name": "", - "limit_num": "", - "chest_open_effects": "", - "spine": "", - "include_item_id": "", - "drop": "", - "limit_type": "", - "takeout": "", - "batch_use": "", - "param1": "", - "init_durability": "", - "loot": "", - "jump_to": "" - } -] \ No newline at end of file diff --git a/bin/payserver/res/language@language.json b/bin/payserver/res/language@language.json deleted file mode 100644 index 210fcb5..0000000 --- a/bin/payserver/res/language@language.json +++ /dev/null @@ -1,17150 +0,0 @@ -[ - { - "info": "language", - "zh-hk": "\u4e2d\u6587(\u7e41\u4f53)", - "en": "English", - "id": "Indonesia" - }, - { - "info": "GAME_NAME", - "zh-hk": "CounterFire", - "en": "CounterFire", - "id": "CounterFire" - }, - { - "info": "COMMON_COMMING_SOOE", - "zh-hk": "", - "en": "Coming Soon", - "id": "Coming Soon" - }, - { - "info": "COMMON_MINT_AN_NFT", - "zh-hk": "", - "en": "Mint an NFT", - "id": "Mint an NFT" - }, - { - "info": "UI_MAIN_WORLD_EVENT_LABEL_4V4", - "zh-hk": "", - "en": "4V4", - "id": "" - }, - { - "info": "UI_MAIN_WORLD_EVENT_LABEL_GOAL", - "zh-hk": "", - "en": "Goal {0}", - "id": "" - }, - { - "info": "UI_MAIN_WORLD_EVENT_LABEL_CHICKEN", - "zh-hk": "", - "en": "Chicken dinner", - "id": "" - }, - { - "info": "UI_MAIN_WORLD_EVENT_LABEL_TIME_TIME", - "zh-hk": "", - "en": "{0}:{1}:{2}", - "id": "" - }, - { - "info": "UI_MAIN_WORLD_EVENT_LABEL_TIME_DAY", - "zh-hk": "", - "en": "{0} days", - "id": "" - }, - { - "info": "UI_MAIN_LABEL_WORLD_EVENT_PREPARING", - "zh-hk": "", - "en": "Treasure Chest Preparing", - "id": "" - }, - { - "info": "UI_MAIN_LABEL_WORLD_EVENT_CHICKEN", - "zh-hk": "", - "en": "Chicken dinner {0}%", - "id": "" - }, - { - "info": "UI_MAIN_LABEL_WORLD_EVENT_4V4", - "zh-hk": "", - "en": "4V4 {0}%", - "id": "" - }, - { - "info": "UI_MAIN_LABEL_WORLD_EVENT_TIME_TIME", - "zh-hk": "", - "en": "{0}:{1}:{2}", - "id": "" - }, - { - "info": "UI_MAIN_LABEL_WORLD_EVENT_TIME_DAY", - "zh-hk": "", - "en": "{0} days", - "id": "" - }, - { - "info": "UI_MAIN_LABEL_WORLD_EVENT_DROPPING", - "zh-hk": "", - "en": "Chest Dropping", - "id": "" - }, - { - "info": "UI_MAIN_BTN_GROWTH_REWARDS", - "zh-hk": "", - "en": "Growth Rewards", - "id": "Hadiah Pertumbuhan" - }, - { - "info": "UI_MAIN_BTN_PENDING", - "zh-hk": "", - "en": "Transactions", - "id": "Transaksi" - }, - { - "info": "UI_MAIN_BTN_BATTLE_PASS", - "zh-hk": "", - "en": "Battle Pass", - "id": "Pas Pertempuran" - }, - { - "info": "UI_MAIN_BTN_MISSION", - "zh-hk": "", - "en": "Mission", - "id": "Mission" - }, - { - "info": "UI_MAIN_BTN_DAYS_GIFT", - "zh-hk": "", - "en": "7day Gift", - "id": "Hadiah 7 hari" - }, - { - "info": "UI_MAIN_BTN_TOP_UP", - "zh-hk": "", - "en": "Top Up", - "id": "Top Up" - }, - { - "info": "UI_MAIN_BTN_TAP_TO_CHANGE", - "zh-hk": "", - "en": "Tap to change", - "id": "Tap to change" - }, - { - "info": "UI_MAIN_BTN_FAQ", - "zh-hk": "", - "en": "FAQ", - "id": "FAQ" - }, - { - "info": "UI_MAIN_BTN_SETTING", - "zh-hk": "", - "en": "Settings", - "id": "Settings" - }, - { - "info": "UI_MAIN_BTN_DELETE_ACCOUNT", - "zh-hk": "", - "en": "Delete Account", - "id": "Delete Account" - }, - { - "info": "UI_MAIN_BTN_MAIL", - "zh-hk": "", - "en": "Mail", - "id": "Mail" - }, - { - "info": "UI_MAIN_BTN_WALLET", - "zh-hk": "", - "en": "Wallet", - "id": "Dompet" - }, - { - "info": "UI_MAIN_BTN_MARKET", - "zh-hk": "", - "en": "Market", - "id": "Market" - }, - { - "info": "UI_MAIN_BTN_FAUCET", - "zh-hk": "", - "en": "Faucet", - "id": "Faucet" - }, - { - "info": "UI_MAIN_BTN_EVENT", - "zh-hk": "", - "en": "Events", - "id": "Event" - }, - { - "info": "UI_MAIN_BTN_RANK", - "zh-hk": "", - "en": "Ranked", - "id": "Peringkat" - }, - { - "info": "UI_MAIN_BTN_PVE_RAID", - "zh-hk": "", - "en": "PVE RAID", - "id": "SERANGAN PVE" - }, - { - "info": "UI_MAIN_BTN_PVP_MATCH", - "zh-hk": "", - "en": "PVP MATCH", - "id": "PENCOCOKAN PVP" - }, - { - "info": "UI_MAIN_BTN_PVP_RANK", - "zh-hk": "", - "en": "PVP RANKED", - "id": "PERINGKAT PVP" - }, - { - "info": "UI_MAIN_BTN_MODE_RAID", - "zh-hk": "", - "en": "RAID", - "id": "SERANGAN" - }, - { - "info": "UI_MAIN_BTN_MODE_MATCH", - "zh-hk": "", - "en": "MATCH", - "id": "PENCOCOKAN" - }, - { - "info": "UI_MAIN_BTN_MODE_RANK", - "zh-hk": "", - "en": "RANKED", - "id": "PERINGKAT" - }, - { - "info": "UI_MAIN_BTN_START", - "zh-hk": "", - "en": "Start Game", - "id": "Mulai" - }, - { - "info": "UI_MAIN_BTN_TO_TEAM", - "zh-hk": "Team", - "en": "Team", - "id": "UI_MAIN_BTN_TO_TEAM" - }, - { - "info": "UI_MAIN_BTN_HERO", - "zh-hk": "", - "en": "Heroes", - "id": "Hero" - }, - { - "info": "UI_MAIN_BTN_EQUIP", - "zh-hk": "", - "en": "Equipment", - "id": "Equipment" - }, - { - "info": "UI_MAIN_BTN_CHIP", - "zh-hk": "", - "en": "Chip", - "id": "Chip" - }, - { - "info": "UI_MAIN_BTN_FRAGMENT", - "zh-hk": "", - "en": "Piece", - "id": "Fragmen" - }, - { - "info": "UI_MAIN_BTN_PREPARE", - "zh-hk": "", - "en": "Preparation", - "id": "Persiapan" - }, - { - "info": "UI_MAIN_BTN_FORCE", - "zh-hk": "", - "en": "Club", - "id": "Club" - }, - { - "info": "UI_MAIN_BTN_SHOP", - "zh-hk": "", - "en": "Store", - "id": "Toko" - }, - { - "info": "UI_MAIN_BTN_BAG", - "zh-hk": "", - "en": "Warehouse", - "id": "Warehouse" - }, - { - "info": "UI_MAIN_BTN_HASH_RATE", - "zh-hk": "", - "en": "HashRate", - "id": "HashRate" - }, - { - "info": "UI_MAIN_BTN_STAKING", - "zh-hk": "", - "en": "Staking", - "id": "Staking" - }, - { - "info": "UI_MAIN_BTN_FRIEND", - "zh-hk": "", - "en": "Friend", - "id": "Teman" - }, - { - "info": "UI_MAIN_BTN_QUEST", - "zh-hk": "", - "en": "Mission", - "id": "Misi" - }, - { - "info": "UI_MOBA_MATCH_COMPLETE_TITLE_MATCHING_COMPLETE", - "zh-hk": "", - "en": "Match complete", - "id": "Match complete" - }, - { - "info": "UI_MOBA_MATCH_COMPLETE_TITLE_COUNTDOWN", - "zh-hk": "", - "en": "{0} m: {1} s", - "id": "{0} m: {1} s" - }, - { - "info": "UI_MOBA_MATCH_COMPLETE_LABEL_MY_TEAM", - "zh-hk": "", - "en": "My Team", - "id": "My Team" - }, - { - "info": "UI_MOBA_MATCH_COMPLETE_LABEL_ENEMY_TEAM", - "zh-hk": "", - "en": "Enemy Team", - "id": "Enemy Team" - }, - { - "info": "UI_MOBA_MATCH_COUNTDOWN_TITLE_MATCHING_PLAYER", - "zh-hk": "", - "en": "Matching player", - "id": "Matching player" - }, - { - "info": "UI_MOBA_MATCH_COUNTDOWN_LABEL_FOUND_PLAYER_COUNT", - "zh-hk": "", - "en": "Player {0}/{1} has been found", - "id": "Player {0}/{1} has been found" - }, - { - "info": "UI_MAIN_SUB_MATCH_BTN_READY", - "zh-hk": "", - "en": "Ready", - "id": "Ready" - }, - { - "info": "UI_MAIN_SUB_MATCH_BTN_CANCEL_READY", - "zh-hk": "", - "en": "Cancel", - "id": "Cancel" - }, - { - "info": "UI_MAIN_SUB_MATCH_TIP_KICK_OUT", - "zh-hk": "", - "en": "Be kicked out of the squad", - "id": "Be kicked out of the team" - }, - { - "info": "UI_MAIN_SUB_MATCH_TIP_TEAM_EXPIRATION", - "zh-hk": "", - "en": "Team Expiration", - "id": "Team Expiration" - }, - { - "info": "UI_MAIN_SUB_MATCH_TIP_INVITATION_SUCCESS", - "zh-hk": "", - "en": "Invited Successfully", - "id": "Invitation Success" - }, - { - "info": "UI_TEAM_TITLE", - "zh-hk": "\u7ec4\u961f", - "en": "Squad", - "id": "Squad" - }, - { - "info": "UI_TEAM_FORMATE_LOCAL_PLAYER_HERO_LEVEL", - "zh-hk": "", - "en": "Lv.{0}", - "id": "Lv.{0}" - }, - { - "info": "UI_TEAM_LABEL_AT_READY", - "zh-hk": "\u51c6\u5907\u5c31\u7eea", - "en": "Ready", - "id": "Ready" - }, - { - "info": "UI_TEAM_LABEL_TEAM_UP_IN_THE_CHAT_CHANNEL", - "zh-hk": "", - "en": "Send invitation in chat channel", - "id": "Send invitation in chat channel" - }, - { - "info": "UI_TEAM_BTN_READY", - "zh-hk": "\u51c6\u5907", - "en": "READY", - "id": "READY" - }, - { - "info": "UI_TEAM_BTN_CANCEL_READY", - "zh-hk": "", - "en": "CANCEL", - "id": "CANCEL" - }, - { - "info": "UI_TEAM_BTN_DISBAND", - "zh-hk": "\u89e3\u6563\u5c0f\u961f", - "en": "DISBAND", - "id": "DISBAND" - }, - { - "info": "UI_TEAM_BTN_START_GAME", - "zh-hk": "", - "en": "START GAME", - "id": "START GAME" - }, - { - "info": "UI_TEAM_FORMATE_TEAMMATE_HERO_LEVEL", - "zh-hk": "", - "en": "LV {0}", - "id": "LV {0}" - }, - { - "info": "UI_TEAM_LABEL_TEAMMATE_OPERATION_VIEW_PROFILE", - "zh-hk": "", - "en": "View Profile", - "id": "View Profile" - }, - { - "info": "UI_TEAM_LABEL_TEAMMATE_OPERATION_TRANSTER_TEAM", - "zh-hk": "", - "en": "Transfer Squad", - "id": "Transfer Squad" - }, - { - "info": "UI_TEAM_LABEL_TEAMMATE_OPERATION_ALLOWED_INVITATIONS", - "zh-hk": "", - "en": "Allowed Invitations", - "id": "Allowed Invitations" - }, - { - "info": "UI_TEAM_LABEL_TEAMMATE_OPERATION_KICK_OUT", - "zh-hk": "", - "en": "Kick out", - "id": "Kick out" - }, - { - "info": "UI_TEAM_LABEL_GAME_MODE_CUSTOM_ROOM", - "zh-hk": "", - "en": "Mode: Mega Match", - "id": "Mode: Mega Match" - }, - { - "info": "UI_TEAM_LABEL_GAME_MODE_MOBA", - "zh-hk": "", - "en": "Mode: Moba", - "id": "Mode: Moba" - }, - { - "info": "UI_TEAM_LABEL_GAME_MODE_MATCH", - "zh-hk": "", - "en": "Mode: Match", - "id": "Mode: Match" - }, - { - "info": "UI_TEAM_LABEL_GAME_MODE_RANK", - "zh-hk": "", - "en": "Mode: Rank", - "id": "Mode: Rank" - }, - { - "info": "UI_TEAM_INVITATION_LABEL_NO_FRIEND", - "zh-hk": "", - "en": "There is no one to invite", - "id": "There is no one to invite" - }, - { - "info": "UI_TEAM_TIPS_TEAM_DICBANDED", - "zh-hk": "", - "en": "The squad has been disbanded", - "id": "The squad has been disbanded" - }, - { - "info": "UI_TEAM_TIPS_YOU_HAVE_BEEN_KICKED_OUT", - "zh-hk": "", - "en": "You have been kicked out of the squad", - "id": "You have been kicked out of the squad" - }, - { - "info": "UI_TEAM_TIPS_YOU_CANT_INVITE", - "zh-hk": "", - "en": "You don't have been invited, do you want to apply?", - "id": "You don't have been invited, do you want to apply?" - }, - { - "info": "UI_TEAM_TIPS_YOU_ARE_ALREADY_IN_A_TEAM", - "zh-hk": "", - "en": "You have been ready in a squad", - "id": "You have been ready in a squad" - }, - { - "info": "UI_TEAM_INVITATION_LABEL_ONLINE", - "zh-hk": "", - "en": "Online", - "id": "Online" - }, - { - "info": "UI_TEAM_INVITATION_LABEL_OFFLINE", - "zh-hk": "", - "en": "Offline", - "id": "Offline" - }, - { - "info": "UI_TEAM_TIPS_CONFIRM_TO_LEAVE", - "zh-hk": "", - "en": "Are you confirmed to leave the squad?", - "id": "Are you confirmed to leave the squad?" - }, - { - "info": "UI_TEAM_BTN_CANCEL_MATCH", - "zh-hk": "", - "en": "CANCEL", - "id": "CANCEL" - }, - { - "info": "UI_TEAM_LABEL_MATCHING", - "zh-hk": "", - "en": "Matching\u2026", - "id": "Matching\u2026" - }, - { - "info": "UI_TEAM_LABEL_MATCH_COMPLETE", - "zh-hk": "", - "en": "Match Complete", - "id": "Match Complete" - }, - { - "info": "UI_TEAM_LABEL_AT_FIGHTING", - "zh-hk": "", - "en": "Fighting", - "id": "Fighting" - }, - { - "info": "UI_TEAM_LABEL_AT_SETTLEMENT", - "zh-hk": "", - "en": "Settlement", - "id": "Settlement" - }, - { - "info": "UI_TEAMING_TIPS_LABEL_TEAMING_UP", - "zh-hk": "", - "en": "Teaming up", - "id": "Teaming up" - }, - { - "info": "UI_TEAMING_TIPS_MATCHING", - "zh-hk": "", - "en": "Matching", - "id": "Matching" - }, - { - "info": "UI_TEAMING_TIPS_START", - "zh-hk": "", - "en": "Game Start {0}s", - "id": "Game Start {0}s" - }, - { - "info": "UI_TEAM_INTERVAL_LABEL_STATUS_FREE", - "zh-hk": "", - "en": "Free", - "id": "Free" - }, - { - "info": "UI_TEAM_INTERVAL_LABEL_STATUS_BATTLING", - "zh-hk": "", - "en": "Battling", - "id": "Battling" - }, - { - "info": "UI_TEAM_INTERVAL_LABEL_STATUS_OFFLINE", - "zh-hk": "", - "en": "Offline", - "id": "Offline" - }, - { - "info": "UI_TEAM_INTERVAL_BTN_INVATE", - "zh-hk": "", - "en": "Invate", - "id": "Invate" - }, - { - "info": "UI_TEAM_INTERVAL_INVATE_LABEL_TYPE_FRIENDS", - "zh-hk": "", - "en": "Friends", - "id": "Friends" - }, - { - "info": "UI_TEAM_INTERVAL_INVATE_LABEL_TYPE_RECOMMENDED", - "zh-hk": "", - "en": "Recommended", - "id": "Recommended" - }, - { - "info": "UI_TEAM_INTERVAL_INVATE_LABEL_TYPE_RECENT_GAMES", - "zh-hk": "", - "en": "Recent Games", - "id": "Recent Games" - }, - { - "info": "UI_TEAM_INTERVAL_INVATE_LABEL_TYPE_ALL", - "zh-hk": "", - "en": "All", - "id": "All" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_TITLE", - "zh-hk": "", - "en": "Team building", - "id": "Team building" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LABEL_WAIT_FOR_MORE_SQUADS_SQUAD", - "zh-hk": "", - "en": "Waiting for more squads\u2026", - "id": "Waiting for more squads\u2026" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LABEL_WAIT_FOR_START_SQUAD", - "zh-hk": "", - "en": "Waiting for the Match Manager to start game.", - "id": "Waiting for the Match Manager to start game." - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LABEL_STARTING_SQUAD", - "zh-hk": "", - "en": "Match is full, now game is starting\u2026 {0}", - "id": "Match is full, now game is starting\u2026 {0}" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LABEL_WAIT_FOR_MORE_SQUADS_MANAGER", - "zh-hk": "", - "en": "Waiting for more squads\u2026", - "id": "Waiting for more squads\u2026" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LABEL_WAIT_FOR_START_MANAGER", - "zh-hk": "", - "en": "You can start the game now.", - "id": "You can start the game now." - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LABEL_STARTING_MANAGER", - "zh-hk": "", - "en": "Match is full, now game is starting\u2026 {0}", - "id": "Match is full, now game is starting\u2026 {0}" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LABEL_BATTLE_SQUADS", - "zh-hk": "", - "en": "Battle Squads", - "id": "Battle Squads" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LABEL_OBSERVER_SQUAD", - "zh-hk": "", - "en": "Observer Squad", - "id": "Observer Squad" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_BTN_START", - "zh-hk": "", - "en": "Start", - "id": "Start" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_TIP_SURE_TO_EXIT", - "zh-hk": "", - "en": "Sure to exit?", - "id": "Sure to exit?" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LABEL_NO_ROOMS_NOW", - "zh-hk": "", - "en": "NO\u00a0ROOMS\u00a0NOW", - "id": "NO\u00a0ROOMS\u00a0NOW" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LIST_CARD_TITLE", - "zh-hk": "", - "en": "Mega Match", - "id": "Mega Match" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LIST_CARD_TAB_CREATE", - "zh-hk": "", - "en": "Create", - "id": "Create" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LIST_CARD_TAB_JOIN", - "zh-hk": "", - "en": "Join", - "id": "Join" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LIST_CARD_BTN_JOIN", - "zh-hk": "", - "en": "Join", - "id": "Join" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LIST_CARD_BTN_WATCH", - "zh-hk": "", - "en": "Spectate", - "id": "Spectate" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LIST_CARD_BTN_JOIN_TARGET", - "zh-hk": "", - "en": "JOIN", - "id": "JOIN" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LIST_CARD_LABEL_SET_PASSWORD", - "zh-hk": "", - "en": "Set Password", - "id": "Set Password" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LIST_CARD_BTN_CREATE_MEGA_MATCH", - "zh-hk": "", - "en": "CREATE MEGA MATCH", - "id": "CREATE MEGA MATCH" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_INPUT_INPUT_THE_MATCH_ID", - "zh-hk": "", - "en": "Input the Match ID", - "id": "Input the Match ID" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_LABEL_ID_TITLE", - "zh-hk": "", - "en": "ID", - "id": "ID" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_INPUT_INPUT_OASSWORD_HEAR", - "zh-hk": "", - "en": "Input\u00a0password\u00a0here", - "id": "Input\u00a0password\u00a0here" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_TIP_ROOM_DISBANDED", - "zh-hk": "", - "en": "Room disbanded", - "id": "Room disbanded" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_TIP_ROOM_LEFT", - "zh-hk": "", - "en": "Has left the room", - "id": "Has left the room" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_TIP_KICK_OUT_TEAM", - "zh-hk": "", - "en": "Kick out the squad?", - "id": "Kick out the squad?" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_TIP_ROOM_NOT_FOUND", - "zh-hk": "", - "en": "Room not found", - "id": "Room not found" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_TITLE_INPUT_PASSWORD", - "zh-hk": "", - "en": "Need password", - "id": "Need password" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_TIP_ENTER_PASSWORD_INPUT", - "zh-hk": "", - "en": "Tap to enter password", - "id": "Tap to enter password" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_TIP_YOU_HAVE_BEEN_KICK_OUT", - "zh-hk": "", - "en": "You have been kicked out", - "id": "You have been kicked out" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_TIP_PLEASE_ENTER_ROOM_ID", - "zh-hk": "", - "en": "Please enter the room ID", - "id": "Please enter the room ID" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_SHARE_CARD_TITLE", - "zh-hk": "", - "en": "Share Match Info", - "id": "Share Match Info" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_SHARE_CARD_LABEL_ROOM_ID", - "zh-hk": "", - "en": "Match ID:", - "id": "Match ID:" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_SHARE_CARD_LABEL_PASSWORD", - "zh-hk": "", - "en": "Password:", - "id": "Password:" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_SHARE_CARD_BTN_COPY", - "zh-hk": "", - "en": "COPY", - "id": "COPY" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_SHARE_CARD_LABEL_COPY_FINISHED", - "zh-hk": "", - "en": "Copy finished!", - "id": "Copy finished!" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_TEAM_HAS_INTO_CUSTOM_ROOM", - "zh-hk": "", - "en": "The squad is battling now. The invitation is invalid.", - "id": "The squad is battling now. The invitation is invalid." - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_BTN_SPECTATE", - "zh-hk": "", - "en": "SPECTATE", - "id": "SPECTATE" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_WATCH_LIST_TITLE", - "zh-hk": "", - "en": "Spectate", - "id": "Spectate" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_WATCH_LIST_LABEL_TEAM_NUMBER", - "zh-hk": "", - "en": "Team{0}", - "id": "Team{0}" - }, - { - "info": "UI_CUSTOM_BATTLE_ROOM_WATCH_LIST_BTN_UNSPECTATE", - "zh-hk": "", - "en": "Unspectate", - "id": "Unspectate" - }, - { - "info": "UI_MAIN_DELETE_TIP", - "zh-hk": "", - "en": "Please confirm whether to delete the account. After the account is deleted, it cannot be recovered.", - "id": "Please confirm whether to delete the account. After the account is deleted, it cannot be recovered." - }, - { - "info": "UI_MAIN_CHANGE_ACCOUNT", - "zh-hk": "", - "en": "Guest account cannot be recharged, please use Google or Apple account to login.", - "id": "Guest account cannot be recharged, please use Google or Apple account to login." - }, - { - "info": "UI_CHAT_BTN_SEND", - "zh-hk": "", - "en": "Send", - "id": "Kirim" - }, - { - "info": "UI_CHAT_BTN_JOIN", - "zh-hk": "", - "en": "Join", - "id": "Ikut" - }, - { - "info": "UI_CHAT_BTN_WORLD", - "zh-hk": "", - "en": "World", - "id": "Dunia" - }, - { - "info": "UI_CHAT_BTN_TEAM", - "zh-hk": "", - "en": "Team", - "id": "Tim" - }, - { - "info": "UI_CHAT_ME", - "zh-hk": "", - "en": "ME", - "id": "Saya" - }, - { - "info": "UI_CHAT_PVP", - "zh-hk": "", - "en": "PVP", - "id": "PVP" - }, - { - "info": "UI_CHAT_PVE", - "zh-hk": "", - "en": "PVE", - "id": "PVE" - }, - { - "info": "UI_LOGIN_BTN_GUEST", - "zh-hk": "", - "en": "GUEST", - "id": "PENGUNJUNG" - }, - { - "info": "UI_LOGIN_BTN_GOOGLE", - "zh-hk": "", - "en": "LOGIN WITH GOOGLE", - "id": "LOGIN WITH GOOGLE" - }, - { - "info": "UI_LOGIN_BTN_IOS", - "zh-hk": "", - "en": "LOGIN WITH APPLE", - "id": "LOGIN WITH APPLE" - }, - { - "info": "UI_LOGIN_BTN_USA", - "zh-hk": "", - "en": "USA", - "id": "Amerika" - }, - { - "info": "UI_LOGIN_BTN_JAPAN", - "zh-hk": "", - "en": "Japan", - "id": "Jepang" - }, - { - "info": "UI_LOGIN_BTN_SINGAPORE", - "zh-hk": "", - "en": "Singapore", - "id": "Singapura" - }, - { - "info": "UI_LOGIN_BTN_TURKEY", - "zh-hk": "", - "en": "Turkey", - "id": "Turki" - }, - { - "info": "UI_LOGIN_BTN_SOUTH_AFRICA", - "zh-hk": "", - "en": "South Africa", - "id": "Afrika Selatan" - }, - { - "info": "UI_LOGIN_BTN_BRAZIL", - "zh-hk": "", - "en": "Brazil", - "id": "Brazil" - }, - { - "info": "UI_LOGIN_BTN_GERMANY", - "zh-hk": "", - "en": "Europe", - "id": "Jerman" - }, - { - "info": "UI_LOGIN_BTN_HK", - "zh-hk": "", - "en": "HK/KR", - "id": "HK/KR" - }, - { - "info": "UI_LOGIN_BTN_INDIA", - "zh-hk": "", - "en": "India", - "id": "India" - }, - { - "info": "UI_LOGIN_BTN_SOUTH_KOREA", - "zh-hk": "", - "en": "South Korea", - "id": "Korea" - }, - { - "info": "UI_LOGIN_BTN_INDONESIA", - "zh-hk": "", - "en": "Indonesia", - "id": "Indonesia" - }, - { - "info": "UI_LOGIN_BTN_OTHER", - "zh-hk": "", - "en": "Other", - "id": "Lainnya" - }, - { - "info": "UI_USERINFO_CHANGE", - "zh-hk": "", - "en": "Change", - "id": "Tukar" - }, - { - "info": "UI_USERINFO_HOME", - "zh-hk": "", - "en": "Homepage", - "id": "Beranda" - }, - { - "info": "UI_USERINFO_PROFILE", - "zh-hk": "", - "en": "Profile", - "id": "Profil" - }, - { - "info": "UI_USERINFO_HISTORY", - "zh-hk": "", - "en": "History", - "id": "Riwayat" - }, - { - "info": "UI_USERINFO_CURRENT_SEASON", - "zh-hk": "", - "en": "Current Season", - "id": "Season Saat Ini" - }, - { - "info": "UI_USERINFO_BRONZE", - "zh-hk": "", - "en": "Bronze", - "id": "Perunggu" - }, - { - "info": "UI_USERINFO_PERSONAL BEST", - "zh-hk": "", - "en": "Personal Best", - "id": "Terbaik" - }, - { - "info": "UI_USERINFO_PERSONAL_INFO", - "zh-hk": "", - "en": "Personal Info", - "id": "Info Personal" - }, - { - "info": "UI_USERINFO_GAME_INFO", - "zh-hk": "", - "en": "Game Info", - "id": "Info Game" - }, - { - "info": "UI_USERINFO_TOTAL_KILLS", - "zh-hk": "", - "en": "Total Kills", - "id": "Total Bunuh" - }, - { - "info": "UI_USERINFO_TOTAL_GAMES", - "zh-hk": "", - "en": "Total Games", - "id": "Total Main" - }, - { - "info": "UI_USERINFO_TOTAL_WINS", - "zh-hk": "", - "en": "Total Wins", - "id": "Total Menang" - }, - { - "info": "UI_USERINFO_WIN_RATE", - "zh-hk": "", - "en": "Win Rate", - "id": "Rate Menang" - }, - { - "info": "UI_USERINFO_MOST_KILLS", - "zh-hk": "", - "en": "Most Kills", - "id": "Max Bunuh" - }, - { - "info": "UI_USERINFO_AVERAGE_KILL", - "zh-hk": "", - "en": "Average Kill", - "id": "Rata-rata Bunuh" - }, - { - "info": "UI_USERINFO_MOST_DAMAGE", - "zh-hk": "", - "en": "Most Damage", - "id": "Max Damage" - }, - { - "info": "UI_USERINFO_AVERAGE_DAMAGE", - "zh-hk": "", - "en": "Average Damage", - "id": "Rata-rata Damage" - }, - { - "info": "UI_USERINFO_DEFEAT", - "zh-hk": "", - "en": "K/D", - "id": "K/D" - }, - { - "info": "UI_USERINFO_DAMAGE", - "zh-hk": "", - "en": "Damage", - "id": "Damage" - }, - { - "info": "UI_USERINFO_SURVIVAL", - "zh-hk": "", - "en": "Survival", - "id": "Survival" - }, - { - "info": "UI_USERINFO_VICTORY", - "zh-hk": "", - "en": "Victory", - "id": "Menang" - }, - { - "info": "UI_USERINFO_HEAL", - "zh-hk": "", - "en": "Heal", - "id": "Heal" - }, - { - "info": "UI_USERINFO_NEXT", - "zh-hk": "", - "en": "NEXT", - "id": "Berikutnya" - }, - { - "info": "UI_USERINFO_RECORD_MODE", - "zh-hk": "", - "en": "MODE", - "id": "MODE" - }, - { - "info": "UI_USERINFO_RECORD_RESULT", - "zh-hk": "", - "en": "RESULT", - "id": "HASIL" - }, - { - "info": "UI_USERINFO_RECORD_KILL", - "zh-hk": "", - "en": "KILL", - "id": "BUNUH" - }, - { - "info": "UI_USERINFO_RECORD_HERO", - "zh-hk": "", - "en": "HERO", - "id": "HERO" - }, - { - "info": "UI_USERINFO_RECORD_WEAPON", - "zh-hk": "", - "en": "WEAPON", - "id": "SENJATA" - }, - { - "info": "UI_USERINFO_RECORD_TIME", - "zh-hk": "", - "en": "TIME", - "id": "WAKTU" - }, - { - "info": "UI_USERINFO_RECORD_Match", - "zh-hk": "", - "en": "Match", - "id": "Pencocokan" - }, - { - "info": "UI_USERINFO_RECORD_Ranked", - "zh-hk": "", - "en": "Ranked", - "id": "Peringkat" - }, - { - "info": "UI_USERINFO_RECORD_Raid", - "zh-hk": "", - "en": "Raid", - "id": "Serangan" - }, - { - "info": "UI_USERINFO_Profile", - "zh-hk": "", - "en": "Profile", - "id": "Profil" - }, - { - "info": "UI_USERINFO_History", - "zh-hk": "", - "en": "History", - "id": "Riwayat" - }, - { - "info": "UI_USERINFOCHANGE_PERSONAL_SETTINGS", - "zh-hk": "", - "en": "Profile Setting", - "id": "Pengaturan Profil" - }, - { - "info": "UI_USERINFOCHANGE_AVATAR", - "zh-hk": "", - "en": "AVATAR", - "id": "Avatar" - }, - { - "info": "UI_USERINFOCHANGE_FRAME", - "zh-hk": "", - "en": "Avatar Frame", - "id": "Frame Avatar" - }, - { - "info": "UI_USERINFOCHANGE_PARACHUTE", - "zh-hk": "", - "en": "Parachute", - "id": "Parasut" - }, - { - "info": "UI_USERINFOCHANGE_MEDAL", - "zh-hk": "", - "en": "Medal", - "id": "Medali" - }, - { - "info": "UI_USERINFOCHANGE_EMOJI", - "zh-hk": "", - "en": "Emoji", - "id": "Emoji" - }, - { - "info": "UI_RankMatch_REWARD", - "zh-hk": "", - "en": "REWARD", - "id": "Hadiah" - }, - { - "info": "UI_RankMatch_SVPoint", - "zh-hk": "", - "en": "SV Point", - "id": "SV Point" - }, - { - "info": "UI_RankMatch_Total_Points", - "zh-hk": "", - "en": "Total points", - "id": "Total points" - }, - { - "info": "UI_RankMatch_Des", - "zh-hk": "", - "en": "RankingBoard will refresh every 24 hours", - "id": "Peringkat akan direfresh setiap 24 jam." - }, - { - "info": "UI_RankMatch_Season", - "zh-hk": "", - "en": "Season", - "id": "Musim" - }, - { - "info": "UI_RankMatch_days", - "zh-hk": "", - "en": "days", - "id": "hari" - }, - { - "info": "UI_RankMatch_NoSeasonDes", - "zh-hk": "", - "en": "Vacant position awaits", - "id": "Vacant position awaits" - }, - { - "info": "UI_PrepareBattle_Common_Skill", - "zh-hk": "", - "en": "Common Skill", - "id": "Skill Umum" - }, - { - "info": "UI_PrepareBattle_Chip", - "zh-hk": "", - "en": "Chip", - "id": "Chip" - }, - { - "info": "UI_PrepareBattle_Expression", - "zh-hk": "", - "en": "Expression", - "id": "Ekspresi" - }, - { - "info": "UI_PrepareBattle_Battle", - "zh-hk": "", - "en": "Battle", - "id": "Pertempuran" - }, - { - "info": "UI_UserChangeName_title", - "zh-hk": "", - "en": "Rename page", - "id": "Ganti nama halaman" - }, - { - "info": "UI_UserChangeName_des", - "zh-hk": "", - "en": "Please enter a new nickname .", - "id": "Masukkan nama baru." - }, - { - "info": "UI_UserChangeName_cancel", - "zh-hk": "", - "en": "Cancel", - "id": "Batal" - }, - { - "info": "UI_UserChangeName_go", - "zh-hk": "", - "en": "Go", - "id": "Pergi" - }, - { - "info": "UI_RankMatch_Leaderboard", - "zh-hk": "", - "en": "Leaderboard", - "id": "Papan Peringkat" - }, - { - "info": "UI_RankMatch_Data", - "zh-hk": "", - "en": "Data", - "id": "Data" - }, - { - "info": "UI_RankMatch_Hero", - "zh-hk": "", - "en": "Hero", - "id": "Hero" - }, - { - "info": "UI_RankMatch_Total_field_times", - "zh-hk": "", - "en": "Total field times", - "id": "Total Sesi Kualifikasi" - }, - { - "info": "UI_RankMatch_Winning_games", - "zh-hk": "", - "en": "Winning games", - "id": "Kemenangan" - }, - { - "info": "UI_RankMatch_Top_10_sessions", - "zh-hk": "", - "en": "Top 3 sessions", - "id": "Menduduki TOP 3" - }, - { - "info": "UI_RankMatch_Eliminate", - "zh-hk": "", - "en": "Eliminate", - "id": "Eliminasi" - }, - { - "info": "UI_RankMatch_Winning", - "zh-hk": "", - "en": "Winning", - "id": "Kemenangan" - }, - { - "info": "UI_RankMatch_Top_10", - "zh-hk": "", - "en": "TOP 10", - "id": "TOP 10" - }, - { - "info": "UI_RankMatch_Data", - "zh-hk": "", - "en": "Data", - "id": "Data" - }, - { - "info": "UI_MAIN_GUN_BTN_WEAPON", - "zh-hk": "", - "en": "Weapon", - "id": "Senjata" - }, - { - "info": "UI_MAIN_GUN_BTN_ACTIVATION", - "zh-hk": "", - "en": "Activate(on-chain)", - "id": "Aktif (terhubung)" - }, - { - "info": "UI_MAIN_GUN_BTN_MAX", - "zh-hk": "", - "en": "Lv MAX", - "id": "Lv. MAX" - }, - { - "info": "UI_MAIN_GUN_BTN_SUPPLY", - "zh-hk": "", - "en": "Supply", - "id": "Supply" - }, - { - "info": "UI_MAIN_GUN_UNIQUE_ID", - "zh-hk": "", - "en": "Token ID", - "id": "ID Token" - }, - { - "info": "UI_MAIN_GUN_TITLE_LV_TIP", - "zh-hk": "", - "en": "Retrofit Level", - "id": "Retrofit Level" - }, - { - "info": "UI_MAIN_GUN_LV", - "zh-hk": "", - "en": "Lv{0}", - "id": "Lv.{0}" - }, - { - "info": "UI_MAIN_GUN_LIST_BTN_EQUIP", - "zh-hk": "", - "en": "Equipment", - "id": "Equipment" - }, - { - "info": "UI_MAIN_GUN_LIST_BTN_EQUIPPING", - "zh-hk": "", - "en": "Equipping", - "id": "Equipping" - }, - { - "info": "UI_MAIN_GUN_LIST_BTN_WEAPON", - "zh-hk": "", - "en": "Weapon", - "id": "Senjata" - }, - { - "info": "UI_MAIN_GUN_LIST_BTN_ALL", - "zh-hk": "", - "en": "All", - "id": "Semua" - }, - { - "info": "UI_MAIN_GUN_LIST_BTN_CLOSE", - "zh-hk": "", - "en": "Short Range", - "id": "Jarak Dekat" - }, - { - "info": "UI_MAIN_GUN_LIST_BTN_MEDIUM", - "zh-hk": "", - "en": "Medium Range", - "id": "Jarak Sedang" - }, - { - "info": "UI_MAIN_GUN_LIST_BTN_LONG", - "zh-hk": "", - "en": "Long Range", - "id": "Jarak Jauh" - }, - { - "info": "UI_MAIN_GUN_LIST_BTN_HELMETS", - "zh-hk": "", - "en": "Helmet", - "id": "Helmet" - }, - { - "info": "UI_MAIN_GUN_LIST_BTN_ARMOR", - "zh-hk": "", - "en": "Armor", - "id": "Armor" - }, - { - "info": "UI_MAIN_GUN_LIST_BTN_BACKPACK", - "zh-hk": "", - "en": "Inventory", - "id": "Ransel" - }, - { - "info": "UI_MAIN_GUN_LIST_BTN_COMING", - "zh-hk": "", - "en": "Coming soon", - "id": "Hadir Segera" - }, - { - "info": "UI_MAIN_HERO_LIST_TITLE", - "zh-hk": "", - "en": "Heroes", - "id": "Hero" - }, - { - "info": "UI_MAIN_HERO_LIST_BTN_ALL", - "zh-hk": "", - "en": "All", - "id": "Semua" - }, - { - "info": "UI_MAIN_HERO_LIST_BTN_RAIDER", - "zh-hk": "", - "en": "Breaker", - "id": "Breaker" - }, - { - "info": "UI_MAIN_HERO_LIST_BTN_GUARDIAN", - "zh-hk": "", - "en": "Tank", - "id": "Tank" - }, - { - "info": "UI_MAIN_HERO_LIST_BTN_MACHINIST", - "zh-hk": "", - "en": "Fighter", - "id": "Fighter" - }, - { - "info": "UI_MAIN_HERO_LIST_BTN_MEDIC", - "zh-hk": "", - "en": "Medic", - "id": "Medis" - }, - { - "info": "UI_MAIN_HERO_TITLE", - "zh-hk": "", - "en": "HERO", - "id": "Hero" - }, - { - "info": "UI_MAIN_HERO_PRESET_INFO", - "zh-hk": "", - "en": "Information", - "id": "Information" - }, - { - "info": "UI_MAIN_HERO_PRESET_BTN", - "zh-hk": "", - "en": "Preset", - "id": "Preset" - }, - { - "info": "UI_MAIN_HERO_SKIN_BTN", - "zh-hk": "", - "en": "Skin", - "id": "Skin" - }, - { - "info": "UI_MAIN_HERO_STORY_BTN", - "zh-hk": "", - "en": "Story", - "id": "Cerita" - }, - { - "info": "UI_MAIN_HERO_TOTAL_BTN", - "zh-hk": "", - "en": "Overview", - "id": "Gambaran" - }, - { - "info": "UI_MAIN_HERO_STATUS_BTN", - "zh-hk": "", - "en": "Status", - "id": "Status" - }, - { - "info": "UI_MAIN_HERO_SKILL_BTN", - "zh-hk": "", - "en": "Skill", - "id": "Skill" - }, - { - "info": "UI_MAIN_HERO_SPEC_BTN", - "zh-hk": "", - "en": "Firearm\\nProficiency", - "id": "Kemahiran" - }, - { - "info": "UI_MAIN_HERO_BATTLE_BTN", - "zh-hk": "", - "en": "Battle", - "id": "Pertempuran" - }, - { - "info": "UI_MAIN_HERO_BATTLEING_BTN", - "zh-hk": "", - "en": "Battling", - "id": "Bertempur" - }, - { - "info": "UI_MAIN_HERO_RETROFIT_BTN", - "zh-hk": "", - "en": "Upgrade", - "id": "Upgrade" - }, - { - "info": "UI_MAIN_HERO_TOTAL_TITLE", - "zh-hk": "", - "en": "Details", - "id": "Detil" - }, - { - "info": "UI_MAIN_HERO_TOTAL_SKILLS", - "zh-hk": "", - "en": "Skills", - "id": "Skill" - }, - { - "info": "UI_MAIN_HERO_TOTAL_WEAPONS", - "zh-hk": "", - "en": "Weapons", - "id": "Senjata" - }, - { - "info": "UI_MAIN_HERO_SKILL_LOADING", - "zh-hk": "", - "en": "Loading\u2026", - "id": "Memuat ..." - }, - { - "info": "UI_MAIN_HERO_PRESET_TITLE", - "zh-hk": "", - "en": "Preset", - "id": "Preset" - }, - { - "info": "UI_MAIN_HERO_PRESET_LEVEL", - "zh-hk": "", - "en": "LV{0}", - "id": "LV{0}" - }, - { - "info": "UI_MAIN_HERO_PRESET_GUN_LEVEL", - "zh-hk": "", - "en": "LV{0}", - "id": "LV{0}" - }, - { - "info": "UI_MAIN_HERO_PRESET_TIP_UNSELECT_GUN", - "zh-hk": "", - "en": "Unselected\u00a0weapon", - "id": "Unselected\u00a0weapon" - }, - { - "info": "UI_MAIN_HERO_CheckBox_ConUseTips", - "zh-hk": "", - "en": "The outfit is currently in use. Do you want to continue equipping it?", - "id": "The outfit is currently in use. Do you want to continue equipping it?" - }, - { - "info": "UI_MAIN_HERO_CheckBox_BuyTips", - "zh-hk": "", - "en": "Do you want to purchase {0} for {1} Diamond?", - "id": "Do you want to purchase {0} for {1} Diamond?" - }, - { - "info": "UI_MAIN_WAREHOUSE_TITLE", - "zh-hk": "", - "en": "Warehouse", - "id": "Warehouse" - }, - { - "info": "UI_MAIN_WAREHOUSE_LEFT_TYPE_ALL", - "zh-hk": "", - "en": "Item", - "id": "Item" - }, - { - "info": "UI_MAIN_WAREHOUSE_LEFT_TYPE_HERO_PIECE", - "zh-hk": "", - "en": "Hero fragment", - "id": "Hero fragment" - }, - { - "info": "UI_MAIN_WAREHOUSE_LEFT_TYPE_CHIP_PIECE", - "zh-hk": "", - "en": "Chip fragment", - "id": "Chip fragment" - }, - { - "info": "UI_MAIN_WAREHOUSE_LEFT_TYPE_RESOURCE", - "zh-hk": "", - "en": "Resource", - "id": "Resource" - }, - { - "info": "UI_MAIN_WAREHOUSE_LEFT_TYPE_DEVICE", - "zh-hk": "", - "en": "Device", - "id": "Device" - }, - { - "info": "UI_MAIN_WAREHOUSE_LEFT_TYPE_FACE", - "zh-hk": "", - "en": "Face", - "id": "Face" - }, - { - "info": "UI_MAIN_WAREHOUSE_LEFT_TYPE_FRAME", - "zh-hk": "", - "en": "Frame", - "id": "Frame" - }, - { - "info": "UI_MAIN_WAREHOUSE_ITEM_INFO_CARD_TITLE", - "zh-hk": "", - "en": "Information", - "id": "Information" - }, - { - "info": "UI_MAIN_WAREHOUSE_ITEM_INFO_CARD_BTN_MINT_AN_NFT", - "zh-hk": "", - "en": "MINT AN NFT", - "id": "MINT AN NFT" - }, - { - "info": "UI_MAIN_WAREHOUSE_ITEM_INFO_CARD_BTN_USE", - "zh-hk": "", - "en": "USE", - "id": "USE" - }, - { - "info": "UI_MAIN_WAREHOUSE_ITEM_TYPE_ALL", - "zh-hk": "", - "en": "All", - "id": "All" - }, - { - "info": "UI_MAIN_BATCH_USE_ITEMS_DIALOG_TITLE", - "zh-hk": "", - "en": "Use Item", - "id": "Use Item" - }, - { - "info": "UI_MAIN_BATCH_USE_ITEMS_DIALOG_LABEL_CONSUME", - "zh-hk": "", - "en": "consume {0} {1}", - "id": "consume {0} {1}" - }, - { - "info": "UI_MAIN_BATCH_USE_ITEMS_DIALOG_BTN_USE", - "zh-hk": "", - "en": "Use", - "id": "Use" - }, - { - "info": "UI_MAIN_HERO_PRESET_SKILL_TIP", - "zh-hk": "", - "en": "Tap to check detail info", - "id": "Tap to check detail info" - }, - { - "info": "UI_MAIN_HERO_TIP_RESET_WALLET_NOT_ACTIVATED", - "zh-hk": "", - "en": "The wallet is not activated", - "id": "The wallet is not activated" - }, - { - "info": "UI_MAIN_HERO_TIP_RESET_LEVEL_ONE", - "zh-hk": "", - "en": "Unable to reset level 1 heroes", - "id": "Unable to reset level 2 heroes" - }, - { - "info": "UI_MAIN_HERO_TIP_RESET_RESETING", - "zh-hk": "", - "en": "Unable to reset the hero being reset", - "id": "Unable to reset the hero being reset" - }, - { - "info": "UI_MAIN_HERO_GUN_INFO_TITLE", - "zh-hk": "", - "en": "Weapon", - "id": "Weapon" - }, - { - "info": "UI_MAIN_HERO_GUN_INFO_LABEL_DAMAGE", - "zh-hk": "", - "en": "Damage", - "id": "Damage" - }, - { - "info": "UI_MAIN_HERO_GUN_INFO_LABEL_CAPACITY", - "zh-hk": "", - "en": "Capacity", - "id": "Capacity" - }, - { - "info": "UI_MAIN_HERO_GUN_INFO_LABEL_COLLECT_IN_GAME", - "zh-hk": "", - "en": "Collect in game", - "id": "Collect in game" - }, - { - "info": "UI_MAIN_HERO_SKILL_INFO_LABEL_CD", - "zh-hk": "", - "en": "Cd {0}", - "id": "Cd {1}" - }, - { - "info": "UI_MAIN_HERO_SKILL_INFO_LABEL_COLLECT_IN_GAME", - "zh-hk": "", - "en": "Collect in game", - "id": "Collect in game" - }, - { - "info": "UI_MAIN_HERO_RESET_TITLE", - "zh-hk": "", - "en": "Hero Reset", - "id": "Hero Reset" - }, - { - "info": "UI_MAIN_HERO_RESET_LABEL_DESC", - "zh-hk": "", - "en": "Are you sure you want to reset the hero level to level 1? After resetting, all materials consumed by the hero's upgrade will be returned", - "id": "Are you sure you want to reset the hero level to level 2? After resetting, all materials consumed by the hero's upgrade will be returned" - }, - { - "info": "UI_MAIN_HERO_RESET_BTN_CONFIRM", - "zh-hk": "", - "en": "Reset", - "id": "Reset" - }, - { - "info": "UI_MAIN_HERO_RESET_TIP_COMPLETE", - "zh-hk": "", - "en": "Reset Sended", - "id": "Reset Sended" - }, - { - "info": "UI_MAIN_SELECT_COMMON_SKILL_CARD_TITLE", - "zh-hk": "", - "en": "Summoner spell", - "id": "Summoner spell" - }, - { - "info": "UI_MAIN_SELECT_COMMON_SKILL_CARD_BTN_CONFIRM", - "zh-hk": "", - "en": "Select", - "id": "Select" - }, - { - "info": "UI_MAIN_SELECT_COMMON_SKILL_CARD_LABEL_CD", - "zh-hk": "", - "en": "CD:{0}S", - "id": "CD:{1}S" - }, - { - "info": "UI_MAIN_SELECT_CHIP_PAGE_CARD_TITLE", - "zh-hk": "", - "en": "Select Chip", - "id": "Select Chip" - }, - { - "info": "UI_MAIN_SELECT_CHIP_PAGE_CARD_BTN_USING", - "zh-hk": "", - "en": "Using", - "id": "Using" - }, - { - "info": "UI_MAIN_SELECT_CHIP_PAGE_CARD_BTN_USE", - "zh-hk": "", - "en": "Use", - "id": "Use" - }, - { - "info": "UI_MAIN_SELECT_CHIP_PAGE_CARD_RENAME_LABEL_CONFIRM", - "zh-hk": "", - "en": "OK", - "id": "OK" - }, - { - "info": "UI_MAIN_SELECT_CHIP_PAGE_CARD_RENAME_LABEL_CANCEL", - "zh-hk": "", - "en": "Cancel", - "id": "Cancel" - }, - { - "info": "UI_MAIN_SELECT_CHIP_PAGE_CARD_RENAME_LABEL_DESC", - "zh-hk": "", - "en": "Please enter a new description", - "id": "Please enter a new description" - }, - { - "info": "UI_MAIN_SELECT_CHIP_PAGE_CARD_RENAME_TITLE", - "zh-hk": "", - "en": "New Description", - "id": "New Description" - }, - { - "info": "UI_MAIN_CHIP_PAGE_SAMPLE_PROPS_TITLE", - "zh-hk": "", - "en": "Overview", - "id": "Overview" - }, - { - "info": "UI_MAIN_CHIP_PAGE_SAMPLE_PROPS_TIP_EMPTY", - "zh-hk": "", - "en": "No chip", - "id": "No chip" - }, - { - "info": "UI_INPUT_CARD_DEFAULT_CANCEL", - "zh-hk": "", - "en": "Cancel", - "id": "Cancel" - }, - { - "info": "UI_INPUT_CARD_DEFAULT_CONFIRM", - "zh-hk": "", - "en": "Confirm", - "id": "Confirm" - }, - { - "info": "UI_MAIN_HERO_TIP_UPGRADE_RESETING", - "zh-hk": "", - "en": "Unable to upgrade the hero being reset", - "id": "Unable to upgrade the hero being reset" - }, - { - "info": "UI_MAIN_HERO_INFO_UPGRADE_TIP", - "zh-hk": "", - "en": "upgrades may elevate attribute ranks", - "id": "upgrades may elevate attribute ranks" - }, - { - "info": "UI_MAIN_HERO_INFO_HERO_CURRENT_LEVEL", - "zh-hk": "", - "en": "LV{0}", - "id": "LV{1}" - }, - { - "info": "UI_MAIN_HERO_INFO_SKILL_LEVEL", - "zh-hk": "", - "en": "Lv.{0}", - "id": "Lv.{1}" - }, - { - "info": "UI_MAIN_HERO_PRESET_CHIP_TITLE", - "zh-hk": "", - "en": "Chip Page", - "id": "Halaman Chip" - }, - { - "info": "UI_MAIN_HERO_PRESET_WEAPON_TITLE", - "zh-hk": "", - "en": "Weapon", - "id": "Senjata" - }, - { - "info": "UI_MAIN_HERO_PRESET_GENERAL_TITLE", - "zh-hk": "", - "en": "General Skill", - "id": "Skill Umum" - }, - { - "info": "UI_MAIN_HERO_PRESET_SKILL_TITLE", - "zh-hk": "", - "en": "Ability", - "id": "Ability" - }, - { - "info": "UI_MAIN_HERO_PRESET_SKILL_TIP_LOADING_VIDEO", - "zh-hk": "", - "en": "Loading\u2026.", - "id": "Loading\u2026." - }, - { - "info": "UI_MAIN_HERO_STORY_BASIC", - "zh-hk": "", - "en": "Personal Profile", - "id": "Profil Personal" - }, - { - "info": "UI_MAIN_HERO_STORY_BASIC_CODENAME", - "zh-hk": "", - "en": "Code Name", - "id": "Nama Kode" - }, - { - "info": "UI_MAIN_HERO_STORY_BASIC_GENDER", - "zh-hk": "", - "en": "Gender", - "id": "Gender" - }, - { - "info": "UI_MAIN_HERO_STORY_BASIC_HEIGHT", - "zh-hk": "", - "en": "Height", - "id": "Tinggi" - }, - { - "info": "UI_MAIN_HERO_STORY_BASIC_BIRTHDAY", - "zh-hk": "", - "en": "Birthday", - "id": "Tgl Lahir" - }, - { - "info": "UI_MAIN_HERO_STORY_CV", - "zh-hk": "", - "en": "CV", - "id": "CV" - }, - { - "info": "UI_MAIN_HERO_STORY_CV_JOB", - "zh-hk": "", - "en": "Job", - "id": "Profesi" - }, - { - "info": "UI_MAIN_HERO_STORY_CV_ZOO", - "zh-hk": "", - "en": "Gene", - "id": "Gene" - }, - { - "info": "UI_MAIN_HERO_STORY_ATTACH", - "zh-hk": "", - "en": "Personal Introduction", - "id": "Introduksi Personal" - }, - { - "info": "UI_MAIN_HERO_PRESET_SKIN_DRESSED", - "zh-hk": "", - "en": "Dressed", - "id": "Dipakai" - }, - { - "info": "UI_MAIN_HERO_PRESET_SKIN_DRESS_UP", - "zh-hk": "", - "en": "Dress up", - "id": "Pakai" - }, - { - "info": "UI_MAIN_HERO_PRESET_SKIN_NOT_OWNED", - "zh-hk": "", - "en": "Not yet owned", - "id": "Belum dimiliki" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_BTN_TITLE_MAIN", - "zh-hk": "", - "en": "Main", - "id": "Main" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_BTN_TITLE_COST", - "zh-hk": "", - "en": "Cost", - "id": "Cost" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_DETAILS_TITLE", - "zh-hk": "", - "en": "Details", - "id": "Details" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_DETAILS_LEVEL", - "zh-hk": "", - "en": "Lv {0}", - "id": "Lv {0}" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_DETAILS_SMALL_LEVEL", - "zh-hk": "", - "en": "Lv {0}", - "id": "Lv {0}" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_TITLE_MAIN_CARD_LEVEL_AND_NAME", - "zh-hk": "", - "en": "Lv {0} {1}", - "id": "Lv {0} {1}" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_COST_CARD_TIP_LEVEL_4", - "zh-hk": "", - "en": "You need a level 1 - 4 hero for the material", - "id": "Anda membutuhkan Hero Lv.1-4 untuk dijadikan material." - }, - { - "info": "UI_MAIN_HERO_UPGRADE_COST_CARD_TIP_LEVEL_9", - "zh-hk": "", - "en": "You need a level 5 - 9 hero for the material", - "id": "Anda membutuhkan Hero Lv.5-9 untuk dijadikan material." - }, - { - "info": "UI_MAIN_HERO_UPGRADE_COST_CARD_TIP_LEVEL_14", - "zh-hk": "", - "en": "You need a level 10 - 14 hero for the material", - "id": "Anda membutuhkan Hero Lv.10-14 untuk dijadikan material." - }, - { - "info": "UI_MAIN_HERO_UPGRADE_SKILL_UTIL_LEVEL", - "zh-hk": "", - "en": "Until Lv {0}", - "id": "Sampai\u00a0Lv.5" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_BTN_UPGRADE", - "zh-hk": "", - "en": "Upgrade", - "id": "Upgrade" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_MESSAGE_NO_HERO_AVAILABLE_AS_COST", - "zh-hk": "", - "en": "Please complete the activation of the hero or weapon you want to advance or consume first.", - "id": "Please complete the activation of the hero or weapon you want to advance or consume first." - }, - { - "info": "UI_MAIN_GUN_UPGRADE_MESSAGE_NO_GUN_AVAILABLE_AS_COST", - "zh-hk": "", - "en": "You don't have the right material, you need a same level weapon for the material.", - "id": "You don't have the right material, you need a same level weapon for the material." - }, - { - "info": "UI_MAIN_HERO_UPGRADE_BTN_LEVEL_MAX", - "zh-hk": "", - "en": "Max level", - "id": "Max level" - }, - { - "info": "UI_MAIN_GUN_UPGRADE_BTN_RETROFIT", - "zh-hk": "", - "en": "Upgrade", - "id": "Upgrade" - }, - { - "info": "UI_MAIN_GUN_UPGRADE_TITLE_MAIN", - "zh-hk": "", - "en": "MAIN", - "id": "MAIN" - }, - { - "info": "UI_MAIN_GUN_UPGRADE_BTN_TITLE_MAIN", - "zh-hk": "", - "en": "Main", - "id": "Main" - }, - { - "info": "UI_MAIN_GUN_UPGRADE_BTN_TITLE_COST", - "zh-hk": "", - "en": "Cost", - "id": "Cost" - }, - { - "info": "UI_MAIN_GUN_UPGRADE_TITLE_COST", - "zh-hk": "", - "en": "COST", - "id": "COST" - }, - { - "info": "UI_MAIN_GUN_UPGRADE_TITLE_LEVEL_MAX", - "zh-hk": "", - "en": "Lv MAX", - "id": "Lv MAX" - }, - { - "info": "UI_MAIN_GUN_UPGRADE_TITLE_MAIN_CARD_LEVEL_AND_NAME", - "zh-hk": "", - "en": "Lv {0} {1}", - "id": "Lv {0} {1}" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_COST_CARD_TIP", - "zh-hk": "", - "en": "You need a same level weapon for the material", - "id": "You need a same level weapon for the material" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_BTN_UPGRADE", - "zh-hk": "", - "en": "Upgrade", - "id": "Upgrade" - }, - { - "info": "UI_MAIN_HERO_UPGRADE_EFFECT_LABEL_CLICK_TO_CLOSE", - "zh-hk": "", - "en": "Click the blank space to exit!", - "id": "Klik di tempat kosong untuk meninggalkan." - }, - { - "info": "UI_MAIN_GUN_UPGRADE_EFFECT_LABEL_CLICK_TO_CLOSE", - "zh-hk": "", - "en": "Click the blank space to exit!", - "id": "Klik di tempat kosong untuk meninggalkan." - }, - { - "info": "UI_MAIN_GUN_BTN_RETROFIT", - "zh-hk": "", - "en": "Retrofit", - "id": "Retrofit" - }, - { - "info": "UI_PREPARE_BATTLE_TITLE", - "zh-hk": "", - "en": "Preparation", - "id": "Persiapan" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_IS_PAGE_MAX_NUMBER", - "zh-hk": "", - "en": "Chip page has reached the maximum number", - "id": "Halaman chip sudah mencapai maksimal." - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_RENAME_PAGE_TITLE", - "zh-hk": "", - "en": "Rename page", - "id": "Halaman Ganti Nama" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_RENAME_PAGE_TIP", - "zh-hk": "", - "en": "Please enter a name", - "id": "Silakan masukkan nama." - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_SLOT_UNLOCK_LEVEL", - "zh-hk": "", - "en": "Lv{0}", - "id": "Lv{0}" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_OVERVIEW_TITLE", - "zh-hk": "", - "en": "Overview", - "id": "Gambaran" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_OVERVIEW_BTN_REMOVE", - "zh-hk": "", - "en": "Remove", - "id": "Pindahkan" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_DETAIL_TITLE", - "zh-hk": "", - "en": "Detail", - "id": "Detil" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_DETAIL_LABEL_DETAILS", - "zh-hk": "", - "en": "Details", - "id": "Detil" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_DETAIL_TYPE_ATK", - "zh-hk": "", - "en": "ATK", - "id": "ATK" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_DETAIL_TYPE_DEF", - "zh-hk": "", - "en": "SUP", - "id": "Bantuan" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_DETAIL_TYPE_SUP", - "zh-hk": "", - "en": "DEF", - "id": "DEF" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_DETAIL_LABEL_LEVEL", - "zh-hk": "", - "en": "Lv {0}", - "id": "Lv {0}" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_DETAIL_BTN_REMOVE", - "zh-hk": "", - "en": "Remove", - "id": "Pindahkan" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_DETAIL_BTN_UPGRADE", - "zh-hk": "", - "en": "Learn", - "id": "Upgrade Chip" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_ADD_PAGE_BTN_CONFIRM", - "zh-hk": "", - "en": "Create Page", - "id": "Buat Halaman" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_ADD_PAGE_TIP", - "zh-hk": "", - "en": "Please enter a name", - "id": "Silakan masukkan nama." - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_ADD_PAGE_TITLE", - "zh-hk": "", - "en": "Create Page", - "id": "Buat Halaman" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_DEFAULT_PAGE_NAME", - "zh-hk": "", - "en": "page:{0}", - "id": "Halaman:{0}" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_BACKPACK_TITLE", - "zh-hk": "", - "en": "Inventory", - "id": "Ransel" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_UPGRADE_TITLE", - "zh-hk": "", - "en": "Chip Upgrade", - "id": "Upgrade Chip" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_UPGRADE_LEVEL", - "zh-hk": "", - "en": "Lv {0}", - "id": "Lv {0}" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_UPGRADE_SUCCESS_RATE", - "zh-hk": "", - "en": "Success rate: {0}", - "id": "sukes rate: {0}" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_UPGRADE_NEW_ATTR_TIP", - "zh-hk": "", - "en": "Extra", - "id": "Ekstra" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_UPGRADE_LABEL_MAXED", - "zh-hk": "", - "en": "Max", - "id": "Max" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_UPGRADE_BTN_CONFIRM", - "zh-hk": "", - "en": "Upgrade", - "id": "Upgrade" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_UPGRADE_BTN_CHAIN", - "zh-hk": "", - "en": "Up the chain", - "id": "Up the chain" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_UPGRADE_LABEL_LEVEL_MAX", - "zh-hk": "", - "en": "Max level", - "id": "Max level" - }, - { - "info": "UI_MAIN_CHIP_UPGRADE_MESSAGE_NO_CHIP_AVAILABLE_AS_COST", - "zh-hk": "", - "en": "Missing level {0} chip", - "id": "hilang level {0} chip" - }, - { - "info": "UI_PREPARE_BATTLE_CHIP_PENDING_TITLE", - "zh-hk": "", - "en": "Chip Pending", - "id": "Chip Tertunda" - }, - { - "info": "UI_MAIN_LEVEL_UP_TITLE_CURRENT", - "zh-hk": "", - "en": "Current", - "id": "Saat Ini" - }, - { - "info": "UI_MAIN_LEVEL_UP_TITLE_UNLOCK", - "zh-hk": "", - "en": "Unlock", - "id": "Buka" - }, - { - "info": "UI_MAIN_LEVEL_UP_TITLE_REWARD", - "zh-hk": "", - "en": "Reward", - "id": "Hadiah Pertumbuhan" - }, - { - "info": "UI_MAIN_LEVEL_UP_TITLE_NEXT", - "zh-hk": "", - "en": "Next", - "id": "Berikutnya" - }, - { - "info": "UI_MAIN_GROW_TITLE", - "zh-hk": "", - "en": "SEASON ROAD", - "id": "SEASON ROAD" - }, - { - "info": "UI_MAIN_GROW_SUB_TITLE", - "zh-hk": "", - "en": "Collect stars,unlock rewards,and climb higher league ranks!", - "id": "Collect stars,unlock rewards,and climb higher league ranks!" - }, - { - "info": "UI_MAIN_GROW_TIME", - "zh-hk": "", - "en": "{0} days and {1} hours", - "id": "{0} days and {1} hours" - }, - { - "info": "UI_MAIN_GROW_TIME_SUB_TITLE", - "zh-hk": "", - "en": "until Season of Honor ends", - "id": "until Season of Honor ends" - }, - { - "info": "UI_MAIN_GROW_TITLE_UNLOCK", - "zh-hk": "", - "en": "Unlock {0}", - "id": "Unlock {0}" - }, - { - "info": "UI_MAIN_GROW_TITLE_FUNCTION", - "zh-hk": "", - "en": "Function", - "id": "Function" - }, - { - "info": "UI_MAIN_GROW_BTN_GET_ALL", - "zh-hk": "", - "en": "CLAIM ALL", - "id": "CLAIM ALL" - }, - { - "info": "UI_MAIN_GROW_TITLE_REWARD_COUNT", - "zh-hk": "", - "en": "X{0}", - "id": "X{0}" - }, - { - "info": "UI_MAIN_GROW_TIP_GROW_NODE_RECEIVED", - "zh-hk": "", - "en": "This reward has already been received", - "id": "This reward has already been received" - }, - { - "info": "UI_MAIN_GROW_TIP_GROW_NODE_LOCKED", - "zh-hk": "", - "en": "This reward cannot be receive at the moment", - "id": "This reward cannot be receive at the moment" - }, - { - "info": "UI_MAIN_GROW_TIP_GROW_NODE_LABEL_STATE_CAN_GET", - "zh-hk": "", - "en": "Claim", - "id": "Claim" - }, - { - "info": "UI_MAIN_GROW_TIP_GROW_NODE_LABEL_STATE_NEXT", - "zh-hk": "", - "en": "Next target", - "id": "Next target" - }, - { - "info": "UI_MATCH_TITLE1", - "zh-hk": "", - "en": "Match", - "id": "Pencocokan" - }, - { - "info": "UI_MATCH_TITLE2", - "zh-hk": "", - "en": "Raid", - "id": "Serangan" - }, - { - "info": "UI_MATCH_TITLE3", - "zh-hk": "", - "en": "Ranked", - "id": "Peringkat" - }, - { - "info": "UI_MATCH_PRESET_BTN", - "zh-hk": "", - "en": "Preset", - "id": "Preset" - }, - { - "info": "UI_MATCH_PREPARE_BTN", - "zh-hk": "", - "en": "Start", - "id": "Mulai" - }, - { - "info": "UI_MATCH_READY_BTN", - "zh-hk": "", - "en": "Ready", - "id": "Siap" - }, - { - "info": "UI_MATCH_CANCEL_BTN", - "zh-hk": "", - "en": "Cancel", - "id": "Batal" - }, - { - "info": "UI_MATCH_SKIN_BTN", - "zh-hk": "", - "en": "Skin", - "id": "Skin" - }, - { - "info": "UI_MATCH_READY_LOCK_TIP", - "zh-hk": "", - "en": "Please cancel the ready first", - "id": "Please cancel the ready first" - }, - { - "info": "UI_MAIN_GROW_QUICK_RECEIVE", - "zh-hk": "", - "en": "Quick Receive", - "id": "Klaim Segera" - }, - { - "info": "UI_MAIN_QUEST_QUEST_TITLE", - "zh-hk": "", - "en": "Mission", - "id": "Misi" - }, - { - "info": "UI_MAIN_QUEST_QUEST_BTN_DIARY", - "zh-hk": "", - "en": "Mission", - "id": "Misi" - }, - { - "info": "UI_MAIN_QUEST_QUEST_HELP", - "zh-hk": "", - "en": "Daily Missions will refresh at 0:00 UTC each day", - "id": "Misi harian akan direfresh setiap hari pukul 00:00 UTC." - }, - { - "info": "UI_MAIN_QUEST_QUEST_TODAY_QUEST_COMPLETE", - "zh-hk": "", - "en": "All of today's task is complete", - "id": "Misi hari ini sudah diselesaikan semuanya." - }, - { - "info": "UI_MAIN_QUEST_QUEST_DIARY_TITLE", - "zh-hk": "", - "en": "Daily Missions", - "id": "Misi Harian" - }, - { - "info": "UI_MAIN_QUEST_QUEST_DIARY_TIME", - "zh-hk": "", - "en": "{0} Hours", - "id": "{0} Jam" - }, - { - "info": "UI_MAIN_QUEST_QUEST_WEEKLY_TITLE", - "zh-hk": "", - "en": "Weekly Activity", - "id": "Weekly Activity" - }, - { - "info": "UI_MAIN_QUEST_QUEST_WEEKLY_TIME", - "zh-hk": "", - "en": "{0} Days {1} Hours", - "id": "{0} Hari {1} Jam" - }, - { - "info": "UI_MAIN_QUEST_QUEST_REWARD_TIPS_TITLE", - "zh-hk": "", - "en": "Rewards", - "id": "Hadiah" - }, - { - "info": "UI_MAIN_QUEST_QUEST_BTN_COMPLETE", - "zh-hk": "", - "en": "Complete", - "id": "Selesai" - }, - { - "info": "UI_MAIN_QUEST_QUEST_BTN_REFRESH", - "zh-hk": "", - "en": "Refresh", - "id": "Refresh" - }, - { - "info": "UI_MAIN_BATTLE_PASS_TITLE", - "zh-hk": "", - "en": "Battle Pass", - "id": "Battle Pass" - }, - { - "info": "UI_MAIN_BATTLE_PASS_LEFT_BTN_BATTLE_PASS", - "zh-hk": "", - "en": "Battle Pass", - "id": "Battle Pass" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_TITLE", - "zh-hk": "", - "en": "Today", - "id": "Today" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_DAY_1", - "zh-hk": "", - "en": "Monday", - "id": "Monday" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_DAY_2", - "zh-hk": "", - "en": "Tuesday", - "id": "Tuesday" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_DAY_3", - "zh-hk": "", - "en": "Wednesday", - "id": "Wednesday" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_DAY_4", - "zh-hk": "", - "en": "Thursday", - "id": "Thursday" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_DAY_5", - "zh-hk": "", - "en": "Friday", - "id": "Friday" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_DAY_6", - "zh-hk": "", - "en": "Saturday", - "id": "Saturday" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_DAY_0", - "zh-hk": "", - "en": "Sunday", - "id": "Sunday" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_BTN_GET_ALL", - "zh-hk": "", - "en": "Claim all", - "id": "Claim all" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_BTN_TO_BATTLE_PASS", - "zh-hk": "", - "en": "Battle Pass", - "id": "Battle Pass" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_MISSION_BAR_BTN_COMPLETE", - "zh-hk": "", - "en": "Complete", - "id": "Complete" - }, - { - "info": "UI_MAIN_BATTLE_PASS_DIARY_MISSION_BAR_BTN_UNFINISHED", - "zh-hk": "", - "en": "Unfinished", - "id": "Unfinished" - }, - { - "info": "UI_MAIN_BATTLE_PASS_PASS_BTN_BUY_PLATINUM_PASS", - "zh-hk": "", - "en": "Buy Platinum Pass", - "id": "Buy Platinum Pass" - }, - { - "info": "UI_MAIN_BATTLE_PASS_PASS_BTN_GET_ALL", - "zh-hk": "", - "en": "Claim all", - "id": "Claim all" - }, - { - "info": "UI_MAIN_BATTLE_PASS_PASS_CARD_BTN_GET_EXP", - "zh-hk": "", - "en": "Get Exp", - "id": "Get Exp" - }, - { - "info": "UI_MAIN_BATTLE_PASS_PASS_CARD_BTN_BUY_LEVEL", - "zh-hk": "", - "en": "Buy level", - "id": "Buy level" - }, - { - "info": "UI_MAIN_BATTLE_PASS_PASS_CARD_LABEL_LEVEL", - "zh-hk": "", - "en": "Level", - "id": "Level" - }, - { - "info": "UI_MAIN_BATTLE_PASS_PASS_CARD_LABEL_BASIC_PASS", - "zh-hk": "", - "en": "Basic Pass", - "id": "Basic Pass" - }, - { - "info": "UI_MAIN_BATTLE_PASS_PASS_CARD_LABEL_PLATINUM_PASS", - "zh-hk": "", - "en": "Platinum Pass", - "id": "Platinum Pass" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_TITLE", - "zh-hk": "", - "en": "Platinum Pass", - "id": "Platinum Pass" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_TIP_BUY_SUCCESS", - "zh-hk": "", - "en": "SUCCESS", - "id": "SUCCESS" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_BUY_LEVEL_TIP_SUCCESS", - "zh-hk": "", - "en": "SUCCESS", - "id": "SUCCESS" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_TIP_DIAMOND_NOT_ENOUGH", - "zh-hk": "", - "en": "Insufficient diamonds", - "id": "Insufficient diamonds" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_BUY_LEVEL_TIP_DIAMOND_NOT_ENOUGH", - "zh-hk": "", - "en": "Insufficient diamonds", - "id": "Insufficient diamonds" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_TIP_PURCHASING_LEVEL", - "zh-hk": "", - "en": "Purchasing Level", - "id": "Purchasing Level" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_UNLOCK_UP_TITLE", - "zh-hk": "", - "en": "Unlock advanced level rewards", - "id": "Unlock advanced level rewards" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_UNLOCK_UP_ONE", - "zh-hk": "", - "en": "More coins", - "id": "More coins" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_UNLOCK_UP_TWO", - "zh-hk": "", - "en": "More upgrade materials", - "id": "More upgrade materials" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_UNLOCK_DOWN_TITLE", - "zh-hk": "", - "en": "Unlock Skin Award", - "id": "Unlock Skin Award" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_UNLOCK_DOWN_ONE", - "zh-hk": "", - "en": "Christmas set", - "id": "Christmas set" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_UNLOCK_DOWN_TWO", - "zh-hk": "", - "en": "deerlet", - "id": "deerlet" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_TIP_MAX_LEVEL", - "zh-hk": "", - "en": "Reached the highest level", - "id": "Reached the highest level" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_CONFIRM_TIPS", - "zh-hk": "", - "en": "[2d2d2d]Do you wangt to spend CEG [ec6502]{0}[2d2d2d] to purchase a [ec6502]platinum pass", - "id": "[2d2d2d]Do you wangt to spend CEG [ec6502]{0}[2d2d2d] to purchase a [ec6503]platinum pass" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_RECHARGE_TIPS", - "zh-hk": "", - "en": "Reached the highest level", - "id": "Reached the highest level" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_BUY_LEVEL_TITLE", - "zh-hk": "", - "en": "Buy level", - "id": "Buy level" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_BUY_LEVEL_TIP_LEVEL_AND_REWARDS_COUNT", - "zh-hk": "", - "en": "[2d2d2d]Upgrade to level [ec6502]{0}[2d2d2d] and immediately unlock [ec6502]{1}[2d2d2d] rewards", - "id": "[2d2d2d]Upgrade to level [ec6502]{0}[2d2d2d] and immediately unlock [ec6502]{1}[2d2d3d] rewards" - }, - { - "info": "UI_MAIN_BUY_PLATINUM_PASS_BUY_LEVEL_TIP_LEVEL_TO", - "zh-hk": "", - "en": "[2d2d2d]Upgrade to level [ec6502]{0}", - "id": "[2d2d2d]Upgrade to level [ec6502]{1}" - }, - { - "info": "UI_MAIN_BATTLE_PASS_PASS_CARD_LABEL_TIME", - "zh-hk": "", - "en": "%m/%d/%Y %H:%M:%S(UTC)", - "id": "%m/%d/%Y %H:%M:%S(UTC)" - }, - { - "info": "UI_MAIN_FORCE_TITLE", - "zh-hk": "", - "en": "Club", - "id": "Club" - }, - { - "info": "UI_MAIN_FORCE_CREATE_TIPS", - "zh-hk": "", - "en": "It costs {0} to create the Club, continue or not.", - "id": "" - }, - { - "info": "UI_MAIN_SELECT_HERO_LABEL_LEVEL", - "zh-hk": "", - "en": "Lv {0}", - "id": "Lv {0}" - }, - { - "info": "UI_MAIN_SELECT_HERO_LABEL_UNIQUE_ID", - "zh-hk": "", - "en": "Token ID", - "id": "ID Token" - }, - { - "info": "UI_MAIN_SELECT_HERO_BTN_CONFIRM", - "zh-hk": "", - "en": "Confirm", - "id": "OK" - }, - { - "info": "UI_MAIN_SELECT_GUN_TITLE", - "zh-hk": "", - "en": "Switch weapon", - "id": "Switch wrapon" - }, - { - "info": "UI_MAIN_SELECT_GUN_LABEL_LEVEL", - "zh-hk": "", - "en": "Lv {0}", - "id": "Lv {0}" - }, - { - "info": "UI_MAIN_SELECT_GUN_LABEL_UNIQUE_ID", - "zh-hk": "", - "en": "Token ID", - "id": "ID Token" - }, - { - "info": "UI_MAIN_SELECT_GUN_BTN_CONFIRM", - "zh-hk": "", - "en": "Confirm", - "id": "OK" - }, - { - "info": "UI_MAIN_SELECT_CHIP_LABEL_LEVEL", - "zh-hk": "", - "en": "Lv {0}", - "id": "Lv {0}" - }, - { - "info": "UI_MAIN_SELECT_CHIP_LABEL_UNIQUE_ID", - "zh-hk": "", - "en": "Token ID", - "id": "ID Token" - }, - { - "info": "UI_MAIN_SELECT_CHIP_BTN_CONFIRM", - "zh-hk": "", - "en": "Confirm", - "id": "OK" - }, - { - "info": "UI_MAIN_FRAGMENT_TITLE", - "zh-hk": "", - "en": "Piece", - "id": "Fragmen" - }, - { - "info": "UI_MAIN_FRAGMENT_SUB_TITLE_HERO", - "zh-hk": "", - "en": "Hero Piece", - "id": "Fragmen Hero" - }, - { - "info": "UI_MAIN_FRAGMENT_SUB_TITLE_GUN", - "zh-hk": "", - "en": "Weapon Piece", - "id": "Fragmen Senjata" - }, - { - "info": "UI_MAIN_FRAGMENT_EMPTY_TIP", - "zh-hk": "", - "en": "Oops its empty.", - "id": "Ups! Di sini kosong." - }, - { - "info": "UI_MAIN_FRAGMENT_PRICE_TITLE", - "zh-hk": "", - "en": "Price", - "id": "Harga" - }, - { - "info": "UI_MAIN_FRAGMENT_BTN_AUTOMETIC", - "zh-hk": "", - "en": "Autometic", - "id": "Otomatis" - }, - { - "info": "UI_MAIN_FRAGMENT_BTN_SYNTHESIS", - "zh-hk": "", - "en": "Synthesis", - "id": "Sintesis" - }, - { - "info": "UI_MAIN_FRAGMENT_LABEL_PRICE", - "zh-hk": "", - "en": "{0} GOLD", - "id": "{0} GOLD" - }, - { - "info": "UI_MAIN_FRAGMENT_DISABLE_COMFIRM", - "zh-hk": "", - "en": "Your gold or pieces is not enough", - "id": "Gold atau Fragmen Anda tidak cukup." - }, - { - "info": "UI_MAIN_HERO_FRAGMENT_TITLE_COMPPOSABLE", - "zh-hk": "", - "en": "Composable", - "id": "Composable" - }, - { - "info": "UI_MAIN_HERO_FRAGMENT_BTN_SHOW_FRAGMENT", - "zh-hk": "", - "en": "fragment", - "id": "fragment" - }, - { - "info": "UI_MAIN_HERO_FRAGMENT_BTN_SHOW_HERO", - "zh-hk": "", - "en": "Heroes", - "id": "Heroes" - }, - { - "info": "UI_MAIN_HERO_FRAGMENT_TIP_DO_NOT_HAVE_ENOUGH_FRAGMENT", - "zh-hk": "", - "en": "Insufficient fragments", - "id": "Insufficient fragments" - }, - { - "info": "UI_CONFIRM_CARD_BTN_CONFIRM", - "zh-hk": "", - "en": "Confirm", - "id": "OK" - }, - { - "info": "UI_CONFIRM_CARD_BTN_CANCEL", - "zh-hk": "", - "en": "Cancel", - "id": "Batal" - }, - { - "info": "UI_COMMON_ATTR_INCREASE_DETAILS_TITLE", - "zh-hk": "", - "en": "Details", - "id": "Detil" - }, - { - "info": "UI_COMMON_ATTR_INCREASE_DETAILS_LEVEL", - "zh-hk": "", - "en": "Lv {0}", - "id": "Lv {0}" - }, - { - "info": "UI_SHOP_TITLE", - "zh-hk": "", - "en": "Store", - "id": "Toko" - }, - { - "info": "UI_SHOP_NFT_BTN", - "zh-hk": "", - "en": "Assets", - "id": "Aset" - }, - { - "info": "UI_SHOP_ITEM_BTN", - "zh-hk": "", - "en": "Item", - "id": "Item" - }, - { - "info": "UI_SHOP_SOLD_TIP", - "zh-hk": "", - "en": "The\u00a0goods\u00a0you\u00a0have\u00a0purchased\u00a0are\u00a0sold\u00a0out.", - "id": "Item yang Anda beli sudah habis terjual." - }, - { - "info": "UI_SHOP_BUY_TITLE", - "zh-hk": "", - "en": "Explanation", - "id": "Keterangan" - }, - { - "info": "UI_SHOP_BUY_USE_BTN", - "zh-hk": "", - "en": "Use", - "id": "Gunakan" - }, - { - "info": "UI_SHOP_BUY_MAX", - "zh-hk": "", - "en": "MAX", - "id": "MAX" - }, - { - "info": "UI_RANK_INFO_TITLE", - "zh-hk": "", - "en": "Ranked", - "id": "PERINGKAT PVP" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE", - "zh-hk": "", - "en": "Setting", - "id": "Pengaturan" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_AUDIO", - "zh-hk": "", - "en": "Audio", - "id": "Audio" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_MUSIC", - "zh-hk": "", - "en": "Music", - "id": "Musik" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_SOUND", - "zh-hk": "", - "en": "Sound", - "id": "Suara" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_SCENE", - "zh-hk": "", - "en": "Graphic Quality", - "id": "Grafik" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_SCENE_HIGH", - "zh-hk": "", - "en": "High", - "id": "Tinggi" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_SCENE_HIGH_TIP", - "zh-hk": "", - "en": "Best Quality", - "id": "Kualitas Terbaik" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_SCENE_LOW", - "zh-hk": "", - "en": "Low", - "id": "Rendah" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_SCENE_LOW_TIP", - "zh-hk": "", - "en": "Normal Quality", - "id": "Kualitas Normal" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_QUALITY_NOTE", - "zh-hk": "", - "en": "The game may stuck for seconds when switching graphic settings.", - "id": "The game may stuck for seconds when switching graphic settings." - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_LIGHT", - "zh-hk": "", - "en": "Shadow", - "id": "Bayangan" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_LIGHT_ON", - "zh-hk": "", - "en": "ON", - "id": "Buka" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_LIGHT_ON_TIP", - "zh-hk": "", - "en": "Turn on the shadows", - "id": "Nyalakan bayangan" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_LIGHT_OFF", - "zh-hk": "", - "en": "OFF", - "id": "Tutup" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_LIGHT_OFF_TIP", - "zh-hk": "", - "en": "Turn off the shadows", - "id": "Matikan bayangan" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_AUTO_AIM", - "zh-hk": "", - "en": "Aiming Operation", - "id": "Operasi Otomatis" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_AUTO_AIM_ON", - "zh-hk": "", - "en": "Auto Aiming", - "id": "Bidik Otomatis" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_AUTO_AIM_ON_TIP", - "zh-hk": "", - "en": "Automatically target the closest enemy when attacking.", - "id": "Secara otomatis menargetkan musuh terdekat saat menyerang." - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_AUTO_AIM_OFF", - "zh-hk": "", - "en": "Manual Aiming", - "id": "Bidik Manual" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_AUTO_AIM_TIP_1", - "zh-hk": "", - "en": "Push Stick", - "id": "Dorong Tongkat" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_AUTO_AIM_TIP_2", - "zh-hk": "", - "en": "Free adjustment of shooting direction", - "id": "Penyesuaian arah pemotretan gratis" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_STICK_LOCK", - "zh-hk": "", - "en": "Left Stick Lock", - "id": "Kunci Tuas Kiri" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_STICK_LOCK_ON", - "zh-hk": "", - "en": "ON", - "id": "Buka" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_STICK_LOCK_OFF", - "zh-hk": "", - "en": "OFF", - "id": "Tutup" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_LOGOUT", - "zh-hk": "", - "en": "Logout", - "id": "Logout" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_EXIT", - "zh-hk": "", - "en": "Exit", - "id": "Keluar" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_TITLE_LANGUAGE", - "zh-hk": "", - "en": "Language", - "id": "Bahasa" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_ENGLISH", - "zh-hk": "", - "en": "English", - "id": "English" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_BTN_INDONESIA", - "zh-hk": "", - "en": "Indonesia", - "id": "Indonesia" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_SUB_PANEL_TITLE_CONTROL", - "zh-hk": "", - "en": "Control", - "id": "Kontrol" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_SUB_PANEL_TITLE_GRAPHICS", - "zh-hk": "", - "en": "Graphics", - "id": "Grafik" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_SUB_PANEL_TITLE_AUDIO", - "zh-hk": "", - "en": "Audio", - "id": "Audio" - }, - { - "info": "UI_MAIN_CONFIG_DIALOG_SUB_PANEL_TITLE_LANGUAGE", - "zh-hk": "", - "en": "Language", - "id": "\nBahasa" - }, - { - "info": "Unlock_text_01", - "zh-hk": "", - "en": "Unlock PVP Match Mode", - "id": "Buka Mode Pencocokan PVP" - }, - { - "info": "Unlock_text_02", - "zh-hk": "", - "en": "Unlock Chip System", - "id": "Buka Sistem Chip" - }, - { - "info": "Unlock_text_03", - "zh-hk": "", - "en": "Unlock Emoji", - "id": "Buka Pengaturan Emoji" - }, - { - "info": "Unlock_text_04", - "zh-hk": "", - "en": "Unlock PVE Mode", - "id": "Buka Mode PVE" - }, - { - "info": "Unlock_text_05", - "zh-hk": "", - "en": "Unlock World Chat", - "id": "Buka Chat Dunia" - }, - { - "info": "Unlock_text_06", - "zh-hk": "", - "en": "Unlock PVP Ranked Mode", - "id": "Buka Mode Peringkat PVP" - }, - { - "info": "Unlock_text_07", - "zh-hk": "", - "en": "Unlock Club", - "id": "Buka Club" - }, - { - "info": "Unlock_text_08", - "zh-hk": "", - "en": "Unlock Parachute", - "id": "Buka Parasut" - }, - { - "info": "Unlock_text_09", - "zh-hk": "", - "en": "Unlock 4th Chip Page", - "id": "Buka Halaman Chip ke-4" - }, - { - "info": "Unlock_text_10", - "zh-hk": "", - "en": "Unlock 5th Chip Page", - "id": "Buka Halaman Chip ke-5" - }, - { - "info": "Unlock_text_11", - "zh-hk": "", - "en": "Unlock Piece Synthesis", - "id": "Buka Sintesis Fragmen" - }, - { - "info": "UNLOCK_SYS_TIP", - "zh-hk": "", - "en": "Star {0} unlock {1}", - "id": " {1} terbuka pada Level {0} " - }, - { - "info": "Skin_des_30700_1", - "zh-hk": "", - "en": "Beast Mode", - "id": "Mode Beast" - }, - { - "info": "Diary_des_71001", - "zh-hk": "", - "en": "Get rewards for daily login.", - "id": "Dapatkan hadiah dari login harian." - }, - { - "info": "Diary_des_71002", - "zh-hk": "", - "en": "Complete 3 Match or Ranked.", - "id": "Selesaikan 3 ronde pertandingan." - }, - { - "info": "Diary_des_71003", - "zh-hk": "", - "en": "Get in top 15 three times.", - "id": "Masuk TOP 15 sebanyak 3x." - }, - { - "info": "Diary_des_71004", - "zh-hk": "", - "en": "3 kills in the game today.", - "id": "Membunuh 3 orang di permainan hari ini." - }, - { - "info": "Diary_des_71005", - "zh-hk": "", - "en": "Deal 15,000 damage today.", - "id": "Memberikan total 15.000 damage hari ini." - }, - { - "info": "Diary_des_71006", - "zh-hk": "", - "en": "Rescued your teammate in today's game.", - "id": "Menyelamatkan sekutu hari ini." - }, - { - "info": "Diary_des_71007", - "zh-hk": "", - "en": "Survived for more than 15 minutes in today's game.", - "id": "Waktu bertahan hidup melebihi 15 menit dalam pertempuran hari ini." - }, - { - "info": "Diary_des_71008", - "zh-hk": "", - "en": "Use the skill 8 times in today's game.", - "id": "Gunakan skill 8x dalam pertempuran hari ini." - }, - { - "info": "Diary_des_71009", - "zh-hk": "", - "en": "Spend 20 Gold today.", - "id": "Konsumsi 20 Gold hari ini." - }, - { - "info": "Diary_des_71010", - "zh-hk": "", - "en": "Complete all daily mission today.", - "id": "Selesaikan semua misi hari ini." - }, - { - "info": "UI_GAME_TIPS1", - "zh-hk": "", - "en": "Grenades are fully equipped", - "id": "Granat sudah mencapai limit." - }, - { - "info": "UI_GAME_TIPS2", - "zh-hk": "", - "en": "Consumables are fully equipped", - "id": "Bahan konsumsi sudah mencapai limit." - }, - { - "info": "UI_GAME_TIPS3", - "zh-hk": "", - "en": "The defibrillator is fully equipped", - "id": "Defibrillator sudah mencapai limit." - }, - { - "info": "Diary_name_71001", - "zh-hk": "", - "en": "Diary Login", - "id": "Login Harian" - }, - { - "info": "Diary_name_71002", - "zh-hk": "", - "en": "Play The Game", - "id": "Ikut Pertandingan" - }, - { - "info": "Diary_name_71003", - "zh-hk": "", - "en": "Effective Strike", - "id": "Serangan Efektif" - }, - { - "info": "Diary_name_71004", - "zh-hk": "", - "en": "Killer Instinct", - "id": "Naluri Pembunuh" - }, - { - "info": "Diary_name_71005", - "zh-hk": "", - "en": "Tons Of Damage", - "id": "Damage Penuh" - }, - { - "info": "Diary_name_71006", - "zh-hk": "", - "en": "Never Give Up", - "id": "Pantang Menyerah" - }, - { - "info": "Diary_name_71007", - "zh-hk": "", - "en": "Perserverance", - "id": "Teguh Hati" - }, - { - "info": "Diary_name_71008", - "zh-hk": "", - "en": "Battle Talent", - "id": "Bakat Bertempur" - }, - { - "info": "Diary_name_71009", - "zh-hk": "", - "en": "Market Trading", - "id": "Perdagangan Pasar" - }, - { - "info": "Diary_name_71010", - "zh-hk": "", - "en": "Perfect Ending", - "id": "Akhir Sempurna" - }, - { - "info": "UI_CHIP_LIST_TITLE", - "zh-hk": "", - "en": "Chip", - "id": "Chip" - }, - { - "info": "UI_CHIP_LIST_BTN_1", - "zh-hk": "", - "en": "\u2160", - "id": "\u2160" - }, - { - "info": "UI_CHIP_LIST_BTN_2", - "zh-hk": "", - "en": "\u2161", - "id": "\u2161" - }, - { - "info": "UI_CHIP_LIST_BTN_3", - "zh-hk": "", - "en": "\u2162", - "id": "\u2162" - }, - { - "info": "UI_CHIP_LIST_BTN_ALL", - "zh-hk": "", - "en": "All", - "id": "Semua" - }, - { - "info": "UI_CHIP_LIST_BTN_ATK", - "zh-hk": "", - "en": "ATK", - "id": "ATK" - }, - { - "info": "UI_CHIP_LIST_BTN_DEF", - "zh-hk": "", - "en": "DEF", - "id": "DEF" - }, - { - "info": "UI_CHIP_LIST_BTN_SUP", - "zh-hk": "", - "en": "SUP", - "id": "Bantuan" - }, - { - "info": "UI_PVE_BTN_TITLE", - "zh-hk": "", - "en": "Raid", - "id": "Serangan" - }, - { - "info": "UI_PVE_TITLE", - "zh-hk": "", - "en": "Defend\u00a0the\u00a0sawmill", - "id": "Pertahankan Kamp Gergaji" - }, - { - "info": "UI_PVE_DESC", - "zh-hk": "", - "en": "More\u00a0and\u00a0more\u00a0enemies\u00a0are\u00a0invading\u00a0the\u00a0sawmill,\u00a0and\u00a0the\u00a0hero\u00a0team\u00a0is\u00a0gathering.\\nThe\u00a0enemies\u00a0will\u00a0appear\u00a0in\u00a0waves\u00a0from\u00a0the\u00a0small\u00a0cabins.\\nThe\u00a0player\u00a0needs\u00a0to\u00a0kill\u00a0the\u00a0enemies\u00a0within\u00a0a\u00a0specified\u00a0time.\\nClear\u00a0all\u00a0waves\u00a0to\u00a0win\u00a0rewards.", - "id": "Banyak musuh yang menyerang Kamp Gergaji.\\nTim Hero mulai berkumpul untuk mengatasi masalah ini.\\nMusuh akan muncul secara bergelombang dari pondok kecil. \\nPemain harus mengalahkan semua musuh dalam waktu yang ditentukan. Kalahkan semua gelombang musuh dan menangkan hadiahnya." - }, - { - "info": "UI_PVE_REWARD", - "zh-hk": "", - "en": "REWARD", - "id": "Hadiah" - }, - { - "info": "UI_PEV_START", - "zh-hk": "", - "en": "Start", - "id": "Mulai" - }, - { - "info": "UI_PEV_SUGGEST", - "zh-hk": "", - "en": "SUGGEST", - "id": "SARAN" - }, - { - "info": "UI_PEV_HERO_LV", - "zh-hk": "", - "en": "Hero Lv", - "id": "Hero Lv" - }, - { - "info": "UI_PEV_WEAPON_LV", - "zh-hk": "", - "en": "Weapon Lv", - "id": "Senjata Lv" - }, - { - "info": "UI_PEV_HERO_P", - "zh-hk": "", - "en": "Daily\u00a0Hero\u00a0Pieces", - "id": "Fragmen Hero Harian" - }, - { - "info": "UI_PEV_WEAPON_P", - "zh-hk": "", - "en": "Daily\u00a0Weapon\u00a0Pieces", - "id": "Fragmen Senjata Harian" - }, - { - "info": "UI_LOGIN_NetError", - "zh-hk": "", - "en": "An error has occurred with your connection", - "id": "Terjadi kesalahan dengan koneksi Anda." - }, - { - "info": "UI_GAME_Skydive", - "zh-hk": "", - "en": "Skydive", - "id": "Skydive" - }, - { - "info": "UI_GAME_Dive", - "zh-hk": "", - "en": "Dive", - "id": "Menyelam" - }, - { - "info": "UI_GAME_Revive", - "zh-hk": "", - "en": "Revive", - "id": "Revive" - }, - { - "info": "UI_GAME_REVIVE_TIME", - "zh-hk": "", - "en": "Respawning {0}s", - "id": "Respawning {0}s" - }, - { - "info": "UI_GAME_Des1", - "zh-hk": "", - "en": "Hurry to the safe zone pointed by the arrow", - "id": "Ikuti tanda panah untuk berpindah ke zona aman sesegera mungkin." - }, - { - "info": "UI_GAME_Safo_time", - "zh-hk": "", - "en": "Safe time", - "id": "Waktu Aman" - }, - { - "info": "UI_GAMEWATCH_Round", - "zh-hk": "", - "en": "Round", - "id": "Ronde" - }, - { - "info": "UI_GAMEWATCH_Score", - "zh-hk": "", - "en": "Score", - "id": "Skor" - }, - { - "info": "UI_GAMEWATCH_Time", - "zh-hk": "", - "en": "Time", - "id": "Waktu" - }, - { - "info": "UI_GAMEWATCH_Settlement", - "zh-hk": "", - "en": "Game Settle", - "id": "Perhitungan" - }, - { - "info": "UI_GAMEWATCH_Kill", - "zh-hk": "", - "en": "Kill", - "id": "Bunuh" - }, - { - "info": "UI_GAMEPVPOver_Please_wait", - "zh-hk": "", - "en": "Please wait", - "id": "Harap tunggu \u2026" - }, - { - "info": "UI_GAMEPVPOver_Match", - "zh-hk": "", - "en": "Match", - "id": "PENCOCOKAN" - }, - { - "info": "UI_GAMEPVPOver_Kill", - "zh-hk": "", - "en": "Kill:", - "id": "Bunuh:" - }, - { - "info": "UI_GAMEPVPOver_CEG_STATUS", - "zh-hk": "", - "en": "CEG STATUS", - "id": "CEG STATUS" - }, - { - "info": "UI_GAMEPVPOver_REWARD", - "zh-hk": "", - "en": "REWARD", - "id": "Hadiah" - }, - { - "info": "UI_GAMEPVPOver_REWARD_Des", - "zh-hk": "", - "en": "Rewards are being settled, please wait", - "id": "Hadiah sedang dalam proses penyelesaian, harap tunggu" - }, - { - "info": "UI_GAMEPVPOver_Return", - "zh-hk": "", - "en": "Continue", - "id": "Kembali" - }, - { - "info": "UI_GAMEPVPOver_Name", - "zh-hk": "", - "en": "Name", - "id": "Nama" - }, - { - "info": "UI_GAMEPVPOver_Kill", - "zh-hk": "", - "en": "Kill", - "id": "Bunuh" - }, - { - "info": "UI_GAMEPVPOver_Damage", - "zh-hk": "", - "en": "Damage", - "id": "Damage" - }, - { - "info": "UI_GAMEPVPOver_Assist", - "zh-hk": "", - "en": "Assist", - "id": "Membantu" - }, - { - "info": "UI_GAMEPVPOver_SurvialTime", - "zh-hk": "", - "en": "Survial Time", - "id": "Waktu Bertahan" - }, - { - "info": "UI_GAMEPVPOver_Recover", - "zh-hk": "", - "en": "Recover", - "id": "Memulihkan" - }, - { - "info": "UI_GAMEPVPOver_Rescue", - "zh-hk": "", - "en": "Rescue", - "id": "Penyelamatan" - }, - { - "info": "UI_GAMEPVEOver_Order", - "zh-hk": "", - "en": "Order", - "id": "Pesan" - }, - { - "info": "UI_GAMEPVEOver_Score", - "zh-hk": "", - "en": "Score", - "id": "Skor" - }, - { - "info": "UI_GAMEPVEOver_Round", - "zh-hk": "", - "en": "Round", - "id": "Ronde" - }, - { - "info": "UI_GAMEPVEOver_Revive", - "zh-hk": "", - "en": "Revive", - "id": "Revive" - }, - { - "info": "UI_ShopItem_des", - "zh-hk": "", - "en": "Missing item {0},\\n cost {1} gold to pruchase.", - "id": "Anda tidak memiliki item {0}. Beli dengan {1} Gold?" - }, - { - "info": "UI_ShopItem_title", - "zh-hk": "", - "en": "PURCHASE", - "id": "PEMBELIAN" - }, - { - "info": "UI_RankMatchDanInfo_title", - "zh-hk": "", - "en": "Segment Description", - "id": "Deskripsi Segmen" - }, - { - "info": "UI_RankMatchDanInfo_reward", - "zh-hk": "", - "en": "REWARD", - "id": "Hadiah" - }, - { - "info": "UI_RankMatchDanInfo_Nova", - "zh-hk": "", - "en": "Nova:", - "id": "Nova:" - }, - { - "info": "Shop_page_1", - "zh-hk": "", - "en": "Recommend", - "id": "Recommend" - }, - { - "info": "Shop_page_2", - "zh-hk": "", - "en": "Hero", - "id": "Hero" - }, - { - "info": "Shop_page_3", - "zh-hk": "", - "en": "Weapon", - "id": "Senjata" - }, - { - "info": "Shop_page_4", - "zh-hk": "", - "en": "Chip", - "id": "Chip" - }, - { - "info": "Shop_page_5", - "zh-hk": "", - "en": "Consume", - "id": "Konsumsi" - }, - { - "info": "item_des_10001", - "zh-hk": "", - "en": "CounterFire Universal Token.It be earned by playing games and has multiple uses.", - "id": "CounterFire Universal Token.It diperoleh dengan bermain game dan memiliki banyak kegunaan." - }, - { - "info": "item_des_10002", - "zh-hk": "", - "en": "CounterFire Governance Token.It is spend when Upgrade or Advance in the game.", - "id": "CounterFire Governance Token, dihabiskan saat Upgrade atau Advance dalam game." - }, - { - "info": "item_des_10003", - "zh-hk": "", - "en": "Energy required to level up.", - "id": "Energi yang dibutuhkan untuk naik level." - }, - { - "info": "item_des_10004", - "zh-hk": "", - "en": "Energy required for daily active mission.", - "id": "Energi yang dibutuhkan untuk misi aktif harian." - }, - { - "info": "item_des_10005", - "zh-hk": "", - "en": "Energy required for weekly active mission.", - "id": "Energi yang dibutuhkan untuk misi aktif mingguan." - }, - { - "info": "item_des_30100", - "zh-hk": "", - "en": "Hill is an assault type hero, her skill is Phantom Flash which can trick your opponent.", - "id": "Hill adalah Hero penyergap." - }, - { - "info": "item_des_30200", - "zh-hk": "", - "en": "Yamada is an attacking hero who uses two rocket launchers to deal area damage.", - "id": "Yamada adalah Hero penyerang." - }, - { - "info": "item_des_30300", - "zh-hk": "", - "en": "Aoi is a support hero whose skill is to place a medkit in the area and heal teammates in range and deal damage to enemies.", - "id": "Aoi adalah Hero pendukung. " - }, - { - "info": "item_des_30400", - "zh-hk": "", - "en": "Astral is an assault hero, her skill throws a hook claw to pull enemies in front of her, or hooks an obstacle to move herself to the object.", - "id": "Astral adalah Hero penyergap. " - }, - { - "info": "item_des_30500", - "zh-hk": "", - "en": "Miffy is an attacking hero whose skill is stealth and can be used to ambush or escape.", - "id": "Miffy adalah Hero penyerang." - }, - { - "info": "item_des_30600", - "zh-hk": "", - "en": "Canoe is a support hero, her skill is to expand her aura to benefit her teammates.", - "id": "Canoe adalah Hero pendukung." - }, - { - "info": "item_des_30700", - "zh-hk": "", - "en": "Mariana is an assault hero, her skill is to jump to the enemy and claw to deal damage and slow down.", - "id": "Mariana adalah Hero penyergap" - }, - { - "info": "item_des_30800", - "zh-hk": "", - "en": "Dragonscale is an attacking hero whose skill is to summon a turret to help him attack the enemy.", - "id": "Dragonscale adalah Hero penyerang. " - }, - { - "info": "item_des_30900", - "zh-hk": "", - "en": "Lazer is a tank type hero whose skill is ramming into enemies to cause damage and stun effects.", - "id": "Lazer adalah Hero tank. " - }, - { - "info": "item_des_31000", - "zh-hk": "", - "en": "Kurosawa is a tank type hero whose skill is to raise his shield to ward off damage and smash it to inflict damage and stun on enemies.", - "id": "Kurosawa adalah Hero tank." - }, - { - "info": "item_des_40101", - "zh-hk": "", - "en": "Original", - "id": "Skin Original" - }, - { - "info": "item_des_40102", - "zh-hk": "", - "en": "Nine-tailed ", - "id": "Skin Fox" - }, - { - "info": "item_des_40201", - "zh-hk": "", - "en": "Original", - "id": "Skin Original" - }, - { - "info": "item_des_40301", - "zh-hk": "", - "en": "Original", - "id": "Skin Original" - }, - { - "info": "item_des_40401", - "zh-hk": "", - "en": "Original", - "id": "Skin Original" - }, - { - "info": "item_des_40501", - "zh-hk": "", - "en": "Original", - "id": "Skin Original" - }, - { - "info": "item_des_40601", - "zh-hk": "", - "en": "Original", - "id": "Skin Original" - }, - { - "info": "item_des_40701", - "zh-hk": "", - "en": "Original", - "id": "Skin Original" - }, - { - "info": "item_des_40702", - "zh-hk": "", - "en": "Beast Mode", - "id": "Skin Beast" - }, - { - "info": "item_des_40801", - "zh-hk": "", - "en": "Original", - "id": "Skin Original" - }, - { - "info": "item_des_40901", - "zh-hk": "", - "en": "Original", - "id": "Skin Original" - }, - { - "info": "item_des_40902", - "zh-hk": "", - "en": "Machinist", - "id": "Skin Steel" - }, - { - "info": "item_des_41001", - "zh-hk": "", - "en": "Original", - "id": "Skin Original" - }, - { - "info": "item_des_70001", - "zh-hk": "", - "en": "Submachine has a medium range and deals medium damage", - "id": "Submachine adalah senjata dengan jangkauan dan DMG menengah." - }, - { - "info": "item_des_70002", - "zh-hk": "", - "en": "Shotgun is an efficient weapon for close range combat", - "id": "Shotgun adalah senjata efisien untuk pertempuran jarak dekat." - }, - { - "info": "item_des_70003", - "zh-hk": "", - "en": "Sniper rifles have a long range and high damage", - "id": "Sniper adalah senjata dengan tembakan jarak jauh dan DMG yang tinggi." - }, - { - "info": "item_des_70004", - "zh-hk": "", - "en": "Bazooka is extremely damaging and can deal ranged damage", - "id": "Bazooka sangat mematikan dan dapat memberikan DMG area." - }, - { - "info": "item_des_70005", - "zh-hk": "", - "en": "Laser has a special sputtering effect and deal high damage", - "id": "Laser memiliki efek penembusan dan memberikan DMG tinggi." - }, - { - "info": "item_des_70006", - "zh-hk": "", - "en": "Freeze slows the enemy on a hit and deal less damage", - "id": "Freeze dapat memperlambat musuh dan memberikan DMG rendah." - }, - { - "info": "item_des_70007", - "zh-hk": "", - "en": "Flame can cut through obstacles to deal ranged damage", - "id": "Flame dapat menembus rintangan dan memberikan DMG jarak jauh." - }, - { - "info": "item_des_130023", - "zh-hk": "", - "en": "Solid shell can reduce the time of the controlled hero", - "id": "Solid shell can reduce the time of the controlled hero" - }, - { - "info": "item_des_130024", - "zh-hk": "", - "en": "Original life can improve skill's resume effect", - "id": "Original life can improve skill's resume effect" - }, - { - "info": "item_des_140001", - "zh-hk": "", - "en": "Revive your hero in PVE mode", - "id": "Hidupkan Hero Anda di mode PVE." - }, - { - "info": "item_des_110100", - "zh-hk": "", - "en": "Pieces required to recruit CounterFire heroes. (Special)", - "id": "Fragmen wajib untuk sintesis Hero CounterFire. (Istimewa)" - }, - { - "info": "item_des_110110", - "zh-hk": "", - "en": "Pieces required to recruit CounterFire heroes. (Part 1)", - "id": "Fragmen wajib untuk sintesis Hero CounterFire. (bagian 1)" - }, - { - "info": "item_des_110120", - "zh-hk": "", - "en": "Pieces required to recruit CounterFire heroes. (Part 2)", - "id": "Fragmen wajib untuk sintesis Hero CounterFire. (bagian 2)" - }, - { - "info": "item_des_110130", - "zh-hk": "", - "en": "Pieces required to recruit CounterFire heroes. (Part 3)", - "id": "Fragmen wajib untuk sintesis Hero CounterFire. (bagian 3)" - }, - { - "info": "item_des_110140", - "zh-hk": "", - "en": "Pieces required to recruit CounterFire heroes. (Part 4)", - "id": "Fragmen wajib untuk sintesis Hero CounterFire. (bagian 4)" - }, - { - "info": "item_des_110150", - "zh-hk": "", - "en": "Pieces required to recruit CounterFire heroes. (Part 5)", - "id": "Fragmen wajib untuk sintesis Hero CounterFire. (bagian 5)" - }, - { - "info": "item_des_110160", - "zh-hk": "", - "en": "Pieces required to recruit CounterFire heroes. (Part 6)", - "id": "Fragmen wajib untuk sintesis Hero CounterFire. (bagian 6)" - }, - { - "info": "item_des_110170", - "zh-hk": "", - "en": "Pieces required to recruit CounterFire heroes. (Part 7)", - "id": "Fragmen wajib untuk sintesis Hero CounterFire. (bagian 7)" - }, - { - "info": "item_des_110180", - "zh-hk": "", - "en": "Pieces required to recruit CounterFire heroes. (Part 8)", - "id": "Fragmen wajib untuk sintesis Hero CounterFire. (bagian 8)" - }, - { - "info": "item_des_110200", - "zh-hk": "", - "en": "Pieces needed to make CounterFire weapons. (Special)", - "id": "Fragmen wajib untuk sintesis Senjata CounterFire. (Istimewa)" - }, - { - "info": "item_des_110210", - "zh-hk": "", - "en": "Pieces needed to make CounterFire weapons. (Part 1)", - "id": "Fragmen wajib untuk sintesis Senjata CounterFire. (bagian 1)" - }, - { - "info": "item_des_110220", - "zh-hk": "", - "en": "Pieces needed to make CounterFire weapons. (Part 2)", - "id": "Fragmen wajib untuk sintesis Senjata CounterFire. (bagian 2)" - }, - { - "info": "item_des_110230", - "zh-hk": "", - "en": "Pieces needed to make CounterFire weapons. (Part 3)", - "id": "Fragmen wajib untuk sintesis Senjata CounterFire. (bagian 3)" - }, - { - "info": "item_des_110240", - "zh-hk": "", - "en": "Pieces needed to make CounterFire weapons. (Part 4)", - "id": "Fragmen wajib untuk sintesis Senjata CounterFire. (bagian 4)" - }, - { - "info": "item_des_110250", - "zh-hk": "", - "en": "Pieces needed to make CounterFire weapons. (Part 5)", - "id": "Fragmen wajib untuk sintesis Senjata CounterFire. (bagian 5)" - }, - { - "info": "item_des_110260", - "zh-hk": "", - "en": "Pieces needed to make CounterFire weapons. (Part 6)", - "id": "Fragmen wajib untuk sintesis Senjata CounterFire. (bagian 6)" - }, - { - "info": "item_des_110270", - "zh-hk": "", - "en": "Pieces needed to make CounterFire weapons. (Part 7)", - "id": "Fragmen wajib untuk sintesis Senjata CounterFire. (bagian 7)" - }, - { - "info": "item_des_110280", - "zh-hk": "", - "en": "Pieces needed to make CounterFire weapons. (Part 8)", - "id": "Fragmen wajib untuk sintesis Senjata CounterFire. (bagian 8)" - }, - { - "info": "item_des_90001", - "zh-hk": "", - "en": "Edit your name.", - "id": "Ganti nama Anda." - }, - { - "info": "item_des_210001", - "zh-hk": "", - "en": "Randomly obtain weapons", - "id": "Dapatkan Senjata secara acak" - }, - { - "info": "item_des_210002", - "zh-hk": "", - "en": "Randomly obtain Heroes", - "id": "Dapatkan Hero secara acak" - }, - { - "info": "item_des_210003", - "zh-hk": "", - "en": "Randomly obtain Chips", - "id": "Dapatkan Dll secara acak" - }, - { - "info": "item_des_210011", - "zh-hk": "", - "en": "Randomly obtain weapon pieces", - "id": "Dapatkan Fragmen Hero secara acak" - }, - { - "info": "item_des_210012", - "zh-hk": "", - "en": "Randomly obtain hero pieces", - "id": "Dapatkan Fragmen Senjata secara acak" - }, - { - "info": "item_des_30201", - "zh-hk": "", - "en": "Create smoke and cover your team", - "id": "Buat asap dan tutupi tim Anda" - }, - { - "info": "item_des_30202", - "zh-hk": "", - "en": "Deal damage to the enemy", - "id": "Berikan kerusakan pada musuh" - }, - { - "info": "item_des_30204", - "zh-hk": "", - "en": "Players in the burn zone take sustained damage", - "id": "Pemain di zona terbakar mengalami kerusakan berkelanjutan" - }, - { - "info": "item_des_30301", - "zh-hk": "", - "en": "Recover yourself less HP", - "id": "Pulihkan diri Anda lebih sedikit HP" - }, - { - "info": "item_des_30302", - "zh-hk": "", - "en": "Recover yourself more HP", - "id": "Pulihkan diri Anda lebih banyak HP" - }, - { - "info": "item_des_30303", - "zh-hk": "", - "en": "Self-help after falling to the ground", - "id": "Swadaya setelah jatuh ke tanah" - }, - { - "info": "item_des_30701", - "zh-hk": "", - "en": "Disguised as a water pipe", - "id": "Menyamar sebagai pipa air" - }, - { - "info": "item_des_30702", - "zh-hk": "", - "en": "Disguised as a pile of weeds", - "id": "Menyamar sebagai tumpukan rumput liar" - }, - { - "info": "item_des_30703", - "zh-hk": "", - "en": "Disguised as a pile of newspapers", - "id": "Menyamar sebagai tumpukan koran" - }, - { - "info": "item_des_30704", - "zh-hk": "", - "en": "Disguised as a barricade", - "id": "Menyamar sebagai barikade" - }, - { - "info": "item_des_30705", - "zh-hk": "", - "en": "Disguised as a box", - "id": "Menyamar sebagai kotak" - }, - { - "info": "item_des_30706", - "zh-hk": "", - "en": "Disguised as a stump", - "id": "Menyamar sebagai tunggul" - }, - { - "info": "item_des_31001", - "zh-hk": "", - "en": "An energy gem, three of which are collected to give the character health", - "id": "Permata energi, tiga di antaranya dikumpulkan untuk memberikan kesehatan karakter" - }, - { - "info": "item_des_31003", - "zh-hk": "", - "en": "One energy gem, three per collection to increase the character's skill level", - "id": "Satu permata energi, tiga per koleksi untuk meningkatkan tingkat keterampilan karakter" - }, - { - "info": "item_des_31004", - "zh-hk": "", - "en": "Energy shields, characters receive corresponding shield values", - "id": "Perisai energi, karakter menerima nilai perisai yang sesuai" - }, - { - "info": "item_des_31005", - "zh-hk": "", - "en": "One gun part, collect three to increase the power of the gun", - "id": "Satu bagian senjata, kumpulkan tiga untuk meningkatkan kekuatan pistol" - }, - { - "info": "item_des_20111", - "zh-hk": "", - "en": "A faster automatic rifle with a lower power but 30 rounds", - "id": "Senapan otomatis yang lebih cepat dengan daya yang lebih rendah tetapi 30 putaran" - }, - { - "info": "item_des_20112", - "zh-hk": "", - "en": "A faster automatic rifle with a lower power but 30 rounds", - "id": "Senapan otomatis yang lebih cepat dengan daya yang lebih rendah tetapi 30 putaran" - }, - { - "info": "item_des_20113", - "zh-hk": "", - "en": "A faster automatic rifle with a lower power but 30 rounds", - "id": "Senapan otomatis yang lebih cepat dengan daya yang lebih rendah tetapi 30 putaran" - }, - { - "info": "item_des_20114", - "zh-hk": "", - "en": "A faster automatic rifle with a lower power but 30 rounds", - "id": "Senapan otomatis yang lebih cepat dengan daya yang lebih rendah tetapi 30 putaran" - }, - { - "info": "item_des_20115", - "zh-hk": "", - "en": "A faster automatic rifle with a lower power but 30 rounds", - "id": "Senapan otomatis yang lebih cepat dengan daya yang lebih rendah tetapi 30 putaran" - }, - { - "info": "item_des_20211", - "zh-hk": "", - "en": "A slower shotgun with a higher power but only 5 rounds", - "id": "Shotgun yang lebih lambat dengan kekuatan yang lebih tinggi tetapi hanya 5 putaran" - }, - { - "info": "item_des_20212", - "zh-hk": "", - "en": "A slower shotgun with a higher power but only 5 rounds", - "id": "Shotgun yang lebih lambat dengan kekuatan yang lebih tinggi tetapi hanya 5 putaran" - }, - { - "info": "item_des_20213", - "zh-hk": "", - "en": "A slower shotgun with a higher power but only 5 rounds", - "id": "Shotgun yang lebih lambat dengan kekuatan yang lebih tinggi tetapi hanya 5 putaran" - }, - { - "info": "item_des_20214", - "zh-hk": "", - "en": "A slower shotgun with a higher power but only 5 rounds", - "id": "Shotgun yang lebih lambat dengan kekuatan yang lebih tinggi tetapi hanya 5 putaran" - }, - { - "info": "item_des_20215", - "zh-hk": "", - "en": "A slower shotgun with a higher power but only 5 rounds", - "id": "Shotgun yang lebih lambat dengan kekuatan yang lebih tinggi tetapi hanya 5 putaran" - }, - { - "info": "item_des_20311", - "zh-hk": "", - "en": "A slow-firing sniper rifle with a high power but only 5 rounds", - "id": "Senapan sniper yang menembak lambat dengan kekuatan tinggi tetapi hanya 5 putaran" - }, - { - "info": "item_des_20312", - "zh-hk": "", - "en": "A slow-firing sniper rifle with a high power but only 5 rounds", - "id": "Senapan sniper yang menembak lambat dengan kekuatan tinggi tetapi hanya 5 putaran" - }, - { - "info": "item_des_20313", - "zh-hk": "", - "en": "A slow-firing sniper rifle with a high power but only 5 rounds", - "id": "Senapan sniper yang menembak lambat dengan kekuatan tinggi tetapi hanya 5 putaran" - }, - { - "info": "item_des_20314", - "zh-hk": "", - "en": "A slow-firing sniper rifle with a high power but only 5 rounds", - "id": "Senapan sniper yang menembak lambat dengan kekuatan tinggi tetapi hanya 5 putaran" - }, - { - "info": "item_des_20315", - "zh-hk": "", - "en": "A slow-firing sniper rifle with a high power but only 5 rounds", - "id": "Senapan sniper yang menembak lambat dengan kekuatan tinggi tetapi hanya 5 putaran" - }, - { - "info": "item_des_20411", - "zh-hk": "", - "en": "A laser gun with a faster rate of fire, less powerful, but can shoot through enemies and has 15 rounds", - "id": "Senjata laser dengan laju tembakan yang lebih cepat, kurang kuat, tetapi dapat menembak musuh dan memiliki 15 putaran" - }, - { - "info": "item_des_20412", - "zh-hk": "", - "en": "A laser gun with a faster rate of fire, less powerful, but can shoot through enemies and has 15 rounds", - "id": "Senjata laser dengan laju tembakan yang lebih cepat, kurang kuat, tetapi dapat menembak musuh dan memiliki 15 putaran" - }, - { - "info": "item_des_20413", - "zh-hk": "", - "en": "A laser gun with a faster rate of fire, less powerful, but can shoot through enemies and has 15 rounds", - "id": "Senjata laser dengan laju tembakan yang lebih cepat, kurang kuat, tetapi dapat menembak musuh dan memiliki 15 putaran" - }, - { - "info": "item_des_20414", - "zh-hk": "", - "en": "A laser gun with a faster rate of fire, less powerful, but can shoot through enemies and has 15 rounds", - "id": "Senjata laser dengan laju tembakan yang lebih cepat, kurang kuat, tetapi dapat menembak musuh dan memiliki 15 putaran" - }, - { - "info": "item_des_20415", - "zh-hk": "", - "en": "A laser gun with a faster rate of fire, less powerful, but can shoot through enemies and has 15 rounds", - "id": "Senjata laser dengan laju tembakan yang lebih cepat, kurang kuat, tetapi dapat menembak musuh dan memiliki 15 putaran" - }, - { - "info": "item_des_20511", - "zh-hk": "", - "en": "A freeze gun with a faster rate of fire, less powerful but slowing down enemy movement, with 20 rounds", - "id": "Pistol beku dengan laju tembakan yang lebih cepat, kurang kuat tetapi memperlambat gerakan musuh, dengan 20 putaran" - }, - { - "info": "item_des_20512", - "zh-hk": "", - "en": "A freeze gun with a faster rate of fire, less powerful but slowing down enemy movement, with 20 rounds", - "id": "Pistol beku dengan laju tembakan yang lebih cepat, kurang kuat tetapi memperlambat gerakan musuh, dengan 20 putaran" - }, - { - "info": "item_des_20513", - "zh-hk": "", - "en": "A freeze gun with a faster rate of fire, less powerful but slowing down enemy movement, with 20 rounds", - "id": "Pistol beku dengan laju tembakan yang lebih cepat, kurang kuat tetapi memperlambat gerakan musuh, dengan 20 putaran" - }, - { - "info": "item_des_20514", - "zh-hk": "", - "en": "A freeze gun with a faster rate of fire, less powerful but slowing down enemy movement, with 20 rounds", - "id": "Pistol beku dengan laju tembakan yang lebih cepat, kurang kuat tetapi memperlambat gerakan musuh, dengan 20 putaran" - }, - { - "info": "item_des_20515", - "zh-hk": "", - "en": "A freeze gun with a faster rate of fire, less powerful but slowing down enemy movement, with 20 rounds", - "id": "Pistol beku dengan laju tembakan yang lebih cepat, kurang kuat tetapi memperlambat gerakan musuh, dengan 20 putaran" - }, - { - "info": "item_des_20611", - "zh-hk": "", - "en": "A flame gun with a fast rate of fire, less powerful but able to keep enemies burning, with 30 rounds", - "id": "Pistol api dengan rate of fire yang cepat, kurang kuat namun mampu membuat musuh tetap menyala, dengan 30 peluru" - }, - { - "info": "item_des_20612", - "zh-hk": "", - "en": "A flame gun with a fast rate of fire, less powerful but able to keep enemies burning, with 30 rounds", - "id": "Pistol api dengan rate of fire yang cepat, kurang kuat namun mampu membuat musuh tetap menyala, dengan 30 peluru" - }, - { - "info": "item_des_20613", - "zh-hk": "", - "en": "A flame gun with a fast rate of fire, less powerful but able to keep enemies burning, with 30 rounds", - "id": "Pistol api dengan rate of fire yang cepat, kurang kuat namun mampu membuat musuh tetap menyala, dengan 30 peluru" - }, - { - "info": "item_des_20614", - "zh-hk": "", - "en": "A flame gun with a fast rate of fire, less powerful but able to keep enemies burning, with 30 rounds", - "id": "Pistol api dengan rate of fire yang cepat, kurang kuat namun mampu membuat musuh tetap menyala, dengan 30 peluru" - }, - { - "info": "item_des_20615", - "zh-hk": "", - "en": "A flame gun with a fast rate of fire, less powerful but able to keep enemies burning, with 30 rounds", - "id": "Pistol api dengan rate of fire yang cepat, kurang kuat namun mampu membuat musuh tetap menyala, dengan 30 peluru" - }, - { - "info": "item_des_20711", - "zh-hk": "", - "en": "A slow-firing rocket launcher with great power, it explodes when it hits an enemy, and it has only 1 bullet", - "id": "Peluncur roket yang menembak lambat dengan kekuatan besar, meledak ketika mengenai musuh, dan hanya memiliki 1 peluru" - }, - { - "info": "item_des_20712", - "zh-hk": "", - "en": "A slow-firing rocket launcher with great power, it explodes when it hits an enemy, and it has only 1 bullet", - "id": "Peluncur roket yang menembak lambat dengan kekuatan besar, meledak ketika mengenai musuh, dan hanya memiliki 1 peluru" - }, - { - "info": "item_des_20713", - "zh-hk": "", - "en": "A slow-firing rocket launcher with great power, it explodes when it hits an enemy, and it has only 1 bullet", - "id": "Peluncur roket yang menembak lambat dengan kekuatan besar, meledak ketika mengenai musuh, dan hanya memiliki 1 peluru" - }, - { - "info": "item_des_20714", - "zh-hk": "", - "en": "A slow-firing rocket launcher with great power, it explodes when it hits an enemy, and it has only 1 bullet", - "id": "Peluncur roket yang menembak lambat dengan kekuatan besar, meledak ketika mengenai musuh, dan hanya memiliki 1 peluru" - }, - { - "info": "item_des_20715", - "zh-hk": "", - "en": "A slow-firing rocket launcher with great power, it explodes when it hits an enemy, and it has only 1 bullet", - "id": "Peluncur roket yang menembak lambat dengan kekuatan besar, meledak ketika mengenai musuh, dan hanya memiliki 1 peluru" - }, - { - "info": "skill_des_10101", - "zh-hk": "", - "en": "Restores the hero's health", - "id": "Memulihkan kesehatan pahlawan" - }, - { - "info": "skill_des_10201", - "zh-hk": "", - "en": "Gain a speedup effect", - "id": "Mendapatkan efek percepatan" - }, - { - "info": "skill_des_10301", - "zh-hk": "", - "en": "Get a small amount of damage", - "id": "Mendapatkan sejumlah kecil kerusakan" - }, - { - "info": "skill_des_10401", - "zh-hk": "", - "en": "Blinks a short distance", - "id": "Berkedip dalam jarak pendek" - }, - { - "info": "skill_des_10501", - "zh-hk": "", - "en": "Clear its own control effects", - "id": "Menghapus efek kontrolnya sendiri" - }, - { - "info": "skill_des_20101", - "zh-hk": "", - "en": "Hill performs rapid displacement and leaves a shadow in the same place, and gets a damage boost for herself, and can return to the shadow by clicking the skill again within 5 seconds.", - "id": "Hill berpindah dengan cepat dan meninggalkan bayangan di tempat tersebut serta DMG yang diterima juga meningkat. Klik skill 1x lagi dalam 5 menit untuk kembali ke tempat bayangan." - }, - { - "info": "skill_des_20201", - "zh-hk": "", - "en": "Yamada launches 2 rounds of missiles to bombard a designated area, enemies in the area will be damaged.", - "id": "Yamada meluncurkan 2 misil untuk membombardir area tertentu dan memberikan DMG ke musuh di area tersebut." - }, - { - "info": "skill_des_20301", - "zh-hk": "", - "en": "Aoi Throw a Elven Deer to the designated location, friendly troops touching the Elven Deer will restore life, enemy troops touching the Elven Deer will take damage, up to 3 Elven Deer exist at the same time.", - "id": "Aoi Melempar Rusa Elf ke lokasi yang ditentukan, pasukan yang bersahabat menyentuh Rusa Elf akan memulihkan kehidupan, pasukan musuh yang menyentuh Rusa Elf akan menerima kerusakan, hingga 3 Rusa Elf yang ada di waktu yang sama." - }, - { - "info": "skill_des_20401", - "zh-hk": "", - "en": "Astral launches a hook that pulls the first enemy hit in front of her. The damage of the next shot is dramatically increased after a successful grab, and when she grabs an obstacle, she will move to the obstacle's location.", - "id": "Astral menembakkan kait dan menarik musuh pertama yang terkena kaitan ke depannya. DMG tembakan berikutnya akan meningkat drastis setelah penangkapan berhasil. Saat memegang penghadang, dia akan berpindah ke lokasi benda tersebut." - }, - { - "info": "skill_des_20501", - "zh-hk": "", - "en": "Miffy immediately becomes invisible and gets a movement speed boost, while invisible, performing any action and getting too close to the enemy will release invisibility.", - "id": "Miffy langsung memasuki status Transparan dan SPD pindahnya meningkat. Status Transparan akan dibatalkan saat melakukan operasi apa pun atau terlalu dekat dengan musuh." - }, - { - "info": "skill_des_20601", - "zh-hk": "", - "en": "Canoe doubles the range of the aura, and all teammates within the aura get speed up, attack up and healing.", - "id": "Canoe menggandakan jangkauan aura. Semua sekutu dalam jangkauan akan mendapatkan efek Percepatan, Serangan, dan Pemulihan." - }, - { - "info": "skill_des_20701", - "zh-hk": "", - "en": "Mariana makes a quick dash to the designated location, and enemies within the location are slowdown and damage.", - "id": "Mariana berlari cepat ke lokasi yang ditentukan. Musuh yang berada di lokasi tersebut akan terkena Slow dan DMG." - }, - { - "info": "skill_des_20801", - "zh-hk": "", - "en": "Dragonscale places a cannon in front of himself, which will automatically attack nearby enemies, giving priority to targets shot by the himself.", - "id": "Dragonscale meletakkan 1 meriam di depannya yang akan menyerang musuh terdekat secara otomatis. Meriam prioritas menyerang target yang diserang Hero." - }, - { - "info": "skill_des_20901", - "zh-hk": "", - "en": "Lazar rush in the specified direction, stop the rush when he touches the enemy, and cause stun and damage to all enemies around himself.", - "id": "Lazar menyerbu ke arah yang ditentukan dan akan berhenti setelah mengenai musuh. Lalu memberikan Stun dan DMG ke semua musuh di sekitar." - }, - { - "info": "skill_des_21001", - "zh-hk": "", - "en": "Kurosawa raises his shield to ward off damage, and when he raises his shield, he can use the skill again to stun and damage all enemies in the sector directly in front of him.", - "id": "Kurosawa mengangkat perisai untuk menghadang DMG. Dalam status ini, gunakan skill 1x lagi untuk memberikan Stun dan DMG ke semua musuh dalam area kipas di depan." - }, - { - "info": "skill_des_30101", - "zh-hk": "", - "en": "When an enemy attacked by Hill dies within 5 seconds, a heart will be dropped and Hill heals her HP when she is near the heart, which will disappear after 20 seconds.", - "id": "Musuh yang terkena serangan Hill akan tewas dalam 5 menit dan menjatuhkan sebuah jantung. HP Serigala akan pulih dalam jumlah tertentu saat mendekati jantung yang akan hilang 20 detik kemudian." - }, - { - "info": "skill_des_30201", - "zh-hk": "", - "en": "No damage for 5 seconds, will get movement speed up.", - "id": "Bonus SPD berpindah akan didapat jika tidak terkena DMG selama 5 detik." - }, - { - "info": "skill_des_30301", - "zh-hk": "", - "en": "No damage for 5 seconds, start to healing your HP.", - "id": "HP Anda akan mulai pulih jika tidak terkena DMG selama 5 detik." - }, - { - "info": "skill_des_30401", - "zh-hk": "", - "en": "HP below a certain level, will get a temporary shield lasts 5 seconds.", - "id": "Saat HP kurang dari X% akan mendapatkan sebuah Perisai Sementara selama 5 detik. " - }, - { - "info": "skill_des_30501", - "zh-hk": "", - "en": "According to the distance between herself and the enemy to enhance the damage, the farther the distance the higher the damage.", - "id": "Meningkatkan DMG berdasarkan jarak diri sendiri dan musuh. Semakin jauh jarak, semakin tinggi DMG-nya." - }, - { - "info": "skill_des_30601", - "zh-hk": "", - "en": "Teammates inside Canoe's aura will slowly healing HP.", - "id": "HP sekutu yang berada dalam jangkauan aura Canoe akan pulih secara perlahan." - }, - { - "info": "skill_des_30701", - "zh-hk": "", - "en": "Movement speed increases when moving through the grass.", - "id": "SPD pindah akan meningkat saat bergerak di rerumputan." - }, - { - "info": "skill_des_30801", - "zh-hk": "", - "en": "The cannons and the damage they cause will heal himself.", - "id": "Meriam dan DMG yang diberikan akan memulihkan dirinya sendiri." - }, - { - "info": "skill_des_30901", - "zh-hk": "", - "en": "No damage for 5 seconds, will get a shield.", - "id": "Perisai akan didapat jika tidak terkena DMG selama 5 detik." - }, - { - "info": "skill_des_31001", - "zh-hk": "", - "en": "Reduce the damage he himself suffered", - "id": "Mengurangi DMG yang diterima dirinya sendiri." - }, - { - "info": "rankRank_Rank_Name_1", - "zh-hk": "", - "en": "BRONZE \u2164", - "id": "PERUNGGU \u2164" - }, - { - "info": "rankRank_Rank_Name_2", - "zh-hk": "", - "en": "BRONZE \u2163", - "id": "PERUNGGU \u2163" - }, - { - "info": "rankRank_Rank_Name_3", - "zh-hk": "", - "en": "BRONZE \u2162", - "id": "PERUNGGU \u2162" - }, - { - "info": "rankRank_Rank_Name_4", - "zh-hk": "", - "en": "BRONZE \u2161", - "id": "PERUNGGU \u2161" - }, - { - "info": "rankRank_Rank_Name_5", - "zh-hk": "", - "en": "BRONZE \u2160", - "id": "PERUNGGU \u2160" - }, - { - "info": "rankRank_Rank_Name_6", - "zh-hk": "", - "en": "SILVER \u2164", - "id": "PERAK \u2164" - }, - { - "info": "rankRank_Rank_Name_7", - "zh-hk": "", - "en": "SILVER \u2163", - "id": "PERAK \u2163" - }, - { - "info": "rankRank_Rank_Name_8", - "zh-hk": "", - "en": "SILVER \u2162", - "id": "PERAK \u2162" - }, - { - "info": "rankRank_Rank_Name_9", - "zh-hk": "", - "en": "SILVER \u2161", - "id": "PERAK \u2161" - }, - { - "info": "rankRank_Rank_Name_10", - "zh-hk": "", - "en": "SILVER \u2160", - "id": "PERAK \u2160" - }, - { - "info": "rankRank_Rank_Name_11", - "zh-hk": "", - "en": "GOLD \u2164", - "id": "EMAS \u2164" - }, - { - "info": "rankRank_Rank_Name_12", - "zh-hk": "", - "en": "GOLD \u2163", - "id": "EMAS \u2163" - }, - { - "info": "rankRank_Rank_Name_13", - "zh-hk": "", - "en": "GOLD \u2162", - "id": "EMAS \u2162" - }, - { - "info": "rankRank_Rank_Name_14", - "zh-hk": "", - "en": "GOLD \u2161", - "id": "EMAS \u2161" - }, - { - "info": "rankRank_Rank_Name_15", - "zh-hk": "", - "en": "GOLD \u2160", - "id": "EMAS \u2160" - }, - { - "info": "rankRank_Rank_Name_16", - "zh-hk": "", - "en": "PLATINUM \u2164", - "id": "PLATNLIM \u2164" - }, - { - "info": "rankRank_Rank_Name_17", - "zh-hk": "", - "en": "PLATINUM \u2163", - "id": "PLATNLIM \u2163" - }, - { - "info": "rankRank_Rank_Name_18", - "zh-hk": "", - "en": "PLATINUM \u2162", - "id": "PLATNLIM \u2162" - }, - { - "info": "rankRank_Rank_Name_19", - "zh-hk": "", - "en": "PLATINUM \u2161", - "id": "PLATNLIM \u2161" - }, - { - "info": "rankRank_Rank_Name_20", - "zh-hk": "", - "en": "PLATINUM \u2160", - "id": "PLATNLIM \u2160" - }, - { - "info": "rankRank_Rank_Name_21", - "zh-hk": "", - "en": "DIAMOND \u2164", - "id": "BERLIAN \u2164" - }, - { - "info": "rankRank_Rank_Name_22", - "zh-hk": "", - "en": "DIAMOND \u2163", - "id": "BERLIAN \u2163" - }, - { - "info": "rankRank_Rank_Name_23", - "zh-hk": "", - "en": "DIAMOND \u2162", - "id": "BERLIAN \u2162" - }, - { - "info": "rankRank_Rank_Name_24", - "zh-hk": "", - "en": "DIAMOND \u2161", - "id": "BERLIAN \u2161" - }, - { - "info": "rankRank_Rank_Name_25", - "zh-hk": "", - "en": "DIAMOND \u2160", - "id": "BERLIAN \u2160" - }, - { - "info": "rankRank_Rank_Name_26", - "zh-hk": "", - "en": "STARSHINE \u2164", - "id": "SANGBINTANG \u2164" - }, - { - "info": "rankRank_Rank_Name_27", - "zh-hk": "", - "en": "STARSHINE \u2163", - "id": "SANGBINTANG \u2163" - }, - { - "info": "rankRank_Rank_Name_28", - "zh-hk": "", - "en": "STARSHINE \u2162", - "id": "SANGBINTANG \u2162" - }, - { - "info": "rankRank_Rank_Name_29", - "zh-hk": "", - "en": "STARSHINE \u2161", - "id": "SANGBINTANG \u2161" - }, - { - "info": "rankRank_Rank_Name_30", - "zh-hk": "", - "en": "STARSHINE \u2160", - "id": "SANGBINTANG \u2160" - }, - { - "info": "rankRank_Rank_Name_31", - "zh-hk": "", - "en": "MASTER \u2164", - "id": "MASTER \u2164" - }, - { - "info": "rankRank_Rank_Name_32", - "zh-hk": "", - "en": "MASTER \u2163", - "id": "MASTER \u2163" - }, - { - "info": "rankRank_Rank_Name_33", - "zh-hk": "", - "en": "MASTER \u2162", - "id": "MASTER \u2162" - }, - { - "info": "rankRank_Rank_Name_34", - "zh-hk": "", - "en": "MASTER \u2161", - "id": "MASTER \u2161" - }, - { - "info": "rankRank_Rank_Name_35", - "zh-hk": "", - "en": "MASTER \u2160", - "id": "MASTER \u2160" - }, - { - "info": "rankRank_Rank_Name_36", - "zh-hk": "", - "en": "THEARCHY \u2164", - "id": "LEGENDARIS \u2164" - }, - { - "info": "rankRank_Rank_Name_37", - "zh-hk": "", - "en": "THEARCHY \u2163", - "id": "LEGENDARIS \u2163" - }, - { - "info": "rankRank_Rank_Name_38", - "zh-hk": "", - "en": "THEARCHY \u2162", - "id": "LEGENDARIS \u2162" - }, - { - "info": "rankRank_Rank_Name_39", - "zh-hk": "", - "en": "THEARCHY \u2161", - "id": "LEGENDARIS \u2161" - }, - { - "info": "rankRank_Rank_Name_40", - "zh-hk": "", - "en": "THEARCHY \u2160", - "id": "LEGENDARIS\u2160" - }, - { - "info": "UI_Friend_FriendBtn", - "zh-hk": "", - "en": "Friend", - "id": "Teman" - }, - { - "info": "UI_Friend_ApplyBtn", - "zh-hk": "", - "en": "Apply", - "id": "Berlaku" - }, - { - "info": "UI_Friend_BlacklistBtn", - "zh-hk": "", - "en": "Blacklist", - "id": "Daftar hitam" - }, - { - "info": "UI_Friend_none", - "zh-hk": "", - "en": "You will need some new friends.", - "id": "Anda akan membutuhkan beberapa teman baru." - }, - { - "info": "UI_Friend_Title", - "zh-hk": "", - "en": "Friend", - "id": "Teman" - }, - { - "info": "UI_Apply_none", - "zh-hk": "", - "en": "No Apply", - "id": "Tidak berlaku" - }, - { - "info": "UI_Blacklist_none", - "zh-hk": "", - "en": "No Blacklist", - "id": "Tidak Daftar hitam" - }, - { - "info": "UI_Fragment_Piece_10", - "zh-hk": "", - "en": "Testimonial", - "id": "Testimonial" - }, - { - "info": "UI_Fragment_Piece_11", - "zh-hk": "", - "en": "Shoulder", - "id": "Shoulder" - }, - { - "info": "UI_Fragment_Piece_12", - "zh-hk": "", - "en": "Left Arm", - "id": "Left Arm" - }, - { - "info": "UI_Fragment_Piece_13", - "zh-hk": "", - "en": "Abdomen", - "id": "Abdomen" - }, - { - "info": "UI_Fragment_Piece_14", - "zh-hk": "", - "en": "Left Leg", - "id": "Left Leg" - }, - { - "info": "UI_Fragment_Piece_15", - "zh-hk": "", - "en": "Head", - "id": "Head" - }, - { - "info": "UI_Fragment_Piece_16", - "zh-hk": "", - "en": "Chest", - "id": "Chest" - }, - { - "info": "UI_Fragment_Piece_17", - "zh-hk": "", - "en": "Right Arm", - "id": "Right Arm" - }, - { - "info": "UI_Fragment_Piece_18", - "zh-hk": "", - "en": "Right Leg", - "id": "Right Leg" - }, - { - "info": "UI_Fragment_Piece_20", - "zh-hk": "", - "en": "Blueprint", - "id": "Blueprint" - }, - { - "info": "UI_Fragment_Piece_21", - "zh-hk": "", - "en": "Sight", - "id": "Sight" - }, - { - "info": "UI_Fragment_Piece_22", - "zh-hk": "", - "en": "Stock", - "id": "Stock" - }, - { - "info": "UI_Fragment_Piece_23", - "zh-hk": "", - "en": "Trigger", - "id": "Trigger" - }, - { - "info": "UI_Fragment_Piece_24", - "zh-hk": "", - "en": "Ammo", - "id": "Ammo" - }, - { - "info": "UI_Fragment_Piece_25", - "zh-hk": "", - "en": "Bolt", - "id": "Bolt" - }, - { - "info": "UI_Fragment_Piece_26", - "zh-hk": "", - "en": "Barrel", - "id": "Barrel" - }, - { - "info": "UI_Fragment_Piece_27", - "zh-hk": "", - "en": "Grip", - "id": "Grip" - }, - { - "info": "UI_Fragment_Piece_28", - "zh-hk": "", - "en": "Clip", - "id": "Clip" - }, - { - "info": "UI_PreviewHero_Title", - "zh-hk": "", - "en": "Choose Your Hero", - "id": "Choose Your Hero" - }, - { - "info": "UI_PreviewHero_Des", - "zh-hk": "", - "en": "Choose a hero from the list that you want to synthesize", - "id": "Pilih hero dari daftar yang ingin Anda sintesis" - }, - { - "info": "UI_PreviewHero_CancelBTN", - "zh-hk": "", - "en": "Cancel", - "id": "Batal" - }, - { - "info": "UI_PreviewHero_ConFirmBTN", - "zh-hk": "", - "en": "Confirm", - "id": "OK" - }, - { - "info": "UI_PreviewGun_Title", - "zh-hk": "", - "en": "Choose Your Weapon", - "id": "Pilih Senjata Anda" - }, - { - "info": "UI_PreviewGun_Des", - "zh-hk": "", - "en": "Choose a weapon from the list that you want to synthesize", - "id": "Pilih senjata dari daftar yang ingin Anda sintesis" - }, - { - "info": "UI_PreviewGun_CancelBTN", - "zh-hk": "", - "en": "Cancel", - "id": "Batal" - }, - { - "info": "UI_PreviewGun_ConFirmBTN", - "zh-hk": "", - "en": "Confirm", - "id": "OK" - }, - { - "info": "UI_PlayerInfo_BlacklistBTN", - "zh-hk": "", - "en": "Blacklist", - "id": "Daftar hitam" - }, - { - "info": "UI_PlayerInfo_AddFriendBTN", - "zh-hk": "", - "en": "Add friend", - "id": "Tambah teman" - }, - { - "info": "UI_PlayerInfo_AddClubBTN", - "zh-hk": "", - "en": "Add Club", - "id": "Tambah Club" - }, - { - "info": "UI_PlayerInfo_InviteBTN", - "zh-hk": "", - "en": "Invite team", - "id": "Undang tim" - }, - { - "info": "UI_Hero_grasp_name_1", - "zh-hk": "", - "en": "Firearm Proficiency \u2160", - "id": "Kemahiran \u2160" - }, - { - "info": "UI_Hero_grasp_name_2", - "zh-hk": "", - "en": "Firearm Proficiency \u2161", - "id": "Kemahiran \u2161" - }, - { - "info": "UI_Hero_grasp_name_3", - "zh-hk": "", - "en": "Firearm Proficiency \u2162", - "id": "Kemahiran \u2162" - }, - { - "info": "UI_Hero_grasp_name_4", - "zh-hk": "", - "en": "Firearm Proficiency \u2163", - "id": "Kemahiran \u2163" - }, - { - "info": "UI_Hero_grasp_desc_id_1", - "zh-hk": "", - "en": "Hitting the enemy 5 times will freeze the enemy in place", - "id": "Menabrak musuh 5 kali akan membekukan musuh di tempat" - }, - { - "info": "UI_Hero_grasp_desc_id_2", - "zh-hk": "", - "en": "Improved deceleration effect", - "id": "Efek perlambatan yang ditingkatkan" - }, - { - "info": "UI_Hero_grasp_desc_id_3", - "zh-hk": "", - "en": "Specialization damage increased by 20%", - "id": "Kerusakan spesialisasi meningkat sebesar 20%" - }, - { - "info": "UI_Hero_grasp_desc_id_4", - "zh-hk": "", - "en": "Freezing time increased,Hit the enemy 4 times", - "id": "Waktu pembekuan meningkat, Pukul musuh 4 kali" - }, - { - "info": "UI_Hero_grasp_desc_id_5", - "zh-hk": "", - "en": "Summon a small robot to assist in the attack", - "id": "Memanggil robot kecil untuk membantu serangan" - }, - { - "info": "UI_Hero_grasp_desc_id_6", - "zh-hk": "", - "en": "Range increase", - "id": "Peningkatan jangkauan" - }, - { - "info": "UI_Hero_grasp_desc_id_7", - "zh-hk": "", - "en": "Specialization damage increased by 20%", - "id": "Kerusakan spesialisasi meningkat sebesar 20%" - }, - { - "info": "UI_Hero_grasp_desc_id_8", - "zh-hk": "", - "en": "Robot have increased damage and attack frequency", - "id": "Robot memiliki peningkatan kerusakan dan frekuensi serangan" - }, - { - "info": "UI_Hero_grasp_desc_id_9", - "zh-hk": "", - "en": "Gain speedup after hitting an attack", - "id": "Dapatkan peningkatan kecepatan setelah melakukan serangan" - }, - { - "info": "UI_Hero_grasp_desc_id_10", - "zh-hk": "", - "en": "Shot range increase", - "id": "Peningkatan jangkauan tembakan" - }, - { - "info": "UI_Hero_grasp_desc_id_11", - "zh-hk": "", - "en": "Specialization damage increased by 20%", - "id": "Kerusakan spesialisasi meningkat sebesar 20%" - }, - { - "info": "UI_Hero_grasp_desc_id_12", - "zh-hk": "", - "en": "Speedup increased, shrapnel count increased", - "id": "Kecepatan meningkat, jumlah pecahan peluru meningkat" - }, - { - "info": "UI_Hero_grasp_desc_id_13", - "zh-hk": "", - "en": "Attack hits add up to 100 points and immediately gain shields", - "id": "Serangan serangan bertambah hingga 100 poin dan langsung mendapatkan perisai" - }, - { - "info": "UI_Hero_grasp_desc_id_14", - "zh-hk": "", - "en": "Range increase", - "id": "Peningkatan jangkauan" - }, - { - "info": "UI_Hero_grasp_desc_id_15", - "zh-hk": "", - "en": "Specialization damage increased by 20%", - "id": "Kerusakan spesialisasi meningkat sebesar 20%" - }, - { - "info": "UI_Hero_grasp_desc_id_16", - "zh-hk": "", - "en": "Gain point more easily,shield increase", - "id": "Mendapatkan poin dengan lebih mudah, peningkatan perisai" - }, - { - "info": "UI_Hero_grasp_desc_id_17", - "zh-hk": "", - "en": "Hitting the 6th bullet will reduce enemy defenses", - "id": "Menembak peluru ke-6 akan mengurangi pertahanan musuh" - }, - { - "info": "UI_Hero_grasp_desc_id_18", - "zh-hk": "", - "en": "The ballistic offset is reduced", - "id": "Offset balistik berkurang" - }, - { - "info": "UI_Hero_grasp_desc_id_19", - "zh-hk": "", - "en": "Specialization damage increased by 20%", - "id": "Kerusakan spesialisasi meningkat sebesar 20%" - }, - { - "info": "UI_Hero_grasp_desc_id_20", - "zh-hk": "", - "en": "Hit count reduced to 5, reducing enemy defenses even more", - "id": "Hit count dikurangi menjadi 5, mengurangi pertahanan musuh lebih banyak lagi" - }, - { - "info": "UI_Hero_grasp_desc_id_21", - "zh-hk": "", - "en": "A hit will cause the enemy to bleed continuously", - "id": "Hit akan menyebabkan musuh berdarah terus menerus" - }, - { - "info": "UI_Hero_grasp_desc_id_22", - "zh-hk": "", - "en": "Shot range reduce", - "id": "Jarak tembak berkurang" - }, - { - "info": "UI_Hero_grasp_desc_id_23", - "zh-hk": "", - "en": "Specialization damage increased by 20%", - "id": "Kerusakan spesialisasi meningkat sebesar 20%" - }, - { - "info": "UI_Hero_grasp_desc_id_24", - "zh-hk": "", - "en": "Range increase,shrapnel count increase", - "id": "Peningkatan jangkauan, peningkatan jumlah pecahan peluru" - }, - { - "info": "UI_Hero_grasp_desc_id_25", - "zh-hk": "", - "en": "When you kill an enemy, you gain a shortened skill CD", - "id": "Saat Anda membunuh musuh, Anda mendapatkan CD skill yang lebih pendek" - }, - { - "info": "UI_Hero_grasp_desc_id_26", - "zh-hk": "", - "en": "Increased clip capacity", - "id": "Peningkatan kapasitas klip" - }, - { - "info": "UI_Hero_grasp_desc_id_27", - "zh-hk": "", - "en": "Specialization damage increased by 20%", - "id": "Kerusakan spesialisasi meningkat sebesar 20%" - }, - { - "info": "UI_Hero_grasp_desc_id_28", - "zh-hk": "", - "en": "When you kill an enemy,the skill CD will be reset", - "id": "Saat Anda membunuh musuh, CD skill akan disetel ulang" - }, - { - "info": "UI_Hero_grasp_desc_id_29", - "zh-hk": "", - "en": "A hit slows the enemy down", - "id": "Sebuah pukulan memperlambat musuh" - }, - { - "info": "UI_Hero_grasp_desc_id_30", - "zh-hk": "", - "en": "Increased critical hit rate", - "id": "Peningkatan critical hit rate" - }, - { - "info": "UI_Hero_grasp_desc_id_31", - "zh-hk": "", - "en": "Specialization damage increased by 20%", - "id": "Kerusakan spesialisasi meningkat sebesar 20%" - }, - { - "info": "UI_Hero_grasp_desc_id_32", - "zh-hk": "", - "en": "Increased speed reduction and increased critical damage", - "id": "Peningkatan pengurangan kecepatan dan peningkatan kerusakan kritis" - }, - { - "info": "UI_Hero_grasp_desc_id_33", - "zh-hk": "", - "en": "The Bazooka will explode when it hits, creating a flame zone", - "id": "Bazoka akan meledak saat mengenai, menciptakan zona api" - }, - { - "info": "UI_Hero_grasp_desc_id_34", - "zh-hk": "", - "en": "The Bazooka explosion range increased", - "id": "Jangkauan ledakan Bazoka meningkat" - }, - { - "info": "UI_Hero_grasp_desc_id_35", - "zh-hk": "", - "en": "Specialization damage increased by 20%", - "id": "Kerusakan spesialisasi meningkat sebesar 20%" - }, - { - "info": "UI_Hero_grasp_desc_id_36", - "zh-hk": "", - "en": "Flame duration increases and flame damage increases", - "id": "Durasi nyala api meningkat dan kerusakan api meningkat" - }, - { - "info": "UI_Hero_grasp_desc_id_37", - "zh-hk": "", - "en": "Hitting the enemy 7 times will increase atk", - "id": "Menabrak musuh 7 kali akan meningkatkan atk" - }, - { - "info": "UI_Hero_grasp_desc_id_38", - "zh-hk": "", - "en": "Increased defense", - "id": "Peningkatan pertahanan" - }, - { - "info": "UI_Hero_grasp_desc_id_39", - "zh-hk": "", - "en": "Specialization damage increased by 20%", - "id": "Kerusakan spesialisasi meningkat sebesar 20%" - }, - { - "info": "UI_Hero_grasp_desc_id_40", - "zh-hk": "", - "en": "Hitting the enemy 6 times will increase atk", - "id": "Menabrak musuh 6 kali akan meningkatkan atk" - }, - { - "info": "UI_Game_PVE_Tips", - "zh-hk": "", - "en": "Tips:Consume Revive Coin to get back the fight!", - "id": "Tips: Konsumsi Revive Coin untuk kembali bertarung!" - }, - { - "info": "UI_Game_PVE_ResurrectionBTN", - "zh-hk": "", - "en": "Resurrection", - "id": "Kebangkitan" - }, - { - "info": "UI_FRIEND_BTN_ADD_FRIEND", - "zh-hk": "", - "en": "Add Friend", - "id": "Add Friend" - }, - { - "info": "UI_MAIN_ADD_FRIEND_CARD_TITLE", - "zh-hk": "", - "en": "Add Friend", - "id": "Add Friend" - }, - { - "info": "UI_MAIN_ADD_FRIEND_CARD_INPUT_TIP", - "zh-hk": "", - "en": "Search username or ID", - "id": "Search username or ID" - }, - { - "info": "UI_MAIN_ADD_FRIEND_CARD_BTN_SEARCH", - "zh-hk": "", - "en": "Search", - "id": "Search" - }, - { - "info": "UI_MAIN_ADD_FRIEND_CARD_BTN_ADD_FRIEND", - "zh-hk": "", - "en": "Add friend", - "id": "Add friend" - }, - { - "info": "UI_MAIN_ADD_FRIEND_CARD_TIP_NO_FOUND", - "zh-hk": "", - "en": "No Found", - "id": "No Found" - }, - { - "info": "UI_MAIN_ADD_FRIEND_CARD_TIP_NO_INPUT_CONTENT", - "zh-hk": "", - "en": "Please enter content", - "id": "Please enter content" - }, - { - "info": "UI_MAIN_ADD_FRIEND_CARD_BTN_PLAYER_INFO", - "zh-hk": "", - "en": "Player Info", - "id": "Player Info" - }, - { - "info": "UI_MAIN_ADD_FRIEND_CARD_TIP_ADDED", - "zh-hk": "", - "en": "Added", - "id": "Added" - }, - { - "info": "COMMON_LABEL_ONLINE", - "zh-hk": "", - "en": "Online", - "id": "Online" - }, - { - "info": "COMMON_LABEL_OFFLINE_TIME_MINUTE", - "zh-hk": "", - "en": "{0} Minute ago", - "id": "{0} Minute ago" - }, - { - "info": "COMMON_LABEL_OFFLINE_TIME_HOUR", - "zh-hk": "", - "en": "{0} Hour ago", - "id": "{0} Hour ago" - }, - { - "info": "COMMON_LABEL_OFFLINE_TIME_DAY", - "zh-hk": "", - "en": "{0} Days ago", - "id": "{0} Days ago" - }, - { - "info": "FRIEND_SERVER_USER_STATE_ONLINE", - "zh-hk": "", - "en": "Online", - "id": "Online" - }, - { - "info": "FRIEND_SERVER_USER_STATE_OFFLINE", - "zh-hk": "", - "en": "Offline", - "id": "Offline" - }, - { - "info": "UI_MAIN_FORCE_SUB_PAGE_BTN_MEBER", - "zh-hk": "", - "en": "Member", - "id": "Anggota" - }, - { - "info": "UI_MAIN_FORCE_SUB_PAGE_BTN_APPLY", - "zh-hk": "", - "en": "Apply", - "id": "Mendaftar" - }, - { - "info": "UI_MAIN_FORCE_INFO_MEMBERS", - "zh-hk": "", - "en": "Members", - "id": "Anggota" - }, - { - "info": "UI_MAIN_FORCE_INFO_HISTORY", - "zh-hk": "", - "en": "History", - "id": "Sejarah" - }, - { - "info": "UI_MAIN_FORCE_MEMBER_INFOMATION", - "zh-hk": "", - "en": "Information", - "id": "Informasi" - }, - { - "info": "UI_MAIN_FORCE_MEMBER_ID", - "zh-hk": "", - "en": "ID", - "id": "ID" - }, - { - "info": "UI_MAIN_FORCE_MEMBER_STATUS", - "zh-hk": "", - "en": "Status", - "id": "Status" - }, - { - "info": "UI_MAIN_FORCE_APPLY_INFORMATION", - "zh-hk": "", - "en": "Information / ID", - "id": "Informasi / ID" - }, - { - "info": "UI_MAIN_FORCE_APPLY_ID", - "zh-hk": "", - "en": "ID", - "id": "ID" - }, - { - "info": "UI_MAIN_FORCE_APPLY_STATUS", - "zh-hk": "", - "en": "Status", - "id": "Status" - }, - { - "info": "UI_MAIN_FORCE_APPLY_BAR_BTN_APPROVE", - "zh-hk": "", - "en": "Approve", - "id": "Menyetujui" - }, - { - "info": "UI_MAIN_FORCE_APPLY_BAR_BTN_REJECTION", - "zh-hk": "", - "en": "Rejection", - "id": "Penolakan" - }, - { - "info": "UI_MAIN_FORCE_LIST_SEARCH_LOOKUP", - "zh-hk": "", - "en": "lookup", - "id": "pencarian" - }, - { - "info": "UI_MAIN_FORCE_LIST_BTN_SEARCH", - "zh-hk": "", - "en": "Search", - "id": "Pencarian" - }, - { - "info": "UI_MAIN_FORCE_LIST_BTN_REFRESH", - "zh-hk": "", - "en": "Refresh", - "id": "Segarkan" - }, - { - "info": "UI_MAIN_FORCE_LIST_FORCE", - "zh-hk": "", - "en": "Club", - "id": "Persekutuan" - }, - { - "info": "UI_MAIN_FORCE_LIST_LEADER", - "zh-hk": "", - "en": "Leader", - "id": "Pemimpin" - }, - { - "info": "UI_MAIN_FORCE_LIST_MEMBERS", - "zh-hk": "", - "en": "Members", - "id": "Anggota" - }, - { - "info": "UI_MAIN_FORCE_LIST_CONDITION", - "zh-hk": "", - "en": "Condition", - "id": "Kondisi" - }, - { - "info": "UI_MAIN_FORCE_LIST_BTN_CREATE", - "zh-hk": "", - "en": "Create", - "id": "Membuat" - }, - { - "info": "UI_MAIN_FORCE_LIST_BTN_APPLY", - "zh-hk": "", - "en": "Apply", - "id": "Terapkan" - }, - { - "info": "UI_MAIN_FORCE_LIST_CREATE_DIALOG_TITLE", - "zh-hk": "", - "en": "Create Organization", - "id": "Buat Organisasi" - }, - { - "info": "UI_MAIN_FORCE_LIST_CREATE_DIALOG_CONFIRM", - "zh-hk": "", - "en": "Create now", - "id": "Buat sekarang" - }, - { - "info": "UI_MAIN_FORCE_LIST_CREATE_DIALOG_TIP", - "zh-hk": "", - "en": "Enter the team name", - "id": "Masukkan nama tim" - }, - { - "info": "UI_MAIN_FORCE_LIST_TIPS_INPUT_NAME", - "zh-hk": "", - "en": "Please input the name of Club", - "id": "Silakan masukkan nama Club" - }, - { - "info": "UI_MAIN_FORCE_LIST_TIPS_SELECT_FORCE", - "zh-hk": "", - "en": "Please select a Club", - "id": "Silakan pilih Persekutuan" - }, - { - "info": "UI_MAIN_FORCE_LIST_TIPS_APPLIED_TO_JOIN", - "zh-hk": "", - "en": "You have applied to join this Club.", - "id": "Anda telah mendaftar untuk bergabung dengan Club ini." - }, - { - "info": "UI_MAIN_FORCE_LIST_TIPS_INPUT_CONTENT_OF_INQUIRY", - "zh-hk": "", - "en": "Please input the content of your inquiry.", - "id": "Silakan masukkan isi pertanyaan Anda." - }, - { - "info": "UI_MAIN_FORCE_LIST_BAR_NO_CONDITION", - "zh-hk": "", - "en": "No condition", - "id": "Tidak ada syarat" - }, - { - "info": "UI_MAIN_FORCE_HISTORY_TITLE", - "zh-hk": "", - "en": "History", - "id": "Sejarah" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_BTN_INFO", - "zh-hk": "", - "en": "Information", - "id": "Informasi" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_BTN_BLACKLIST", - "zh-hk": "", - "en": "Blacklist", - "id": "Daftar Hitam" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_BTN_ADD_FRIEND", - "zh-hk": "", - "en": "Add Friend", - "id": "Tambah Teman" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_BTN_PROMOTED", - "zh-hk": "", - "en": "Promoted", - "id": "Dipromosikan" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_BTN_DEMOTION", - "zh-hk": "", - "en": "Demotion", - "id": "Demosi" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_BTN_KICK_OUT", - "zh-hk": "", - "en": "Kick out", - "id": "Tendang" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_BTN_DISMISS", - "zh-hk": "", - "en": "Dismiss", - "id": "Bubarkan" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_BTN_LEAVE", - "zh-hk": "", - "en": "Leave", - "id": "Meninggalkan" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_KICK_OUT_CONFIRM_TITLE", - "zh-hk": "", - "en": "Kick out", - "id": "Tendang keluar" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_KICK_OUT_CONFIRM_INFO", - "zh-hk": "", - "en": "Are you going to fire\\n{0}?", - "id": "Apakah Anda akan memecat\\n{0}?" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_DISMISS_CONFIRM_TITLE", - "zh-hk": "", - "en": "Dismiss", - "id": "Bubarkan" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_DISMISS_CONFIRM_INFO", - "zh-hk": "", - "en": "Are you sure you want to dismiss\\n Club {0}?", - "id": "Apakah Anda yakin ingin memberhentikan \\nClub {0}?" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_DISMISS_TWO_CONFIRM_TITLE", - "zh-hk": "", - "en": "Dismiss", - "id": "Bubarkan" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_DISMISS_TWO_CONFIRM_INFO", - "zh-hk": "", - "en": "Double check to dissolve Club", - "id": "Periksa ulang untuk membubarkan Club" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_LEAVE_CONFIRM_TITLE", - "zh-hk": "", - "en": "Leave", - "id": "Pergi" - }, - { - "info": "UI_MAIN_FORCE_USER_OPERATION_LEAVE_CONFIRM_INFO", - "zh-hk": "", - "en": "Are you really leaving Club?", - "id": "Apakah Anda benar-benar akan keluar dari Club?" - }, - { - "info": "UI_FAQ_Title", - "zh-hk": "", - "en": "Feedback", - "id": "Feedback" - }, - { - "info": "UI_FAQ_Bug", - "zh-hk": "", - "en": "Bug", - "id": "Bug" - }, - { - "info": "UI_FAQ_Suggest", - "zh-hk": "", - "en": "Suggest", - "id": "SARAN" - }, - { - "info": "UI_FAQ_SendBTN", - "zh-hk": "", - "en": "Send", - "id": "Kirim" - }, - { - "info": "UI_MAIN_RANK_TITLE", - "zh-hk": "", - "en": "Ranking List", - "id": "Daftar Ranking" - }, - { - "info": "UI_MAIN_RANK_BR", - "zh-hk": "", - "en": "BR", - "id": "BR" - }, - { - "info": "UI_MAIN_RANK_4V4", - "zh-hk": "", - "en": "Moba", - "id": "4V4" - }, - { - "info": "UI_MAIN_RANK_DAILY", - "zh-hk": "", - "en": "Daily", - "id": "Daily" - }, - { - "info": "UI_MAIN_RANK_WEEKLY", - "zh-hk": "", - "en": "Weekly", - "id": "Weekly" - }, - { - "info": "UI_MAIN_RANK_RANKING", - "zh-hk": "", - "en": "Ranking", - "id": "Ranking" - }, - { - "info": "UI_MAIN_RANK_ID", - "zh-hk": "", - "en": "Player", - "id": "Pemain" - }, - { - "info": "UI_MAIN_RANK_SECTION", - "zh-hk": "", - "en": "Section", - "id": "" - }, - { - "info": "UI_MAIN_RANK_GAMES_TOTAL", - "zh-hk": "", - "en": "Total Games", - "id": "Total Permainan" - }, - { - "info": "UI_MAIN_RANK_VICTORY", - "zh-hk": "", - "en": "Victory", - "id": "Kemenangan" - }, - { - "info": "UI_MAIN_RANK_MVP", - "zh-hk": "", - "en": "MVP", - "id": "MVP" - }, - { - "info": "UI_MAIN_RANK_TOP_THREE", - "zh-hk": "", - "en": "Top 3 times", - "id": "Top 3 times" - }, - { - "info": "UI_MAIN_RANK_KILL", - "zh-hk": "", - "en": "Kill", - "id": "Bunuh" - }, - { - "info": "UI_MAIN_RANK_RANKNODE_STR_1", - "zh-hk": "", - "en": "Total games", - "id": "Total permainan" - }, - { - "info": "UI_MAIN_RANK_RANKNODE_STR_2", - "zh-hk": "", - "en": "Number of victories", - "id": "Jumlah kemenangan" - }, - { - "info": "UI_MAIN_RANK_RANKNODE_STR_3", - "zh-hk": "", - "en": "Mvp count", - "id": "Kiraan Mvp" - }, - { - "info": "UI_MAIN_RANK_RANKNODE_STR_4", - "zh-hk": "", - "en": "Top three times", - "id": "Top three times" - }, - { - "info": "UI_MAIN_RANK_RANKNODE_STR_5", - "zh-hk": "", - "en": "Kill count", - "id": "Kiraan bunuh" - }, - { - "info": "UI_safety_hint_01", - "zh-hk": "", - "en": "Please proceed to the signal safety area immediately", - "id": "Silakan segera menuju ke area keamanan sinyal" - }, - { - "info": "UI_safety_hint_02", - "zh-hk": "", - "en": "Countdown to elimination outside the signal safety zone [c][FF0000]{0}[-][/c]S", - "id": "Hitung mundur menuju eliminasi di luar zona aman sinyal [c][FF0000]{0}[-][/c]S" - }, - { - "info": "UI_safety_hint_03", - "zh-hk": "", - "en": "Warn! The storm is approaching, please go to the signal safety area immediately", - "id": "Tegur! Badai mendekat, harap segera pergi ke area keamanan sinyal" - }, - { - "info": "weapons_max_tips", - "zh-hk": "", - "en": "[c][FFD700]{0} composed {1} Max!!![-][/c]", - "id": "[c][FFD700]{0} composed {2} Max!!![-][/c]" - }, - { - "info": "Energy_Gem_pickup3", - "zh-hk": "", - "en": "Atk+10%,Hp Max+10%", - "id": "Atk+10%,Hp Max+10%" - }, - { - "info": "Energy_Gem_pickup6", - "zh-hk": "", - "en": "Atk+10%,Hp Max+10%", - "id": "Atk+10%,Hp Max+10%" - }, - { - "info": "Energy_Gem_pickup9", - "zh-hk": "", - "en": "Atk+10%,Hp Max+30%", - "id": "Atk+10%,Hp Max+30%" - }, - { - "info": "Submachine_pick3", - "zh-hk": "", - "en": "When you kill an enemy, you gain a shortened skill CD", - "id": "When you kill an enemy, you gain a shortened skill CD" - }, - { - "info": "Submachine_pick6", - "zh-hk": "", - "en": "Increased clip capacity", - "id": "Increased clip capacity" - }, - { - "info": "Submachine_pick9", - "zh-hk": "", - "en": "When you kill an enemy,the skill CD will be reset", - "id": "When you kill an enemy,the skill CD will be reset" - }, - { - "info": "Shotgun_pick3", - "zh-hk": "", - "en": "Gain speedup after hitting an attack", - "id": "Gain speedup after hitting an attack" - }, - { - "info": "Shotgun_pick6", - "zh-hk": "", - "en": "Shot range increase", - "id": "Shot range increase" - }, - { - "info": "Shotgun_pick9", - "zh-hk": "", - "en": "Speedup increased, shrapnel count increased", - "id": "Speedup increased, shrapnel count increased" - }, - { - "info": "Sniper_pick3", - "zh-hk": "", - "en": "A hit slows the enemy down", - "id": "A hit slows the enemy down" - }, - { - "info": "Sniper_pick6", - "zh-hk": "", - "en": "Increased critical hit rate", - "id": "Increased critical hit rate" - }, - { - "info": "Sniper_pick9", - "zh-hk": "", - "en": "Increased speed reduction and increased critical damage", - "id": "Increased speed reduction and increased critical damage" - }, - { - "info": "Bazooka_pick3", - "zh-hk": "", - "en": "The Bazooka will explode when it hits, creating a flame zone", - "id": "The Bazooka will explode when it hits, creating a flame zone" - }, - { - "info": "Bazooka_pick6", - "zh-hk": "", - "en": "The Bazooka explosion range increased", - "id": "The Bazooka explosion range increased" - }, - { - "info": "Bazooka_pick9", - "zh-hk": "", - "en": "Flame duration increases and flame damage increases", - "id": "Flame duration increases and flame damage increases" - }, - { - "info": "Laser_pick3", - "zh-hk": "", - "en": "Summon a small robot to assist in the attack", - "id": "Summon a small robot to assist in the attack" - }, - { - "info": "Laser_pick6", - "zh-hk": "", - "en": "Range increase", - "id": "Range increase" - }, - { - "info": "Laser_pick9", - "zh-hk": "", - "en": "Robot have increased damage and attack frequency", - "id": "Robot have increased damage and attack frequency" - }, - { - "info": "Freeze_pick3", - "zh-hk": "", - "en": "Hitting the enemy 5 times will freeze the enemy in place", - "id": "Hitting the enemy 6 times will freeze the enemy in place" - }, - { - "info": "Freeze_pick6", - "zh-hk": "", - "en": "Improved deceleration effect", - "id": "Improved deceleration effect" - }, - { - "info": "Freeze_pick9", - "zh-hk": "", - "en": "Freezing time increased,Hit the enemy 4 times", - "id": "Freezing time increased,Hit the enemy 5 times" - }, - { - "info": "Flame_pick3", - "zh-hk": "", - "en": "Hitting the enemy 7 times will increase atk", - "id": "Hitting the enemy 8 times will increase atk" - }, - { - "info": "Flame_pick6", - "zh-hk": "", - "en": "Increased defense", - "id": "Increased defense" - }, - { - "info": "Flame_pick9", - "zh-hk": "", - "en": "Hitting the enemy 6 times will increase atk", - "id": "Hitting the enemy 7 times will increase atk" - }, - { - "info": "Hill_skill_pick3", - "zh-hk": "", - "en": "Increased damage+5%,CD-1s", - "id": "Increased damage+5%,CD-1s" - }, - { - "info": "Hill_skill_pick6", - "zh-hk": "", - "en": "Increased damage+5%,CD-1s", - "id": "Increased damage+5%,CD-1s" - }, - { - "info": "Hill_skill_pick9", - "zh-hk": "", - "en": "Increased damage+5%,CD-1s", - "id": "Increased damage+5%,CD-1s" - }, - { - "info": "Yamada_skill_pick3", - "zh-hk": "", - "en": "Base Damage+15,Increased damage+10%", - "id": "Base Damage+15,Increased damage+11%" - }, - { - "info": "Yamada_skill_pick6", - "zh-hk": "", - "en": "Base Damage+30,Increased damage+10%", - "id": "Base Damage+30,Increased damage+11%" - }, - { - "info": "Yamada_skill_pick9", - "zh-hk": "", - "en": "Base Damage+60,Increased damage+10%", - "id": "Base Damage+60,Increased damage+11%" - }, - { - "info": "Aoi_skill_pick3", - "zh-hk": "", - "en": "Base Damage+65 Damage Bonus+0.2,Base Cure+75 Cure Bonus+0.5", - "id": "Base Damage+65 Damage Bonus+0.2,Base Cure+75 Cure Bonus+0.6" - }, - { - "info": "Aoi_skill_pick6", - "zh-hk": "", - "en": "Base Damage+135,Damage Bonus+0.4,Base Cure+140,Cure Bonus+0.8", - "id": "Base Damage+135,Damage Bonus+0.4,Base Cure+140,Cure Bonus+0.9" - }, - { - "info": "Aoi_skill_pick9", - "zh-hk": "", - "en": "Base Damage+255,Damage Bonus+0.4,Base Cure+245,Cure Bonus+1", - "id": "Base Damage+255,Damage Bonus+0.4,Base Cure+245,Cure Bonus+2" - }, - { - "info": "Astral_skill_pick3", - "zh-hk": "", - "en": "Base Damage+50,Increased damage+0.2,CD-1s", - "id": "Base Damage+50,Increased damage+0.2,CD-2s" - }, - { - "info": "Astral_skill_pick6", - "zh-hk": "", - "en": "Base Damage+95,Increased damage+0.4,CD-1s", - "id": "Base Damage+95,Increased damage+0.4,CD-2s" - }, - { - "info": "Astral_skill_pick9", - "zh-hk": "", - "en": "Base Damage+165,Increased damage+0.5,CD-1s", - "id": "Base Damage+165,Increased damage+0.5,CD-2s" - }, - { - "info": "Miffy_skill_pick3", - "zh-hk": "", - "en": "Speed+5% , Duration+1s", - "id": "Speed+5% , Duration+2s" - }, - { - "info": "Miffy_skill_pick6", - "zh-hk": "", - "en": "Speed+5%,Duration+1s", - "id": "Speed+5%,Duration+1s" - }, - { - "info": "Miffy_skill_pick9", - "zh-hk": "", - "en": "Speed+5%,Duration+1s", - "id": "Speed+5%,Duration+1s" - }, - { - "info": "Canoe_skill_pick3", - "zh-hk": "", - "en": "Increased damage+5%,Base Cure+0.01,Speed+5%", - "id": "Increased damage+5%,Base Cure+0.01,Speed+5%" - }, - { - "info": "Canoe_skill_pick6", - "zh-hk": "", - "en": "Increased damage+5%,Base Cure+0.01,Speed+5%", - "id": "Increased damage+5%,Base Cure+0.01,Speed+5%" - }, - { - "info": "Canoe_skill_pick9", - "zh-hk": "", - "en": "Increased damage+5%,Base Cure+0.01,Speed+5%", - "id": "Increased damage+5%,Base Cure+0.01,Speed+5%" - }, - { - "info": "Mariana_skill_pick3", - "zh-hk": "", - "en": "Base Damage+90,Damage Bonus+0.5", - "id": "Base Damage+90,Damage Bonus+0.5" - }, - { - "info": "Mariana_skill_pick6", - "zh-hk": "", - "en": "Base Damage+90,Damage Bonus+0.7", - "id": "Base Damage+90,Damage Bonus+0.7" - }, - { - "info": "Mariana_skill_pick9", - "zh-hk": "", - "en": "Base Damage+345,Damage ,Bonus+0.9", - "id": "Base Damage+345,Damage ,Bonus+0.10" - }, - { - "info": "Dragonscale_skill_pick3", - "zh-hk": "", - "en": "Base Damage+35,Damage Bonus+0.1,Shield+20,hp+500", - "id": "Base Damage+35,Damage Bonus+0.1,Shield+20,hp+501" - }, - { - "info": "Dragonscale_skill_pick6", - "zh-hk": "", - "en": "Base Damage+60,Damage Bonus+0.1,Shield+30 hp+500", - "id": "Base Damage+60,Damage Bonus+0.1,Shield+30 hp+501" - }, - { - "info": "Dragonscale_skill_pick9", - "zh-hk": "", - "en": "Base Damage+105,Damage Bonus+0.1,Shield+20,hp+500", - "id": "Base Damage+105,Damage Bonus+0.1,Shield+20,hp+501" - }, - { - "info": "Lazar_skill_pick3", - "zh-hk": "", - "en": "Base Damage+70,Damage Bonus+0.3,CD-1s", - "id": "Base Damage+70,Damage Bonus+0.3,CD-2s" - }, - { - "info": "Lazar_skill_pick6", - "zh-hk": "", - "en": "Base Damage+165,Damage Bonus+0.3,CD-1s", - "id": "Base Damage+165,Damage Bonus+0.3,CD-2s" - }, - { - "info": "Lazar_skill_pick9", - "zh-hk": "", - "en": "Base Damage+295,Damage Bonus+0.5,CD-1s", - "id": "Base Damage+295,Damage Bonus+0.5,CD-2s" - }, - { - "info": "Kurosawa_skill_pick3", - "zh-hk": "", - "en": "Base Damage+90,Damage Bonus+0.3,Shield+200", - "id": "Base Damage+90,Damage Bonus+0.3,Shield+201" - }, - { - "info": "Kurosawa_skill_pick6", - "zh-hk": "", - "en": "Base Damage+185,Damage Bonus+0.5,Shield+400", - "id": "Base Damage+185,Damage Bonus+0.5,Shield+401" - }, - { - "info": "Kurosawa_skill_pick9", - "zh-hk": "", - "en": "Base Damage+350,Damage Bonus+0.6,Shield+400", - "id": "Base Damage+350,Damage Bonus+0.6,Shield+401" - }, - { - "info": "UI_MAIN_INIT_WALLET", - "zh-hk": "", - "en": "This feature must be initialized wallet.", - "id": "This feature must be initialized wallet." - }, - { - "info": "UI_MAIN_WALLET_TITLE", - "zh-hk": "", - "en": "Wallet", - "id": "Wallet" - }, - { - "info": "UI_MAIN_WALLET_WALLET_BTN", - "zh-hk": "", - "en": "Wallet", - "id": "Wallet" - }, - { - "info": "UI_MAIN_WALLET_POLYGON", - "zh-hk": "", - "en": "Arbitrum One", - "id": "Arbitrum One" - }, - { - "info": "UI_MAIN_WALLET_BTN_NFT", - "zh-hk": "", - "en": "NFT", - "id": "NFT" - }, - { - "info": "UI_MAIN_WALLET_BTN_RECORD", - "zh-hk": "", - "en": "History", - "id": "History" - }, - { - "info": "UI_MAIN_WALLET_ASSET_TITLE", - "zh-hk": "", - "en": "Overview Account", - "id": "Overview Account" - }, - { - "info": "UI_MAIN_WALLET_ASSET_TITLE2", - "zh-hk": "", - "en": "Arbitrum Network", - "id": "Arbitrum Network" - }, - { - "info": "UI_MAIN_WALLET_ASSET_TITLE3", - "zh-hk": "", - "en": "Arbitrum", - "id": "Arbitrum" - }, - { - "info": "UI_MAIN_WALLET_TRADE_BTN", - "zh-hk": "", - "en": "TRADE", - "id": "TRADE" - }, - { - "info": "UI_MAIN_WALLET_RECEIVE_BTN", - "zh-hk": "", - "en": "RECEIVE", - "id": "RECEIVE" - }, - { - "info": "UI_MAIN_WALLET_SEND_BTN", - "zh-hk": "", - "en": "SEND", - "id": "SEND" - }, - { - "info": "UI_MAIN_WALLET_PRIVATE_KEY_BTN", - "zh-hk": "", - "en": "PRIVATE KEY", - "id": "PRIVATE KEY" - }, - { - "info": "UI_MAIN_WALLET_NFT_SELECT_HERO", - "zh-hk": "", - "en": "HEROS", - "id": "HEROS" - }, - { - "info": "UI_MAIN_WALLET_NFT_SELECT_OTHER", - "zh-hk": "", - "en": "OTHER", - "id": "OTHER" - }, - { - "info": "UI_MAIN_WALLET_TOKEN_TITLE_1", - "zh-hk": "", - "en": "Transfer to Arbitrum Chain wallet address", - "id": "Transfer to Arbitrum Chain wallet address" - }, - { - "info": "UI_MAIN_WALLET_TOKEN_TITLE_2", - "zh-hk": "", - "en": "Transfer amount", - "id": "Transfer amount" - }, - { - "info": "UI_MAIN_WALLET_TOKEN_TITLE_3", - "zh-hk": "", - "en": "balance", - "id": "balance" - }, - { - "info": "UI_MAIN_WALLET_TOKEN_TITLE_4", - "zh-hk": "", - "en": "Gas", - "id": "Gas" - }, - { - "info": "UI_MAIN_WALLET_TOKEN_INPUT_1", - "zh-hk": "", - "en": "Input address or QR code", - "id": "Input address or QR code" - }, - { - "info": "UI_MAIN_WALLET_TOKEN_BTN", - "zh-hk": "", - "en": "Confirm", - "id": "Confirm" - }, - { - "info": "UI_MAIN_WALLET_ADD_TITLE", - "zh-hk": "", - "en": "After exporting the private key, please write it down by hand and keep it securely. If the private key is lost, CounterFire officials cannot provide a retrieval function.", - "id": "After exporting the private key, please write it down by hand and keep it securely. If the private key is lost, CounterFire officials cannot provide a retrieval function." - }, - { - "info": "UI_MAIN_WALLET_ADD_BTN", - "zh-hk": "", - "en": "Export Keys", - "id": "Export Keys" - }, - { - "info": "UI_MAIN_WALLET_COPY_TITLE", - "zh-hk": "", - "en": "Successfully copied", - "id": "Successfully copied" - }, - { - "info": "UI_MAIN_WALLET_EXPORT_TITLE", - "zh-hk": "", - "en": "The following is your private key. Please read the instructions carefully:\\n1.Please handwrite and record it on paper.\\n2.CounterFire officials cannot store any user's private key to ensure the security of user's game assets.\\n3.In case of loss of the private key, CounterFire officials cannot retrieve it. Please keep your private key safely.", - "id": "The following is your private key. Please read the instructions carefully:\\n1.Please handwrite and record it on paper.\\n2.CounterFire officials cannot store any user's private key to ensure the security of user's game assets.\\n3.In case of loss of the private key, CounterFire officials cannot retrieve it. Please keep your private key safely." - }, - { - "info": "UI_MAIN_WALLET_EMAIL_TITLE", - "zh-hk": "", - "en": "To purchase Matic, you need to verify your email", - "id": "To purchase Matic, you need to verify your email" - }, - { - "info": "UI_MAIN_WALLET_EMAIL_EMAIL", - "zh-hk": "", - "en": "E-mail", - "id": "E-mail" - }, - { - "info": "UI_MAIN_WALLET_EMAIL_CAPTCHA", - "zh-hk": "", - "en": "verification code", - "id": "verification code" - }, - { - "info": "UI_MAIN_WALLET_EMAIL_CALLING", - "zh-hk": "", - "en": "Calling", - "id": "Calling" - }, - { - "info": "UI_MAIN_WALLET_EMAIL_TIP_1", - "zh-hk": "", - "en": "Please enter the verification code", - "id": "Please enter the verification code" - }, - { - "info": "UI_MAIN_WALLET_EMAIL_TIP_2", - "zh-hk": "", - "en": "Verification code error", - "id": "Verification code error" - }, - { - "info": "UI_MAIN_WALLET_EMAIL_TIP_3", - "zh-hk": "", - "en": "Please enter your email address", - "id": "Please enter your email address" - }, - { - "info": "UI_MAIN_WALLET_EMAIL_TIP_4", - "zh-hk": "", - "en": "Please enter the correct email address", - "id": "Please enter the correct email address" - }, - { - "info": "UI_MAIN_WALLET_PASSWORK_TITLE", - "zh-hk": "", - "en": "Enter Password", - "id": "Enter Password" - }, - { - "info": "UI_MAIN_WALLET_PASSWORK_TIP", - "zh-hk": "", - "en": "Please enter password!", - "id": "Please enter password!" - }, - { - "info": "UI_MAIN_WALLET_RECORD_SELECT1_1", - "zh-hk": "", - "en": "ALL", - "id": "ALL" - }, - { - "info": "UI_MAIN_WALLET_RECORD_SELECT1_2", - "zh-hk": "", - "en": "Hero", - "id": "Hero" - }, - { - "info": "UI_MAIN_WALLET_RECORD_SELECT1_3", - "zh-hk": "", - "en": "Weapon", - "id": "Weapon" - }, - { - "info": "UI_MAIN_WALLET_RECORD_SELECT1_4", - "zh-hk": "", - "en": "Chip", - "id": "Chip" - }, - { - "info": "UI_MAIN_WALLET_RECORD_SELECT2_1", - "zh-hk": "", - "en": "ALL", - "id": "ALL" - }, - { - "info": "UI_MAIN_WALLET_RECORD_SELECT2_2", - "zh-hk": "", - "en": "Send", - "id": "Send" - }, - { - "info": "UI_MAIN_WALLET_RECORD_SELECT2_3", - "zh-hk": "", - "en": "Receive", - "id": "Receive" - }, - { - "info": "UI_MAIN_WALLET_RECORD_NODE_TITLE", - "zh-hk": "", - "en": "TX Hash:", - "id": "TX Hash:" - }, - { - "info": "UI_MAIN_WALLET_RECORD_NODE_STATE_1", - "zh-hk": "", - "en": "Submitted", - "id": "Submitted" - }, - { - "info": "UI_MAIN_WALLET_RECORD_NODE_STATE_2", - "zh-hk": "", - "en": "Confirmd", - "id": "Confirmd" - }, - { - "info": "UI_MAIN_WALLET_RECORD_NODE_STATE_3", - "zh-hk": "", - "en": "Fail", - "id": "Fail" - }, - { - "info": "UI_MAIN_WALLET_RECORD_NODE_AMOUNT", - "zh-hk": "", - "en": "Amount", - "id": "Amount" - }, - { - "info": "UI_MAIN_WALLET_RECORD_NODE_FROM", - "zh-hk": "", - "en": "From", - "id": "From" - }, - { - "info": "UI_MAIN_WALLET_RECORD_NODE_TO", - "zh-hk": "", - "en": "To", - "id": "To" - }, - { - "info": "UI_MAIN_WALLET_RECORD_NODE_BTN", - "zh-hk": "", - "en": "View Contract", - "id": "View Contract" - }, - { - "info": "UI_MAIN_WALLET_SEND_ID", - "zh-hk": "", - "en": "ID:", - "id": "ID:" - }, - { - "info": "UI_MAIN_WALLET_SEND_STANDARD", - "zh-hk": "", - "en": "Standard", - "id": "Standard" - }, - { - "info": "UI_MAIN_WALLET_SEND_CONTRACT", - "zh-hk": "", - "en": "Contract:", - "id": "Contract:" - }, - { - "info": "UI_MAIN_WALLET_SEND_BTN", - "zh-hk": "", - "en": "Send", - "id": "Send" - }, - { - "info": "UI_MAIN_WALLET_INFO_TITLE", - "zh-hk": "", - "en": "Assets", - "id": "Assets" - }, - { - "info": "UI_MAIN_WALLET_INFO_BACK", - "zh-hk": "", - "en": "Back", - "id": "Back" - }, - { - "info": "UI_MAIN_WALLET_INFO_TITLE_2", - "zh-hk": "", - "en": "Send", - "id": "Send" - }, - { - "info": "UI_MAIN_WALLET_TRADE_TITLE", - "zh-hk": "", - "en": "Trade", - "id": "Trade" - }, - { - "info": "UI_MAIN_WALLET_TRADE_FROM", - "zh-hk": "", - "en": "From", - "id": "From" - }, - { - "info": "UI_MAIN_WALLET_TRADE_TO", - "zh-hk": "", - "en": "TO", - "id": "TO" - }, - { - "info": "UI_MAIN_WALLET_TRADE_ESTIMATE", - "zh-hk": "", - "en": "(Estimate)", - "id": "(Estimate)" - }, - { - "info": "UI_MAIN_WALLET_GAS", - "zh-hk": "", - "en": "Gas Fee\u2248 {0}", - "id": "Gas Fee\u2248 {0}" - }, - { - "info": "UI_MAIN_WALLET_BALBANCE", - "zh-hk": "", - "en": "Balance:{0}", - "id": "Balance:{0}" - }, - { - "info": "UI_MAIN_WALLET_MAX_BTN", - "zh-hk": "", - "en": "MAX", - "id": "MAX" - }, - { - "info": "UI_MAIN_WALLET_SEND_SELECT_TITLE", - "zh-hk": "", - "en": "Select", - "id": "Select" - }, - { - "info": "UI_MAIN_WALLET_SEND_TO_TITLE", - "zh-hk": "", - "en": "Send To", - "id": "Send To" - }, - { - "info": "UI_MAIN_WALLET_SEND_TO_ADDRESS", - "zh-hk": "", - "en": "To Address", - "id": "To Address" - }, - { - "info": "UI_MAIN_WALLET_SEND_TO_ALL_BTN", - "zh-hk": "", - "en": "All", - "id": "All" - }, - { - "info": "UI_MAIN_WALLET_RECEIVE_TITLE", - "zh-hk": "", - "en": "Receive", - "id": "Receive" - }, - { - "info": "UI_MAIN_WALLET_RECEIVE_COPY_BTN", - "zh-hk": "", - "en": "Copy Address", - "id": "Copy Address" - }, - { - "info": "UI_MAIN_WALLET_RECEIVE_ARBITRUM", - "zh-hk": "", - "en": "Arbitrum", - "id": "Arbitrum" - }, - { - "info": "UI_MAIN_WALLET_RECEIVE_TIPS", - "zh-hk": "", - "en": "Scan address to receive payment", - "id": "Scan address to receive payment" - }, - { - "info": "UI_MAIN_WALLET_PRIVATE_TITLE", - "zh-hk": "", - "en": "Private Key", - "id": "Private Key" - }, - { - "info": "UI_MAIN_WALLET_PRIVATE_ENTER_PASS", - "zh-hk": "", - "en": "Enter your Wallet password", - "id": "Enter your Wallet password" - }, - { - "info": "UI_MAIN_WALLET_PRIVATE_CANCEL_BTN", - "zh-hk": "", - "en": "Cancel", - "id": "Cancel" - }, - { - "info": "UI_MAIN_WALLET_PRIVATE_WARN", - "zh-hk": "", - "en": "Warning: Never disclose this key. Anyone with your private keys can steal any assets held in your account.", - "id": "Warning: Never disclose this key. Anyone with your private keys can steal any assets held in your account." - }, - { - "info": "UI_MAIN_WALLET_SEND_SUCCESS_TITLE", - "zh-hk": "", - "en": "In progress. \\nPlease check in the \"Record\" section.", - "id": "In progress. \\nPlease check in the \"Record\" section." - }, - { - "info": "UI_MAIN_WALLET_SEND_SUCCESS_CLOSE", - "zh-hk": "", - "en": "Close", - "id": "Close" - }, - { - "info": "UI_MAIN_CREATE_WALLET_TITLE", - "zh-hk": "", - "en": "Congratulations to enable wallet functionality.\\nWelcome to the world of Web3.0.", - "id": "Congratulations on enabling wallet functionality.Welcome to the world of Web3.0." - }, - { - "info": "UI_MAIN_CREATE_WALLET_TITLE2", - "zh-hk": "", - "en": "Tap to continue", - "id": "Tap to continue" - }, - { - "info": "UI_MAIN_CREATE_PASS_TITLE1", - "zh-hk": "", - "en": "Set wallet password", - "id": "Set wallet password" - }, - { - "info": "UI_MAIN_CREATE_PASS_TITLE2", - "zh-hk": "", - "en": "Please remember and securely store this password. CounterFire officials will not record your password, and it cannot be retrieved if lost.", - "id": "Please remember and securely store this password. CounterFire officials will not record your password, and it cannot be retrieved if lost." - }, - { - "info": "UI_MAIN_CREATE_PASS_INPUT_TIPS_1", - "zh-hk": "", - "en": "Enter your password", - "id": "Enter your password" - }, - { - "info": "UI_MAIN_CREATE_PASS_INPUT_TIPS_2", - "zh-hk": "", - "en": "Enter your password again", - "id": "Enter your password again" - }, - { - "info": "UI_MAIN_CREATE_PASS_INPUT1", - "zh-hk": "", - "en": "Please enter a new password", - "id": "Please enter a new password" - }, - { - "info": "UI_MAIN_CREATE_PASS_INPUT2", - "zh-hk": "", - "en": "Please enter a new password again", - "id": "Please enter a new password again" - }, - { - "info": "UI_MAIN_CREATE_PASS_CHOOSE_BTN", - "zh-hk": "", - "en": "Display", - "id": "Display" - }, - { - "info": "UI_MAIN_CREATE_OVER_TITLE", - "zh-hk": "", - "en": "This password cannot be changed. Please use a pen and paper to record it and keep it securely.", - "id": "This password cannot be changed. Please use a pen and paper to record it and keep it securely." - }, - { - "info": "UI_MARKET_TITLE", - "zh-hk": "", - "en": "Marketplace", - "id": "Marketplace" - }, - { - "info": "UI_MARKET_BTN_TITLE_HERO", - "zh-hk": "", - "en": "Hero", - "id": "Hero" - }, - { - "info": "UI_MARKET_BTN_TITLE_CHIP", - "zh-hk": "", - "en": "Chip", - "id": "Chip" - }, - { - "info": "UI_MARKET_BTN_TITLE_GOLD", - "zh-hk": "", - "en": "Gold", - "id": "Gold" - }, - { - "info": "UI_MARKET_BTN_TITLE_OTHER", - "zh-hk": "", - "en": "Other", - "id": "Other" - }, - { - "info": "UI_MARKET_BTN_TITLE_RECORD", - "zh-hk": "", - "en": "Record", - "id": "Record" - }, - { - "info": "UI_MARKET_BTN_TITLE_MY_ASSETS", - "zh-hk": "", - "en": "My assets", - "id": "My assets" - }, - { - "info": "UI_MARKET_HERO_SELECT_ALL", - "zh-hk": "", - "en": "ALL", - "id": "ALL" - }, - { - "info": "UI_MARKET_HERO_SELECT_PRICE_HIGHEST", - "zh-hk": "", - "en": "Price highest first", - "id": "Price highest first" - }, - { - "info": "UI_MARKET_HERO_SELECT_PRICE_LOWEST", - "zh-hk": "", - "en": "Price lowest first", - "id": "Price lowest first" - }, - { - "info": "UI_MARKET_HERO_SELECT_LEVEL_HIGHEST", - "zh-hk": "", - "en": "Rank highest first", - "id": "Rank highest first" - }, - { - "info": "UI_MARKET_HERO_SELECT_LEVEL_LOWEST", - "zh-hk": "", - "en": "Rank lowest first", - "id": "Rank lowest first" - }, - { - "info": "UI_MARKET_HERO_SELECT_EVERY_THING", - "zh-hk": "", - "en": "Everything", - "id": "Everything" - }, - { - "info": "UI_MARKET_HERO_INPUT_TIP", - "zh-hk": "", - "en": "Search Name or Token ID", - "id": "Search Name or Token ID" - }, - { - "info": "UI_MARKET_HERO_SEARCH_BTN", - "zh-hk": "", - "en": "Search", - "id": "Search" - }, - { - "info": "UI_MARKET_HERO_RESET_BTN", - "zh-hk": "", - "en": "Reset", - "id": "Reset" - }, - { - "info": "UI_MARKET_CHIP_TITLE", - "zh-hk": "", - "en": "Filter", - "id": "Filter" - }, - { - "info": "UI_MARKET_GOLD_FROM", - "zh-hk": "", - "en": "From", - "id": "From" - }, - { - "info": "UI_MARKET_GOLD_TO", - "zh-hk": "", - "en": "To", - "id": "To" - }, - { - "info": "UI_MARKET_MYASSETS_MAILBOX_BTN", - "zh-hk": "", - "en": "Mailbox validation", - "id": "Mailbox validation" - }, - { - "info": "UI_MARKET_MYASSETS_MAILBOX_NO_GOLD", - "zh-hk": "", - "en": "No gold for sale", - "id": "No gold for sale" - }, - { - "info": "UI_MARKET_MYASSETS_TYPE_1", - "zh-hk": "", - "en": "Comprehensive", - "id": "Comprehensive" - }, - { - "info": "UI_MARKET_MYASSETS_TYPE_2", - "zh-hk": "", - "en": "Monetary assets", - "id": "Monetary assets" - }, - { - "info": "UI_MARKET_MYASSETS_SELL_BTN", - "zh-hk": "", - "en": "For Sale", - "id": "For Sale" - }, - { - "info": "UI_MARKET_MYASSETS_BUY_BTN", - "zh-hk": "", - "en": "Purchase", - "id": "Purchase" - }, - { - "info": "UI_MARKET_SHOPCART_TITLE", - "zh-hk": "", - "en": "Shopping Cart", - "id": "Shopping Cart" - }, - { - "info": "UI_MARKET_SHOPCART_ALL_OF_THEM", - "zh-hk": "", - "en": "select all", - "id": "select all" - }, - { - "info": "UI_MARKET_SHOPCART_SELECTED", - "zh-hk": "", - "en": "selected:", - "id": "selected:" - }, - { - "info": "UI_MARKET_SHOPCART_CHECK_OUT", - "zh-hk": "", - "en": "Checkout", - "id": "Checkout" - }, - { - "info": "UI_MARKET_SHOPCART_NODE_LV", - "zh-hk": "", - "en": "LV:", - "id": "LV:" - }, - { - "info": "UI_MARKET_SHOPCART_NODE_AMOUNT", - "zh-hk": "", - "en": "Amount:", - "id": "Amount:" - }, - { - "info": "UI_MARKET_SHOPCART_NODE_OWNER", - "zh-hk": "", - "en": "Owner:", - "id": "Owner:" - }, - { - "info": "UI_MARKET_SHOP_INFO_LV", - "zh-hk": "", - "en": "LV", - "id": "LV" - }, - { - "info": "UI_MARKET_SHOP_INFO_ID", - "zh-hk": "", - "en": "ID:", - "id": "ID:" - }, - { - "info": "UI_MARKET_SHOP_INFO_PRICE", - "zh-hk": "", - "en": "Price:", - "id": "Price:" - }, - { - "info": "UI_MARKET_SHOP_INFO_BUY_BTN", - "zh-hk": "", - "en": "BUY", - "id": "BUY" - }, - { - "info": "UI_MARKET_SHOP_ITEM_INFO_AVERAGE", - "zh-hk": "", - "en": "Average Price:", - "id": "Average Price:" - }, - { - "info": "UI_MARKET_BUY_INFO_NAME", - "zh-hk": "", - "en": "Name:", - "id": "Name:" - }, - { - "info": "UI_MARKET_BUY_INFO_STANDAR", - "zh-hk": "", - "en": "Standar:", - "id": "Standar:" - }, - { - "info": "UI_MARKET_BUY_INFO_ORDER_TOTAL", - "zh-hk": "", - "en": "Order Total:", - "id": "Order Total:" - }, - { - "info": "UI_MARKET_BUY_INFO_GAS", - "zh-hk": "", - "en": "Gas:", - "id": "Gas:" - }, - { - "info": "UI_MARKET_BUY_INFO_CONFIRM", - "zh-hk": "", - "en": "Confirm", - "id": "Confirm" - }, - { - "info": "UI_MARKET_BUY_INFO_TIPS", - "zh-hk": "", - "en": "Please confirm if you have purchased.", - "id": "Please confirm if you have purchased." - }, - { - "info": "UI_MARKET_BUY_INFO_REQUIRED_PRICE", - "zh-hk": "", - "en": "required price", - "id": "required price" - }, - { - "info": "UI_MARKET_CONFIRM_PAYMENT_TITLE", - "zh-hk": "", - "en": "Confirm payment", - "id": "Confirm payment" - }, - { - "info": "UI_MARKET_CONFIRM_PAYMENT_CLOSE_BTN", - "zh-hk": "", - "en": "Close", - "id": "Close" - }, - { - "info": "UI_MARKET_CONFIRM_PAYMENT_OK_BTN", - "zh-hk": "", - "en": "Payment", - "id": "Payment" - }, - { - "info": "UI_MARKET_CHANGE_INFO_LISTING_PRICE", - "zh-hk": "", - "en": "Listing price:", - "id": "Listing price:" - }, - { - "info": "UI_MARKET_CHANGE_INFO_TOTAL", - "zh-hk": "", - "en": "total Potential earnings:", - "id": "total Potential earnings:" - }, - { - "info": "UI_MARKET_CHANGE_INFO_REMOVE_BTN", - "zh-hk": "", - "en": "Remove", - "id": "Remove" - }, - { - "info": "UI_MARKET_SELL_INFO_SELL_BTN", - "zh-hk": "", - "en": "Sell Now", - "id": "Sell Now" - }, - { - "info": "UI_MARKET_SELL_GOLD_SELL_BTN", - "zh-hk": "", - "en": "Sell", - "id": "Sell" - }, - { - "info": "UI_MARKET_GAS_CONFIRM_PANEL_TITLE", - "zh-hk": "", - "en": "Confirm payment", - "id": "Confirm payment" - }, - { - "info": "UI_MARKET_GAS_CONFIRM_PANEL_PRICE", - "zh-hk": "", - "en": "Price", - "id": "Price" - }, - { - "info": "UI_MARKET_GAS_CONFIRM_PANEL_GAS", - "zh-hk": "", - "en": "GAS", - "id": "GAS" - }, - { - "info": "UI_MARKET_GAS_CONFIRM_PANEL_TIPS", - "zh-hk": "", - "en": "Please confirm if you need to modify the price", - "id": "Please confirm if you need to modify the price" - }, - { - "info": "UI_MARKET_GAS_FAIL_PANEL_TITLE", - "zh-hk": "", - "en": "Payment failed", - "id": "Payment failed" - }, - { - "info": "UI_MARKET_GAS_FAIL_PANEL_RECHARGE", - "zh-hk": "", - "en": "Recharge", - "id": "Recharge" - }, - { - "info": "UI_MARKET_GAS_CONFIRM_PANEL_TIPS_1", - "zh-hk": "", - "en": "You do not have enough CEG for payment,please recharge", - "id": "You do not have enough CEG for payment,please recharge" - }, - { - "info": "UI_MARKET_GAS_CONFIRM_PANEL_TIPS_2", - "zh-hk": "", - "en": "You do not have enough GAS for payment,please recharge", - "id": "You do not have enough GAS for payment,please recharge" - }, - { - "info": "UI_SHOPNEW_BTN_firsttopup", - "zh-hk": "", - "en": "First top up", - "id": "First top up" - }, - { - "info": "UI_SHOPNEW_BTN_skins", - "zh-hk": "", - "en": "Skins", - "id": "Skins" - }, - { - "info": "UI_SHOPNEW_BTN_dailySelection", - "zh-hk": "", - "en": "Daily Selection", - "id": "Daily Selection" - }, - { - "info": "UI_SHOPNEW_BTN_Chests", - "zh-hk": "", - "en": "Chests", - "id": "Chests" - }, - { - "info": "UI_SHOPNEW_BTN_Recharge", - "zh-hk": "", - "en": "Recharge", - "id": "Recharge" - }, - { - "info": "UI_SHOPNEW_BTN_Store", - "zh-hk": "", - "en": "Store", - "id": "Store" - }, - { - "info": "UI_SHOPNEW_BTN_Recharge", - "zh-hk": "", - "en": "Recharge", - "id": "Recharge" - }, - { - "info": "UI_SHOPNEW_Account_limited", - "zh-hk": "", - "en": "Account limited:1/1", - "id": "Account limited:1/1" - }, - { - "info": "UI_SHOPNEW_first_pay", - "zh-hk": "", - "en": "First top up Reward Miffy", - "id": "First top up Reward Miffy" - }, - { - "info": "UI_SHOPNEW_GoldNo", - "zh-hk": "", - "en": "Your gold is not enough", - "id": "Your gold is not enough" - }, - { - "info": "Common_Des_Limit", - "zh-hk": "", - "en": "limit {0}", - "id": "limit {0}" - }, - { - "info": "DailySelection_Buy_Ok", - "zh-hk": "", - "en": "DailySelection Buy Ok", - "id": "DailySelection Buy Ok" - }, - { - "info": "ShopSkin_skin_Buy_Ok", - "zh-hk": "", - "en": "ShopSkin skin Buy Ok", - "id": "ShopSkin skin Buy Ok" - }, - { - "info": "UISHOPNEW_Chests_Box_Free", - "zh-hk": "", - "en": "Free", - "id": "Free" - }, - { - "info": "UISHOPNEW_Chests_Box_Obtain", - "zh-hk": "", - "en": "Obtain", - "id": "Obtain" - }, - { - "info": "UISHOPNEW_Dauky_des", - "zh-hk": "", - "en": "Refresh every morning after 6am", - "id": "Refresh every morning after 7am" - }, - { - "info": "UIChest_Buytips", - "zh-hk": "", - "en": "Please wait for the purchase to be successful", - "id": "Silakan tunggu pembelian untuk berhasil" - }, - { - "info": "UISHOPNEW_Refresh_times", - "zh-hk": "", - "en": "Refresh times {0}", - "id": "Refresh times {0}" - }, - { - "info": "UISHOPNEW_run_out", - "zh-hk": "", - "en": "run out", - "id": "run out" - }, - { - "info": "UISHOPNEW_Refresh", - "zh-hk": "", - "en": "Refresh", - "id": "Refresh" - }, - { - "info": "UIChangeRecharge_des1", - "zh-hk": "", - "en": "CEG is a cryptocurrency used in the Market and Store", - "id": "CEG is a cryptocurrency used in the Market and Store" - }, - { - "info": "UIChangeRecharge_des2", - "zh-hk": "", - "en": "Diamonds are used in the store to purchase in-game items", - "id": "Diamonds are used in the store to purchase in-game items" - }, - { - "info": "UIRechargeDiamond_des", - "zh-hk": "", - "en": "Diamonds are centralized props that can be immediately credited", - "id": "Diamonds are centralized props that can be immediately credited" - }, - { - "info": "UIRechargeCEG_des", - "zh-hk": "", - "en": "CEG is a cryptocurrency,transfer will take about 30 seconds. Please wait for confirmation on the blockchain", - "id": "CEG is a cryptocurrency,transfer will take about 31 seconds. Please wait for confirmation on the blockchain" - }, - { - "info": "UICEGChangeDiamond_tiltle", - "zh-hk": "", - "en": "CEG Conversion Diamonds", - "id": "CEG Conversion Diamonds" - }, - { - "info": "UICEGChangeDiamond_CONSUME", - "zh-hk": "", - "en": "CONSUME", - "id": "CONSUME" - }, - { - "info": "UICEGChangeDiamond_GAIN", - "zh-hk": "", - "en": "GAIN", - "id": "GAIN" - }, - { - "info": "UICEGChangeDiamond_min", - "zh-hk": "", - "en": "min", - "id": "min" - }, - { - "info": "UICEGChangeDiamond_max", - "zh-hk": "", - "en": "max", - "id": "max" - }, - { - "info": "UICEGChangeDiamond_Cancel", - "zh-hk": "", - "en": "Cancel", - "id": "Cancel" - }, - { - "info": "UICEGChangeDiamond_Exchange", - "zh-hk": "", - "en": "Exchange", - "id": "Exchange" - }, - { - "info": "UIGameReward_tips", - "zh-hk": "", - "en": "Tap to exit", - "id": "Tap to exit" - }, - { - "info": "UIPay_Payment_method", - "zh-hk": "", - "en": "Payment method", - "id": "Payment method" - }, - { - "info": "UIPay_CountryOrRegion", - "zh-hk": "", - "en": "Country/Region", - "id": "Country/Region" - }, - { - "info": "UIPay_Continue", - "zh-hk": "", - "en": "Continue", - "id": "Continue" - }, - { - "info": "UIPay_Label_Transaction_Fee", - "zh-hk": "", - "en": "Transaction fee:", - "id": "Transaction fee" - }, - { - "info": "UIPay_Label_Gas_Fee", - "zh-hk": "", - "en": "Gas Fee :", - "id": "Gas Fee :" - }, - { - "info": "UIPay_Label_Amount", - "zh-hk": "", - "en": "Actual amount received :", - "id": "Actual amount received :" - }, - { - "info": "UIPay_Label_Limit", - "zh-hk": "", - "en": "Daily recharge limit : [c][018a01]{0}[-][/c]$", - "id": "Daily recharge limit : [c][018a01]{0}[-][/c]$" - }, - { - "info": "UINoDiamond_title", - "zh-hk": "", - "en": "CEG Conversion Diamonds", - "id": "CEG Conversion Diamonds" - }, - { - "info": "UINoDiamond_des", - "zh-hk": "", - "en": "Low on diamonds. Go to top up\n", - "id": "Low on diamonds. Go to top up\n" - }, - { - "info": "UINoDiamond_go_top_up", - "zh-hk": "", - "en": "Go top up\n", - "id": "Go top up\n" - }, - { - "info": "UIRankRule_title", - "zh-hk": "", - "en": "Rank Rule", - "id": "Rank Rule" - }, - { - "info": "UIRankRule_Rank", - "zh-hk": "", - "en": "RANK", - "id": "RANK" - }, - { - "info": "UIRankRule_CEC_Challenge", - "zh-hk": "", - "en": "CEC Challenge", - "id": "CEC Challenge" - }, - { - "info": "UIRankRule_Rank_des", - "zh-hk": "", - "en": "1.Ranking Match Cycle: The typical duration for each ranking match season is approximately one month. At the end of the season, the ranking match results will be calculated and settled.\\n\\n\\n\n2.Participation Rules: All participants in the ranking matches will be matched with suitable teammates and opponents based on their individual circumstances, as determined by the system.\\n\\n\\n\n3.Scoring Rules: After each battle, points will be added or deducted based on the player's performance. However, players in the Gold tier and below will not have points deducted from their score.\\n\\n\\n\n4.Ranking Tier Rules: The ranking matches are divided into eight major tiers: Bronze, Silver, Gold, Platinum, Diamond, Master, Grandmaster, and Challenger. Within each major tier, there are five minor divisions represented by I-V.\\n", - "id": "1.Ranking Match Cycle: The typical duration for each ranking match season is approximately one month. At the end of the season, the ranking match results will be calculated and settled.\\n\\n\\n\n2.Participation Rules: All participants in the ranking matches will be matched with suitable teammates and opponents based on their individual circumstances, as determined by the system.\\n\\n\\n\n3.Scoring Rules: After each battle, points will be added or deducted based on the player's performance. However, players in the Gold tier and below will not have points deducted from their score.\\n\\n\\n\n4.Ranking Tier Rules: The ranking matches are divided into eight major tiers: Bronze, Silver, Gold, Platinum, Diamond, Master, Grandmaster, and Challenger. Within each major tier, there are five minor divisions represented by I-V.\\n" - }, - { - "info": "UIRankRule_CEC_Challenge_des", - "zh-hk": "", - "en": "1.Prize Pool Rules: The size of the prize pool will be adjusted each season based on the number of players participating.\\n\\n\\n\n\n2.Participation Requirements: To participate, players must have reached the Master tier or higher in the current season.\\n\\n\\n\n\n3.Ranking Rules: From the pool of eligible players, the selection will be made in descending order based on their scores.\\n\\n\\n\n\n4.Leaderboard Display: The in-game overall leaderboard will display the top 100 players daily, with a refresh at 00:00 UTC.\\n\\n\n\n5.Points\uff1a Represents tokens,More points = More CEC airdrop. Points and CEC will be exchanged proportionally.\\n\\n\\n\n", - "id": "1.Prize Pool Rules: The size of the prize pool will be adjusted each season based on the number of players participating.\\n\\n\\n\n\n2.Participation Requirements: To participate, players must have reached the Master tier or higher in the current season.\\n\\n\\n\n\n3.Ranking Rules: From the pool of eligible players, the selection will be made in descending order based on their scores.\\n\\n\\n\n\n4.Leaderboard Display: The in-game overall leaderboard will display the top 100 players daily, with a refresh at 00:00 UTC.\\n\\n\n\n5.Points\uff1a Represents tokens,More points = More CEC airdrop. Points and CEC will be exchanged proportionally.\\n\\n\\n\n" - }, - { - "info": "UIGamePrepare_title", - "zh-hk": "", - "en": "CHOOSE SPAWN POINT", - "id": "CHOOSE SPAWN POINT" - }, - { - "info": "UIGamePrepare_des1", - "zh-hk": "", - "en": "RANDOM EVENTS", - "id": "RANDOM EVENTS" - }, - { - "info": "UIGamePrepare_des2", - "zh-hk": "", - "en": "High resource area", - "id": "High resource area" - }, - { - "info": "UIGamePrepare_des3", - "zh-hk": "", - "en": "Within 120 ...", - "id": "Within 120 ..." - }, - { - "info": "UIConfirmCard_NoDiamond", - "zh-hk": "", - "en": " Do you want to spend Diamond to purchase it ", - "id": " Do you want to spend Diamond to purchase it " - }, - { - "info": "UIConfirmCard_NoGold", - "zh-hk": "", - "en": " Do you want to spend Gold to purchase it ", - "id": " Do you want to spend Gold to purchase it " - }, - { - "info": "UIConfirmCard_title", - "zh-hk": "", - "en": "Notice", - "id": "Notice" - }, - { - "info": "UIStakingClaimReard_des", - "zh-hk": "", - "en": "Due to early pledge unlocking, only the minimum reward multiplier is achievable", - "id": "Due to early pledge unlocking, only the minimum reward multiplier is achievable" - }, - { - "info": "UIStakingClaimReard_des1", - "zh-hk": "", - "en": "The reward distribution mav experience de avs, f rewards are\nvou can check their status in the historical records", - "id": "The reward distribution mav experience de avs, f rewards are\nvou can check their status in the historical records" - }, - { - "info": "UIMainChooseMode_coming_soon", - "zh-hk": "", - "en": "Coming soon", - "id": "Coming soon" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_TITLE", - "zh-hk": "", - "en": "Battle Mode", - "id": "Battle Mode" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_LABEL_DURATION_TIME", - "zh-hk": "", - "en": "Game duration {0} minute", - "id": "Game duration {0} minute" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_LABEL_MAXIMUM_PLAYERS", - "zh-hk": "", - "en": "Maximum Players : {0}", - "id": "Maximum Players : {0}" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_BTN_CONFIRM", - "zh-hk": "", - "en": "CONFIRM", - "id": "CONFIRM" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_BTN_DISBAND", - "zh-hk": "", - "en": "DISBAND", - "id": "DISBAND" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_LABEL_SET_PASSWORD", - "zh-hk": "", - "en": "Set Password", - "id": "Set Password" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_TAB_GENERAL", - "zh-hk": "", - "en": "Classic", - "id": "Classic" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_TAB_EVENT", - "zh-hk": "", - "en": "Rank", - "id": "Rank" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_TIP_RANK_NOT_BEGUN", - "zh-hk": "", - "en": "The season has not yet begun", - "id": "The season has not yet begun" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_TIP_STAR_NOT_ENOUGH", - "zh-hk": "", - "en": "Need {0} stars", - "id": "Need {0} stars" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_LABEL_WORLD_EVENT_CHEST_DROPPING", - "zh-hk": "", - "en": "Chest Dropping", - "id": "" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_LABEL_WORLD_EVENT_TIME_TIME", - "zh-hk": "", - "en": "{0}:{1}:{2}", - "id": "" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_LABEL_WORLD_EVENT_TIME_DAY", - "zh-hk": "", - "en": "{0} days", - "id": "" - }, - { - "info": "UIHashRateCECSettlemnetPro_title", - "zh-hk": "", - "en": "HashRate Settlement Introduction\n", - "id": "CEC settlement protocol" - }, - { - "info": "UIHashRateCECSettlemnetPro_Service_Target", - "zh-hk": "", - "en": "HashRate Completion Ratio", - "id": "Service Target" - }, - { - "info": "UIHashRateCECSettlemnetPro_Target_HashRate", - "zh-hk": "", - "en": "My HashRate Ratio", - "id": "Target HashRate" - }, - { - "info": "UIHashRateCECSettlemnetPro_Target_HashRate1", - "zh-hk": "", - "en": "My HashRate Ratio\n", - "id": "Player HashRate ratio" - }, - { - "info": "UIHashRateCECSettlemnetPro_CEC_Rewards", - "zh-hk": "", - "en": "CEC Rewards", - "id": "CEC Rewards" - }, - { - "info": "UIHashRateCECSettlemnetPro_CEC_rewards_quantity", - "zh-hk": "", - "en": "CEC Rewards", - "id": "CEC rewards quantity" - }, - { - "info": "UIHashRate_MyRewardInfo", - "zh-hk": "", - "en": "My Reward=Current CEC Pool*My HashRate Ratio.\\n\\nThe rewards will be sent by Airdrop.", - "id": "My Reward=Current CEC Pool*My HashRate Ratio.\\n\\nThe rewards will be sent by Airdrop." - }, - { - "info": "UIHashRate_MyHashRateInfo", - "zh-hk": "", - "en": "More invested crystals, more HashRate you will get.\\n\\nTotal HashRate is influenced by all the players, try to improve your HashRate ratio to get more reward from CEC Pool finally.", - "id": "More invested crystals, more HashRate you will get.\\n\\nTotal HashRate is influenced by all the players, try to improve your HashRate ratio to get more reward from CEC Pool finally." - }, - { - "info": "UIHashRate_kjpointInfo", - "zh-hk": "", - "en": "When each HashRate Event finished, the Total HashRate will be converted to the Tech Point.\\n\\nThe Tech Point is related to future WEB3 modules.", - "id": "When each HashRate Event finished, the Total HashRate will be converted to the Tech Point.\\n\\nThe Tech Point is related to future WEB3 modules." - }, - { - "info": "UIHashRate_TimeLeftInfo", - "zh-hk": "", - "en": "Open from each Monday 00:00 to Sunday 23:00 (UTC +0).\\n \\nCurrent Period: {0}", - "id": "Open from each Monday 00:00 to Sunday 23:00 (UTC +0).\\n \\nCurrent Period: {0}" - }, - { - "info": "UIHashRateUseCrystals_valuedes", - "zh-hk": "", - "en": "\u2248 {0} HashRate", - "id": "\u2248 {0} HashRate" - }, - { - "info": "UIHashRateCECSettlemnetPro_The_Period", - "zh-hk": "", - "en": "The Period", - "id": "The Period" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_TITLE", - "zh-hk": "", - "en": "Get Crystal", - "id": "Get Crystal" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_LABEL_PENDING", - "zh-hk": "", - "en": "Pending", - "id": "Pending" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_LABEL_UNITS", - "zh-hk": "", - "en": "Units", - "id": "Units" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_LABEL_PRESENT_STAKING_VALUATION", - "zh-hk": "", - "en": "Present staking value", - "id": "Present staking valuation" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_LABEL_USD", - "zh-hk": "", - "en": "USD", - "id": "USD" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_LABEL_CLAIMED", - "zh-hk": "", - "en": "Claimed", - "id": "Claimed" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_LABEL_CLAIMED_UNITS", - "zh-hk": "", - "en": "Units", - "id": "Units" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_LABEL_ACCUMULATED_EXPENDITURE", - "zh-hk": "", - "en": "Accumulated expenditure", - "id": "Accumulated expenditure" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_LABEL_ACCUMULATED_TRANSACTION", - "zh-hk": "", - "en": "Accumulated transaction", - "id": "Accumulated expenditure" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_BTN_CLAIM", - "zh-hk": "", - "en": "Claim", - "id": "Claim" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_LABEL_QUANTITY_OF_ELIMINATIONS", - "zh-hk": "", - "en": "Quantity of eliminations", - "id": "Quantity of eliminations" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_LABEL_QUANTITY_OF_STARS", - "zh-hk": "", - "en": "Quantity of stars", - "id": "Quantity of stars" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_LABEL_TIER_OR_RANKING", - "zh-hk": "", - "en": "Tier or ranking", - "id": "Tier or ranking" - }, - { - "info": "UI_HASH_RATE_GET_CRYSTAL_CARD_BTN_HISTORY", - "zh-hk": "", - "en": "History", - "id": "History" - }, - { - "info": "UI_HASH_RATE_CRYSTAL_HISTORY_CARD_TITLE", - "zh-hk": "", - "en": "History", - "id": "History" - }, - { - "info": "UI_HASH_RATE_CRYSTAL_HISTORY_CARD_LABEL_DATE", - "zh-hk": "", - "en": "Date", - "id": "Date" - }, - { - "info": "UI_HASH_RATE_CRYSTAL_HISTORY_CARD_LABEL_CRYSTAL_TYPE", - "zh-hk": "", - "en": "Crystal Type", - "id": "Crystal Type" - }, - { - "info": "UI_HASH_RATE_CRYSTAL_HISTORY_CARD_LABEL_AMOUNT", - "zh-hk": "", - "en": "Amount", - "id": "Amount" - }, - { - "info": "UI_HASH_RATE_CRYSTAL_HISTORY_CARD_LABEL_STATE", - "zh-hk": "", - "en": "State", - "id": "State" - }, - { - "info": "UI_HASH_RATE_CRYSTAL_HISTORY_CARD_DATE_FORMAT", - "zh-hk": "", - "en": "%Y/%m/%d", - "id": "%Y/%m/%d" - }, - { - "info": "UI_HASH_RATE_CRYSTAL_HISTORY_CARD_STATE_CLAIMED", - "zh-hk": "", - "en": "Claimed", - "id": "Claimed" - }, - { - "info": "UI_HASH_RATE_EXCHANGE_CARD_TITLE", - "zh-hk": "", - "en": "Exchange BH/s", - "id": "Exchange BH/s" - }, - { - "info": "UI_HASH_RATE_EXCHANGE_CARD_LABEL_OWNED", - "zh-hk": "", - "en": "Owned", - "id": "Owned" - }, - { - "info": "UI_HASH_RATE_EXCHANGE_CARD_LABEL_AMOUNT", - "zh-hk": "", - "en": "Amount", - "id": "Amount" - }, - { - "info": "UI_HASH_RATE_EXCHANGE_CARD_LABEL_WEEK_LIMIT", - "zh-hk": "", - "en": "Week's Limit", - "id": "Week's Limit" - }, - { - "info": "UI_HASH_RATE_EXCHANGE_CARD_LABEL_UNITS", - "zh-hk": "", - "en": "Units", - "id": "Units" - }, - { - "info": "UI_HASH_RATE_EXCHANGE_CARD_LABEL_AMOUNT_HBS_FORMAT", - "zh-hk": "", - "en": "={0} BH/s", - "id": "={0} BH/s" - }, - { - "info": "UI_HASH_RATE_EXCHANGE_CARD_LABEL_TOTAL_IS_BHS_FORMAT", - "zh-hk": "", - "en": "Total = {0} BH/s", - "id": "Total = {0} BH/s" - }, - { - "info": "UI_HASH_RATE_EXCHANGE_CARD_LABEL_NON_REFUNDABLE_TIPS", - "zh-hk": "", - "en": "Invested crystals are non-refundable!", - "id": "Invested crystals are non-refundable!" - }, - { - "info": "UI_HASH_RATE_EXCHANGE_CARD_BTN_CONFIRM", - "zh-hk": "", - "en": "Confirm", - "id": "Confirm" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_TITLE", - "zh-hk": "", - "en": "List of rewards", - "id": "List of rewards" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_SELECT_DATA", - "zh-hk": "", - "en": "selection date", - "id": "selection date" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_SELECT_DATA_TO", - "zh-hk": "", - "en": "TO", - "id": "TO" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_PENDING_REWARDS", - "zh-hk": "", - "en": "pending rewards", - "id": "pending rewards" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_DATE", - "zh-hk": "", - "en": "Date", - "id": "Date" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_MY_HASH_RATE", - "zh-hk": "", - "en": "My Hash Rate", - "id": "My Hash Rate" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_CEC REWARDS", - "zh-hk": "", - "en": "CEC Rewards", - "id": "CEC Rewards" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_STATE", - "zh-hk": "", - "en": "State", - "id": "State" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_REWARD_1ST", - "zh-hk": "", - "en": "Rewards 1st (25%)", - "id": "Rewards 1st (25%)" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_REWARD_2ST", - "zh-hk": "", - "en": "2st (25%)", - "id": "2st (25%)" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_REWARD_3ST", - "zh-hk": "", - "en": "3st (25%)", - "id": "3st (25%)" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_REWARD_4ST", - "zh-hk": "", - "en": "4st (25%)", - "id": "4st (25%)" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_DATE_FORMATE", - "zh-hk": "", - "en": "%Y/%m/%d", - "id": "%Y/%m/%d" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_MY_HASH_RATE_FORMATE", - "zh-hk": "", - "en": "{0} BH/s", - "id": "{0} BH/s" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_STATE_UNCLAIMED", - "zh-hk": "", - "en": "Unclaimed", - "id": "Unclaimed" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_STATE_CLAIMED", - "zh-hk": "", - "en": "Claimed", - "id": "Claimed" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_AFTER", - "zh-hk": "", - "en": "after", - "id": "after" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_LABEL_REWARDS_AFTER_DATE_FORMATE", - "zh-hk": "", - "en": "%Y/%m/%d", - "id": "%Y/%m/%d" - }, - { - "info": "UI_HASH_RATE_REWARDS_LIST_CARD_BTN_VIEW", - "zh-hk": "", - "en": "View", - "id": "View" - }, - { - "info": "UI_HASH_RATE_Tips", - "zh-hk": "", - "en": "All invested crystals have been converted to HashRate.", - "id": "" - }, - { - "info": "UI_COMMON_TIME_SELECTOR_LABEL_YEAR", - "zh-hk": "", - "en": "Year", - "id": "Year" - }, - { - "info": "UI_COMMON_TIME_SELECTOR_LABEL_MONTH", - "zh-hk": "", - "en": "Month", - "id": "Month" - }, - { - "info": "UI_COMMON_TIME_SELECTOR_LABEL_DAY", - "zh-hk": "", - "en": "Day", - "id": "Day" - }, - { - "info": "UI_COMMON_TIME_SELECTOR_BTN_CANCEL", - "zh-hk": "", - "en": "Cancel", - "id": "Cancel" - }, - { - "info": "UI_COMMON_TIME_SELECTOR_BTN_OK", - "zh-hk": "", - "en": "OK", - "id": "OK" - }, - { - "info": "UI_CEC_HISTORY_TITLE", - "zh-hk": "", - "en": "CEC", - "id": "CEC" - }, - { - "info": "UI_CEC_HISTORY_NAME", - "zh-hk": "", - "en": "Claimable", - "id": "Claimable" - }, - { - "info": "UI_CEC_HISTORY_CLAIM_BTN", - "zh-hk": "", - "en": "CLAIM", - "id": "CLAIM" - }, - { - "info": "UI_CEC_HISTORY_TIPS", - "zh-hk": "CEC\u5c06\u5728Listing\u540e\u8d77\u6548\u3002", - "en": "CEC will take effect after listing", - "id": "CEC will take effect after listing" - }, - { - "info": "UI_CEC_HISTORY_HISTORY", - "zh-hk": "", - "en": "History", - "id": "History" - }, - { - "info": "UI_CEC_HISTORY_HISTORY_NODE_DESC", - "zh-hk": "", - "en": "Obtain the [c][0cff00]{0}[-][/c] CEC by [c][ffd200]{1}[-][/c]", - "id": "Obtain the [c][0cff00]{0}[-][/c] CEC by [c][ffd200]{1}[-][/c]" - }, - { - "info": "UI_STAKING_STAK_TITLE", - "zh-hk": "", - "en": "All", - "id": "All" - }, - { - "info": "UI_STAKING_STAK_PLANET_BTN", - "zh-hk": "", - "en": "Planet", - "id": "Planet" - }, - { - "info": "UI_STAKING_STAK_NFT_BTN", - "zh-hk": "", - "en": "NFT", - "id": "NFT" - }, - { - "info": "UI_STAKING_STAK_SELECT_ALL_BTN", - "zh-hk": "", - "en": "SELECT ALL", - "id": "SELECT ALL" - }, - { - "info": "UI_STAKING_STAK_INFO_TITLE", - "zh-hk": "", - "en": "Information", - "id": "Information" - }, - { - "info": "UI_STAKING_STAK_INFO_STAKING_VALUE", - "zh-hk": "", - "en": "Staking Value", - "id": "Staking Value" - }, - { - "info": "UI_STAKING_STAK_INFO_NFT_DESC", - "zh-hk": "", - "en": "NFT desc", - "id": "NFT desc" - }, - { - "info": "UI_STAKING_STAK_INFO_STAKING", - "zh-hk": "", - "en": "Staking", - "id": "Staking" - }, - { - "info": "UI_STAKING_STAK_INFO_STAKING_DURATION", - "zh-hk": "", - "en": "Staking duration", - "id": "Staking duration" - }, - { - "info": "UI_STAKING_STAK_INFO_APR", - "zh-hk": "", - "en": "APR \u2248 {0}%", - "id": "APR \u2248 {0}%" - }, - { - "info": "UI_STAKING_STAK_INFO_STAKING_BTN", - "zh-hk": "", - "en": "STAKING", - "id": "STAKING" - }, - { - "info": "UI_STAKING_STAK_INFO_ERROR_TIPS", - "zh-hk": "", - "en": "Please select a time.", - "id": "Please select a time." - }, - { - "info": "UI_STAKING_STAK_INFO_STAKE_ERROR", - "zh-hk": "", - "en": "Stake failed. Please try again.", - "id": "Stake failed. Please try again." - }, - { - "info": "UI_STAKING_STAK_INFO_STAKE_SUCCESS", - "zh-hk": "", - "en": "Stake successful.", - "id": "Stake successful." - }, - { - "info": "UI_STAKING_REDEEM_CHOOSE_TITLE", - "zh-hk": "", - "en": "Pay gas fee", - "id": "Pay Gasfee" - }, - { - "info": "UI_STAKING_REDEEM_CHOOSE_QUANTITY", - "zh-hk": "", - "en": "Quantity", - "id": "Quantity" - }, - { - "info": "UI_STAKING_REDEEM_CHOOSE_TOKEN", - "zh-hk": "", - "en": "Token", - "id": "Token" - }, - { - "info": "UI_STAKING_REDEEM_CHOOSE_CEC_REWARD", - "zh-hk": "", - "en": "CEC Rewards", - "id": "CEC Rewards" - }, - { - "info": "UI_STAKING_REDEEM_CHOOSE_CLAIM", - "zh-hk": "", - "en": "Claim", - "id": "Claim" - }, - { - "info": "UI_STAKING_REDEEM_CHOOSE_CONFIRM_BTN", - "zh-hk": "", - "en": "CONFIRM", - "id": "CONFIRM" - }, - { - "info": "UI_STAKING_REDEEM_FINISH_TITLE", - "zh-hk": "", - "en": "Claim Rewards List", - "id": "Claim Rewards List" - }, - { - "info": "UI_STAKING_REDEEM_FINISH_QUANTITY", - "zh-hk": "", - "en": "Quantity on this release", - "id": "Quantity on this release" - }, - { - "info": "UI_STAKING_REDEEM_FINISH_TIME", - "zh-hk": "", - "en": "Time", - "id": "Time" - }, - { - "info": "UI_STAKING_REDEEM_FINISH_STATE", - "zh-hk": "", - "en": "State", - "id": "State" - }, - { - "info": "UI_STAKING_REDEEM_FINISH_UNDERWAY", - "zh-hk": "", - "en": "Underway", - "id": "Underway" - }, - { - "info": "UI_STAKING_REDEEM_FINISH_NODE_VIEW_BTN", - "zh-hk": "", - "en": "View", - "id": "View" - }, - { - "info": "UI_STAKING_HISTORY_TITLE", - "zh-hk": "", - "en": "Claim History", - "id": "Claim History" - }, - { - "info": "UI_STAKING_HISTORY_SELECT_DATE", - "zh-hk": "", - "en": "selection date", - "id": "selection date" - }, - { - "info": "UI_STAKING_HISTORY_DATE", - "zh-hk": "", - "en": "Date", - "id": "Date" - }, - { - "info": "UI_STAKING_HISTORY_CONTRACT", - "zh-hk": "", - "en": "Contract", - "id": "Contract" - }, - { - "info": "UI_STAKING_HISTORY_FINISH_COMFIRMD", - "zh-hk": "", - "en": "Confirmed", - "id": "Confirmed" - }, - { - "info": "ATTR_NAME_HP", - "zh-hk": "", - "en": "Health", - "id": "Health" - }, - { - "info": "ATTR_NAME_ATK", - "zh-hk": "", - "en": "Attack", - "id": "Attack" - }, - { - "info": "ATTR_NAME_DEF", - "zh-hk": "", - "en": "Defend", - "id": "Defend" - }, - { - "info": "ATTR_NAME_Block", - "zh-hk": "", - "en": "Block", - "id": "Block" - }, - { - "info": "ATTR_NAME_Crit", - "zh-hk": "", - "en": "Crit", - "id": "Crit" - }, - { - "info": "Battle_pass_s1_name", - "zh-hk": "", - "en": "Battle Pass", - "id": "Battle Pass" - }, - { - "info": "Battle_pass_s1_slogan", - "zh-hk": "", - "en": "Unlock Platinum Pass to Get Rich Rewards !", - "id": "Unlock Platinum Pass to Get Rich Rewards !" - }, - { - "info": "Guide_step_1", - "zh-hk": "", - "en": "Welcome to CounterFire!move to target point", - "id": "Welcome to CounterFire!move to target point" - }, - { - "info": "Guide_step_2", - "zh-hk": "", - "en": "Move and pick up the gun", - "id": "Move and pick up the gun" - }, - { - "info": "Guide_step_3", - "zh-hk": "", - "en": "Drag the joystick to shoot", - "id": "Drag the joystick to shoot" - }, - { - "info": "Guide_step_4", - "zh-hk": "", - "en": "Click the button to automatic shooting", - "id": "Click the button to automatic shooting" - }, - { - "info": "Guide_step_5", - "zh-hk": "", - "en": "Pick up the second gun", - "id": "Pick up the second gun" - }, - { - "info": "Guide_step_6", - "zh-hk": "", - "en": "Pick up 3 guns will upgrade and improve damage", - "id": "Pick up 4 guns will upgrade and improve damage" - }, - { - "info": "Guide_step_7", - "zh-hk": "", - "en": "Drag the joystick to shoot again", - "id": "Drag the joystick to shoot again" - }, - { - "info": "Guide_step_8", - "zh-hk": "", - "en": "Pick up 1 purple gem to activate skill", - "id": "Pick up 1 purple gem to activate skill" - }, - { - "info": "Guide_step_9", - "zh-hk": "", - "en": "Drag the joystick to use a skill", - "id": "Drag the joystick to use a skill" - }, - { - "info": "Guide_step_10", - "zh-hk": "", - "en": "you are injured, you can use your skill to restore HP", - "id": "you are injured, you can use your skill to restore HP" - }, - { - "info": "Guide_step_11", - "zh-hk": "", - "en": "Kill 3 enemies and complete the battle", - "id": "Kill 3 enemies and complete the battle" - }, - { - "info": "hero_say_1", - "zh-hk": "", - "en": "Beauty is the most powerful weapon.", - "id": "Beauty is the most powerful weapon." - }, - { - "info": "hero_say_2", - "zh-hk": "", - "en": "Hey, have you seen my wrench?", - "id": "Hey, have you seen my wrench?" - }, - { - "info": "hero_say_3", - "zh-hk": "", - "en": "Lollipops are the best food in the world!", - "id": "Lollipops are the best food in the world!" - }, - { - "info": "hero_say_4", - "zh-hk": "", - "en": "The drone is ready to take off.", - "id": "The drone is ready to take off." - }, - { - "info": "hero_say_5", - "zh-hk": "", - "en": "Catch me if you can!", - "id": "Catch me if you can!" - }, - { - "info": "hero_say_6", - "zh-hk": "", - "en": "It's show time!", - "id": "It's show time!" - }, - { - "info": "hero_say_7", - "zh-hk": "", - "en": "Aha, there you are!", - "id": "Aha, there you are!" - }, - { - "info": "hero_say_8", - "zh-hk": "", - "en": "I will protect you.", - "id": "I will protect you." - }, - { - "info": "hero_say_9", - "zh-hk": "", - "en": "It's fighting time.", - "id": "It's fighting time." - }, - { - "info": "hero_say_10", - "zh-hk": "", - "en": "Would you like to try my cooking?", - "id": "Would you like to try my cooking?" - }, - { - "info": "hero_like_1", - "zh-hk": "", - "en": "Wearing makeup and accessories", - "id": "Wearing makeup and accessories" - }, - { - "info": "hero_like_2", - "zh-hk": "", - "en": "Doing experiments and reading books", - "id": "Doing experiments and reading books" - }, - { - "info": "hero_like_3", - "zh-hk": "", - "en": "Eating candies and petting little animals", - "id": "Eating candies and petting little animals" - }, - { - "info": "hero_like_4", - "zh-hk": "", - "en": "Using drones", - "id": "Using drones" - }, - { - "info": "hero_like_5", - "zh-hk": "", - "en": "Playing mischief and hide-and-seek", - "id": "Playing mischief and hide-and-seek" - }, - { - "info": "hero_like_6", - "zh-hk": "", - "en": "Assembling mecha models", - "id": "Assembling mecha models" - }, - { - "info": "hero_like_7", - "zh-hk": "", - "en": "Eating meat and drinking grapewines", - "id": "Eating meat and drinking grapewines" - }, - { - "info": "hero_like_8", - "zh-hk": "", - "en": "Appreciating antiques", - "id": "Appreciating antiques" - }, - { - "info": "hero_like_9", - "zh-hk": "", - "en": "Boxfighting and making money", - "id": "Boxfighting and making money" - }, - { - "info": "hero_like_10", - "zh-hk": "", - "en": "Cooking and appreciating artistic works", - "id": "Cooking and appreciating artistic works" - }, - { - "info": "hero_anmi_1", - "zh-hk": "", - "en": "Fox", - "id": "Fox" - }, - { - "info": "hero_anmi_2", - "zh-hk": "", - "en": "Racoon", - "id": "Racoon" - }, - { - "info": "hero_anmi_3", - "zh-hk": "", - "en": "Deer", - "id": "Deer" - }, - { - "info": "hero_anmi_4", - "zh-hk": "", - "en": "Cat", - "id": "Cat" - }, - { - "info": "hero_anmi_5", - "zh-hk": "", - "en": "Rabbit", - "id": "Rabbit" - }, - { - "info": "hero_anmi_6", - "zh-hk": "", - "en": "Unicorn", - "id": "Unicorn" - }, - { - "info": "hero_anmi_7", - "zh-hk": "", - "en": "Cheetah", - "id": "Cheetah" - }, - { - "info": "hero_anmi_8", - "zh-hk": "", - "en": "Dragon", - "id": "Dragon" - }, - { - "info": "hero_anmi_9", - "zh-hk": "", - "en": "Bear", - "id": "Bear" - }, - { - "info": "hero_anmi_10", - "zh-hk": "", - "en": "Bull", - "id": "Bull" - }, - { - "info": "hero_story_1", - "zh-hk": "", - "en": "Hill is an elf from the fox territory in Crypto Land. Naturally endowed with cunning and seductive charm, she swiftly maneuvers the battlefield with her assault rifle, guiding her teammates and taking down enemies with a unique and sustained attack style.", - "id": "Hill is an elf from the fox territory in Crypto Land. Naturally endowed with cunning and seductive charm, she swiftly maneuvers the battlefield with her assault rifle, guiding her teammates and taking down enemies with a unique and sustained attack style." - }, - { - "info": "hero_story_2", - "zh-hk": "", - "en": "Yamada is a scientist from the raccoon family in Crypto Land. Known for her airhead personality and passion for science, she carries an energy accumulation gun. This weapon allows her to gather energy during battle and unleash powerful burst attacks, catching enemies off guard.", - "id": "Yamada is a scientist from the raccoon family in Crypto Land. Known for her airhead personality and passion for science, she carries an energy accumulation gun. This weapon allows her to gather energy during battle and unleash powerful burst attacks, catching enemies off guard." - }, - { - "info": "hero_story_3", - "zh-hk": "", - "en": "Aoi is the natural airhead princess of the mule deer family in Crypto Land. Armed with a freezing gun, she provides potent support by freezing enemies, creating opportunities for her team in the heat of battle.", - "id": "Aoi is the natural airhead princess of the mule deer family in Crypto Land. Armed with a freezing gun, she provides potent support by freezing enemies, creating opportunities for her team in the heat of battle." - }, - { - "info": "hero_story_4", - "zh-hk": "", - "en": "Astral is a resident of the mysterious digital dimension in Crypto Land. Once a young girl dwelling in the kingdom of cats, she found herself integrated into the digital realm during a dimensional storm. Endowed with powerful attack skills, her shotgun releases a continuous stream of light, akin to the stars, creating relentless pressure on her enemies.", - "id": "Astral is a resident of the mysterious digital dimension in Crypto Land. Once a young girl dwelling in the kingdom of cats, she found herself integrated into the digital realm during a dimensional storm. Endowed with powerful attack skills, her shotgun releases a continuous stream of light, akin to the stars, creating relentless pressure on her enemies." - }, - { - "info": "hero_story_5", - "zh-hk": "", - "en": "Miffy is the adorable envoy of the rabbit family in Crypto Land. Despite her cute appearance, her sniper rifle possesses explosive power on the battlefield, precisely hitting enemies' vital points. Her innocent demeanor hides deadly combat skills.", - "id": "Miffy is the adorable envoy of the rabbit family in Crypto Land. Despite her cute appearance, her sniper rifle possesses explosive power on the battlefield, precisely hitting enemies' vital points. Her innocent demeanor hides deadly combat skills." - }, - { - "info": "hero_story_6", - "zh-hk": "", - "en": "Canoe is a magician from the unicorn family in Crypto Land. Her mature and sexy presence captivates enemies, while her laser gun continuously releases high-energy beams, obliterating foes and establishing dominance on the battlefield.", - "id": "Canoe is a magician from the unicorn family in Crypto Land. Her mature and sexy presence captivates enemies, while her laser gun continuously releases high-energy beams, obliterating foes and establishing dominance on the battlefield." - }, - { - "info": "hero_story_7", - "zh-hk": "", - "en": "Mariana rules the cheetah kingdom in Crypto Land. With her dominant and sexy demeanor, she wields a small energy cannon that delivers explosive bursts of power, establishing her as a dominant force on the battlefield.", - "id": "Mariana rules the cheetah kingdom in Crypto Land. With her dominant and sexy demeanor, she wields a small energy cannon that delivers explosive bursts of power, establishing her as a dominant force on the battlefield." - }, - { - "info": "hero_story_8", - "zh-hk": "", - "en": "Dragonscale is a mysterious warrior from the Chinese dragon family in Crypto Land. Known for his handsome appearance and enigmatic powers, he carries a rocket launcher, offering long-range firepower support to his team.", - "id": "Dragonscale is a mysterious warrior from the Chinese dragon family in Crypto Land. Known for his handsome appearance and enigmatic powers, he carries a rocket launcher, offering long-range firepower support to his team." - }, - { - "info": "hero_story_9", - "zh-hk": "", - "en": "Lazar is a valiant warrior from the grizzly bear family in Crypto Land. Renowned for his sturdy physique and heroic demeanor, he serves as a formidable tank on the battlefield, wielding a flamethrower to protect his teammates.", - "id": "Lazar is a valiant warrior from the grizzly bear family in Crypto Land. Renowned for his sturdy physique and heroic demeanor, he serves as a formidable tank on the battlefield, wielding a flamethrower to protect his teammates." - }, - { - "info": "hero_story_10", - "zh-hk": "", - "en": "Kurosawa is a heroic warrior from the bull family in Crypto Land. His muscular physique, handsome looks, and steady demeanor make him a charismatic figure on the battlefield. Armed with a grenade launcher, he provides vital support, creating chaos and opportunities for his team.", - "id": "Kurosawa is a heroic warrior from the bull family in Crypto Land. His muscular physique, handsome looks, and steady demeanor make him a charismatic figure on the battlefield. Armed with a grenade launcher, he provides vital support, creating chaos and opportunities for his team." - }, - { - "info": "item_name_10001", - "zh-hk": "", - "en": "Gold", - "id": "Gold" - }, - { - "info": "item_name_10002", - "zh-hk": "", - "en": "CEG", - "id": "CEG" - }, - { - "info": "item_name_10003", - "zh-hk": "", - "en": "Charactor Experience", - "id": "Charactor Experience" - }, - { - "info": "item_name_10004", - "zh-hk": "", - "en": "Daily Active", - "id": "Daily Active" - }, - { - "info": "item_name_10005", - "zh-hk": "", - "en": "Week Active", - "id": "Week Active" - }, - { - "info": "item_name_10006", - "zh-hk": "", - "en": "Manual Experience", - "id": "Manual Experience" - }, - { - "info": "item_name_10009", - "zh-hk": "", - "en": "Battle Skill", - "id": "Battle Skill" - }, - { - "info": "item_name_10010", - "zh-hk": "", - "en": "Test CEC", - "id": "Test CEC" - }, - { - "info": "item_name_10011", - "zh-hk": "", - "en": "Star", - "id": "Star" - }, - { - "info": "item_name_10012", - "zh-hk": "", - "en": "Platinum Battle Pass ", - "id": "Platinum Battle Pass " - }, - { - "info": "item_name_10013", - "zh-hk": "", - "en": "reset card", - "id": "reset card" - }, - { - "info": "item_name_10014", - "zh-hk": "", - "en": "Diamond", - "id": "Diamond" - }, - { - "info": "item_name_10015", - "zh-hk": "", - "en": "SV Point", - "id": "SV Point" - }, - { - "info": "item_name_20001", - "zh-hk": "", - "en": "Newbie Gift", - "id": "Newbie Gift" - }, - { - "info": "item_name_20002", - "zh-hk": "", - "en": "Golden Gift", - "id": "Golden Gift" - }, - { - "info": "item_name_20003", - "zh-hk": "", - "en": "Large-golden Gift", - "id": "Large-golden Gift" - }, - { - "info": "item_name_20004", - "zh-hk": "", - "en": "Advenced Gift", - "id": "Advenced Gift" - }, - { - "info": "item_name_20005", - "zh-hk": "", - "en": "Supreme Gift", - "id": "Supreme Gift" - }, - { - "info": "item_name_20006", - "zh-hk": "", - "en": "Daily Active 30", - "id": "Daily Active 30" - }, - { - "info": "item_name_20007", - "zh-hk": "", - "en": "Daily Active 60", - "id": "Daily Active 60" - }, - { - "info": "item_name_20008", - "zh-hk": "", - "en": "Daily Active 90", - "id": "Daily Active 90" - }, - { - "info": "item_name_20009", - "zh-hk": "", - "en": "Daily Active 120", - "id": "Daily Active 120" - }, - { - "info": "item_name_20010", - "zh-hk": "", - "en": "Daily Active 150", - "id": "Daily Active 150" - }, - { - "info": "item_name_30100", - "zh-hk": "", - "en": "Hill", - "id": "Hill" - }, - { - "info": "item_name_30200", - "zh-hk": "", - "en": "Yamada", - "id": "Yamada" - }, - { - "info": "item_name_30300", - "zh-hk": "", - "en": "Aoi", - "id": "Aoi" - }, - { - "info": "item_name_30400", - "zh-hk": "", - "en": "Astral", - "id": "Astral" - }, - { - "info": "item_name_30500", - "zh-hk": "", - "en": "Miffy", - "id": "Miffy" - }, - { - "info": "item_name_30600", - "zh-hk": "", - "en": "Canoe", - "id": "Canoe" - }, - { - "info": "item_name_30700", - "zh-hk": "", - "en": "Mariana", - "id": "Mariana" - }, - { - "info": "item_name_30800", - "zh-hk": "", - "en": "Dragonscale", - "id": "Dragonscale" - }, - { - "info": "item_name_30900", - "zh-hk": "", - "en": "Lazar", - "id": "Lazar" - }, - { - "info": "item_name_31000", - "zh-hk": "", - "en": "Kurosawa", - "id": "Kurosawa" - }, - { - "info": "item_name_40101", - "zh-hk": "", - "en": "Original", - "id": "Original" - }, - { - "info": "item_name_40102", - "zh-hk": "", - "en": "Nine-tailed", - "id": "Nine-tailed" - }, - { - "info": "item_name_40201", - "zh-hk": "", - "en": "Original", - "id": "Original" - }, - { - "info": "item_name_40202", - "zh-hk": "", - "en": "Time Travel", - "id": "Time Travel" - }, - { - "info": "item_name_40301", - "zh-hk": "", - "en": "Original", - "id": "Original" - }, - { - "info": "item_name_40302", - "zh-hk": "", - "en": "Green Scene", - "id": "Green Scene" - }, - { - "info": "item_name_40401", - "zh-hk": "", - "en": "Original", - "id": "Original" - }, - { - "info": "item_name_40501", - "zh-hk": "", - "en": "Original", - "id": "Original" - }, - { - "info": "item_name_40601", - "zh-hk": "", - "en": "Original", - "id": "Original" - }, - { - "info": "item_name_40602", - "zh-hk": "", - "en": "Peace Envoy", - "id": "Peace Envoy" - }, - { - "info": "item_name_40701", - "zh-hk": "", - "en": "Original", - "id": "Original" - }, - { - "info": "item_name_40702", - "zh-hk": "", - "en": "Beast Mode", - "id": "Beast Mode" - }, - { - "info": "item_name_40801", - "zh-hk": "", - "en": "Original", - "id": "Original" - }, - { - "info": "item_name_40802", - "zh-hk": "", - "en": "Ice Dragon", - "id": "Ice Dragon" - }, - { - "info": "item_name_40901", - "zh-hk": "", - "en": "Original", - "id": "Original" - }, - { - "info": "item_name_40902", - "zh-hk": "", - "en": "Machinist ", - "id": "Machinist " - }, - { - "info": "item_name_41001", - "zh-hk": "", - "en": "Original", - "id": "Original" - }, - { - "info": "item_name_50001", - "zh-hk": "", - "en": "Hill", - "id": "Hill" - }, - { - "info": "item_name_50002", - "zh-hk": "", - "en": "Yamada", - "id": "Yamada" - }, - { - "info": "item_name_50003", - "zh-hk": "", - "en": "Aoi", - "id": "Aoi" - }, - { - "info": "item_name_50004", - "zh-hk": "", - "en": "Astral", - "id": "Astral" - }, - { - "info": "item_name_50005", - "zh-hk": "", - "en": "Miffy", - "id": "Miffy" - }, - { - "info": "item_name_50006", - "zh-hk": "", - "en": "Canoe", - "id": "Canoe" - }, - { - "info": "item_name_50007", - "zh-hk": "", - "en": "Mariana", - "id": "Mariana" - }, - { - "info": "item_name_50008", - "zh-hk": "", - "en": "Dragonscale", - "id": "Dragonscale" - }, - { - "info": "item_name_50009", - "zh-hk": "", - "en": "Lazar", - "id": "Lazar" - }, - { - "info": "item_name_50010", - "zh-hk": "", - "en": "Kurosawa", - "id": "Kurosawa" - }, - { - "info": "item_name_60000", - "zh-hk": "", - "en": "Basic", - "id": "Basic" - }, - { - "info": "item_name_60003", - "zh-hk": "", - "en": "Thearchy", - "id": "Thearchy" - }, - { - "info": "item_name_70001", - "zh-hk": "", - "en": "Submachine", - "id": "Submachine" - }, - { - "info": "item_name_70002", - "zh-hk": "", - "en": "Shotgun", - "id": "Shotgun" - }, - { - "info": "item_name_70003", - "zh-hk": "", - "en": "Sniper", - "id": "Sniper" - }, - { - "info": "item_name_70004", - "zh-hk": "", - "en": "Bazooka", - "id": "Bazooka" - }, - { - "info": "item_name_70005", - "zh-hk": "", - "en": "Laser", - "id": "Laser" - }, - { - "info": "item_name_70006", - "zh-hk": "", - "en": "Freeze", - "id": "Freeze" - }, - { - "info": "item_name_70007", - "zh-hk": "", - "en": "Flame", - "id": "Flame" - }, - { - "info": "item_name_80001", - "zh-hk": "", - "en": "Submachine", - "id": "Submachine" - }, - { - "info": "item_name_80002", - "zh-hk": "", - "en": "Shotgun", - "id": "Shotgun" - }, - { - "info": "item_name_80003", - "zh-hk": "", - "en": "Sniper", - "id": "Sniper" - }, - { - "info": "item_name_80004", - "zh-hk": "", - "en": "Bazooka", - "id": "Bazooka" - }, - { - "info": "item_name_80005", - "zh-hk": "", - "en": "Laser", - "id": "Laser" - }, - { - "info": "item_name_80006", - "zh-hk": "", - "en": "Freeze", - "id": "Freeze" - }, - { - "info": "item_name_80007", - "zh-hk": "", - "en": "Flame", - "id": "Flame" - }, - { - "info": "item_name_90001", - "zh-hk": "", - "en": "Rename Card", - "id": "Rename Card" - }, - { - "info": "item_name_90002", - "zh-hk": "", - "en": "Speaker", - "id": "Speaker" - }, - { - "info": "item_name_101001", - "zh-hk": "", - "en": "Test - Material", - "id": "Test - Material" - }, - { - "info": "item_name_100001", - "zh-hk": "", - "en": "Unkown - Normal", - "id": "Unkown - Normal" - }, - { - "info": "item_name_100002", - "zh-hk": "", - "en": "Unkown - Rare", - "id": "Unkown - Rare" - }, - { - "info": "item_name_100003", - "zh-hk": "", - "en": "Unkown - Epic", - "id": "Unkown - Epic" - }, - { - "info": "item_name_100004", - "zh-hk": "", - "en": "Unkown - Legend", - "id": "Unkown - Legend" - }, - { - "info": "item_name_100005", - "zh-hk": "", - "en": "Hero Crystal", - "id": "Hero Crystal" - }, - { - "info": "item_name_100006", - "zh-hk": "", - "en": "Weapon Parts", - "id": "Weapon Parts" - }, - { - "info": "item_name_100007", - "zh-hk": "", - "en": "Chip Parts", - "id": "Chip Parts" - }, - { - "info": "item_name_91000", - "zh-hk": "", - "en": "Treasure", - "id": "Treasure" - }, - { - "info": "item_name_90004", - "zh-hk": "", - "en": "Fatigue", - "id": "Fatigue" - }, - { - "info": "item_name_90005", - "zh-hk": "", - "en": "Stamina Potion", - "id": "Stamina Potion" - }, - { - "info": "item_name_90006", - "zh-hk": "", - "en": "Repair Tools", - "id": "Repair Tools" - }, - { - "info": "item_name_110001", - "zh-hk": "", - "en": "Mystery Box", - "id": "Mystery Box" - }, - { - "info": "item_name_130001", - "zh-hk": "", - "en": "Brutal force", - "id": "Brutal force" - }, - { - "info": "item_name_130002", - "zh-hk": "", - "en": "Sniper eye", - "id": "Sniper eye" - }, - { - "info": "item_name_130003", - "zh-hk": "", - "en": "Vampirism", - "id": "Vampirism" - }, - { - "info": "item_name_130004", - "zh-hk": "", - "en": "Cold blood ", - "id": "Cold blood " - }, - { - "info": "item_name_130011", - "zh-hk": "", - "en": "Fast resume", - "id": "Fast resume" - }, - { - "info": "item_name_130012", - "zh-hk": "", - "en": "Vision", - "id": "Vision" - }, - { - "info": "item_name_130013", - "zh-hk": "", - "en": "Speed rescue", - "id": "Speed rescue" - }, - { - "info": "item_name_130014", - "zh-hk": "", - "en": "Drug effect", - "id": "Drug effect" - }, - { - "info": "item_name_130021", - "zh-hk": "", - "en": "Life source", - "id": "Life source" - }, - { - "info": "item_name_130022", - "zh-hk": "", - "en": "Original guard", - "id": "Original guard" - }, - { - "info": "item_name_130023", - "zh-hk": "", - "en": "Solid shell", - "id": "Solid shell" - }, - { - "info": "item_name_130024", - "zh-hk": "", - "en": "Original life", - "id": "Original life" - }, - { - "info": "item_name_140001", - "zh-hk": "", - "en": "Revive Coin", - "id": "Revive Coin" - }, - { - "info": "item_name_110290", - "zh-hk": "", - "en": "Hill Piece", - "id": "Hill Piece" - }, - { - "info": "item_name_110291", - "zh-hk": "", - "en": "Yamada Piece", - "id": "Yamada Piece" - }, - { - "info": "item_name_110292", - "zh-hk": "", - "en": "Aoi Piece", - "id": "Aoi Piece" - }, - { - "info": "item_name_110293", - "zh-hk": "", - "en": "Astral Piece", - "id": "Astral Piece" - }, - { - "info": "item_name_110294", - "zh-hk": "", - "en": "Miffy Piece", - "id": "Miffy Piece" - }, - { - "info": "item_name_110295", - "zh-hk": "", - "en": "Canoe Piece", - "id": "Canoe Piece" - }, - { - "info": "item_name_110296", - "zh-hk": "", - "en": "Mariana Piece", - "id": "Mariana Piece" - }, - { - "info": "item_name_110297", - "zh-hk": "", - "en": "Dragonscale Piece", - "id": "Dragonscale Piece" - }, - { - "info": "item_name_110298", - "zh-hk": "", - "en": "Lazar Piece", - "id": "Lazar Piece" - }, - { - "info": "item_name_110299", - "zh-hk": "", - "en": "Kurosawa Piece", - "id": "Kurosawa Piece" - }, - { - "info": "item_name_110101", - "zh-hk": "", - "en": "Testimonial Box", - "id": "Testimonial Box" - }, - { - "info": "item_name_110111", - "zh-hk": "", - "en": "Shoulder Box", - "id": "Shoulder Box" - }, - { - "info": "item_name_110121", - "zh-hk": "", - "en": "Left Arm Box", - "id": "Left Arm Box" - }, - { - "info": "item_name_110131", - "zh-hk": "", - "en": "Abdomen Box", - "id": "Abdomen Box" - }, - { - "info": "item_name_110141", - "zh-hk": "", - "en": "Left Leg Box", - "id": "Left Leg Box" - }, - { - "info": "item_name_110151", - "zh-hk": "", - "en": "Head Box", - "id": "Head Box" - }, - { - "info": "item_name_110161", - "zh-hk": "", - "en": "Chest Box", - "id": "Chest Box" - }, - { - "info": "item_name_110171", - "zh-hk": "", - "en": "Right Arm Box", - "id": "Right Arm Box" - }, - { - "info": "item_name_110181", - "zh-hk": "", - "en": "Right Leg Box", - "id": "Right Leg Box" - }, - { - "info": "item_name_110201", - "zh-hk": "", - "en": "Blueprint Box", - "id": "Blueprint Box" - }, - { - "info": "item_name_110211", - "zh-hk": "", - "en": "Sight Box", - "id": "Sight Box" - }, - { - "info": "item_name_110221", - "zh-hk": "", - "en": "Stock Box", - "id": "Stock Box" - }, - { - "info": "item_name_110231", - "zh-hk": "", - "en": "Trigger Box", - "id": "Trigger Box" - }, - { - "info": "item_name_110241", - "zh-hk": "", - "en": "Ammo Box", - "id": "Ammo Box" - }, - { - "info": "item_name_110251", - "zh-hk": "", - "en": "Bolt Box", - "id": "Bolt Box" - }, - { - "info": "item_name_110261", - "zh-hk": "", - "en": "Barrel Box", - "id": "Barrel Box" - }, - { - "info": "item_name_110271", - "zh-hk": "", - "en": "Grip Box", - "id": "Grip Box" - }, - { - "info": "item_name_110281", - "zh-hk": "", - "en": "Clip Box", - "id": "Clip Box" - }, - { - "info": "item_name_170001", - "zh-hk": "", - "en": "Parachute Default", - "id": "Parachute Default" - }, - { - "info": "item_name_170002", - "zh-hk": "", - "en": "Parachute S1", - "id": "Parachute S2" - }, - { - "info": "item_name_150101", - "zh-hk": "", - "en": "Hero Chip Box 1", - "id": "Hero Chip Box 1" - }, - { - "info": "item_name_150102", - "zh-hk": "", - "en": "Hero Chip Box 3", - "id": "Hero Chip Box 3" - }, - { - "info": "item_name_150103", - "zh-hk": "", - "en": "Hero Chip Box 5", - "id": "Hero Chip Box 5" - }, - { - "info": "item_name_150201", - "zh-hk": "", - "en": "Weapon Chip Box 1", - "id": "Weapon Chip Box 1" - }, - { - "info": "item_name_150202", - "zh-hk": "", - "en": "Weapon Chip Box 3", - "id": "Weapon Chip Box 3" - }, - { - "info": "item_name_150203", - "zh-hk": "", - "en": "Weapon Chip Box 5", - "id": "Weapon Chip Box 5" - }, - { - "info": "item_name_160001", - "zh-hk": "", - "en": "Hill Fgimage", - "id": "Hill Fgimage" - }, - { - "info": "item_name_160002", - "zh-hk": "", - "en": "Yamada Fgimage", - "id": "Yamada Fgimage" - }, - { - "info": "item_name_160003", - "zh-hk": "", - "en": "Aoi Fgimage", - "id": "Aoi Fgimage" - }, - { - "info": "item_name_160004", - "zh-hk": "", - "en": "Astral Fgimage", - "id": "Astral Fgimage" - }, - { - "info": "item_name_160005", - "zh-hk": "", - "en": "Miffy Fgimage", - "id": "Miffy Fgimage" - }, - { - "info": "item_name_160006", - "zh-hk": "", - "en": "Canoe Fgimage", - "id": "Canoe Fgimage" - }, - { - "info": "item_name_160007", - "zh-hk": "", - "en": "Mariana Fgimage", - "id": "Mariana Fgimage" - }, - { - "info": "item_name_160008", - "zh-hk": "", - "en": "Dragonscale Fgimage", - "id": "Dragonscale Fgimage" - }, - { - "info": "item_name_160009", - "zh-hk": "", - "en": "Lazar Fgimage", - "id": "Lazar Fgimage" - }, - { - "info": "item_name_160010", - "zh-hk": "", - "en": "Kurosawa Fgimage", - "id": "Kurosawa Fgimage" - }, - { - "info": "item_name_190001", - "zh-hk": "", - "en": "The First Ring", - "id": "The First Ring" - }, - { - "info": "item_name_190002", - "zh-hk": "", - "en": "The Second Ring", - "id": "The Second Ring" - }, - { - "info": "item_name_190003", - "zh-hk": "", - "en": "The Third Ring", - "id": "The Third Ring" - }, - { - "info": "item_name_200001", - "zh-hk": "", - "en": "Smile", - "id": "Smile" - }, - { - "info": "item_name_200002", - "zh-hk": "", - "en": "Like", - "id": "Like" - }, - { - "info": "item_name_200003", - "zh-hk": "", - "en": "Shy", - "id": "Shy" - }, - { - "info": "item_name_200004", - "zh-hk": "", - "en": "Gluttonous", - "id": "Gluttonous" - }, - { - "info": "item_name_200005", - "zh-hk": "", - "en": "Shock", - "id": "Shock" - }, - { - "info": "item_name_200006", - "zh-hk": "", - "en": "Angry", - "id": "Angry" - }, - { - "info": "item_name_200007", - "zh-hk": "", - "en": "Nothing to say", - "id": "Nothing to say" - }, - { - "info": "item_name_200008", - "zh-hk": "", - "en": "Disappoint", - "id": "Disappoint" - }, - { - "info": "item_name_200009", - "zh-hk": "", - "en": "Chicken", - "id": "Chicken" - }, - { - "info": "item_name_200010", - "zh-hk": "", - "en": "Cry", - "id": "Cry" - }, - { - "info": "item_name_200011", - "zh-hk": "", - "en": "Take offence", - "id": "Take offence" - }, - { - "info": "item_desc_200010", - "zh-hk": "", - "en": "Cry", - "id": "Cry" - }, - { - "info": "item_desc_200011", - "zh-hk": "", - "en": "Take offence", - "id": "Take offence" - }, - { - "info": "item_name_210001", - "zh-hk": "", - "en": "Random Weapon", - "id": "Random Weapon" - }, - { - "info": "item_name_210002", - "zh-hk": "", - "en": "Random Hero", - "id": "Random Hero" - }, - { - "info": "item_name_210003", - "zh-hk": "", - "en": "Random Chip", - "id": "Random Chip" - }, - { - "info": "item_name_210011", - "zh-hk": "", - "en": "Random Weapon Piece Box", - "id": "Random Weapon Piece Box" - }, - { - "info": "item_name_210012", - "zh-hk": "", - "en": "Random Hero Piece Box", - "id": "Random Hero Piece Box" - }, - { - "info": "item_name_900001", - "zh-hk": "", - "en": "Special Chest", - "id": "Special Chest" - }, - { - "info": "item_name_900002", - "zh-hk": "", - "en": "Chip Chest", - "id": "Chip Chest" - }, - { - "info": "item_name_900003", - "zh-hk": "", - "en": "Hero Chest", - "id": "Hero Chest" - }, - { - "info": "item_name_900004", - "zh-hk": "", - "en": "Stamina potion", - "id": "Stamina potion" - }, - { - "info": "item_desc_10001", - "zh-hk": "", - "en": "CounterFire Universal Token.It be earned by playing games and has multiple uses.", - "id": "CounterFire Universal Token.It be earned by playing games and has multiple uses." - }, - { - "info": "item_desc_10002", - "zh-hk": "", - "en": "CounterFire Governance Token.It is spend when Upgrade or Advance in the game.", - "id": "CounterFire Governance Token.It is spend when Upgrade or Advance in the game." - }, - { - "info": "item_desc_10003", - "zh-hk": "", - "en": "Energy required to level up.", - "id": "Energy required to level up." - }, - { - "info": "item_desc_10004", - "zh-hk": "", - "en": "Energy required for daily active mission.", - "id": "Energy required for daily active mission." - }, - { - "info": "item_desc_10005", - "zh-hk": "", - "en": "Energy required for weekly active mission.", - "id": "Energy required for weekly active mission." - }, - { - "info": "item_desc_10006", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_10009", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_10010", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_10011", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_10012", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_10013", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_10014", - "zh-hk": "", - "en": "Diamonds can be used to purchase mall props", - "id": "Diamonds can be used to purchase mall props" - }, - { - "info": "item_desc_10015", - "zh-hk": "", - "en": "Reward points for the supreme victors", - "id": "Reward points for the supreme victors" - }, - { - "info": "item_desc_20001", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_20002", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_20003", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_20004", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_20005", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_20006", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_20007", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_20008", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_20009", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_20010", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_30100", - "zh-hk": "", - "en": "Hill is an attack damage hero,her skill is launches the fragrance of love", - "id": "Hill is an attack damage hero,her skill is launches the fragrance of love" - }, - { - "info": "item_desc_30200", - "zh-hk": "", - "en": "Yamada is an attack damage hero,her skill is use two burst rocket", - "id": "Yamada is an attack damage hero,her skill is use two burst rocket" - }, - { - "info": "item_desc_30300", - "zh-hk": "", - "en": "Aoi is a support hero,hero skill is place a medical station within the range", - "id": "Aoi is a support hero,hero skill is place a medical station within the range" - }, - { - "info": "item_desc_30400", - "zh-hk": "", - "en": "Yamada is an attack damage hero,her skill is throw a hook forward", - "id": "Yamada is an attack damage hero,her skill is throw a hook forward" - }, - { - "info": "item_desc_30500", - "zh-hk": "", - "en": "Miffy is an attack damage hero,her skill is enter stealth time", - "id": "Miffy is an attack damage hero,her skill is enter stealth time" - }, - { - "info": "item_desc_30600", - "zh-hk": "", - "en": "Canoe is a support hero,her skill is summons X Robot Puppets", - "id": "Canoe is a support hero,her skill is summons X Robot Puppets" - }, - { - "info": "item_desc_30700", - "zh-hk": "", - "en": "Mariana is a attack damage hero,her skill is transforms into a cheetah", - "id": "Mariana is a attack damage hero,her skill is transforms into a cheetah" - }, - { - "info": "item_desc_30800", - "zh-hk": "", - "en": "Dragonscale is an attack damage hero,his skill can be switched to erecting the Gatling Gun", - "id": "Dragonscale is an attack damage hero,his skill can be switched to erecting the Gatling Gun" - }, - { - "info": "item_desc_30900", - "zh-hk": "", - "en": "Lazar is a defense hero,his skill is transforms into an armed bear", - "id": "Lazar is a defense hero,his skill is transforms into an armed bear" - }, - { - "info": "item_desc_31000", - "zh-hk": "", - "en": "Kurosawa is a defense hero,his skill is dashes in the target direction", - "id": "Kurosawa is a defense hero,his skill is dashes in the target direction" - }, - { - "info": "item_desc_40101", - "zh-hk": "", - "en": "A reward when getting Hill", - "id": "A reward when getting Hill" - }, - { - "info": "item_desc_40102", - "zh-hk": "", - "en": "A reward when getting Hill", - "id": "A reward when getting Hill" - }, - { - "info": "item_desc_40201", - "zh-hk": "", - "en": "A reward when getting Yamada", - "id": "A reward when getting Yamada" - }, - { - "info": "item_desc_40202", - "zh-hk": "", - "en": "A reward when getting Yamada", - "id": "A reward when getting Yamada" - }, - { - "info": "item_desc_40301", - "zh-hk": "", - "en": "A reward when getting Aoi", - "id": "A reward when getting Aoi" - }, - { - "info": "item_desc_40302", - "zh-hk": "", - "en": "A reward when getting Aoi", - "id": "A reward when getting Aoi" - }, - { - "info": "item_desc_40401", - "zh-hk": "", - "en": "A reward when getting Astral", - "id": "A reward when getting Astral" - }, - { - "info": "item_desc_40501", - "zh-hk": "", - "en": "A reward when getting Miffy", - "id": "A reward when getting Miffy" - }, - { - "info": "item_desc_40601", - "zh-hk": "", - "en": "A reward when getting Canoe", - "id": "A reward when getting Canoe" - }, - { - "info": "item_desc_40602", - "zh-hk": "", - "en": "A reward when getting Canoe", - "id": "A reward when getting Canoe" - }, - { - "info": "item_desc_40701", - "zh-hk": "", - "en": "A reward when getting Mariana", - "id": "A reward when getting Mariana" - }, - { - "info": "item_desc_40702", - "zh-hk": "", - "en": "A reward when getting Mariana", - "id": "A reward when getting Mariana" - }, - { - "info": "item_desc_40801", - "zh-hk": "", - "en": "A reward when getting Dragonscale", - "id": "A reward when getting Dragonscale" - }, - { - "info": "item_desc_40802", - "zh-hk": "", - "en": "Ice Dragon", - "id": "Ice Dragon" - }, - { - "info": "item_desc_40901", - "zh-hk": "", - "en": "A reward when getting Lazar", - "id": "A reward when getting Lazar" - }, - { - "info": "item_desc_40902", - "zh-hk": "", - "en": "A reward when getting Lazar", - "id": "A reward when getting Lazar" - }, - { - "info": "item_desc_41001", - "zh-hk": "", - "en": "A reward when getting Kurosawa", - "id": "A reward when getting Kurosawa" - }, - { - "info": "item_desc_50001", - "zh-hk": "", - "en": "A reward when getting Hill", - "id": "A reward when getting Hill" - }, - { - "info": "item_desc_50002", - "zh-hk": "", - "en": "A reward when getting Yamada", - "id": "A reward when getting Yamada" - }, - { - "info": "item_desc_50003", - "zh-hk": "", - "en": "A reward when getting Aoi", - "id": "A reward when getting Aoi" - }, - { - "info": "item_desc_50004", - "zh-hk": "", - "en": "A reward when getting Astral", - "id": "A reward when getting Astral" - }, - { - "info": "item_desc_50005", - "zh-hk": "", - "en": "A reward when getting Miffy", - "id": "A reward when getting Miffy" - }, - { - "info": "item_desc_50006", - "zh-hk": "", - "en": "A reward when getting Canoe", - "id": "A reward when getting Canoe" - }, - { - "info": "item_desc_50007", - "zh-hk": "", - "en": "A reward when getting Mariana", - "id": "A reward when getting Mariana" - }, - { - "info": "item_desc_50008", - "zh-hk": "", - "en": "A reward when getting Dragonscale", - "id": "A reward when getting Dragonscale" - }, - { - "info": "item_desc_50009", - "zh-hk": "", - "en": "A reward when getting Lazar", - "id": "A reward when getting Lazar" - }, - { - "info": "item_desc_50010", - "zh-hk": "", - "en": "A reward when getting Kurosawa", - "id": "A reward when getting Kurosawa" - }, - { - "info": "item_desc_60000", - "zh-hk": "", - "en": "default", - "id": "default" - }, - { - "info": "item_desc_60003", - "zh-hk": "", - "en": "Awarded to those players who took Thearchy in S1", - "id": "Awarded to those players who took Thearchy in S2" - }, - { - "info": "item_desc_70001", - "zh-hk": "", - "en": "Submachine has a medium range and deals medium damage", - "id": "Submachine has a medium range and deals medium damage" - }, - { - "info": "item_desc_70002", - "zh-hk": "", - "en": "Shotgun is an efficient weapon for close range combat", - "id": "Shotgun is an efficient weapon for close range combat" - }, - { - "info": "item_desc_70003", - "zh-hk": "", - "en": "Sniper rifles have a long range and high damage", - "id": "Sniper rifles have a long range and high damage" - }, - { - "info": "item_desc_70004", - "zh-hk": "", - "en": "Bazooka is extremely damaging and can deal ranged damage", - "id": "Bazooka is extremely damaging and can deal ranged damage" - }, - { - "info": "item_desc_70005", - "zh-hk": "", - "en": "Laser has a special sputtering effect and deal high damage", - "id": "Laser has a special sputtering effect and deal high damage" - }, - { - "info": "item_desc_70006", - "zh-hk": "", - "en": "Freeze slows the enemy on a hit and deal less damage", - "id": "Freeze slows the enemy on a hit and deal less damage" - }, - { - "info": "item_desc_70007", - "zh-hk": "", - "en": "Flame can cut through obstacles to deal ranged damage", - "id": "Flame can cut through obstacles to deal ranged damage" - }, - { - "info": "item_desc_80001", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_80002", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_80003", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_80004", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_80005", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_80006", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_80007", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_90001", - "zh-hk": "", - "en": "Edit your name", - "id": "Edit your name" - }, - { - "info": "item_desc_90002", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_101001", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_100001", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_100002", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_100003", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_100004", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_100005", - "zh-hk": "", - "en": "A material needed to upgrade a hero", - "id": "A material needed to upgrade a hero" - }, - { - "info": "item_desc_100006", - "zh-hk": "", - "en": "A material required for a weapon upgrade", - "id": "A material required for a weapon upgrade" - }, - { - "info": "item_desc_100007", - "zh-hk": "", - "en": "A chip needed to upgrade the chip", - "id": "A chip needed to upgrade the chip" - }, - { - "info": "item_desc_91000", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_90004", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_90005", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_90006", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_110001", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_130001", - "zh-hk": "", - "en": "Brutal force can improve the hero's Atk Pct", - "id": "Brutal force can improve the hero's Atk Pct" - }, - { - "info": "item_desc_130002", - "zh-hk": "", - "en": "Sniper eye can improve the hero's Critical", - "id": "Sniper eye can improve the hero's Critical" - }, - { - "info": "item_desc_130003", - "zh-hk": "", - "en": "Vampirism can improve the hero's Brain Life Pct", - "id": "Vampirism can improve the hero's Brain Life Pct" - }, - { - "info": "item_desc_130004", - "zh-hk": "", - "en": "Cold blood can reduce the CD of hero skills", - "id": "Cold blood can reduce the CD of hero skills" - }, - { - "info": "item_desc_130011", - "zh-hk": "", - "en": "Fast resume can reduce the duration of medication use", - "id": "Fast resume can reduce the duration of medication use" - }, - { - "info": "item_desc_130012", - "zh-hk": "", - "en": "Vision can improve the scope of vision", - "id": "Vision can improve the scope of vision" - }, - { - "info": "item_desc_130013", - "zh-hk": "", - "en": "Speed rescue can reduce the time to rescue teammates", - "id": "Speed rescue can reduce the time to rescue teammates" - }, - { - "info": "item_desc_130014", - "zh-hk": "", - "en": "Drug effect can improve the effect of drug use", - "id": "Drug effect can improve the effect of drug use" - }, - { - "info": "item_desc_130021", - "zh-hk": "", - "en": "Life source can improve the hero's HP Max", - "id": "Life source can improve the hero's HP Max" - }, - { - "info": "item_desc_130022", - "zh-hk": "", - "en": "Original guard can improve the hero's Defence", - "id": "Original guard can improve the hero's Defence" - }, - { - "info": "item_desc_130023", - "zh-hk": "", - "en": "Solid shell can reduce the time of the controlled hero", - "id": "Solid shell can reduce the time of the controlled hero" - }, - { - "info": "item_desc_130024", - "zh-hk": "", - "en": "Original life can improve skill's resume effect", - "id": "Original life can improve skill's resume effect" - }, - { - "info": "item_desc_140001", - "zh-hk": "", - "en": "Revive your hero in PVE mode", - "id": "Revive your hero in PVE mode" - }, - { - "info": "item_desc_110290", - "zh-hk": "", - "en": "Hill is an attack damage hero,her skill is launches the fragrance of love", - "id": "Hill is an attack damage hero,her skill is launches the fragrance of love" - }, - { - "info": "item_desc_110291", - "zh-hk": "", - "en": "Yamada is an attack damage hero,her skill is use two burst rocket", - "id": "Yamada is an attack damage hero,her skill is use two burst rocket" - }, - { - "info": "item_desc_110292", - "zh-hk": "", - "en": "Aoi is a support hero,hero skill is place a medical station within the range", - "id": "Aoi is a support hero,hero skill is place a medical station within the range" - }, - { - "info": "item_desc_110293", - "zh-hk": "", - "en": "Astral is an attack damage hero,her skill is throw a hook forward", - "id": "Astral is an attack damage hero,her skill is throw a hook forward" - }, - { - "info": "item_desc_110294", - "zh-hk": "", - "en": "Miffy is an attack damage hero,her skill is enter stealth time", - "id": "Miffy is an attack damage hero,her skill is enter stealth time" - }, - { - "info": "item_desc_110295", - "zh-hk": "", - "en": "Canoe is a support hero,her skill is summons X Robot Puppets", - "id": "Canoe is a support hero,her skill is summons X Robot Puppets" - }, - { - "info": "item_desc_110296", - "zh-hk": "", - "en": "Mariana is a attack damage hero,her skill is transforms into a cheetah", - "id": "Mariana is a attack damage hero,her skill is transforms into a cheetah" - }, - { - "info": "item_desc_110297", - "zh-hk": "", - "en": "Dragonscale is an attack damage hero,his skill can be switched to erecting the Gatling Gun", - "id": "Dragonscale is an attack damage hero,his skill can be switched to erecting the Gatling Gun" - }, - { - "info": "item_desc_110298", - "zh-hk": "", - "en": "Lazar is a defense hero,his skill is transforms into an armed bear", - "id": "Lazar is a defense hero,his skill is transforms into an armed bear" - }, - { - "info": "item_desc_110299", - "zh-hk": "", - "en": "Kurosawa is a defense hero,his skill is dashes in the target direction", - "id": "Kurosawa is a defense hero,his skill is dashes in the target direction" - }, - { - "info": "item_desc_110101", - "zh-hk": "", - "en": "This box can mint the pieces needed to recruit CounterFire heroes. (Special)", - "id": "This box can mint the pieces needed to recruit CounterFire heroes. (Special)" - }, - { - "info": "item_desc_110111", - "zh-hk": "", - "en": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 1)", - "id": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 1)" - }, - { - "info": "item_desc_110121", - "zh-hk": "", - "en": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 2)", - "id": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 2)" - }, - { - "info": "item_desc_110131", - "zh-hk": "", - "en": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 3)", - "id": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 3)" - }, - { - "info": "item_desc_110141", - "zh-hk": "", - "en": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 4)", - "id": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 4)" - }, - { - "info": "item_desc_110151", - "zh-hk": "", - "en": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 5)", - "id": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 5)" - }, - { - "info": "item_desc_110161", - "zh-hk": "", - "en": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 6)", - "id": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 6)" - }, - { - "info": "item_desc_110171", - "zh-hk": "", - "en": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 7)", - "id": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 7)" - }, - { - "info": "item_desc_110181", - "zh-hk": "", - "en": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 8)", - "id": "This box can mint the pieces needed to recruit CounterFire heroes. (Part 8)" - }, - { - "info": "item_desc_110201", - "zh-hk": "", - "en": "This box can mint the pieces needed to make CounterFire weapons. (Special)", - "id": "This box can mint the pieces needed to make CounterFire weapons. (Special)" - }, - { - "info": "item_desc_110211", - "zh-hk": "", - "en": "This box can mint the pieces needed to make CounterFire weapons. (Part 1)", - "id": "This box can mint the pieces needed to make CounterFire weapons. (Part 1)" - }, - { - "info": "item_desc_110221", - "zh-hk": "", - "en": "This box can mint the pieces needed to make CounterFire weapons. (Part 2)", - "id": "This box can mint the pieces needed to make CounterFire weapons. (Part 2)" - }, - { - "info": "item_desc_110231", - "zh-hk": "", - "en": "This box can mint the pieces needed to make CounterFire weapons. (Part 3)", - "id": "This box can mint the pieces needed to make CounterFire weapons. (Part 3)" - }, - { - "info": "item_desc_110241", - "zh-hk": "", - "en": "This box can mint the pieces needed to make CounterFire weapons. (Part 4)", - "id": "This box can mint the pieces needed to make CounterFire weapons. (Part 5)" - }, - { - "info": "item_desc_110251", - "zh-hk": "", - "en": "This box can mint the pieces needed to make CounterFire weapons. (Part 5)", - "id": "This box can mint the pieces needed to make CounterFire weapons. (Part 5)" - }, - { - "info": "item_desc_110261", - "zh-hk": "", - "en": "This box can mint the pieces needed to make CounterFire weapons. (Part 6)", - "id": "This box can mint the pieces needed to make CounterFire weapons. (Part 6)" - }, - { - "info": "item_desc_110271", - "zh-hk": "", - "en": "This box can mint the pieces needed to make CounterFire weapons. (Part 7)", - "id": "This box can mint the pieces needed to make CounterFire weapons. (Part 7)" - }, - { - "info": "item_desc_110281", - "zh-hk": "", - "en": "This box can mint the pieces needed to make CounterFire weapons. (Part 8)", - "id": "This box can mint the pieces needed to make CounterFire weapons. (Part 8)" - }, - { - "info": "item_desc_170001", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_170002", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_150101", - "zh-hk": "", - "en": "Each box can open a Level 1 Herochip with 1 random attribute.", - "id": "Each box can open a Level 1 Herochip with 2 random attribute." - }, - { - "info": "item_desc_150102", - "zh-hk": "", - "en": "Each box can open a Level 3 Herochip with 2 random attributes.", - "id": "Each box can open a Level 3 Herochip with 3 random attributes." - }, - { - "info": "item_desc_150103", - "zh-hk": "", - "en": "Each box can open a Level 5 Herochip with 3 random attributes.If you need to increase 'Energy', go to 'Power' to confirm the selection.", - "id": "Each box can open a Level 5 Herochip with 4 random attributes.If you need to increase 'Energy', go to 'Power' to confirm the selection." - }, - { - "info": "item_desc_150201", - "zh-hk": "", - "en": "Each box can open a Level 1 Weaponchip with 1 random attribute.", - "id": "Each box can open a Level 1 Weaponchip with 2 random attribute." - }, - { - "info": "item_desc_150202", - "zh-hk": "", - "en": "Each box can open a Level 3Weaponchip with 2 random attributes.", - "id": "Each box can open a Level 3Weaponchip with 3 random attributes." - }, - { - "info": "item_desc_150203", - "zh-hk": "", - "en": "Each box can open a Level 5 Weaponchip with 3 random attributes.If you need to increase 'Energy', go to 'Power' to confirm the selection.", - "id": "Each box can open a Level 5 Weaponchip with 4 random attributes.If you need to increase 'Energy', go to 'Power' to confirm the selection." - }, - { - "info": "item_desc_160001", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_160002", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_160003", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_160004", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_160005", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_160006", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_160007", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_160008", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_160009", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_160010", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_190001", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_190002", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_190003", - "zh-hk": "", - "en": "", - "id": "" - }, - { - "info": "item_desc_200001", - "zh-hk": "", - "en": "Dragonscale feels happy.", - "id": "Dragonscale feels happy." - }, - { - "info": "item_desc_200002", - "zh-hk": "", - "en": "Hill likes you.", - "id": "Hill likes you." - }, - { - "info": "item_desc_200003", - "zh-hk": "", - "en": "Canoe feels shy.", - "id": "Canoe feels shy." - }, - { - "info": "item_desc_200004", - "zh-hk": "", - "en": "Aoi is very gluttonous.", - "id": "Aoi is very gluttonous." - }, - { - "info": "item_desc_200005", - "zh-hk": "", - "en": "Astral is shocked.", - "id": "Astral is shocked." - }, - { - "info": "item_desc_200006", - "zh-hk": "", - "en": "Lazar is angry now.", - "id": "Lazar is angry now." - }, - { - "info": "item_desc_200007", - "zh-hk": "", - "en": "Kurosawa feels embarrassed", - "id": "Kurosawa feels embarrassed" - }, - { - "info": "item_desc_200008", - "zh-hk": "", - "en": "Maraina feels dispoint.", - "id": "Maraina feels dispoint." - }, - { - "info": "item_desc_200009", - "zh-hk": "", - "en": "Yamada feels scared.", - "id": "Yamada feels scared." - }, - { - "info": "item_desc_210001", - "zh-hk": "", - "en": "Randomly obtain weapons", - "id": "Randomly obtain weapons" - }, - { - "info": "item_desc_210002", - "zh-hk": "", - "en": "Randomly obtain Heroes", - "id": "Randomly obtain Heroes" - }, - { - "info": "item_desc_210003", - "zh-hk": "", - "en": "Randomly obtain Chips", - "id": "Randomly obtain Chips" - }, - { - "info": "item_desc_210011", - "zh-hk": "", - "en": "Randomly obtain weapon pieces, but not including Blueprint.", - "id": "Randomly obtain weapon pieces, but not including Blueprint." - }, - { - "info": "item_desc_210012", - "zh-hk": "", - "en": "Randomly obtain hero pieces, but not including Testimonial.", - "id": "Randomly obtain hero pieces, but not including Testimonial." - }, - { - "info": "item_desc_900001", - "zh-hk": "", - "en": "Randomly obtain item rewards", - "id": "Randomly obtain item rewards" - }, - { - "info": "item_desc_900002", - "zh-hk": "", - "en": "Randomly obtain chips or parts", - "id": "Randomly obtain chips or parts" - }, - { - "info": "item_desc_900003", - "zh-hk": "", - "en": "Randomly obtain heroes or pieces", - "id": "Randomly obtain heroes or pieces" - }, - { - "info": "item_desc_900004", - "zh-hk": "", - "en": "Potion for restoring gold time", - "id": "Potion for restoring gold time" - }, - { - "info": "skill_desc_10101", - "zh-hk": "", - "en": "Treat", - "id": "Treat" - }, - { - "info": "skill_desc_10201", - "zh-hk": "", - "en": "Sprint", - "id": "Sprint" - }, - { - "info": "skill_desc_10301", - "zh-hk": "", - "en": "Rage", - "id": "Rage" - }, - { - "info": "skill_desc_10401", - "zh-hk": "", - "en": "Tumble", - "id": "Tumble" - }, - { - "info": "skill_desc_10501", - "zh-hk": "", - "en": "Clear", - "id": "Clear" - }, - { - "info": "skill_desc_10601", - "zh-hk": "", - "en": "Tumble", - "id": "Tumble" - }, - { - "info": "skill_desc_10701", - "zh-hk": "", - "en": "Tumble", - "id": "Tumble" - }, - { - "info": "skill_desc_10801", - "zh-hk": "", - "en": "Tumble", - "id": "Tumble" - }, - { - "info": "skill_desc_10901", - "zh-hk": "", - "en": "Tumble", - "id": "Tumble" - }, - { - "info": "skill_desc_11001", - "zh-hk": "", - "en": "Tumble", - "id": "Tumble" - }, - { - "info": "skill_desc_20101", - "zh-hk": "", - "en": "Phantom Flash I", - "id": "Phantom Flash I" - }, - { - "info": "skill_desc_20102", - "zh-hk": "", - "en": "Phantom Flash II", - "id": "Phantom Flash II" - }, - { - "info": "skill_desc_20103", - "zh-hk": "", - "en": "Phantom Flash III", - "id": "Phantom Flash III" - }, - { - "info": "skill_desc_20104", - "zh-hk": "", - "en": "Phantom Flash IV", - "id": "Phantom Flash IV" - }, - { - "info": "skill_desc_20201", - "zh-hk": "", - "en": "Rocket Raccoon I", - "id": "Rocket Raccoon I" - }, - { - "info": "skill_desc_20202", - "zh-hk": "", - "en": "Rocket Raccoon II", - "id": "Rocket Raccoon II" - }, - { - "info": "skill_desc_20203", - "zh-hk": "", - "en": "Rocket Raccoon III", - "id": "Rocket Raccoon III" - }, - { - "info": "skill_desc_20204", - "zh-hk": "", - "en": "Rocket Raccoon IV", - "id": "Rocket Raccoon IV" - }, - { - "info": "skill_desc_20301", - "zh-hk": "", - "en": "Unstable kit I", - "id": "Unstable kit I" - }, - { - "info": "skill_desc_20302", - "zh-hk": "", - "en": "Unstable kit II", - "id": "Unstable kit II" - }, - { - "info": "skill_desc_20303", - "zh-hk": "", - "en": "Unstable kit III", - "id": "Unstable kit III" - }, - { - "info": "skill_desc_20304", - "zh-hk": "", - "en": "Unstable kit IV", - "id": "Unstable kit IV" - }, - { - "info": "skill_desc_20401", - "zh-hk": "", - "en": "Flying Falcula I", - "id": "Flying Falcula I" - }, - { - "info": "skill_desc_20402", - "zh-hk": "", - "en": "Flying Falcula II", - "id": "Flying Falcula II" - }, - { - "info": "skill_desc_20403", - "zh-hk": "", - "en": "Flying Falcula III", - "id": "Flying Falcula III" - }, - { - "info": "skill_desc_20404", - "zh-hk": "", - "en": "Flying Falcula IV", - "id": "Flying Falcula IV" - }, - { - "info": "skill_desc_20501", - "zh-hk": "", - "en": "Invisibility I", - "id": "Invisibility I" - }, - { - "info": "skill_desc_20502", - "zh-hk": "", - "en": "Invisibility II", - "id": "Invisibility II" - }, - { - "info": "skill_desc_20503", - "zh-hk": "", - "en": "Invisibility III", - "id": "Invisibility III" - }, - { - "info": "skill_desc_20504", - "zh-hk": "", - "en": "Invisibility IV", - "id": "Invisibility IV" - }, - { - "info": "skill_desc_20601", - "zh-hk": "", - "en": "Chords I", - "id": "Chords I" - }, - { - "info": "skill_desc_20602", - "zh-hk": "", - "en": "Chords II", - "id": "Chords II" - }, - { - "info": "skill_desc_20603", - "zh-hk": "", - "en": "Chords III", - "id": "Chords III" - }, - { - "info": "skill_desc_20604", - "zh-hk": "", - "en": "Chords IV", - "id": "Chords IV" - }, - { - "info": "skill_desc_20701", - "zh-hk": "", - "en": "Claw Strike I", - "id": "Claw Strike I" - }, - { - "info": "skill_desc_20702", - "zh-hk": "", - "en": "Claw Strike II", - "id": "Claw Strike II" - }, - { - "info": "skill_desc_20703", - "zh-hk": "", - "en": "Claw Strike III", - "id": "Claw Strike III" - }, - { - "info": "skill_desc_20704", - "zh-hk": "", - "en": "Claw Strike IV", - "id": "Claw Strike IV" - }, - { - "info": "skill_desc_20801", - "zh-hk": "", - "en": "Dragon Cannon I", - "id": "Dragon Cannon I" - }, - { - "info": "skill_desc_20802", - "zh-hk": "", - "en": "Dragon Cannon II", - "id": "Dragon Cannon II" - }, - { - "info": "skill_desc_20803", - "zh-hk": "", - "en": "Dragon Cannon III", - "id": "Dragon Cannon III" - }, - { - "info": "skill_desc_20804", - "zh-hk": "", - "en": "Dragon Cannon IV", - "id": "Dragon Cannon IV" - }, - { - "info": "skill_desc_20901", - "zh-hk": "", - "en": "Giant Rush I", - "id": "Giant Rush I" - }, - { - "info": "skill_desc_20902", - "zh-hk": "", - "en": "Giant Rush II", - "id": "Giant Rush II" - }, - { - "info": "skill_desc_20903", - "zh-hk": "", - "en": "Giant Rush III", - "id": "Giant Rush III" - }, - { - "info": "skill_desc_20904", - "zh-hk": "", - "en": "Giant Rush IV", - "id": "Giant Rush IV" - }, - { - "info": "skill_desc_21001", - "zh-hk": "", - "en": "Energy Shield I", - "id": "Energy Shield I" - }, - { - "info": "skill_desc_21002", - "zh-hk": "", - "en": "Energy Shield II", - "id": "Energy Shield II" - }, - { - "info": "skill_desc_21003", - "zh-hk": "", - "en": "Energy Shield III", - "id": "Energy Shield III" - }, - { - "info": "skill_desc_21004", - "zh-hk": "", - "en": "Energy Shield IV", - "id": "Energy Shield IV" - }, - { - "info": "skill_desc_30101", - "zh-hk": "", - "en": "Passive I", - "id": "Passive I" - }, - { - "info": "skill_desc_30102", - "zh-hk": "", - "en": "Passive II", - "id": "Passive II" - }, - { - "info": "skill_desc_30103", - "zh-hk": "", - "en": "Passive III", - "id": "Passive III" - }, - { - "info": "skill_desc_30104", - "zh-hk": "", - "en": "Passive IV", - "id": "Passive IV" - }, - { - "info": "skill_desc_30201", - "zh-hk": "", - "en": "Passive I", - "id": "Passive I" - }, - { - "info": "skill_desc_30202", - "zh-hk": "", - "en": "Passive II", - "id": "Passive II" - }, - { - "info": "skill_desc_30203", - "zh-hk": "", - "en": "Passive III", - "id": "Passive III" - }, - { - "info": "skill_desc_30204", - "zh-hk": "", - "en": "Passive IV", - "id": "Passive IV" - }, - { - "info": "skill_desc_30301", - "zh-hk": "", - "en": "Passive I", - "id": "Passive I" - }, - { - "info": "skill_desc_30302", - "zh-hk": "", - "en": "Passive II", - "id": "Passive II" - }, - { - "info": "skill_desc_30303", - "zh-hk": "", - "en": "Passive III", - "id": "Passive III" - }, - { - "info": "skill_desc_30304", - "zh-hk": "", - "en": "Passive IV", - "id": "Passive IV" - }, - { - "info": "skill_desc_30401", - "zh-hk": "", - "en": "Passive I", - "id": "Passive I" - }, - { - "info": "skill_desc_30402", - "zh-hk": "", - "en": "Passive II", - "id": "Passive II" - }, - { - "info": "skill_desc_30403", - "zh-hk": "", - "en": "Passive III", - "id": "Passive III" - }, - { - "info": "skill_desc_30404", - "zh-hk": "", - "en": "Passive IV", - "id": "Passive IV" - }, - { - "info": "skill_desc_30501", - "zh-hk": "", - "en": "Passive I", - "id": "Passive I" - }, - { - "info": "skill_desc_30502", - "zh-hk": "", - "en": "Passive II", - "id": "Passive II" - }, - { - "info": "skill_desc_30503", - "zh-hk": "", - "en": "Passive III", - "id": "Passive III" - }, - { - "info": "skill_desc_30504", - "zh-hk": "", - "en": "Passive IV", - "id": "Passive IV" - }, - { - "info": "skill_desc_30601", - "zh-hk": "", - "en": "Passive I", - "id": "Passive I" - }, - { - "info": "skill_desc_30602", - "zh-hk": "", - "en": "Passive II", - "id": "Passive II" - }, - { - "info": "skill_desc_30603", - "zh-hk": "", - "en": "Passive III", - "id": "Passive III" - }, - { - "info": "skill_desc_30604", - "zh-hk": "", - "en": "Passive IV", - "id": "Passive IV" - }, - { - "info": "skill_desc_30701", - "zh-hk": "", - "en": "Passive I", - "id": "Passive I" - }, - { - "info": "skill_desc_30702", - "zh-hk": "", - "en": "Passive II", - "id": "Passive II" - }, - { - "info": "skill_desc_30703", - "zh-hk": "", - "en": "Passive III", - "id": "Passive III" - }, - { - "info": "skill_desc_30704", - "zh-hk": "", - "en": "Passive IV", - "id": "Passive IV" - }, - { - "info": "skill_desc_30801", - "zh-hk": "", - "en": "Passive I", - "id": "Passive I" - }, - { - "info": "skill_desc_30802", - "zh-hk": "", - "en": "Passive II", - "id": "Passive II" - }, - { - "info": "skill_desc_30803", - "zh-hk": "", - "en": "Passive III", - "id": "Passive III" - }, - { - "info": "skill_desc_30804", - "zh-hk": "", - "en": "Passive IV", - "id": "Passive IV" - }, - { - "info": "skill_desc_30901", - "zh-hk": "", - "en": "Passive I", - "id": "Passive I" - }, - { - "info": "skill_desc_30902", - "zh-hk": "", - "en": "Passive II", - "id": "Passive II" - }, - { - "info": "skill_desc_30903", - "zh-hk": "", - "en": "Passive III", - "id": "Passive III" - }, - { - "info": "skill_desc_30904", - "zh-hk": "", - "en": "Passive IV", - "id": "Passive IV" - }, - { - "info": "skill_desc_31001", - "zh-hk": "", - "en": "Passive I", - "id": "Passive I" - }, - { - "info": "skill_desc_31002", - "zh-hk": "", - "en": "Passive II", - "id": "Passive II" - }, - { - "info": "skill_desc_31003", - "zh-hk": "", - "en": "Passive III", - "id": "Passive III" - }, - { - "info": "skill_desc_31004", - "zh-hk": "", - "en": "Passive IV", - "id": "Passive IV" - }, - { - "info": "skill_desc_60101", - "zh-hk": "", - "en": "Gravity pressing", - "id": "Gravity pressing" - }, - { - "info": "skill_desc_60111", - "zh-hk": "", - "en": "Flame bomb", - "id": "Flame bomb" - }, - { - "info": "skill_desc_60121", - "zh-hk": "", - "en": "Energy explosion", - "id": "Energy explosion" - }, - { - "info": "skill_desc_60201", - "zh-hk": "", - "en": "Gravity pressing", - "id": "Gravity pressing" - }, - { - "info": "skill_desc_60211", - "zh-hk": "", - "en": "Flame bomb", - "id": "Flame bomb" - }, - { - "info": "skill_desc_60221", - "zh-hk": "", - "en": "Energy explosion", - "id": "Energy explosion" - }, - { - "info": "skill_desc_305011", - "zh-hk": "", - "en": "Mecha thrusters", - "id": "Mecha thrusters" - }, - { - "info": "skill_desc_305012", - "zh-hk": "", - "en": "Charge laser cannon", - "id": "Charge laser cannon" - }, - { - "info": "Unlock_text_name_03", - "zh-hk": "", - "en": "Emoji", - "id": "Emoji" - }, - { - "info": "Unlock_text_name_02", - "zh-hk": "", - "en": "Chip", - "id": "Chip" - }, - { - "info": "Unlock_text_name_05", - "zh-hk": "", - "en": "World Chat", - "id": "World Chat" - }, - { - "info": "Unlock_text_name_06", - "zh-hk": "", - "en": "Rank Mode", - "id": "Rank Mode" - }, - { - "info": "Unlock_text_name_07", - "zh-hk": "", - "en": "Club", - "id": "Club" - }, - { - "info": "Unlock_text_name_09", - "zh-hk": "", - "en": "4th Chip Page", - "id": "4th Chip Page" - }, - { - "info": "Unlock_text_name_10", - "zh-hk": "", - "en": "5th Chip Page", - "id": "5th Chip Page" - }, - { - "info": "Star Road_name_s1", - "zh-hk": "", - "en": "Star Road", - "id": "Star Road" - }, - { - "info": "Star Road_desc_s1", - "zh-hk": "", - "en": "Collect stars and unlock rewards !", - "id": "Collect stars and unlock rewards !" - }, - { - "info": "item_name_240001", - "zh-hk": "", - "en": "Gacha", - "id": "Gacha" - }, - { - "info": "item_desc_240001", - "zh-hk": "", - "en": "Event reward props", - "id": "Event reward props" - }, - { - "info": "Rank_name_1", - "zh-hk": "", - "en": "BRONZE \u2164", - "id": "BRONZE \u2164" - }, - { - "info": "Rank_name_2", - "zh-hk": "", - "en": "BRONZE \u2163", - "id": "BRONZE \u2163" - }, - { - "info": "Rank_name_3", - "zh-hk": "", - "en": "BRONZE \u2162", - "id": "BRONZE \u2162" - }, - { - "info": "Rank_name_4", - "zh-hk": "", - "en": "BRONZE \u2161", - "id": "BRONZE \u2161" - }, - { - "info": "Rank_name_5", - "zh-hk": "", - "en": "BRONZE \u2160", - "id": "BRONZE \u2160" - }, - { - "info": "Rank_name_6", - "zh-hk": "", - "en": "SILVER \u2164", - "id": "SILVER \u2164" - }, - { - "info": "Rank_name_7", - "zh-hk": "", - "en": "SILVER \u2163", - "id": "SILVER \u2163" - }, - { - "info": "Rank_name_8", - "zh-hk": "", - "en": "SILVER \u2162", - "id": "SILVER \u2162" - }, - { - "info": "Rank_name_9", - "zh-hk": "", - "en": "SILVER \u2161", - "id": "SILVER \u2161" - }, - { - "info": "Rank_name_10", - "zh-hk": "", - "en": "SILVER \u2160", - "id": "SILVER \u2160" - }, - { - "info": "Rank_name_11", - "zh-hk": "", - "en": "GOLD \u2164", - "id": "GOLD \u2164" - }, - { - "info": "Rank_name_12", - "zh-hk": "", - "en": "GOLD \u2163", - "id": "GOLD \u2163" - }, - { - "info": "Rank_name_13", - "zh-hk": "", - "en": "GOLD \u2162", - "id": "GOLD \u2162" - }, - { - "info": "Rank_name_14", - "zh-hk": "", - "en": "GOLD \u2161", - "id": "GOLD \u2161" - }, - { - "info": "Rank_name_15", - "zh-hk": "", - "en": "GOLD \u2160", - "id": "GOLD \u2160" - }, - { - "info": "Rank_name_16", - "zh-hk": "", - "en": "PLATINUM \u2164", - "id": "PLATINUM \u2164" - }, - { - "info": "Rank_name_17", - "zh-hk": "", - "en": "PLATINUM \u2163", - "id": "PLATINUM \u2163" - }, - { - "info": "Rank_name_18", - "zh-hk": "", - "en": "PLATINUM \u2162", - "id": "PLATINUM \u2162" - }, - { - "info": "Rank_name_19", - "zh-hk": "", - "en": "PLATINUM \u2161", - "id": "PLATINUM \u2161" - }, - { - "info": "Rank_name_20", - "zh-hk": "", - "en": "PLATINUM \u2160", - "id": "PLATINUM \u2160" - }, - { - "info": "Rank_name_21", - "zh-hk": "", - "en": "DIAMOND \u2164", - "id": "DIAMOND \u2164" - }, - { - "info": "Rank_name_22", - "zh-hk": "", - "en": "DIAMOND \u2163", - "id": "DIAMOND \u2163" - }, - { - "info": "Rank_name_23", - "zh-hk": "", - "en": "DIAMOND \u2162", - "id": "DIAMOND \u2162" - }, - { - "info": "Rank_name_24", - "zh-hk": "", - "en": "DIAMOND \u2161", - "id": "DIAMOND \u2161" - }, - { - "info": "Rank_name_25", - "zh-hk": "", - "en": "DIAMOND \u2160", - "id": "DIAMOND \u2160" - }, - { - "info": "Rank_name_26", - "zh-hk": "", - "en": "MASTER \u2164", - "id": "MASTER \u2164" - }, - { - "info": "Rank_name_27", - "zh-hk": "", - "en": "MASTER \u2163", - "id": "MASTER \u2163" - }, - { - "info": "Rank_name_28", - "zh-hk": "", - "en": "MASTER \u2162", - "id": "MASTER \u2162" - }, - { - "info": "Rank_name_29", - "zh-hk": "", - "en": "MASTER \u2161", - "id": "MASTER \u2161" - }, - { - "info": "Rank_name_30", - "zh-hk": "", - "en": "MASTER \u2160", - "id": "MASTER \u2160" - }, - { - "info": "Rank_name_31", - "zh-hk": "", - "en": "GRAND MASTER \u2164", - "id": "GRAND MASTER \u2164" - }, - { - "info": "Rank_name_32", - "zh-hk": "", - "en": "GRAND MASTER \u2163", - "id": "GRAND MASTER \u2163" - }, - { - "info": "Rank_name_33", - "zh-hk": "", - "en": "GRAND MASTER \u2162", - "id": "GRAND MASTER \u2162" - }, - { - "info": "Rank_name_34", - "zh-hk": "", - "en": "GRAND MASTER \u2161", - "id": "GRAND MASTER \u2161" - }, - { - "info": "Rank_name_35", - "zh-hk": "", - "en": "GRAND MASTER \u2160", - "id": "GRAND MASTER \u2160" - }, - { - "info": "Rank_name_36", - "zh-hk": "", - "en": "CHALLENGER \u2164", - "id": "CHALLENGER \u2164" - }, - { - "info": "Rank_name_37", - "zh-hk": "", - "en": "CHALLENGER \u2163", - "id": "CHALLENGER \u2163" - }, - { - "info": "Rank_name_38", - "zh-hk": "", - "en": "CHALLENGER \u2162", - "id": "CHALLENGER \u2162" - }, - { - "info": "Rank_name_39", - "zh-hk": "", - "en": "CHALLENGER \u2161", - "id": "CHALLENGER \u2161" - }, - { - "info": "Rank_name_40", - "zh-hk": "", - "en": "CHALLENGER \u2160", - "id": "CHALLENGER \u2160" - }, - { - "info": "type_desc_1", - "zh-hk": "", - "en": "item", - "id": "item" - }, - { - "info": "type_desc_2", - "zh-hk": "", - "en": "packages", - "id": "packages" - }, - { - "info": "type_desc_3", - "zh-hk": "", - "en": "hero", - "id": "hero" - }, - { - "info": "type_desc_4", - "zh-hk": "", - "en": "hero skin", - "id": "hero skin" - }, - { - "info": "type_desc_5", - "zh-hk": "", - "en": "face", - "id": "face" - }, - { - "info": "type_desc_6", - "zh-hk": "", - "en": "frame", - "id": "frame" - }, - { - "info": "type_desc_9", - "zh-hk": "", - "en": "functional", - "id": "functional" - }, - { - "info": "type_desc_13", - "zh-hk": "", - "en": "chips", - "id": "chips" - }, - { - "info": "type_desc_20", - "zh-hk": "", - "en": "emoji", - "id": "emoji" - }, - { - "info": "type_desc_23", - "zh-hk": "", - "en": "chest", - "id": "chest" - }, - { - "info": "type_desc_24", - "zh-hk": "", - "en": "gacha", - "id": "gacha" - }, - { - "info": "mail_tittle_10001", - "zh-hk": "", - "en": "Test Mail Tittle", - "id": "Test Mail Tittle" - }, - { - "info": "mail_content_10001", - "zh-hk": "", - "en": "This is a test mail.", - "id": "This is a test mail." - }, - { - "info": "type_desc_10", - "zh-hk": "", - "en": "material", - "id": "material" - }, - { - "info": "type_desc_26", - "zh-hk": "", - "en": "Crystal", - "id": "Crystal" - }, - { - "info": "item_name_260001", - "zh-hk": "", - "en": "Tiny Crstal", - "id": "Tiny Crstal" - }, - { - "info": "item_name_260002", - "zh-hk": "", - "en": "Medium Crystal", - "id": "Medium Crystal" - }, - { - "info": "item_name_260003", - "zh-hk": "", - "en": "Large Crystal", - "id": "Large Crystal" - }, - { - "info": "item_name_260004", - "zh-hk": "", - "en": "Giant Crystal", - "id": "Giant Crystal" - }, - { - "info": "item_desc_260001", - "zh-hk": "", - "en": "Tiny Crstal", - "id": "Tiny Crstal" - }, - { - "info": "item_desc_260002", - "zh-hk": "", - "en": "Medium Crystal", - "id": "Medium Crystal" - }, - { - "info": "item_desc_260003", - "zh-hk": "", - "en": "Large Crystal", - "id": "Large Crystal" - }, - { - "info": "item_desc_260004", - "zh-hk": "", - "en": "Giant Crystal", - "id": "Giant Crystal" - }, - { - "info": "UI_PAY_FAIL_TIPS", - "zh-hk": "", - "en": "Payment failed, please try again", - "id": "Payment failed, please try again" - }, - { - "info": "Micro_crystal_get_desc1", - "zh-hk": "", - "en": "For every elimination of [FFDE00]{0} [-]adversaries, a\nreward of [FFDE00]{1} [-]unit is granted.", - "id": "For every elimination of [FFDE00]{0} [-]adversaries, a\nreward of [FFDE00]{1} [-]unit is granted." - }, - { - "info": "Micro_crystal_get_desc2", - "zh-hk": "", - "en": "For every accumulation of [FFDE00]{2} [-]stars, a\nreward of [FFDE00]{3} [-]unit is granted.", - "id": "For every accumulation of [FFDE00]{2} [-]stars, a\nreward of [FFDE00]{3} [-]unit is granted." - }, - { - "info": "Micro_crystal_get_desc3", - "zh-hk": "", - "en": "With the initial elevation of a\ntier at the commencement of\neach season.", - "id": "With the initial elevation of a\ntier at the commencement of\neach season." - }, - { - "info": "Standard_crystal_get_desc1", - "zh-hk": "", - "en": "Within the confines of the game,\nevery expenditure of [FFDE00]${0}[-] yields\n[FFDE00]{1}[-] unit.", - "id": "Within the confines of the game,\nevery expenditure of [FFDE00]${0}[-] yields\n[FFDE00]{1}[-] unit." - }, - { - "info": "Large_crystal_get_desc1", - "zh-hk": "", - "en": "For each additional [FFDE00]${0}[-] in cumulative\ntrading value within the market,\n[FFDE00]{1}[-] unit can be acquired.", - "id": "For each additional [FFDE00]${0}[-] in cumulative\ntrading value within the market,\n[FFDE00]{1}[-] unit can be acquired." - }, - { - "info": "Giant_crystal_get_desc1", - "zh-hk": "", - "en": "For every [FFDE00]${0}[-] valuation in the NFT\nor Token staking status,a daily\nacquisition of [FFDE00]{1}[-] unit is feasible.", - "id": "For every [FFDE00]${0}[-] valuation in the NFT\nor Token staking status,a daily\nacquisition of [FFDE00]{1}[-] unit is feasible." - }, - { - "info": "Hashrate_rule1", - "zh-hk": "", - "en": " = MIN(Total HashRate/HashRate's CEC Pool*100%,100%)\n", - "id": " = MIN(Total HashRate/HashRate's CEC Pool*100%,100%)\n" - }, - { - "info": "Hashrate_rule2", - "zh-hk": "", - "en": " = My Owned HashRate/Total HashRate*100%", - "id": " = My Owned HashRate/Total HashRate*100%" - }, - { - "info": "Hashrate_rule3", - "zh-hk": "", - "en": " = HashRate's CEC Pool*HashRate Completion Ratio*My HashRate Ratio\n", - "id": " = HashRate's CEC Pool*HashRate Completion Ratio*My HashRate Ratio\n" - }, - { - "info": "Hashrate_rule4", - "zh-hk": "", - "en": "Monday 00:00 to Sunday 23:00 within this period,UTC+O time zone", - "id": "Monday 00:00 to Sunday 23:00 within this period,UTC+O time zone" - }, - { - "info": "Hashrate_Conversion_ratio", - "zh-hk": "", - "en": "1 {0} = {1} BH/s", - "id": "1 {0} = {1} BH/s" - }, - { - "info": "rank_place_reward", - "zh-hk": "", - "en": "{0}th place reward", - "id": "{0}th place reward" - }, - { - "info": "UIHashRate_title", - "zh-hk": "", - "en": "HashRate", - "id": "HashRate" - }, - { - "info": "UIHashRate_Owed", - "zh-hk": "", - "en": "Owned", - "id": "Owned" - }, - { - "info": "UIHashRate_Units", - "zh-hk": "", - "en": "Units", - "id": "Units" - }, - { - "info": "UIHashRate_btnExchangeBH", - "zh-hk": "", - "en": "Exchange BH/s", - "id": "Exchange BH/s" - }, - { - "info": "UIHashRate_GetCrystal", - "zh-hk": "", - "en": "Get Crystal", - "id": "Get Crystal" - }, - { - "info": "UIHashRate_Owned_CEC", - "zh-hk": "", - "en": "Owned CEC", - "id": "Owned CEC" - }, - { - "info": "UIHashRate_Owned_CEC_des", - "zh-hk": "", - "en": "You can only claim it after listing", - "id": "You can only claim it after listing" - }, - { - "info": "UIHashRate_This_Period", - "zh-hk": "", - "en": "This Period", - "id": "This Period" - }, - { - "info": "UIHashRate_CEC_Pool", - "zh-hk": "", - "en": "HashRate's CEC Pool", - "id": "HashRate's CEC Pool" - }, - { - "info": "UIHashRate_baseinfo_des1", - "zh-hk": "", - "en": "Under maintenance,kindiy await.", - "id": "Under maintenance,kindiy await." - }, - { - "info": "UIHashRate_Service_Target", - "zh-hk": "", - "en": "HashRate Completion Ratio", - "id": "HashRate Completion Ratio" - }, - { - "info": "UIHashRate_TotalServer", - "zh-hk": "", - "en": "Total HashRate", - "id": "Total HashRate" - }, - { - "info": "UIHashRate_MyOwendHashRate", - "zh-hk": "", - "en": "My Owned HashRate", - "id": "My Owned HashRate" - }, - { - "info": "UIHashRate_Last_reward", - "zh-hk": "", - "en": "Rewards", - "id": "Rewards" - }, - { - "info": "UIHashRate_Airdropped", - "zh-hk": "", - "en": "Distributed", - "id": "Distributed" - }, - { - "info": "UIHashRate_settlementinfo", - "zh-hk": "", - "en": "Estimated CEC Reward [FFDE00]{0}[-] Based on actual settlement, only for estimation reference", - "id": "Estimated CEC Reward [FFDE00]{0}[-] Based on actual settlement, only for estimation reference" - }, - { - "info": "UIHashRate_btnrewards", - "zh-hk": "", - "en": "List of rewards", - "id": "List of rewards" - }, - { - "info": "UIHashRateExchangeRate_title", - "zh-hk": "", - "en": "Exchange rates for the current week ", - "id": "Exchange rates for the current week " - }, - { - "info": "UIHashRateExchangeRate_Conversion_ratio", - "zh-hk": "", - "en": "Conversion ratio", - "id": "Conversion ratio" - }, - { - "info": "UIHashRateExchangeRate_Current_Weight", - "zh-hk": "", - "en": "Current Weight", - "id": "Current Weight" - }, - { - "info": "UIMail_info_day", - "zh-hk": "", - "en": "Expired after {0} days", - "id": "Expired after {0} days" - }, - { - "info": "UIMail_info_hour", - "zh-hk": "", - "en": "Expired after {0} hour", - "id": "Expired after {0} hour" - }, - { - "info": "UIMail_info_min", - "zh-hk": "", - "en": "Expired after {0} min", - "id": "Expired after {0} min" - }, - { - "info": "UIHashRateTechnolgyPoint_title", - "zh-hk": "", - "en": "Technolgy points", - "id": "Technolgy points" - }, - { - "info": "UIHashRateTechnolgyPoint_des", - "zh-hk": "", - "en": " 1.Obtained by HashRate at a ratio of 1:1.\\n\n2.Important resources in the development of the planet.\\n\n3.Crucial for planet development and the production of NFTs such as weapons and equipment.", - "id": " 1.Obtained by HashRate at a ratio of 1:1.\\n\n2.Important resources in the development of the planet.\\n\n3.Crucial for planet development and the production of NFTs such as weapons and equipment." - }, - { - "info": "UIStakingItems_title", - "zh-hk": "", - "en": "Staking System", - "id": "Staking System" - }, - { - "info": "UIStakingItems_tips", - "zh-hk": "", - "en": "Your staking duration is less than 24 hours; \\n kindly await 24 hours before proceeding with any actions.", - "id": "Your staking duration is less than 24 hours; \\n kindly await 24 hours before proceeding with any actions." - }, - { - "info": "item_name_280001", - "zh-hk": "", - "en": "Planet_001", - "id": "Planet_001" - }, - { - "info": "item_name_280002", - "zh-hk": "", - "en": "Planet_002", - "id": "Planet_002" - }, - { - "info": "item_name_280003", - "zh-hk": "", - "en": "Planet_003", - "id": "Planet_003" - }, - { - "info": "item_name_280004", - "zh-hk": "", - "en": "Planet_004", - "id": "Planet_004" - }, - { - "info": "item_name_280005", - "zh-hk": "", - "en": "Planet_005", - "id": "Planet_005" - }, - { - "info": "item_name_280006", - "zh-hk": "", - "en": "Planet_006", - "id": "Planet_006" - }, - { - "info": "item_name_280007", - "zh-hk": "", - "en": "Planet_007", - "id": "Planet_007" - }, - { - "info": "item_name_280008", - "zh-hk": "", - "en": "Planet_008", - "id": "Planet_008" - }, - { - "info": "item_name_280009", - "zh-hk": "", - "en": "Planet_009", - "id": "Planet_009" - }, - { - "info": "item_name_280010", - "zh-hk": "", - "en": "Planet_010", - "id": "Planet_010" - }, - { - "info": "item_name_280011", - "zh-hk": "", - "en": "Planet_011", - "id": "Planet_011" - }, - { - "info": "item_name_280012", - "zh-hk": "", - "en": "Planet_012", - "id": "Planet_012" - }, - { - "info": "item_name_280013", - "zh-hk": "", - "en": "Planet_013", - "id": "Planet_013" - }, - { - "info": "item_name_280014", - "zh-hk": "", - "en": "Planet_014", - "id": "Planet_014" - }, - { - "info": "item_name_280015", - "zh-hk": "", - "en": "Planet_015", - "id": "Planet_015" - }, - { - "info": "item_name_280016", - "zh-hk": "", - "en": "Planet_016", - "id": "Planet_016" - }, - { - "info": "item_name_280017", - "zh-hk": "", - "en": "Planet_017", - "id": "Planet_017" - }, - { - "info": "item_name_280018", - "zh-hk": "", - "en": "Planet_018", - "id": "Planet_018" - }, - { - "info": "item_name_280019", - "zh-hk": "", - "en": "Planet_019", - "id": "Planet_019" - }, - { - "info": "item_name_280020", - "zh-hk": "", - "en": "Planet_020", - "id": "Planet_020" - }, - { - "info": "item_name_280021", - "zh-hk": "", - "en": "Planet_021", - "id": "Planet_021" - }, - { - "info": "item_name_280022", - "zh-hk": "", - "en": "Planet_022", - "id": "Planet_022" - }, - { - "info": "item_name_280023", - "zh-hk": "", - "en": "Planet_023", - "id": "Planet_023" - }, - { - "info": "item_name_280024", - "zh-hk": "", - "en": "Planet_024", - "id": "Planet_024" - }, - { - "info": "item_name_280025", - "zh-hk": "", - "en": "Planet_025", - "id": "Planet_025" - }, - { - "info": "item_name_280026", - "zh-hk": "", - "en": "Planet_026", - "id": "Planet_026" - }, - { - "info": "item_name_280027", - "zh-hk": "", - "en": "Planet_027", - "id": "Planet_027" - }, - { - "info": "item_name_280028", - "zh-hk": "", - "en": "Planet_028", - "id": "Planet_028" - }, - { - "info": "item_name_280029", - "zh-hk": "", - "en": "Planet_029", - "id": "Planet_029" - }, - { - "info": "item_name_280030", - "zh-hk": "", - "en": "Planet_030", - "id": "Planet_030" - }, - { - "info": "item_name_280031", - "zh-hk": "", - "en": "Planet_031", - "id": "Planet_031" - }, - { - "info": "item_name_280032", - "zh-hk": "", - "en": "Planet_032", - "id": "Planet_032" - }, - { - "info": "item_name_280033", - "zh-hk": "", - "en": "Planet_033", - "id": "Planet_033" - }, - { - "info": "item_name_280034", - "zh-hk": "", - "en": "Planet_034", - "id": "Planet_034" - }, - { - "info": "item_name_280035", - "zh-hk": "", - "en": "Planet_035", - "id": "Planet_035" - }, - { - "info": "item_name_280036", - "zh-hk": "", - "en": "Planet_036", - "id": "Planet_036" - }, - { - "info": "item_name_280037", - "zh-hk": "", - "en": "Planet_037", - "id": "Planet_037" - }, - { - "info": "item_name_280038", - "zh-hk": "", - "en": "Planet_038", - "id": "Planet_038" - }, - { - "info": "item_name_280039", - "zh-hk": "", - "en": "Planet_039", - "id": "Planet_039" - }, - { - "info": "item_name_280040", - "zh-hk": "", - "en": "Planet_040", - "id": "Planet_040" - }, - { - "info": "item_name_280041", - "zh-hk": "", - "en": "Planet_041", - "id": "Planet_041" - }, - { - "info": "item_name_280042", - "zh-hk": "", - "en": "Planet_042", - "id": "Planet_042" - }, - { - "info": "item_name_280043", - "zh-hk": "", - "en": "Planet_043", - "id": "Planet_043" - }, - { - "info": "item_name_280044", - "zh-hk": "", - "en": "Planet_044", - "id": "Planet_044" - }, - { - "info": "item_name_280045", - "zh-hk": "", - "en": "Planet_045", - "id": "Planet_045" - }, - { - "info": "item_name_280046", - "zh-hk": "", - "en": "Planet_046", - "id": "Planet_046" - }, - { - "info": "item_name_280047", - "zh-hk": "", - "en": "Planet_047", - "id": "Planet_047" - }, - { - "info": "item_name_280048", - "zh-hk": "", - "en": "Planet_048", - "id": "Planet_048" - }, - { - "info": "item_name_280049", - "zh-hk": "", - "en": "Planet_049", - "id": "Planet_049" - }, - { - "info": "item_name_280050", - "zh-hk": "", - "en": "Planet_050", - "id": "Planet_050" - }, - { - "info": "item_name_280051", - "zh-hk": "", - "en": "Planet_051", - "id": "Planet_051" - }, - { - "info": "item_name_280052", - "zh-hk": "", - "en": "Planet_052", - "id": "Planet_052" - }, - { - "info": "item_name_280053", - "zh-hk": "", - "en": "Planet_053", - "id": "Planet_053" - }, - { - "info": "item_name_280054", - "zh-hk": "", - "en": "Planet_054", - "id": "Planet_054" - }, - { - "info": "item_name_280055", - "zh-hk": "", - "en": "Planet_055", - "id": "Planet_055" - }, - { - "info": "item_name_280056", - "zh-hk": "", - "en": "Planet_056", - "id": "Planet_056" - }, - { - "info": "item_name_280057", - "zh-hk": "", - "en": "Planet_057", - "id": "Planet_057" - }, - { - "info": "item_name_280058", - "zh-hk": "", - "en": "Planet_058", - "id": "Planet_058" - }, - { - "info": "item_name_280059", - "zh-hk": "", - "en": "Planet_059", - "id": "Planet_059" - }, - { - "info": "item_name_280060", - "zh-hk": "", - "en": "Planet_060", - "id": "Planet_060" - }, - { - "info": "item_name_280061", - "zh-hk": "", - "en": "Planet_061", - "id": "Planet_061" - }, - { - "info": "item_name_280062", - "zh-hk": "", - "en": "Planet_062", - "id": "Planet_062" - }, - { - "info": "item_name_280063", - "zh-hk": "", - "en": "Planet_063", - "id": "Planet_063" - }, - { - "info": "item_name_280064", - "zh-hk": "", - "en": "Planet_064", - "id": "Planet_064" - }, - { - "info": "item_name_280065", - "zh-hk": "", - "en": "Planet_065", - "id": "Planet_065" - }, - { - "info": "item_name_280066", - "zh-hk": "", - "en": "Planet_066", - "id": "Planet_066" - }, - { - "info": "item_name_280067", - "zh-hk": "", - "en": "Planet_067", - "id": "Planet_067" - }, - { - "info": "item_name_280068", - "zh-hk": "", - "en": "Planet_068", - "id": "Planet_068" - }, - { - "info": "item_name_280069", - "zh-hk": "", - "en": "Planet_069", - "id": "Planet_069" - }, - { - "info": "item_name_280070", - "zh-hk": "", - "en": "Planet_070", - "id": "Planet_070" - }, - { - "info": "item_name_280071", - "zh-hk": "", - "en": "Planet_071", - "id": "Planet_071" - }, - { - "info": "item_name_280072", - "zh-hk": "", - "en": "Planet_072", - "id": "Planet_072" - }, - { - "info": "item_name_280073", - "zh-hk": "", - "en": "Planet_073", - "id": "Planet_073" - }, - { - "info": "item_name_280074", - "zh-hk": "", - "en": "Planet_074", - "id": "Planet_074" - }, - { - "info": "item_name_280075", - "zh-hk": "", - "en": "Planet_075", - "id": "Planet_075" - }, - { - "info": "item_name_280076", - "zh-hk": "", - "en": "Planet_076", - "id": "Planet_076" - }, - { - "info": "item_name_280077", - "zh-hk": "", - "en": "Planet_077", - "id": "Planet_077" - }, - { - "info": "item_name_280078", - "zh-hk": "", - "en": "Planet_078", - "id": "Planet_078" - }, - { - "info": "item_name_280079", - "zh-hk": "", - "en": "Planet_079", - "id": "Planet_079" - }, - { - "info": "item_name_280080", - "zh-hk": "", - "en": "Planet_080", - "id": "Planet_080" - }, - { - "info": "item_name_280081", - "zh-hk": "", - "en": "Planet_081", - "id": "Planet_081" - }, - { - "info": "item_name_280082", - "zh-hk": "", - "en": "Planet_082", - "id": "Planet_082" - }, - { - "info": "item_name_280083", - "zh-hk": "", - "en": "Planet_083", - "id": "Planet_083" - }, - { - "info": "item_name_280084", - "zh-hk": "", - "en": "Planet_084", - "id": "Planet_084" - }, - { - "info": "item_name_280085", - "zh-hk": "", - "en": "Planet_085", - "id": "Planet_085" - }, - { - "info": "item_name_280086", - "zh-hk": "", - "en": "Planet_086", - "id": "Planet_086" - }, - { - "info": "item_name_280087", - "zh-hk": "", - "en": "Planet_087", - "id": "Planet_087" - }, - { - "info": "item_name_280088", - "zh-hk": "", - "en": "Planet_088", - "id": "Planet_088" - }, - { - "info": "item_name_280089", - "zh-hk": "", - "en": "Planet_089", - "id": "Planet_089" - }, - { - "info": "item_name_280090", - "zh-hk": "", - "en": "Planet_090", - "id": "Planet_090" - }, - { - "info": "item_name_280091", - "zh-hk": "", - "en": "Planet_091", - "id": "Planet_091" - }, - { - "info": "item_name_280092", - "zh-hk": "", - "en": "Planet_092", - "id": "Planet_092" - }, - { - "info": "item_name_280093", - "zh-hk": "", - "en": "Planet_093", - "id": "Planet_093" - }, - { - "info": "item_name_280094", - "zh-hk": "", - "en": "Planet_094", - "id": "Planet_094" - }, - { - "info": "item_name_280095", - "zh-hk": "", - "en": "Planet_095", - "id": "Planet_095" - }, - { - "info": "item_name_280096", - "zh-hk": "", - "en": "Planet_096", - "id": "Planet_096" - }, - { - "info": "item_name_280097", - "zh-hk": "", - "en": "Planet_097", - "id": "Planet_097" - }, - { - "info": "item_name_280098", - "zh-hk": "", - "en": "Planet_098", - "id": "Planet_098" - }, - { - "info": "item_name_280099", - "zh-hk": "", - "en": "Planet_099", - "id": "Planet_099" - }, - { - "info": "item_name_280100", - "zh-hk": "", - "en": "Planet_100", - "id": "Planet_100" - }, - { - "info": "item_name_280101", - "zh-hk": "", - "en": "Planet_101", - "id": "Planet_101" - }, - { - "info": "item_name_280102", - "zh-hk": "", - "en": "Planet_102", - "id": "Planet_102" - }, - { - "info": "item_name_280103", - "zh-hk": "", - "en": "Planet_103", - "id": "Planet_103" - }, - { - "info": "item_name_280104", - "zh-hk": "", - "en": "Planet_104", - "id": "Planet_104" - }, - { - "info": "item_name_280105", - "zh-hk": "", - "en": "Planet_105", - "id": "Planet_105" - }, - { - "info": "item_name_280106", - "zh-hk": "", - "en": "Planet_106", - "id": "Planet_106" - }, - { - "info": "item_name_280107", - "zh-hk": "", - "en": "Planet_107", - "id": "Planet_107" - }, - { - "info": "item_name_280108", - "zh-hk": "", - "en": "Planet_108", - "id": "Planet_108" - }, - { - "info": "item_name_280109", - "zh-hk": "", - "en": "Planet_109", - "id": "Planet_109" - }, - { - "info": "item_name_280110", - "zh-hk": "", - "en": "Planet_110", - "id": "Planet_110" - }, - { - "info": "item_name_280111", - "zh-hk": "", - "en": "Planet_111", - "id": "Planet_111" - }, - { - "info": "item_name_280112", - "zh-hk": "", - "en": "Planet_112", - "id": "Planet_112" - }, - { - "info": "item_name_280113", - "zh-hk": "", - "en": "Planet_113", - "id": "Planet_113" - }, - { - "info": "item_name_280114", - "zh-hk": "", - "en": "Planet_114", - "id": "Planet_114" - }, - { - "info": "item_name_280115", - "zh-hk": "", - "en": "Planet_115", - "id": "Planet_115" - }, - { - "info": "item_name_280116", - "zh-hk": "", - "en": "Planet_116", - "id": "Planet_116" - }, - { - "info": "item_name_280117", - "zh-hk": "", - "en": "Planet_117", - "id": "Planet_117" - }, - { - "info": "item_name_280118", - "zh-hk": "", - "en": "Planet_118", - "id": "Planet_118" - }, - { - "info": "item_name_280119", - "zh-hk": "", - "en": "Planet_119", - "id": "Planet_119" - }, - { - "info": "item_name_280120", - "zh-hk": "", - "en": "Planet_120", - "id": "Planet_120" - }, - { - "info": "item_name_280121", - "zh-hk": "", - "en": "Planet_121", - "id": "Planet_121" - }, - { - "info": "item_name_280122", - "zh-hk": "", - "en": "Planet_122", - "id": "Planet_122" - }, - { - "info": "item_name_280123", - "zh-hk": "", - "en": "Planet_123", - "id": "Planet_123" - }, - { - "info": "item_name_280124", - "zh-hk": "", - "en": "Planet_124", - "id": "Planet_124" - }, - { - "info": "item_name_280125", - "zh-hk": "", - "en": "Planet_125", - "id": "Planet_125" - }, - { - "info": "item_name_280126", - "zh-hk": "", - "en": "Planet_126", - "id": "Planet_126" - }, - { - "info": "item_name_280127", - "zh-hk": "", - "en": "Planet_127", - "id": "Planet_127" - }, - { - "info": "item_name_280128", - "zh-hk": "", - "en": "Planet_128", - "id": "Planet_128" - }, - { - "info": "item_name_280129", - "zh-hk": "", - "en": "Planet_129", - "id": "Planet_129" - }, - { - "info": "item_name_280130", - "zh-hk": "", - "en": "Planet_130", - "id": "Planet_130" - }, - { - "info": "item_name_280131", - "zh-hk": "", - "en": "Planet_131", - "id": "Planet_131" - }, - { - "info": "item_name_280132", - "zh-hk": "", - "en": "Planet_132", - "id": "Planet_132" - }, - { - "info": "item_name_280133", - "zh-hk": "", - "en": "Planet_133", - "id": "Planet_133" - }, - { - "info": "item_name_280134", - "zh-hk": "", - "en": "Planet_134", - "id": "Planet_134" - }, - { - "info": "item_name_280135", - "zh-hk": "", - "en": "Planet_135", - "id": "Planet_135" - }, - { - "info": "item_name_280136", - "zh-hk": "", - "en": "Planet_136", - "id": "Planet_136" - }, - { - "info": "item_name_280137", - "zh-hk": "", - "en": "Planet_137", - "id": "Planet_137" - }, - { - "info": "item_name_280138", - "zh-hk": "", - "en": "Planet_138", - "id": "Planet_138" - }, - { - "info": "item_name_280139", - "zh-hk": "", - "en": "Planet_139", - "id": "Planet_139" - }, - { - "info": "item_name_280140", - "zh-hk": "", - "en": "Planet_140", - "id": "Planet_140" - }, - { - "info": "item_name_280141", - "zh-hk": "", - "en": "Planet_141", - "id": "Planet_141" - }, - { - "info": "item_name_280142", - "zh-hk": "", - "en": "Planet_142", - "id": "Planet_142" - }, - { - "info": "item_name_280143", - "zh-hk": "", - "en": "Planet_143", - "id": "Planet_143" - }, - { - "info": "item_name_280144", - "zh-hk": "", - "en": "Planet_144", - "id": "Planet_144" - }, - { - "info": "item_name_280145", - "zh-hk": "", - "en": "Planet_145", - "id": "Planet_145" - }, - { - "info": "item_name_280146", - "zh-hk": "", - "en": "Planet_146", - "id": "Planet_146" - }, - { - "info": "item_name_280147", - "zh-hk": "", - "en": "Planet_147", - "id": "Planet_147" - }, - { - "info": "item_name_280148", - "zh-hk": "", - "en": "Planet_148", - "id": "Planet_148" - }, - { - "info": "item_name_280149", - "zh-hk": "", - "en": "Planet_149", - "id": "Planet_149" - }, - { - "info": "item_name_280150", - "zh-hk": "", - "en": "Planet_150", - "id": "Planet_150" - }, - { - "info": "item_name_280151", - "zh-hk": "", - "en": "Planet_151", - "id": "Planet_151" - }, - { - "info": "item_name_280152", - "zh-hk": "", - "en": "Planet_152", - "id": "Planet_152" - }, - { - "info": "item_name_280153", - "zh-hk": "", - "en": "Planet_153", - "id": "Planet_153" - }, - { - "info": "item_name_280154", - "zh-hk": "", - "en": "Planet_154", - "id": "Planet_154" - }, - { - "info": "item_name_280155", - "zh-hk": "", - "en": "Planet_155", - "id": "Planet_155" - }, - { - "info": "item_name_280156", - "zh-hk": "", - "en": "Planet_156", - "id": "Planet_156" - }, - { - "info": "item_name_280157", - "zh-hk": "", - "en": "Planet_157", - "id": "Planet_157" - }, - { - "info": "item_name_280158", - "zh-hk": "", - "en": "Planet_158", - "id": "Planet_158" - }, - { - "info": "item_name_280159", - "zh-hk": "", - "en": "Planet_159", - "id": "Planet_159" - }, - { - "info": "item_name_280160", - "zh-hk": "", - "en": "Planet_160", - "id": "Planet_160" - }, - { - "info": "item_name_280161", - "zh-hk": "", - "en": "Planet_161", - "id": "Planet_161" - }, - { - "info": "item_name_280162", - "zh-hk": "", - "en": "Planet_162", - "id": "Planet_162" - }, - { - "info": "item_name_280163", - "zh-hk": "", - "en": "Planet_163", - "id": "Planet_163" - }, - { - "info": "item_name_280164", - "zh-hk": "", - "en": "Planet_164", - "id": "Planet_164" - }, - { - "info": "item_name_280165", - "zh-hk": "", - "en": "Planet_165", - "id": "Planet_165" - }, - { - "info": "item_name_280166", - "zh-hk": "", - "en": "Planet_166", - "id": "Planet_166" - }, - { - "info": "item_name_280167", - "zh-hk": "", - "en": "Planet_167", - "id": "Planet_167" - }, - { - "info": "item_name_280168", - "zh-hk": "", - "en": "Planet_168", - "id": "Planet_168" - }, - { - "info": "item_name_280169", - "zh-hk": "", - "en": "Planet_169", - "id": "Planet_169" - }, - { - "info": "item_name_280170", - "zh-hk": "", - "en": "Planet_170", - "id": "Planet_170" - }, - { - "info": "item_name_280171", - "zh-hk": "", - "en": "Planet_171", - "id": "Planet_171" - }, - { - "info": "item_name_280172", - "zh-hk": "", - "en": "Planet_172", - "id": "Planet_172" - }, - { - "info": "item_name_280173", - "zh-hk": "", - "en": "Planet_173", - "id": "Planet_173" - }, - { - "info": "item_name_280174", - "zh-hk": "", - "en": "Planet_174", - "id": "Planet_174" - }, - { - "info": "item_name_280175", - "zh-hk": "", - "en": "Planet_175", - "id": "Planet_175" - }, - { - "info": "item_name_280176", - "zh-hk": "", - "en": "Planet_176", - "id": "Planet_176" - }, - { - "info": "item_name_280177", - "zh-hk": "", - "en": "Planet_177", - "id": "Planet_177" - }, - { - "info": "item_name_280178", - "zh-hk": "", - "en": "Planet_178", - "id": "Planet_178" - }, - { - "info": "item_name_280179", - "zh-hk": "", - "en": "Planet_179", - "id": "Planet_179" - }, - { - "info": "item_name_280180", - "zh-hk": "", - "en": "Planet_180", - "id": "Planet_180" - }, - { - "info": "item_name_280181", - "zh-hk": "", - "en": "Planet_181", - "id": "Planet_181" - }, - { - "info": "item_name_280182", - "zh-hk": "", - "en": "Planet_182", - "id": "Planet_182" - }, - { - "info": "item_name_280183", - "zh-hk": "", - "en": "Planet_183", - "id": "Planet_183" - }, - { - "info": "item_name_280184", - "zh-hk": "", - "en": "Planet_184", - "id": "Planet_184" - }, - { - "info": "item_name_280185", - "zh-hk": "", - "en": "Planet_185", - "id": "Planet_185" - }, - { - "info": "item_name_280186", - "zh-hk": "", - "en": "Planet_186", - "id": "Planet_186" - }, - { - "info": "item_name_280187", - "zh-hk": "", - "en": "Planet_187", - "id": "Planet_187" - }, - { - "info": "item_name_280188", - "zh-hk": "", - "en": "Planet_188", - "id": "Planet_188" - }, - { - "info": "item_name_280189", - "zh-hk": "", - "en": "Planet_189", - "id": "Planet_189" - }, - { - "info": "item_name_280190", - "zh-hk": "", - "en": "Planet_190", - "id": "Planet_190" - }, - { - "info": "item_name_280191", - "zh-hk": "", - "en": "Planet_191", - "id": "Planet_191" - }, - { - "info": "item_name_280192", - "zh-hk": "", - "en": "Planet_192", - "id": "Planet_192" - }, - { - "info": "item_name_280193", - "zh-hk": "", - "en": "Planet_193", - "id": "Planet_193" - }, - { - "info": "item_name_280194", - "zh-hk": "", - "en": "Planet_194", - "id": "Planet_194" - }, - { - "info": "item_name_280195", - "zh-hk": "", - "en": "Planet_195", - "id": "Planet_195" - }, - { - "info": "item_name_280196", - "zh-hk": "", - "en": "Planet_196", - "id": "Planet_196" - }, - { - "info": "item_name_280197", - "zh-hk": "", - "en": "Planet_197", - "id": "Planet_197" - }, - { - "info": "item_name_280198", - "zh-hk": "", - "en": "Planet_198", - "id": "Planet_198" - }, - { - "info": "item_name_280199", - "zh-hk": "", - "en": "Planet_199", - "id": "Planet_199" - }, - { - "info": "item_name_280200", - "zh-hk": "", - "en": "Planet_200", - "id": "Planet_200" - }, - { - "info": "item_name_280201", - "zh-hk": "", - "en": "Planet_201", - "id": "Planet_201" - }, - { - "info": "item_name_280202", - "zh-hk": "", - "en": "Planet_202", - "id": "Planet_202" - }, - { - "info": "item_name_280203", - "zh-hk": "", - "en": "Planet_203", - "id": "Planet_203" - }, - { - "info": "item_name_280204", - "zh-hk": "", - "en": "Planet_204", - "id": "Planet_204" - }, - { - "info": "item_name_280205", - "zh-hk": "", - "en": "Planet_205", - "id": "Planet_205" - }, - { - "info": "item_name_280206", - "zh-hk": "", - "en": "Planet_206", - "id": "Planet_206" - }, - { - "info": "item_name_280207", - "zh-hk": "", - "en": "Planet_207", - "id": "Planet_207" - }, - { - "info": "item_name_280208", - "zh-hk": "", - "en": "Planet_208", - "id": "Planet_208" - }, - { - "info": "item_name_280209", - "zh-hk": "", - "en": "Planet_209", - "id": "Planet_209" - }, - { - "info": "item_name_280210", - "zh-hk": "", - "en": "Planet_210", - "id": "Planet_210" - }, - { - "info": "item_name_280211", - "zh-hk": "", - "en": "Planet_211", - "id": "Planet_211" - }, - { - "info": "item_name_280212", - "zh-hk": "", - "en": "Planet_212", - "id": "Planet_212" - }, - { - "info": "item_name_280213", - "zh-hk": "", - "en": "Planet_213", - "id": "Planet_213" - }, - { - "info": "item_name_280214", - "zh-hk": "", - "en": "Planet_214", - "id": "Planet_214" - }, - { - "info": "item_name_280215", - "zh-hk": "", - "en": "Planet_215", - "id": "Planet_215" - }, - { - "info": "item_name_280216", - "zh-hk": "", - "en": "Planet_216", - "id": "Planet_216" - }, - { - "info": "item_name_280217", - "zh-hk": "", - "en": "Planet_217", - "id": "Planet_217" - }, - { - "info": "item_name_280218", - "zh-hk": "", - "en": "Planet_218", - "id": "Planet_218" - }, - { - "info": "item_name_280219", - "zh-hk": "", - "en": "Planet_219", - "id": "Planet_219" - }, - { - "info": "item_name_280220", - "zh-hk": "", - "en": "Planet_220", - "id": "Planet_220" - }, - { - "info": "item_name_280221", - "zh-hk": "", - "en": "Planet_221", - "id": "Planet_221" - }, - { - "info": "item_name_280222", - "zh-hk": "", - "en": "Planet_222", - "id": "Planet_222" - }, - { - "info": "item_name_280223", - "zh-hk": "", - "en": "Planet_223", - "id": "Planet_223" - }, - { - "info": "item_name_280224", - "zh-hk": "", - "en": "Planet_224", - "id": "Planet_224" - }, - { - "info": "item_name_280225", - "zh-hk": "", - "en": "Planet_225", - "id": "Planet_225" - }, - { - "info": "item_name_280226", - "zh-hk": "", - "en": "Planet_226", - "id": "Planet_226" - }, - { - "info": "item_name_280227", - "zh-hk": "", - "en": "Planet_227", - "id": "Planet_227" - }, - { - "info": "item_name_280228", - "zh-hk": "", - "en": "Planet_228", - "id": "Planet_228" - }, - { - "info": "item_name_280229", - "zh-hk": "", - "en": "Planet_229", - "id": "Planet_229" - }, - { - "info": "item_name_280230", - "zh-hk": "", - "en": "Planet_230", - "id": "Planet_230" - }, - { - "info": "item_name_280231", - "zh-hk": "", - "en": "Planet_231", - "id": "Planet_231" - }, - { - "info": "item_name_280232", - "zh-hk": "", - "en": "Planet_232", - "id": "Planet_232" - }, - { - "info": "item_name_280233", - "zh-hk": "", - "en": "Planet_233", - "id": "Planet_233" - }, - { - "info": "item_name_280234", - "zh-hk": "", - "en": "Planet_234", - "id": "Planet_234" - }, - { - "info": "item_name_280235", - "zh-hk": "", - "en": "Planet_235", - "id": "Planet_235" - }, - { - "info": "item_name_280236", - "zh-hk": "", - "en": "Planet_236", - "id": "Planet_236" - }, - { - "info": "item_name_280237", - "zh-hk": "", - "en": "Planet_237", - "id": "Planet_237" - }, - { - "info": "item_name_280238", - "zh-hk": "", - "en": "Planet_238", - "id": "Planet_238" - }, - { - "info": "item_name_280239", - "zh-hk": "", - "en": "Planet_239", - "id": "Planet_239" - }, - { - "info": "item_name_280240", - "zh-hk": "", - "en": "Planet_240", - "id": "Planet_240" - }, - { - "info": "item_name_280241", - "zh-hk": "", - "en": "Planet_241", - "id": "Planet_241" - }, - { - "info": "item_name_280242", - "zh-hk": "", - "en": "Planet_242", - "id": "Planet_242" - }, - { - "info": "item_name_280243", - "zh-hk": "", - "en": "Planet_243", - "id": "Planet_243" - }, - { - "info": "item_name_280244", - "zh-hk": "", - "en": "Planet_244", - "id": "Planet_244" - }, - { - "info": "item_name_280245", - "zh-hk": "", - "en": "Planet_245", - "id": "Planet_245" - }, - { - "info": "item_name_280246", - "zh-hk": "", - "en": "Planet_246", - "id": "Planet_246" - }, - { - "info": "item_name_280247", - "zh-hk": "", - "en": "Planet_247", - "id": "Planet_247" - }, - { - "info": "item_name_280248", - "zh-hk": "", - "en": "Planet_248", - "id": "Planet_248" - }, - { - "info": "item_name_280249", - "zh-hk": "", - "en": "Planet_249", - "id": "Planet_249" - }, - { - "info": "item_name_280250", - "zh-hk": "", - "en": "Planet_250", - "id": "Planet_250" - }, - { - "info": "item_name_280251", - "zh-hk": "", - "en": "Planet_251", - "id": "Planet_251" - }, - { - "info": "item_name_280252", - "zh-hk": "", - "en": "Planet_252", - "id": "Planet_252" - }, - { - "info": "item_name_280253", - "zh-hk": "", - "en": "Planet_253", - "id": "Planet_253" - }, - { - "info": "item_name_280254", - "zh-hk": "", - "en": "Planet_254", - "id": "Planet_254" - }, - { - "info": "item_name_280255", - "zh-hk": "", - "en": "Planet_255", - "id": "Planet_255" - }, - { - "info": "item_name_280256", - "zh-hk": "", - "en": "Planet_256", - "id": "Planet_256" - }, - { - "info": "item_name_280257", - "zh-hk": "", - "en": "Planet_257", - "id": "Planet_257" - }, - { - "info": "item_name_280258", - "zh-hk": "", - "en": "Planet_258", - "id": "Planet_258" - }, - { - "info": "item_name_280259", - "zh-hk": "", - "en": "Planet_259", - "id": "Planet_259" - }, - { - "info": "item_name_280260", - "zh-hk": "", - "en": "Planet_260", - "id": "Planet_260" - }, - { - "info": "item_name_280261", - "zh-hk": "", - "en": "Planet_261", - "id": "Planet_261" - }, - { - "info": "item_name_280262", - "zh-hk": "", - "en": "Planet_262", - "id": "Planet_262" - }, - { - "info": "item_name_280263", - "zh-hk": "", - "en": "Planet_263", - "id": "Planet_263" - }, - { - "info": "item_name_280264", - "zh-hk": "", - "en": "Planet_264", - "id": "Planet_264" - }, - { - "info": "item_name_280265", - "zh-hk": "", - "en": "Planet_265", - "id": "Planet_265" - }, - { - "info": "item_name_280266", - "zh-hk": "", - "en": "Planet_266", - "id": "Planet_266" - }, - { - "info": "item_name_280267", - "zh-hk": "", - "en": "Planet_267", - "id": "Planet_267" - }, - { - "info": "item_name_280268", - "zh-hk": "", - "en": "Planet_268", - "id": "Planet_268" - }, - { - "info": "item_name_280269", - "zh-hk": "", - "en": "Planet_269", - "id": "Planet_269" - }, - { - "info": "item_name_280270", - "zh-hk": "", - "en": "Planet_270", - "id": "Planet_270" - }, - { - "info": "item_name_280271", - "zh-hk": "", - "en": "Planet_271", - "id": "Planet_271" - }, - { - "info": "item_name_280272", - "zh-hk": "", - "en": "Planet_272", - "id": "Planet_272" - }, - { - "info": "item_name_280273", - "zh-hk": "", - "en": "Planet_273", - "id": "Planet_273" - }, - { - "info": "item_name_280274", - "zh-hk": "", - "en": "Planet_274", - "id": "Planet_274" - }, - { - "info": "item_name_280275", - "zh-hk": "", - "en": "Planet_275", - "id": "Planet_275" - }, - { - "info": "item_name_280276", - "zh-hk": "", - "en": "Planet_276", - "id": "Planet_276" - }, - { - "info": "item_name_280277", - "zh-hk": "", - "en": "Planet_277", - "id": "Planet_277" - }, - { - "info": "item_name_280278", - "zh-hk": "", - "en": "Planet_278", - "id": "Planet_278" - }, - { - "info": "item_name_280279", - "zh-hk": "", - "en": "Planet_279", - "id": "Planet_279" - }, - { - "info": "item_name_280280", - "zh-hk": "", - "en": "Planet_280", - "id": "Planet_280" - }, - { - "info": "item_name_280281", - "zh-hk": "", - "en": "Planet_281", - "id": "Planet_281" - }, - { - "info": "item_name_280282", - "zh-hk": "", - "en": "Planet_282", - "id": "Planet_282" - }, - { - "info": "item_name_280283", - "zh-hk": "", - "en": "Planet_283", - "id": "Planet_283" - }, - { - "info": "item_name_280284", - "zh-hk": "", - "en": "Planet_284", - "id": "Planet_284" - }, - { - "info": "item_name_280285", - "zh-hk": "", - "en": "Planet_285", - "id": "Planet_285" - }, - { - "info": "item_name_280286", - "zh-hk": "", - "en": "Planet_286", - "id": "Planet_286" - }, - { - "info": "item_name_280287", - "zh-hk": "", - "en": "Planet_287", - "id": "Planet_287" - }, - { - "info": "item_name_280288", - "zh-hk": "", - "en": "Planet_288", - "id": "Planet_288" - }, - { - "info": "item_name_280289", - "zh-hk": "", - "en": "Planet_289", - "id": "Planet_289" - }, - { - "info": "item_name_280290", - "zh-hk": "", - "en": "Planet_290", - "id": "Planet_290" - }, - { - "info": "item_name_280291", - "zh-hk": "", - "en": "Planet_291", - "id": "Planet_291" - }, - { - "info": "item_name_280292", - "zh-hk": "", - "en": "Planet_292", - "id": "Planet_292" - }, - { - "info": "item_name_280293", - "zh-hk": "", - "en": "Planet_293", - "id": "Planet_293" - }, - { - "info": "item_name_280294", - "zh-hk": "", - "en": "Planet_294", - "id": "Planet_294" - }, - { - "info": "item_name_280295", - "zh-hk": "", - "en": "Planet_295", - "id": "Planet_295" - }, - { - "info": "item_name_280296", - "zh-hk": "", - "en": "Planet_296", - "id": "Planet_296" - }, - { - "info": "item_name_280297", - "zh-hk": "", - "en": "Planet_297", - "id": "Planet_297" - }, - { - "info": "item_name_280298", - "zh-hk": "", - "en": "Planet_298", - "id": "Planet_298" - }, - { - "info": "item_name_280299", - "zh-hk": "", - "en": "Planet_299", - "id": "Planet_299" - }, - { - "info": "item_name_280300", - "zh-hk": "", - "en": "Planet_300", - "id": "Planet_300" - }, - { - "info": "item_desc_280001", - "zh-hk": "", - "en": "Planet_001", - "id": "Planet_001" - }, - { - "info": "item_desc_280002", - "zh-hk": "", - "en": "Planet_002", - "id": "Planet_002" - }, - { - "info": "item_desc_280003", - "zh-hk": "", - "en": "Planet_003", - "id": "Planet_003" - }, - { - "info": "item_desc_280004", - "zh-hk": "", - "en": "Planet_004", - "id": "Planet_004" - }, - { - "info": "item_desc_280005", - "zh-hk": "", - "en": "Planet_005", - "id": "Planet_005" - }, - { - "info": "item_desc_280006", - "zh-hk": "", - "en": "Planet_006", - "id": "Planet_006" - }, - { - "info": "item_desc_280007", - "zh-hk": "", - "en": "Planet_007", - "id": "Planet_007" - }, - { - "info": "item_desc_280008", - "zh-hk": "", - "en": "Planet_008", - "id": "Planet_008" - }, - { - "info": "item_desc_280009", - "zh-hk": "", - "en": "Planet_009", - "id": "Planet_009" - }, - { - "info": "item_desc_280010", - "zh-hk": "", - "en": "Planet_010", - "id": "Planet_010" - }, - { - "info": "item_desc_280011", - "zh-hk": "", - "en": "Planet_011", - "id": "Planet_011" - }, - { - "info": "item_desc_280012", - "zh-hk": "", - "en": "Planet_012", - "id": "Planet_012" - }, - { - "info": "item_desc_280013", - "zh-hk": "", - "en": "Planet_013", - "id": "Planet_013" - }, - { - "info": "item_desc_280014", - "zh-hk": "", - "en": "Planet_014", - "id": "Planet_014" - }, - { - "info": "item_desc_280015", - "zh-hk": "", - "en": "Planet_015", - "id": "Planet_015" - }, - { - "info": "item_desc_280016", - "zh-hk": "", - "en": "Planet_016", - "id": "Planet_016" - }, - { - "info": "item_desc_280017", - "zh-hk": "", - "en": "Planet_017", - "id": "Planet_017" - }, - { - "info": "item_desc_280018", - "zh-hk": "", - "en": "Planet_018", - "id": "Planet_018" - }, - { - "info": "item_desc_280019", - "zh-hk": "", - "en": "Planet_019", - "id": "Planet_019" - }, - { - "info": "item_desc_280020", - "zh-hk": "", - "en": "Planet_020", - "id": "Planet_020" - }, - { - "info": "item_desc_280021", - "zh-hk": "", - "en": "Planet_021", - "id": "Planet_021" - }, - { - "info": "item_desc_280022", - "zh-hk": "", - "en": "Planet_022", - "id": "Planet_022" - }, - { - "info": "item_desc_280023", - "zh-hk": "", - "en": "Planet_023", - "id": "Planet_023" - }, - { - "info": "item_desc_280024", - "zh-hk": "", - "en": "Planet_024", - "id": "Planet_024" - }, - { - "info": "item_desc_280025", - "zh-hk": "", - "en": "Planet_025", - "id": "Planet_025" - }, - { - "info": "item_desc_280026", - "zh-hk": "", - "en": "Planet_026", - "id": "Planet_026" - }, - { - "info": "item_desc_280027", - "zh-hk": "", - "en": "Planet_027", - "id": "Planet_027" - }, - { - "info": "item_desc_280028", - "zh-hk": "", - "en": "Planet_028", - "id": "Planet_028" - }, - { - "info": "item_desc_280029", - "zh-hk": "", - "en": "Planet_029", - "id": "Planet_029" - }, - { - "info": "item_desc_280030", - "zh-hk": "", - "en": "Planet_030", - "id": "Planet_030" - }, - { - "info": "item_desc_280031", - "zh-hk": "", - "en": "Planet_031", - "id": "Planet_031" - }, - { - "info": "item_desc_280032", - "zh-hk": "", - "en": "Planet_032", - "id": "Planet_032" - }, - { - "info": "item_desc_280033", - "zh-hk": "", - "en": "Planet_033", - "id": "Planet_033" - }, - { - "info": "item_desc_280034", - "zh-hk": "", - "en": "Planet_034", - "id": "Planet_034" - }, - { - "info": "item_desc_280035", - "zh-hk": "", - "en": "Planet_035", - "id": "Planet_035" - }, - { - "info": "item_desc_280036", - "zh-hk": "", - "en": "Planet_036", - "id": "Planet_036" - }, - { - "info": "item_desc_280037", - "zh-hk": "", - "en": "Planet_037", - "id": "Planet_037" - }, - { - "info": "item_desc_280038", - "zh-hk": "", - "en": "Planet_038", - "id": "Planet_038" - }, - { - "info": "item_desc_280039", - "zh-hk": "", - "en": "Planet_039", - "id": "Planet_039" - }, - { - "info": "item_desc_280040", - "zh-hk": "", - "en": "Planet_040", - "id": "Planet_040" - }, - { - "info": "item_desc_280041", - "zh-hk": "", - "en": "Planet_041", - "id": "Planet_041" - }, - { - "info": "item_desc_280042", - "zh-hk": "", - "en": "Planet_042", - "id": "Planet_042" - }, - { - "info": "item_desc_280043", - "zh-hk": "", - "en": "Planet_043", - "id": "Planet_043" - }, - { - "info": "item_desc_280044", - "zh-hk": "", - "en": "Planet_044", - "id": "Planet_044" - }, - { - "info": "item_desc_280045", - "zh-hk": "", - "en": "Planet_045", - "id": "Planet_045" - }, - { - "info": "item_desc_280046", - "zh-hk": "", - "en": "Planet_046", - "id": "Planet_046" - }, - { - "info": "item_desc_280047", - "zh-hk": "", - "en": "Planet_047", - "id": "Planet_047" - }, - { - "info": "item_desc_280048", - "zh-hk": "", - "en": "Planet_048", - "id": "Planet_048" - }, - { - "info": "item_desc_280049", - "zh-hk": "", - "en": "Planet_049", - "id": "Planet_049" - }, - { - "info": "item_desc_280050", - "zh-hk": "", - "en": "Planet_050", - "id": "Planet_050" - }, - { - "info": "item_desc_280051", - "zh-hk": "", - "en": "Planet_051", - "id": "Planet_051" - }, - { - "info": "item_desc_280052", - "zh-hk": "", - "en": "Planet_052", - "id": "Planet_052" - }, - { - "info": "item_desc_280053", - "zh-hk": "", - "en": "Planet_053", - "id": "Planet_053" - }, - { - "info": "item_desc_280054", - "zh-hk": "", - "en": "Planet_054", - "id": "Planet_054" - }, - { - "info": "item_desc_280055", - "zh-hk": "", - "en": "Planet_055", - "id": "Planet_055" - }, - { - "info": "item_desc_280056", - "zh-hk": "", - "en": "Planet_056", - "id": "Planet_056" - }, - { - "info": "item_desc_280057", - "zh-hk": "", - "en": "Planet_057", - "id": "Planet_057" - }, - { - "info": "item_desc_280058", - "zh-hk": "", - "en": "Planet_058", - "id": "Planet_058" - }, - { - "info": "item_desc_280059", - "zh-hk": "", - "en": "Planet_059", - "id": "Planet_059" - }, - { - "info": "item_desc_280060", - "zh-hk": "", - "en": "Planet_060", - "id": "Planet_060" - }, - { - "info": "item_desc_280061", - "zh-hk": "", - "en": "Planet_061", - "id": "Planet_061" - }, - { - "info": "item_desc_280062", - "zh-hk": "", - "en": "Planet_062", - "id": "Planet_062" - }, - { - "info": "item_desc_280063", - "zh-hk": "", - "en": "Planet_063", - "id": "Planet_063" - }, - { - "info": "item_desc_280064", - "zh-hk": "", - "en": "Planet_064", - "id": "Planet_064" - }, - { - "info": "item_desc_280065", - "zh-hk": "", - "en": "Planet_065", - "id": "Planet_065" - }, - { - "info": "item_desc_280066", - "zh-hk": "", - "en": "Planet_066", - "id": "Planet_066" - }, - { - "info": "item_desc_280067", - "zh-hk": "", - "en": "Planet_067", - "id": "Planet_067" - }, - { - "info": "item_desc_280068", - "zh-hk": "", - "en": "Planet_068", - "id": "Planet_068" - }, - { - "info": "item_desc_280069", - "zh-hk": "", - "en": "Planet_069", - "id": "Planet_069" - }, - { - "info": "item_desc_280070", - "zh-hk": "", - "en": "Planet_070", - "id": "Planet_070" - }, - { - "info": "item_desc_280071", - "zh-hk": "", - "en": "Planet_071", - "id": "Planet_071" - }, - { - "info": "item_desc_280072", - "zh-hk": "", - "en": "Planet_072", - "id": "Planet_072" - }, - { - "info": "item_desc_280073", - "zh-hk": "", - "en": "Planet_073", - "id": "Planet_073" - }, - { - "info": "item_desc_280074", - "zh-hk": "", - "en": "Planet_074", - "id": "Planet_074" - }, - { - "info": "item_desc_280075", - "zh-hk": "", - "en": "Planet_075", - "id": "Planet_075" - }, - { - "info": "item_desc_280076", - "zh-hk": "", - "en": "Planet_076", - "id": "Planet_076" - }, - { - "info": "item_desc_280077", - "zh-hk": "", - "en": "Planet_077", - "id": "Planet_077" - }, - { - "info": "item_desc_280078", - "zh-hk": "", - "en": "Planet_078", - "id": "Planet_078" - }, - { - "info": "item_desc_280079", - "zh-hk": "", - "en": "Planet_079", - "id": "Planet_079" - }, - { - "info": "item_desc_280080", - "zh-hk": "", - "en": "Planet_080", - "id": "Planet_080" - }, - { - "info": "item_desc_280081", - "zh-hk": "", - "en": "Planet_081", - "id": "Planet_081" - }, - { - "info": "item_desc_280082", - "zh-hk": "", - "en": "Planet_082", - "id": "Planet_082" - }, - { - "info": "item_desc_280083", - "zh-hk": "", - "en": "Planet_083", - "id": "Planet_083" - }, - { - "info": "item_desc_280084", - "zh-hk": "", - "en": "Planet_084", - "id": "Planet_084" - }, - { - "info": "item_desc_280085", - "zh-hk": "", - "en": "Planet_085", - "id": "Planet_085" - }, - { - "info": "item_desc_280086", - "zh-hk": "", - "en": "Planet_086", - "id": "Planet_086" - }, - { - "info": "item_desc_280087", - "zh-hk": "", - "en": "Planet_087", - "id": "Planet_087" - }, - { - "info": "item_desc_280088", - "zh-hk": "", - "en": "Planet_088", - "id": "Planet_088" - }, - { - "info": "item_desc_280089", - "zh-hk": "", - "en": "Planet_089", - "id": "Planet_089" - }, - { - "info": "item_desc_280090", - "zh-hk": "", - "en": "Planet_090", - "id": "Planet_090" - }, - { - "info": "item_desc_280091", - "zh-hk": "", - "en": "Planet_091", - "id": "Planet_091" - }, - { - "info": "item_desc_280092", - "zh-hk": "", - "en": "Planet_092", - "id": "Planet_092" - }, - { - "info": "item_desc_280093", - "zh-hk": "", - "en": "Planet_093", - "id": "Planet_093" - }, - { - "info": "item_desc_280094", - "zh-hk": "", - "en": "Planet_094", - "id": "Planet_094" - }, - { - "info": "item_desc_280095", - "zh-hk": "", - "en": "Planet_095", - "id": "Planet_095" - }, - { - "info": "item_desc_280096", - "zh-hk": "", - "en": "Planet_096", - "id": "Planet_096" - }, - { - "info": "item_desc_280097", - "zh-hk": "", - "en": "Planet_097", - "id": "Planet_097" - }, - { - "info": "item_desc_280098", - "zh-hk": "", - "en": "Planet_098", - "id": "Planet_098" - }, - { - "info": "item_desc_280099", - "zh-hk": "", - "en": "Planet_099", - "id": "Planet_099" - }, - { - "info": "item_desc_280100", - "zh-hk": "", - "en": "Planet_100", - "id": "Planet_100" - }, - { - "info": "item_desc_280101", - "zh-hk": "", - "en": "Planet_101", - "id": "Planet_101" - }, - { - "info": "item_desc_280102", - "zh-hk": "", - "en": "Planet_102", - "id": "Planet_102" - }, - { - "info": "item_desc_280103", - "zh-hk": "", - "en": "Planet_103", - "id": "Planet_103" - }, - { - "info": "item_desc_280104", - "zh-hk": "", - "en": "Planet_104", - "id": "Planet_104" - }, - { - "info": "item_desc_280105", - "zh-hk": "", - "en": "Planet_105", - "id": "Planet_105" - }, - { - "info": "item_desc_280106", - "zh-hk": "", - "en": "Planet_106", - "id": "Planet_106" - }, - { - "info": "item_desc_280107", - "zh-hk": "", - "en": "Planet_107", - "id": "Planet_107" - }, - { - "info": "item_desc_280108", - "zh-hk": "", - "en": "Planet_108", - "id": "Planet_108" - }, - { - "info": "item_desc_280109", - "zh-hk": "", - "en": "Planet_109", - "id": "Planet_109" - }, - { - "info": "item_desc_280110", - "zh-hk": "", - "en": "Planet_110", - "id": "Planet_110" - }, - { - "info": "item_desc_280111", - "zh-hk": "", - "en": "Planet_111", - "id": "Planet_111" - }, - { - "info": "item_desc_280112", - "zh-hk": "", - "en": "Planet_112", - "id": "Planet_112" - }, - { - "info": "item_desc_280113", - "zh-hk": "", - "en": "Planet_113", - "id": "Planet_113" - }, - { - "info": "item_desc_280114", - "zh-hk": "", - "en": "Planet_114", - "id": "Planet_114" - }, - { - "info": "item_desc_280115", - "zh-hk": "", - "en": "Planet_115", - "id": "Planet_115" - }, - { - "info": "item_desc_280116", - "zh-hk": "", - "en": "Planet_116", - "id": "Planet_116" - }, - { - "info": "item_desc_280117", - "zh-hk": "", - "en": "Planet_117", - "id": "Planet_117" - }, - { - "info": "item_desc_280118", - "zh-hk": "", - "en": "Planet_118", - "id": "Planet_118" - }, - { - "info": "item_desc_280119", - "zh-hk": "", - "en": "Planet_119", - "id": "Planet_119" - }, - { - "info": "item_desc_280120", - "zh-hk": "", - "en": "Planet_120", - "id": "Planet_120" - }, - { - "info": "item_desc_280121", - "zh-hk": "", - "en": "Planet_121", - "id": "Planet_121" - }, - { - "info": "item_desc_280122", - "zh-hk": "", - "en": "Planet_122", - "id": "Planet_122" - }, - { - "info": "item_desc_280123", - "zh-hk": "", - "en": "Planet_123", - "id": "Planet_123" - }, - { - "info": "item_desc_280124", - "zh-hk": "", - "en": "Planet_124", - "id": "Planet_124" - }, - { - "info": "item_desc_280125", - "zh-hk": "", - "en": "Planet_125", - "id": "Planet_125" - }, - { - "info": "item_desc_280126", - "zh-hk": "", - "en": "Planet_126", - "id": "Planet_126" - }, - { - "info": "item_desc_280127", - "zh-hk": "", - "en": "Planet_127", - "id": "Planet_127" - }, - { - "info": "item_desc_280128", - "zh-hk": "", - "en": "Planet_128", - "id": "Planet_128" - }, - { - "info": "item_desc_280129", - "zh-hk": "", - "en": "Planet_129", - "id": "Planet_129" - }, - { - "info": "item_desc_280130", - "zh-hk": "", - "en": "Planet_130", - "id": "Planet_130" - }, - { - "info": "item_desc_280131", - "zh-hk": "", - "en": "Planet_131", - "id": "Planet_131" - }, - { - "info": "item_desc_280132", - "zh-hk": "", - "en": "Planet_132", - "id": "Planet_132" - }, - { - "info": "item_desc_280133", - "zh-hk": "", - "en": "Planet_133", - "id": "Planet_133" - }, - { - "info": "item_desc_280134", - "zh-hk": "", - "en": "Planet_134", - "id": "Planet_134" - }, - { - "info": "item_desc_280135", - "zh-hk": "", - "en": "Planet_135", - "id": "Planet_135" - }, - { - "info": "item_desc_280136", - "zh-hk": "", - "en": "Planet_136", - "id": "Planet_136" - }, - { - "info": "item_desc_280137", - "zh-hk": "", - "en": "Planet_137", - "id": "Planet_137" - }, - { - "info": "item_desc_280138", - "zh-hk": "", - "en": "Planet_138", - "id": "Planet_138" - }, - { - "info": "item_desc_280139", - "zh-hk": "", - "en": "Planet_139", - "id": "Planet_139" - }, - { - "info": "item_desc_280140", - "zh-hk": "", - "en": "Planet_140", - "id": "Planet_140" - }, - { - "info": "item_desc_280141", - "zh-hk": "", - "en": "Planet_141", - "id": "Planet_141" - }, - { - "info": "item_desc_280142", - "zh-hk": "", - "en": "Planet_142", - "id": "Planet_142" - }, - { - "info": "item_desc_280143", - "zh-hk": "", - "en": "Planet_143", - "id": "Planet_143" - }, - { - "info": "item_desc_280144", - "zh-hk": "", - "en": "Planet_144", - "id": "Planet_144" - }, - { - "info": "item_desc_280145", - "zh-hk": "", - "en": "Planet_145", - "id": "Planet_145" - }, - { - "info": "item_desc_280146", - "zh-hk": "", - "en": "Planet_146", - "id": "Planet_146" - }, - { - "info": "item_desc_280147", - "zh-hk": "", - "en": "Planet_147", - "id": "Planet_147" - }, - { - "info": "item_desc_280148", - "zh-hk": "", - "en": "Planet_148", - "id": "Planet_148" - }, - { - "info": "item_desc_280149", - "zh-hk": "", - "en": "Planet_149", - "id": "Planet_149" - }, - { - "info": "item_desc_280150", - "zh-hk": "", - "en": "Planet_150", - "id": "Planet_150" - }, - { - "info": "item_desc_280151", - "zh-hk": "", - "en": "Planet_151", - "id": "Planet_151" - }, - { - "info": "item_desc_280152", - "zh-hk": "", - "en": "Planet_152", - "id": "Planet_152" - }, - { - "info": "item_desc_280153", - "zh-hk": "", - "en": "Planet_153", - "id": "Planet_153" - }, - { - "info": "item_desc_280154", - "zh-hk": "", - "en": "Planet_154", - "id": "Planet_154" - }, - { - "info": "item_desc_280155", - "zh-hk": "", - "en": "Planet_155", - "id": "Planet_155" - }, - { - "info": "item_desc_280156", - "zh-hk": "", - "en": "Planet_156", - "id": "Planet_156" - }, - { - "info": "item_desc_280157", - "zh-hk": "", - "en": "Planet_157", - "id": "Planet_157" - }, - { - "info": "item_desc_280158", - "zh-hk": "", - "en": "Planet_158", - "id": "Planet_158" - }, - { - "info": "item_desc_280159", - "zh-hk": "", - "en": "Planet_159", - "id": "Planet_159" - }, - { - "info": "item_desc_280160", - "zh-hk": "", - "en": "Planet_160", - "id": "Planet_160" - }, - { - "info": "item_desc_280161", - "zh-hk": "", - "en": "Planet_161", - "id": "Planet_161" - }, - { - "info": "item_desc_280162", - "zh-hk": "", - "en": "Planet_162", - "id": "Planet_162" - }, - { - "info": "item_desc_280163", - "zh-hk": "", - "en": "Planet_163", - "id": "Planet_163" - }, - { - "info": "item_desc_280164", - "zh-hk": "", - "en": "Planet_164", - "id": "Planet_164" - }, - { - "info": "item_desc_280165", - "zh-hk": "", - "en": "Planet_165", - "id": "Planet_165" - }, - { - "info": "item_desc_280166", - "zh-hk": "", - "en": "Planet_166", - "id": "Planet_166" - }, - { - "info": "item_desc_280167", - "zh-hk": "", - "en": "Planet_167", - "id": "Planet_167" - }, - { - "info": "item_desc_280168", - "zh-hk": "", - "en": "Planet_168", - "id": "Planet_168" - }, - { - "info": "item_desc_280169", - "zh-hk": "", - "en": "Planet_169", - "id": "Planet_169" - }, - { - "info": "item_desc_280170", - "zh-hk": "", - "en": "Planet_170", - "id": "Planet_170" - }, - { - "info": "item_desc_280171", - "zh-hk": "", - "en": "Planet_171", - "id": "Planet_171" - }, - { - "info": "item_desc_280172", - "zh-hk": "", - "en": "Planet_172", - "id": "Planet_172" - }, - { - "info": "item_desc_280173", - "zh-hk": "", - "en": "Planet_173", - "id": "Planet_173" - }, - { - "info": "item_desc_280174", - "zh-hk": "", - "en": "Planet_174", - "id": "Planet_174" - }, - { - "info": "item_desc_280175", - "zh-hk": "", - "en": "Planet_175", - "id": "Planet_175" - }, - { - "info": "item_desc_280176", - "zh-hk": "", - "en": "Planet_176", - "id": "Planet_176" - }, - { - "info": "item_desc_280177", - "zh-hk": "", - "en": "Planet_177", - "id": "Planet_177" - }, - { - "info": "item_desc_280178", - "zh-hk": "", - "en": "Planet_178", - "id": "Planet_178" - }, - { - "info": "item_desc_280179", - "zh-hk": "", - "en": "Planet_179", - "id": "Planet_179" - }, - { - "info": "item_desc_280180", - "zh-hk": "", - "en": "Planet_180", - "id": "Planet_180" - }, - { - "info": "item_desc_280181", - "zh-hk": "", - "en": "Planet_181", - "id": "Planet_181" - }, - { - "info": "item_desc_280182", - "zh-hk": "", - "en": "Planet_182", - "id": "Planet_182" - }, - { - "info": "item_desc_280183", - "zh-hk": "", - "en": "Planet_183", - "id": "Planet_183" - }, - { - "info": "item_desc_280184", - "zh-hk": "", - "en": "Planet_184", - "id": "Planet_184" - }, - { - "info": "item_desc_280185", - "zh-hk": "", - "en": "Planet_185", - "id": "Planet_185" - }, - { - "info": "item_desc_280186", - "zh-hk": "", - "en": "Planet_186", - "id": "Planet_186" - }, - { - "info": "item_desc_280187", - "zh-hk": "", - "en": "Planet_187", - "id": "Planet_187" - }, - { - "info": "item_desc_280188", - "zh-hk": "", - "en": "Planet_188", - "id": "Planet_188" - }, - { - "info": "item_desc_280189", - "zh-hk": "", - "en": "Planet_189", - "id": "Planet_189" - }, - { - "info": "item_desc_280190", - "zh-hk": "", - "en": "Planet_190", - "id": "Planet_190" - }, - { - "info": "item_desc_280191", - "zh-hk": "", - "en": "Planet_191", - "id": "Planet_191" - }, - { - "info": "item_desc_280192", - "zh-hk": "", - "en": "Planet_192", - "id": "Planet_192" - }, - { - "info": "item_desc_280193", - "zh-hk": "", - "en": "Planet_193", - "id": "Planet_193" - }, - { - "info": "item_desc_280194", - "zh-hk": "", - "en": "Planet_194", - "id": "Planet_194" - }, - { - "info": "item_desc_280195", - "zh-hk": "", - "en": "Planet_195", - "id": "Planet_195" - }, - { - "info": "item_desc_280196", - "zh-hk": "", - "en": "Planet_196", - "id": "Planet_196" - }, - { - "info": "item_desc_280197", - "zh-hk": "", - "en": "Planet_197", - "id": "Planet_197" - }, - { - "info": "item_desc_280198", - "zh-hk": "", - "en": "Planet_198", - "id": "Planet_198" - }, - { - "info": "item_desc_280199", - "zh-hk": "", - "en": "Planet_199", - "id": "Planet_199" - }, - { - "info": "item_desc_280200", - "zh-hk": "", - "en": "Planet_200", - "id": "Planet_200" - }, - { - "info": "item_desc_280201", - "zh-hk": "", - "en": "Planet_201", - "id": "Planet_201" - }, - { - "info": "item_desc_280202", - "zh-hk": "", - "en": "Planet_202", - "id": "Planet_202" - }, - { - "info": "item_desc_280203", - "zh-hk": "", - "en": "Planet_203", - "id": "Planet_203" - }, - { - "info": "item_desc_280204", - "zh-hk": "", - "en": "Planet_204", - "id": "Planet_204" - }, - { - "info": "item_desc_280205", - "zh-hk": "", - "en": "Planet_205", - "id": "Planet_205" - }, - { - "info": "item_desc_280206", - "zh-hk": "", - "en": "Planet_206", - "id": "Planet_206" - }, - { - "info": "item_desc_280207", - "zh-hk": "", - "en": "Planet_207", - "id": "Planet_207" - }, - { - "info": "item_desc_280208", - "zh-hk": "", - "en": "Planet_208", - "id": "Planet_208" - }, - { - "info": "item_desc_280209", - "zh-hk": "", - "en": "Planet_209", - "id": "Planet_209" - }, - { - "info": "item_desc_280210", - "zh-hk": "", - "en": "Planet_210", - "id": "Planet_210" - }, - { - "info": "item_desc_280211", - "zh-hk": "", - "en": "Planet_211", - "id": "Planet_211" - }, - { - "info": "item_desc_280212", - "zh-hk": "", - "en": "Planet_212", - "id": "Planet_212" - }, - { - "info": "item_desc_280213", - "zh-hk": "", - "en": "Planet_213", - "id": "Planet_213" - }, - { - "info": "item_desc_280214", - "zh-hk": "", - "en": "Planet_214", - "id": "Planet_214" - }, - { - "info": "item_desc_280215", - "zh-hk": "", - "en": "Planet_215", - "id": "Planet_215" - }, - { - "info": "item_desc_280216", - "zh-hk": "", - "en": "Planet_216", - "id": "Planet_216" - }, - { - "info": "item_desc_280217", - "zh-hk": "", - "en": "Planet_217", - "id": "Planet_217" - }, - { - "info": "item_desc_280218", - "zh-hk": "", - "en": "Planet_218", - "id": "Planet_218" - }, - { - "info": "item_desc_280219", - "zh-hk": "", - "en": "Planet_219", - "id": "Planet_219" - }, - { - "info": "item_desc_280220", - "zh-hk": "", - "en": "Planet_220", - "id": "Planet_220" - }, - { - "info": "item_desc_280221", - "zh-hk": "", - "en": "Planet_221", - "id": "Planet_221" - }, - { - "info": "item_desc_280222", - "zh-hk": "", - "en": "Planet_222", - "id": "Planet_222" - }, - { - "info": "item_desc_280223", - "zh-hk": "", - "en": "Planet_223", - "id": "Planet_223" - }, - { - "info": "item_desc_280224", - "zh-hk": "", - "en": "Planet_224", - "id": "Planet_224" - }, - { - "info": "item_desc_280225", - "zh-hk": "", - "en": "Planet_225", - "id": "Planet_225" - }, - { - "info": "item_desc_280226", - "zh-hk": "", - "en": "Planet_226", - "id": "Planet_226" - }, - { - "info": "item_desc_280227", - "zh-hk": "", - "en": "Planet_227", - "id": "Planet_227" - }, - { - "info": "item_desc_280228", - "zh-hk": "", - "en": "Planet_228", - "id": "Planet_228" - }, - { - "info": "item_desc_280229", - "zh-hk": "", - "en": "Planet_229", - "id": "Planet_229" - }, - { - "info": "item_desc_280230", - "zh-hk": "", - "en": "Planet_230", - "id": "Planet_230" - }, - { - "info": "item_desc_280231", - "zh-hk": "", - "en": "Planet_231", - "id": "Planet_231" - }, - { - "info": "item_desc_280232", - "zh-hk": "", - "en": "Planet_232", - "id": "Planet_232" - }, - { - "info": "item_desc_280233", - "zh-hk": "", - "en": "Planet_233", - "id": "Planet_233" - }, - { - "info": "item_desc_280234", - "zh-hk": "", - "en": "Planet_234", - "id": "Planet_234" - }, - { - "info": "item_desc_280235", - "zh-hk": "", - "en": "Planet_235", - "id": "Planet_235" - }, - { - "info": "item_desc_280236", - "zh-hk": "", - "en": "Planet_236", - "id": "Planet_236" - }, - { - "info": "item_desc_280237", - "zh-hk": "", - "en": "Planet_237", - "id": "Planet_237" - }, - { - "info": "item_desc_280238", - "zh-hk": "", - "en": "Planet_238", - "id": "Planet_238" - }, - { - "info": "item_desc_280239", - "zh-hk": "", - "en": "Planet_239", - "id": "Planet_239" - }, - { - "info": "item_desc_280240", - "zh-hk": "", - "en": "Planet_240", - "id": "Planet_240" - }, - { - "info": "item_desc_280241", - "zh-hk": "", - "en": "Planet_241", - "id": "Planet_241" - }, - { - "info": "item_desc_280242", - "zh-hk": "", - "en": "Planet_242", - "id": "Planet_242" - }, - { - "info": "item_desc_280243", - "zh-hk": "", - "en": "Planet_243", - "id": "Planet_243" - }, - { - "info": "item_desc_280244", - "zh-hk": "", - "en": "Planet_244", - "id": "Planet_244" - }, - { - "info": "item_desc_280245", - "zh-hk": "", - "en": "Planet_245", - "id": "Planet_245" - }, - { - "info": "item_desc_280246", - "zh-hk": "", - "en": "Planet_246", - "id": "Planet_246" - }, - { - "info": "item_desc_280247", - "zh-hk": "", - "en": "Planet_247", - "id": "Planet_247" - }, - { - "info": "item_desc_280248", - "zh-hk": "", - "en": "Planet_248", - "id": "Planet_248" - }, - { - "info": "item_desc_280249", - "zh-hk": "", - "en": "Planet_249", - "id": "Planet_249" - }, - { - "info": "item_desc_280250", - "zh-hk": "", - "en": "Planet_250", - "id": "Planet_250" - }, - { - "info": "item_desc_280251", - "zh-hk": "", - "en": "Planet_251", - "id": "Planet_251" - }, - { - "info": "item_desc_280252", - "zh-hk": "", - "en": "Planet_252", - "id": "Planet_252" - }, - { - "info": "item_desc_280253", - "zh-hk": "", - "en": "Planet_253", - "id": "Planet_253" - }, - { - "info": "item_desc_280254", - "zh-hk": "", - "en": "Planet_254", - "id": "Planet_254" - }, - { - "info": "item_desc_280255", - "zh-hk": "", - "en": "Planet_255", - "id": "Planet_255" - }, - { - "info": "item_desc_280256", - "zh-hk": "", - "en": "Planet_256", - "id": "Planet_256" - }, - { - "info": "item_desc_280257", - "zh-hk": "", - "en": "Planet_257", - "id": "Planet_257" - }, - { - "info": "item_desc_280258", - "zh-hk": "", - "en": "Planet_258", - "id": "Planet_258" - }, - { - "info": "item_desc_280259", - "zh-hk": "", - "en": "Planet_259", - "id": "Planet_259" - }, - { - "info": "item_desc_280260", - "zh-hk": "", - "en": "Planet_260", - "id": "Planet_260" - }, - { - "info": "item_desc_280261", - "zh-hk": "", - "en": "Planet_261", - "id": "Planet_261" - }, - { - "info": "item_desc_280262", - "zh-hk": "", - "en": "Planet_262", - "id": "Planet_262" - }, - { - "info": "item_desc_280263", - "zh-hk": "", - "en": "Planet_263", - "id": "Planet_263" - }, - { - "info": "item_desc_280264", - "zh-hk": "", - "en": "Planet_264", - "id": "Planet_264" - }, - { - "info": "item_desc_280265", - "zh-hk": "", - "en": "Planet_265", - "id": "Planet_265" - }, - { - "info": "item_desc_280266", - "zh-hk": "", - "en": "Planet_266", - "id": "Planet_266" - }, - { - "info": "item_desc_280267", - "zh-hk": "", - "en": "Planet_267", - "id": "Planet_267" - }, - { - "info": "item_desc_280268", - "zh-hk": "", - "en": "Planet_268", - "id": "Planet_268" - }, - { - "info": "item_desc_280269", - "zh-hk": "", - "en": "Planet_269", - "id": "Planet_269" - }, - { - "info": "item_desc_280270", - "zh-hk": "", - "en": "Planet_270", - "id": "Planet_270" - }, - { - "info": "item_desc_280271", - "zh-hk": "", - "en": "Planet_271", - "id": "Planet_271" - }, - { - "info": "item_desc_280272", - "zh-hk": "", - "en": "Planet_272", - "id": "Planet_272" - }, - { - "info": "item_desc_280273", - "zh-hk": "", - "en": "Planet_273", - "id": "Planet_273" - }, - { - "info": "item_desc_280274", - "zh-hk": "", - "en": "Planet_274", - "id": "Planet_274" - }, - { - "info": "item_desc_280275", - "zh-hk": "", - "en": "Planet_275", - "id": "Planet_275" - }, - { - "info": "item_desc_280276", - "zh-hk": "", - "en": "Planet_276", - "id": "Planet_276" - }, - { - "info": "item_desc_280277", - "zh-hk": "", - "en": "Planet_277", - "id": "Planet_277" - }, - { - "info": "item_desc_280278", - "zh-hk": "", - "en": "Planet_278", - "id": "Planet_278" - }, - { - "info": "item_desc_280279", - "zh-hk": "", - "en": "Planet_279", - "id": "Planet_279" - }, - { - "info": "item_desc_280280", - "zh-hk": "", - "en": "Planet_280", - "id": "Planet_280" - }, - { - "info": "item_desc_280281", - "zh-hk": "", - "en": "Planet_281", - "id": "Planet_281" - }, - { - "info": "item_desc_280282", - "zh-hk": "", - "en": "Planet_282", - "id": "Planet_282" - }, - { - "info": "item_desc_280283", - "zh-hk": "", - "en": "Planet_283", - "id": "Planet_283" - }, - { - "info": "item_desc_280284", - "zh-hk": "", - "en": "Planet_284", - "id": "Planet_284" - }, - { - "info": "item_desc_280285", - "zh-hk": "", - "en": "Planet_285", - "id": "Planet_285" - }, - { - "info": "item_desc_280286", - "zh-hk": "", - "en": "Planet_286", - "id": "Planet_286" - }, - { - "info": "item_desc_280287", - "zh-hk": "", - "en": "Planet_287", - "id": "Planet_287" - }, - { - "info": "item_desc_280288", - "zh-hk": "", - "en": "Planet_288", - "id": "Planet_288" - }, - { - "info": "item_desc_280289", - "zh-hk": "", - "en": "Planet_289", - "id": "Planet_289" - }, - { - "info": "item_desc_280290", - "zh-hk": "", - "en": "Planet_290", - "id": "Planet_290" - }, - { - "info": "item_desc_280291", - "zh-hk": "", - "en": "Planet_291", - "id": "Planet_291" - }, - { - "info": "item_desc_280292", - "zh-hk": "", - "en": "Planet_292", - "id": "Planet_292" - }, - { - "info": "item_desc_280293", - "zh-hk": "", - "en": "Planet_293", - "id": "Planet_293" - }, - { - "info": "item_desc_280294", - "zh-hk": "", - "en": "Planet_294", - "id": "Planet_294" - }, - { - "info": "item_desc_280295", - "zh-hk": "", - "en": "Planet_295", - "id": "Planet_295" - }, - { - "info": "item_desc_280296", - "zh-hk": "", - "en": "Planet_296", - "id": "Planet_296" - }, - { - "info": "item_desc_280297", - "zh-hk": "", - "en": "Planet_297", - "id": "Planet_297" - }, - { - "info": "item_desc_280298", - "zh-hk": "", - "en": "Planet_298", - "id": "Planet_298" - }, - { - "info": "item_desc_280299", - "zh-hk": "", - "en": "Planet_299", - "id": "Planet_299" - }, - { - "info": "item_desc_280300", - "zh-hk": "", - "en": "Planet_300", - "id": "Planet_300" - }, - { - "info": "item_name_250001", - "zh-hk": "", - "en": "Genesis", - "id": "Genesis" - }, - { - "info": "hashrate_task_desc1", - "zh-hk": "", - "en": "Kill {0} Enemies = {1}", - "id": "Kill {0} Enemies = {1}" - }, - { - "info": "hashrate_task_desc2", - "zh-hk": "", - "en": "Get {0} Stars = {1}", - "id": "Get {0} Stars = {1}" - }, - { - "info": "hashrate_task_desc3", - "zh-hk": "", - "en": "Pay each ${0} in game = {1}", - "id": "Pay each ${0} in game = {1}" - }, - { - "info": "hashrate_task_desc4", - "zh-hk": "", - "en": "Trade each ${0} in Market = {1}", - "id": "Trade each ${0} in Market = {1}" - }, - { - "info": "hashrate_task_desc5", - "zh-hk": "", - "en": "Stake each ${0} daily = {1}", - "id": "Stake each ${0} daily = {1}" - }, - { - "info": "model_name_1001", - "zh-hk": "", - "en": "Classic", - "id": "PVP Match" - }, - { - "info": "model_desc_1001", - "zh-hk": "", - "en": "Classic", - "id": "Classic" - }, - { - "info": "map_name_10002", - "zh-hk": "", - "en": "Dead Island", - "id": "Dead Island" - }, - { - "info": "model_name_5001", - "zh-hk": "", - "en": "PVP Rank", - "id": "PVP Rank" - }, - { - "info": "model_desc_5001", - "zh-hk": "", - "en": "Classic", - "id": "Classic" - }, - { - "info": "map_name_50003", - "zh-hk": "", - "en": "Dead Island", - "id": "Dead Island" - }, - { - "info": "item_name_90003", - "zh-hk": "", - "en": "Club Rename Card", - "id": "Club Rename Card" - }, - { - "info": "item_desc_90003", - "zh-hk": "", - "en": "Club Rename Card", - "id": "Club Rename Card" - }, - { - "info": "map_name_2002", - "zh-hk": "", - "en": "Ancient", - "id": "Ancient" - }, - { - "info": "map_desc_2002", - "zh-hk": "", - "en": "Ancient", - "id": "Ancient" - }, - { - "info": "item_name_290001", - "zh-hk": "", - "en": "Purity", - "id": "Purity" - }, - { - "info": "item_desc_290001", - "zh-hk": "", - "en": "Purity", - "id": "Purity" - }, - { - "info": "type_desc_20", - "zh-hk": "", - "en": "Avatar", - "id": "Avatar" - }, - { - "info": "map_desc_2004", - "zh-hk": "", - "en": "Bridge", - "id": "Bridge" - }, - { - "info": "map_name_2004", - "zh-hk": "", - "en": "Bridge", - "id": "Bridge" - }, - { - "info": "hashrate_task_10001", - "zh-hk": "", - "en": "Kill each {0} Enemy={1}1", - "id": "" - }, - { - "info": "hashrate_task_10002", - "zh-hk": "", - "en": "Kill each {0} Enemy={1}2", - "id": "" - }, - { - "info": "hashrate_task_10003", - "zh-hk": "", - "en": "Kill each {0}3", - "id": "" - }, - { - "info": "hashrate_task_10004", - "zh-hk": "", - "en": "Kill each {0} Enemy={1}4", - "id": "" - }, - { - "info": "hashrate_task_10005", - "zh-hk": "", - "en": "Kill each {0} Enemy={1}5", - "id": "" - }, - { - "info": "hashrate_task_10006", - "zh-hk": "", - "en": "Kill each {0} Enemy={1}6", - "id": "" - }, - { - "info": "hashrate_task_10007", - "zh-hk": "", - "en": "Kill each {0} Enemy={1}7", - "id": "" - }, - { - "info": "hashrate_task_10008", - "zh-hk": "", - "en": "Kill each {0} Enemy={2}8", - "id": "" - }, - { - "info": "hashrate_yxjl", - "zh-hk": "", - "en": "{0} left to reward today.", - "id": "" - }, - { - "info": "Diary_name_71011", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71012", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71013", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71014", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71015", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71016", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71017", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71018", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71019", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71020", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71021", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71022", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71023", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71024", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71025", - "zh-hk": "", - "en": "Grenade!", - "id": "" - }, - { - "info": "Diary_name_71026", - "zh-hk": "", - "en": "Incendiary Out!", - "id": "" - }, - { - "info": "Diary_name_71027", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71028", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71029", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71030", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71031", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71032", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71033", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71034", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71035", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71036", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71037", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71038", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71039", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71040", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71041", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71042", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71043", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71044", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71045", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71046", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71047", - "zh-hk": "", - "en": "Hero Training", - "id": "" - }, - { - "info": "Diary_name_71048", - "zh-hk": "", - "en": "Map Master", - "id": "" - }, - { - "info": "Diary_name_71049", - "zh-hk": "", - "en": "Map Master", - "id": "" - }, - { - "info": "Diary_des_71011", - "zh-hk": "", - "en": "Engage in 5 battles with Hill", - "id": "" - }, - { - "info": "Diary_des_71012", - "zh-hk": "", - "en": "Engage in 5 battles with Aoi", - "id": "" - }, - { - "info": "Diary_des_71013", - "zh-hk": "", - "en": "Engage in 5 battles with Astral", - "id": "" - }, - { - "info": "Diary_des_71014", - "zh-hk": "", - "en": "Engage in 5 battles with Miffy", - "id": "" - }, - { - "info": "Diary_des_71015", - "zh-hk": "", - "en": "Engage in 5 battles with Canoe", - "id": "" - }, - { - "info": "Diary_des_71016", - "zh-hk": "", - "en": "Engage in 5 battles with Dragonscale", - "id": "" - }, - { - "info": "Diary_des_71017", - "zh-hk": "", - "en": "Engage in 5 battles with Lazar", - "id": "" - }, - { - "info": "Diary_des_71018", - "zh-hk": "", - "en": "Use Hill's skill 10 times", - "id": "" - }, - { - "info": "Diary_des_71019", - "zh-hk": "", - "en": "Use Aoi's skill 10 times", - "id": "" - }, - { - "info": "Diary_des_71020", - "zh-hk": "", - "en": "Use Astral's skill 10 times", - "id": "" - }, - { - "info": "Diary_des_71021", - "zh-hk": "", - "en": "Use Miffy's skill 10 times", - "id": "" - }, - { - "info": "Diary_des_71022", - "zh-hk": "", - "en": "Use Canoe's skill 10 times", - "id": "" - }, - { - "info": "Diary_des_71023", - "zh-hk": "", - "en": "Use Dragonscale's skill 10 times", - "id": "" - }, - { - "info": "Diary_des_71024", - "zh-hk": "", - "en": "Use Lazar's skill 10 times", - "id": "" - }, - { - "info": "Diary_des_71025", - "zh-hk": "", - "en": "Deploy 10 grenades", - "id": "" - }, - { - "info": "Diary_des_71026", - "zh-hk": "", - "en": "Use 8 incendiaries", - "id": "" - }, - { - "info": "Diary_des_71027", - "zh-hk": "", - "en": "Inflict 8000 damage with Hill", - "id": "" - }, - { - "info": "Diary_des_71028", - "zh-hk": "", - "en": "Inflict 8000 damage with Aoi", - "id": "" - }, - { - "info": "Diary_des_71029", - "zh-hk": "", - "en": "Inflict 8000 damage with Astral", - "id": "" - }, - { - "info": "Diary_des_71030", - "zh-hk": "", - "en": "Inflict 8000 damage with Miffy", - "id": "" - }, - { - "info": "Diary_des_71031", - "zh-hk": "", - "en": "Inflict 8000 damage with Canoe", - "id": "" - }, - { - "info": "Diary_des_71032", - "zh-hk": "", - "en": "Inflict 8000 damage with Dragonscale", - "id": "" - }, - { - "info": "Diary_des_71033", - "zh-hk": "", - "en": "Inflict 8000 damage with Lazar", - "id": "" - }, - { - "info": "Diary_des_71034", - "zh-hk": "", - "en": "Achieve 2 victories with Hill", - "id": "" - }, - { - "info": "Diary_des_71035", - "zh-hk": "", - "en": "Achieve 2 victories with Aoi", - "id": "" - }, - { - "info": "Diary_des_71036", - "zh-hk": "", - "en": "Achieve 2 victories with Astral", - "id": "" - }, - { - "info": "Diary_des_71037", - "zh-hk": "", - "en": "Achieve 2 victories with Miffy", - "id": "" - }, - { - "info": "Diary_des_71038", - "zh-hk": "", - "en": "Achieve 2 victories with Canoe", - "id": "" - }, - { - "info": "Diary_des_71039", - "zh-hk": "", - "en": "Achieve 2 victories with Dragonscale", - "id": "" - }, - { - "info": "Diary_des_71040", - "zh-hk": "", - "en": "Achieve 2 victories with Lazar", - "id": "" - }, - { - "info": "Diary_des_71041", - "zh-hk": "", - "en": "Eliminate 10 enemies with Hill", - "id": "" - }, - { - "info": "Diary_des_71042", - "zh-hk": "", - "en": "Eliminate 10 enemies with Aoi", - "id": "" - }, - { - "info": "Diary_des_71043", - "zh-hk": "", - "en": "Eliminate 10 enemies with Astral", - "id": "" - }, - { - "info": "Diary_des_71044", - "zh-hk": "", - "en": "Eliminate 10 enemies with Miffy", - "id": "" - }, - { - "info": "Diary_des_71045", - "zh-hk": "", - "en": "Eliminate 10 enemies with Canoe", - "id": "" - }, - { - "info": "Diary_des_71046", - "zh-hk": "", - "en": "Eliminate 10 enemies with Dragonscale", - "id": "" - }, - { - "info": "Diary_des_71047", - "zh-hk": "", - "en": "Eliminate 10 enemies with Lazar", - "id": "" - }, - { - "info": "Diary_des_71048", - "zh-hk": "", - "en": "Win 2 times on Death Island", - "id": "" - }, - { - "info": "Diary_des_71049", - "zh-hk": "", - "en": "Win 2 times on Death Ancient", - "id": "" - }, - { - "info": "item_name_240002", - "zh-hk": "", - "en": "Explorer", - "id": "" - }, - { - "info": "item_desc_240002", - "zh-hk": "", - "en": "Explorer", - "id": "" - }, - { - "info": "item_name_260010", - "zh-hk": "", - "en": "Hashrate Crystal", - "id": "" - }, - { - "info": "item_desc_260010", - "zh-hk": "", - "en": "Hashrate Crystal", - "id": "" - }, - { - "info": "model_desc_2007", - "zh-hk": "", - "en": "Arena", - "id": "" - }, - { - "info": "map_name_2007", - "zh-hk": "", - "en": "Arena", - "id": "" - }, - { - "info": "map_desc_2005", - "zh-hk": "", - "en": "Snowland Enchantment", - "id": "" - }, - { - "info": "map_name_2005", - "zh-hk": "", - "en": "Snowland Enchantment", - "id": "" - }, - { - "info": "map_desc_12005", - "zh-hk": "", - "en": "Snowland", - "id": "" - }, - { - "info": "map_name_12005", - "zh-hk": "", - "en": "Snowland", - "id": "" - }, - { - "info": "type_desc_27", - "zh-hk": "", - "en": "Hero Piece", - "id": "Hero Piece" - }, - { - "info": "type_desc_28", - "zh-hk": "", - "en": "Chip Piece", - "id": "Chip Piece" - }, - { - "info": "item_name_10017", - "zh-hk": "", - "en": "Gold card", - "id": "Gold card" - }, - { - "info": "item_name_10018", - "zh-hk": "", - "en": "Black card", - "id": "Black card" - }, - { - "info": "item_desc_10017", - "zh-hk": "", - "en": "Can be redeemed for 10,000 gold coins upon use", - "id": "Gold Coins" - }, - { - "info": "item_desc_10018", - "zh-hk": "", - "en": "Can be redeemed for 100,000 gold coins upon use", - "id": "Gold Brick" - }, - { - "info": "Servertask_des_1", - "zh-hk": "", - "en": "Complete match mission", - "id": "Complete match mission" - }, - { - "info": "Servertask_des_2", - "zh-hk": "", - "en": "Complete kill mission", - "id": "Complete kill mission" - }, - { - "info": "Servertask_des_3", - "zh-hk": "", - "en": "Complete damage mission", - "id": "Complete damage mission" - }, - { - "info": "Servertask_des_4", - "zh-hk": "", - "en": "Complete skill mission", - "id": "Complete skill mission" - }, - { - "info": "JOB_NAME_1", - "zh-hk": "", - "en": "Breaker", - "id": "Breaker" - }, - { - "info": "JOB_NAME_2", - "zh-hk": "", - "en": "Tank", - "id": "Tank" - }, - { - "info": "JOB_NAME_3", - "zh-hk": "", - "en": "Fighter", - "id": "Fighter" - }, - { - "info": "JOB_NAME_4", - "zh-hk": "", - "en": "Medic", - "id": "Medic" - }, - { - "info": "item_name_300001", - "zh-hk": "", - "en": "Mystery Box", - "id": "Mystery Box" - }, - { - "info": "item_name_300002", - "zh-hk": "", - "en": "Mystery Box", - "id": "Mystery Box" - }, - { - "info": "item_name_300003", - "zh-hk": "", - "en": "Mystery Box", - "id": "Mystery Box" - }, - { - "info": "item_name_300004", - "zh-hk": "", - "en": "Mystery Box", - "id": "Mystery Box" - }, - { - "info": "item_name_300005", - "zh-hk": "", - "en": "Mystery Box", - "id": "Mystery Box" - }, - { - "info": "item_desc_300001", - "zh-hk": "", - "en": "Mystery Box", - "id": "Mystery Box" - }, - { - "info": "item_desc_300002", - "zh-hk": "", - "en": "Mystery Box", - "id": "Mystery Box" - }, - { - "info": "item_desc_300003", - "zh-hk": "", - "en": "Mystery Box", - "id": "Mystery Box" - }, - { - "info": "item_desc_300004", - "zh-hk": "", - "en": "Mystery Box", - "id": "Mystery Box" - }, - { - "info": "item_desc_300005", - "zh-hk": "", - "en": "Mystery Box", - "id": "Mystery Box" - }, - { - "info": "type_desc_30", - "zh-hk": "", - "en": "Box", - "id": "Box" - }, - { - "info": "model_name_1002", - "zh-hk": "", - "en": "Custom room", - "id": "Custom room" - }, - { - "info": "Not_Enough_Gold", - "zh-hk": "", - "en": "Not Enough Gold", - "id": "Not Enough Gold" - }, - { - "info": "UI_ITEM_CONFIG_SOUND_1", - "zh-hk": "", - "en": "Charge", - "id": "Charge" - }, - { - "info": "UI_ITEM_CONFIG_SOUND_2", - "zh-hk": "", - "en": "Retreat", - "id": "Retreat" - }, - { - "info": "UI_ITEM_CONFIG_SOUND_3", - "zh-hk": "", - "en": "Assemble", - "id": "Assemble" - }, - { - "info": "GAME_UI_EMOTE_TITLE", - "zh-hk": "", - "en": "Facial movements", - "id": "Facial movements" - }, - { - "info": "GAME_UI_EMOTE_BTN_TYPE", - "zh-hk": "", - "en": "Type", - "id": "Type" - }, - { - "info": "GAME_UI_EMOTE_BTN_TEAM", - "zh-hk": "", - "en": "Team", - "id": "Team" - }, - { - "info": "GAME_UI_EMOTE_BTN_ALL", - "zh-hk": "", - "en": "All", - "id": "All" - }, - { - "info": "UI_TEAM_LABEL_EMPTY", - "zh-hk": "", - "en": "None", - "id": "None" - }, - { - "info": "HERO_LEVEL_ALL", - "zh-hk": "", - "en": "All", - "id": "All" - }, - { - "info": "HERO_LEVEL_Normal", - "zh-hk": "", - "en": "Normal", - "id": "Normal" - }, - { - "info": "HERO_LEVEL_LEVEL_1", - "zh-hk": "", - "en": "Level 1", - "id": "Level 1" - }, - { - "info": "HERO_LEVEL_LEVEL_2", - "zh-hk": "", - "en": "Level 2", - "id": "Level 2" - }, - { - "info": "HERO_LEVEL_LEVEL_3", - "zh-hk": "", - "en": "Level 3", - "id": "Level 3" - }, - { - "info": "HERO_LEVEL_LEVEL_4", - "zh-hk": "", - "en": "Level 4", - "id": "Level 4" - }, - { - "info": "HERO_LEVEL_LEVEL_5", - "zh-hk": "", - "en": "Level 5", - "id": "Level 5" - }, - { - "info": "item_name_900005", - "zh-hk": "", - "en": "Health Potion", - "id": "Health Potion" - }, - { - "info": "item_name_900006", - "zh-hk": "", - "en": "Bounty tickets", - "id": "Bounty tickets" - }, - { - "info": "item_desc_900005", - "zh-hk": "", - "en": "Potions that lock in hero abilities", - "id": "Potions that lock in hero abilities" - }, - { - "info": "item_desc_900006", - "zh-hk": "", - "en": "Admission voucher for the bounty", - "id": "Admission voucher for the bounty" - }, - { - "info": "attribute_name_4", - "zh-hk": "\u8010\u529b", - "en": "Stm", - "id": "Stm" - }, - { - "info": "attribute_name_5", - "zh-hk": "\u8010\u529b\u63d0\u9ad8", - "en": "StmR+", - "id": "StmR+" - }, - { - "info": "attribute_name_6", - "zh-hk": "\u8010\u529b\u589e\u76ca", - "en": "StmR\u00d7", - "id": "StmR\u00d7" - }, - { - "info": "attribute_name_8", - "zh-hk": "\u751f\u547d\u63d0\u9ad8", - "en": "HpR+", - "id": "HpR+" - }, - { - "info": "attribute_name_9", - "zh-hk": "\u751f\u547d\u589e\u76ca", - "en": "HpR\u00d7", - "id": "HpR\u00d7" - }, - { - "info": "attribute_name_12", - "zh-hk": "\u653b\u5f37", - "en": "Atk", - "id": "Atk" - }, - { - "info": "attribute_name_13", - "zh-hk": "\u653b\u5f37\u63d0\u9ad8", - "en": "AtkR+", - "id": "AtkR+" - }, - { - "info": "attribute_name_14", - "zh-hk": "\u653b\u5f37\u589e\u76ca", - "en": "AtkR\u00d7", - "id": "AtkR\u00d7" - }, - { - "info": "attribute_name_16", - "zh-hk": "\u653b\u64ca\u63d0\u9ad8", - "en": "AtkVR+", - "id": "AtkVR+" - }, - { - "info": "attribute_name_17", - "zh-hk": "\u653b\u64ca\u589e\u76ca", - "en": "AtkVR\u00d7", - "id": "AtkVR\u00d7" - }, - { - "info": "attribute_name_20", - "zh-hk": "\u9632\u79a6", - "en": "Def", - "id": "Def" - }, - { - "info": "attribute_name_21", - "zh-hk": "\u9632\u79a6\u63d0\u9ad8", - "en": "DefR+", - "id": "DefR+" - }, - { - "info": "attribute_name_22", - "zh-hk": "\u9632\u79a6\u589e\u76ca", - "en": "DefR\u00d7", - "id": "DefR\u00d7" - }, - { - "info": "attribute_name_25", - "zh-hk": "\u683c\u64cb", - "en": "Blk", - "id": "Blk" - }, - { - "info": "attribute_name_26", - "zh-hk": "\u683c\u64cb\u63d0\u9ad8", - "en": "BlkR+", - "id": "BlkR+" - }, - { - "info": "attribute_name_27", - "zh-hk": "\u683c\u64cb\u589e\u76ca", - "en": "BlkR\u00d7", - "id": "BlkR\u00d7" - }, - { - "info": "attribute_name_32", - "zh-hk": "\u66b4\u64ca", - "en": "Crt", - "id": "Crt" - }, - { - "info": "attribute_name_33", - "zh-hk": "\u66b4\u64ca\u63d0\u9ad8", - "en": "CrtR+", - "id": "CrtR+" - }, - { - "info": "attribute_name_34", - "zh-hk": "\u66b4\u64ca\u589e\u76ca", - "en": "CrtR\u00d7", - "id": "CrtR\u00d7" - }, - { - "info": "attribute_name_37", - "zh-hk": "\u901f\u5ea6", - "en": "Spd", - "id": "Spd" - }, - { - "info": "attribute_name_38", - "zh-hk": "\u6025\u901f", - "en": "Hst", - "id": "Hst" - }, - { - "info": "attribute_name_39", - "zh-hk": "\u5438\u8840", - "en": "Dr", - "id": "Dr" - }, - { - "info": "attribute_name_40", - "zh-hk": "\u97cc\u6027", - "en": "Ten", - "id": "Ten" - }, - { - "info": "attribute_name_41", - "zh-hk": "\u6613\u50b7", - "en": "DmgT", - "id": "DmgT" - }, - { - "info": "attribute_name_42", - "zh-hk": "\u589e\u50b7", - "en": "DmgD", - "id": "DmgD" - }, - { - "info": "attribute_name_43", - "zh-hk": "\u666e\u653b\u6613\u50b7", - "en": "NDmgT", - "id": "NDmgT" - }, - { - "info": "attribute_name_44", - "zh-hk": "\u666e\u653b\u589e\u50b7", - "en": "NDmgD", - "id": "NDmgD" - }, - { - "info": "attribute_name_45", - "zh-hk": "\u6280\u80fd\u6613\u50b7", - "en": "SDmgT", - "id": "SDmgT" - }, - { - "info": "attribute_name_46", - "zh-hk": "\u6280\u80fd\u589e\u50b7", - "en": "SDmgD", - "id": "SDmgD" - }, - { - "info": "attribute_name_47", - "zh-hk": "\u6062\u5fa9", - "en": "Rec", - "id": "Rec" - }, - { - "info": "attribute_name_48", - "zh-hk": "\u6cbb\u7642", - "en": "Heal", - "id": "Heal" - }, - { - "info": "attribute_name_51", - "zh-hk": "\u8ca1\u5bcc", - "en": "Wt", - "id": "Wt" - }, - { - "info": "attribute_name_52", - "zh-hk": "\u8ca1\u5bcc\u63d0\u9ad8", - "en": "WtR+", - "id": "WtR+" - }, - { - "info": "attribute_name_54", - "zh-hk": "\u5e78\u904b", - "en": "Lk", - "id": "Lk" - }, - { - "info": "attribute_name_55", - "zh-hk": "\u5e78\u904b\u63d0\u9ad8", - "en": "LkR+", - "id": "LkR+" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_LABEL_GOLD_LIMIT_COUNT", - "zh-hk": "Daily limit count : {0}/{1}", - "en": "Daily limit count : {0}/{1}", - "id": "Daily limit count : {0}/{1}" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_TITLE_BUY_TICK", - "zh-hk": "Ticket purchase", - "en": "Ticket purchase", - "id": "Ticket purchase" - }, - { - "info": "UI_MAIN_CHOOSE_MODE_BTN_BUY_TICK_PAY", - "zh-hk": "Pay", - "en": "Pay", - "id": "Pay" - }, - { - "info": "model_name_101", - "zh-hk": "", - "en": "Practice", - "id": "Practice" - }, - { - "info": "model_name_201", - "zh-hk": "", - "en": "Gold", - "id": "Gold" - }, - { - "info": "model_name_301", - "zh-hk": "", - "en": "Bounty", - "id": "Bounty" - }, - { - "info": "model_name_401", - "zh-hk": "", - "en": "Rank", - "id": "Rank" - }, - { - "info": "model_name_501", - "zh-hk": "", - "en": "Event", - "id": "Event" - }, - { - "info": "model_name_901", - "zh-hk": "", - "en": "Custom", - "id": "Custom" - }, - { - "info": "UI_TEAM_LABEL_NO_PROFIT", - "zh-hk": "no earnings", - "en": "no earnings", - "id": "no earnings" - }, - { - "info": "UI_TEAM_LABEL_NO_TICKET", - "zh-hk": "No Ticket", - "en": "No Ticket", - "id": "No Ticket" - }, - { - "info": "UI_TEAM_LABEL_GOLD_LIMIT_COUNT", - "zh-hk": "[161d31]Daily earnings time [2dff2d]{0}[161d31]/{1}", - "en": "[161d31]Daily earnings time [2dff2d]{0}[161d31]/{1}", - "id": "[161d31]Daily earnings time [2dff2d]{0}[161d31]/{1}" - }, - { - "info": "UI_TEAM_LABEL_MODE_NAME", - "zh-hk": "mode: [FFED51]{0}", - "en": "mode: [FFED51]{0}", - "id": "mode: [FFED51]{0}" - }, - { - "info": "practice_tips", - "zh-hk": "", - "en": "Free battle practice arena, no rewards", - "id": "Free battle practice arena, no rewards" - }, - { - "info": "gold_tips", - "zh-hk": "Using heroes with gold farming days can earn gold coins", - "en": "Using heroes with gold farming days can earn gold coins", - "id": "Using heroes with gold farming days can earn gold coins" - }, - { - "info": "bounty_tips", - "zh-hk": "Entry requires one ticket. Victory earns generous rewards", - "en": "Entry requires one ticket. Victory earns generous rewards", - "id": "Entry requires one ticket. Victory earns generous rewards" - }, - { - "info": "rank_tips", - "zh-hk": "Win matches to advance your rank and earn generous rewards", - "en": "Win matches to advance your rank and earn generous rewards", - "id": "Win matches to advance your rank and earn generous rewards" - }, - { - "info": "event_tips", - "zh-hk": "", - "en": "In the limited-time chest event, the higher the total luck value, the more likely to win big prizes", - "id": "In the limited-time chest event, the higher the total luck value, the more likely to win big prizes" - }, - { - "info": "UI_TEAM_INVITED_TIPS_BTN_ACCEPTED", - "zh-hk": "Accepted", - "en": "Accepted", - "id": "Accepted" - }, - { - "info": "UI_TEAM_INVITED_TIPS_LABEL_YOU_ARE_INVITED", - "zh-hk": "You are invited to team up", - "en": "You are invited to team up", - "id": "You are invited to team up" - }, - { - "info": "UI_TEAM_INVITED_TIPS_BTN_REFUSED", - "zh-hk": "Refused {0}s", - "en": "Refused {0}s", - "id": "Refused {0}s" - }, - { - "info": "UI_MAIN_WORLD_EVENT_BTN_GO", - "zh-hk": "go", - "en": "go", - "id": "go" - }, - { - "info": "UI_MAIN_WORLD_EVENT_TIP", - "zh-hk": "[94a5e5]introduction:[bbbdd8] All players on the server, during the mission period, completing all tasks will trigger the opening of the chest map. In the chest map, completing matches gives a chance to obtain chest rewards.", - "en": "[94a5e5]introduction:[bbbdd8] All players on the server, during the mission period, completing all tasks will trigger the opening of the chest map. In the chest map, completing matches gives a chance to obtain chest rewards.", - "id": "[94a5e5]introduction:[bbbdd8] All players on the server, during the mission period, completing all tasks will trigger the opening of the chest map. In the chest map, completing matches gives a chance to obtain chest rewards." - }, - { - "info": "Gold_farming_time_tips", - "zh-hk": "The duration for earning gold in the gold mode can be extended using potions", - "en": "The duration for earning gold in the gold mode can be extended using potions", - "id": "The duration for earning gold in the gold mode can be extended using potions" - }, - { - "info": "Wealth_points_tips", - "zh-hk": "The coefficient affecting gold earnings", - "en": "The coefficient affecting gold earnings", - "id": "The coefficient affecting gold earnings" - }, - { - "info": "Luck_value_tips", - "zh-hk": "The luck value affecting reward drops", - "en": "The luck value affecting reward drops", - "id": "The luck value affecting reward drops" - }, - { - "info": "Time_restore_tittle", - "zh-hk": "Time Restore", - "en": "Time Restore", - "id": "Time Restore" - }, - { - "info": "Encapsulated_potion_tips", - "zh-hk": "Max", - "en": "Max", - "id": "Max" - }, - { - "info": "COMMON_REDDOT_LABEL_NEW", - "zh-hk": "NEW", - "en": "NEW", - "id": "NEW" - }, - { - "info": "Lock_hero_confirm", - "zh-hk": "After unlocking, the gold farming time will start to decrease. Do you want to continue?", - "en": "After unlocking, the gold farming time will start to decrease. Do you want to continue?", - "id": "After unlocking, the gold farming time will start to decrease. Do you want to continue?" - }, - { - "info": "Lock_hero_tips", - "zh-hk": "After locking a hero, you can list it on the Marketplace. While locked, the hero cannot be used, the gold farming days will be reset to the maximum value and frozen, and wealth points and luck value will temporarily become ineffective until unlocked", - "en": "After locking a hero, you can list it on the Marketplace. While locked, the hero cannot be used, the gold farming days will be reset to the maximum value and frozen, and wealth points and luck value will temporarily become ineffective until unlocked", - "id": "After locking a hero, you can list it on the Marketplace. While locked, the hero cannot be used, the gold farming days will be reset to the maximum value and frozen, and wealth points and luck value will temporarily become ineffective until unlocked" - }, - { - "info": "Lock_hero", - "zh-hk": "Lock Hero", - "en": "Lock Hero", - "id": "Lock Hero" - }, - { - "info": "hero_active_skill", - "zh-hk": "Skill 1", - "en": "Skill 1", - "id": "Skill 1" - }, - { - "info": "hill_active_skill_desc", - "zh-hk": "Phase One: Teleport to designated location and gain increased movement speed\\nPhase Two: Return to the starting position of Phase One", - "en": "Phase One: Teleport to designated location and gain increased movement speed\\nPhase Two: Return to the starting position of Phase One", - "id": "Phase One: Teleport to designated location and gain increased movement speed\\nPhase Two: Return to the starting position of Phase One" - }, - { - "info": "yamata_active_skill_desc", - "zh-hk": "Phase One: Charge up and shoot a blast that pierces through the entire screen\\nPhase Two: Randomly shoot energy blasts within the area, dealing damage", - "en": "Phase One: Charge up and shoot a blast that pierces through the entire screen\\nPhase Two: Randomly shoot energy blasts within the area, dealing damage", - "id": "Phase One: Charge up and shoot a blast that pierces through the entire screen\\nPhase Two: Randomly shoot energy blasts within the area, dealing damage" - }, - { - "info": "aoi_active_skill_desc", - "zh-hk": "Phase One: Self-speed boost \\nPhase Two: Summon a magic circle, doubling damage for allies within range. Enemies within the circle are disarmed and unable to shoot\\nPhase Three: Allies within the summoned magic circle gain a damage-blocking shield", - "en": "Phase One: Self-speed boost \\nPhase Two: Summon a magic circle, doubling damage for allies within range. Enemies within the circle are disarmed and unable to shoot\\nPhase Three: Allies within the summoned magic circle gain a damage-blocking shield", - "id": "Phase One: Self-speed boost \\nPhase Two: Summon a magic circle, doubling damage for allies within range. Enemies within the circle are disarmed and unable to shoot\\nPhase Three: Allies within the summoned magic circle gain a damage-blocking shield" - }, - { - "info": "astral_active_skill_desc", - "zh-hk": "Phase One: Throw out a grappling hook. If it hooks an enemy, it pulls the enemy towards you. If it hooks a teammate, it pulls them towards you. If it hooks an obstacle, it pulls you towards the obstacle\\nPhase Two: After use, deals damage and stuns enemies within the area", - "en": "Phase One: Throw out a grappling hook. If it hooks an enemy, it pulls the enemy towards you. If it hooks a teammate, it pulls them towards you. If it hooks an obstacle, it pulls you towards the obstacle\\nPhase Two: After use, deals damage and stuns enemies within the area", - "id": "Phase One: Throw out a grappling hook. If it hooks an enemy, it pulls the enemy towards you. If it hooks a teammate, it pulls them towards you. If it hooks an obstacle, it pulls you towards the obstacle\\nPhase Two: After use, deals damage and stuns enemies within the area" - }, - { - "info": "miffy_active_skill_desc", - "zh-hk": "Enter stealth mode, gain increased movement speed", - "en": "Enter stealth mode, gain increased movement speed", - "id": "Enter stealth mode, gain increased movement speed" - }, - { - "info": "canoe_active_skill_desc", - "zh-hk": "Phase One: Summon lightning, causing area-of-effect damage and becoming invulnerable while in the air\\nPhase Two: Rapid descent. Allies within range, including yourself, gain a buff that grants acceleration and stun immunity", - "en": "Phase One: Summon lightning, causing area-of-effect damage and becoming invulnerable while in the air\\nPhase Two: Rapid descent. Allies within range, including yourself, gain a buff that grants acceleration and stun immunity", - "id": "Phase One: Summon lightning, causing area-of-effect damage and becoming invulnerable while in the air\\nPhase Two: Rapid descent. Allies within range, including yourself, gain a buff that grants acceleration and stun immunity" - }, - { - "info": "mariana_active_skill_desc", - "zh-hk": "Phase One: Teleport to a designated location, unleash a wide-range spinning barrage. Can move while barraging \\nPhase Two:After use, return to the initial position of Phase Two", - "en": "Phase One: Teleport to a designated location, unleash a wide-range spinning barrage. Can move while barraging \\nPhase Two:After use, return to the initial position of Phase Two", - "id": "Phase One: Teleport to a designated location, unleash a wide-range spinning barrage. Can move while barraging \\nPhase Two:After use, return to the initial position of Phase Two" - }, - { - "info": "dragonscale_active_skill_desc", - "zh-hk": "Summon a mechanical turret for area attacks, gain a shield to absorb damage, and increase size for a duration", - "en": "Summon a mechanical turret for area attacks, gain a shield to absorb damage, and increase size for a duration", - "id": "Summon a mechanical turret for area attacks, gain a shield to absorb damage, and increase size for a duration" - }, - { - "info": "lazar_active_skill_desc", - "zh-hk": "Phase One: Charge forward in a specified direction. Enemies hit will be knocked back and stunned for a period of time\\nPhase Two: Summon a war bear in place, causing nearby enemies to be stunned", - "en": "Phase One: Charge forward in a specified direction. Enemies hit will be knocked back and stunned for a period of time\\nPhase Two: Summon a war bear in place, causing nearby enemies to be stunned", - "id": "Phase One: Charge forward in a specified direction. Enemies hit will be knocked back and stunned for a period of time\\nPhase Two: Summon a war bear in place, causing nearby enemies to be stunned" - }, - { - "info": "kurosawa_active_skill_desc", - "zh-hk": "Phase One: Raise an energy shield that can block damage from frontal attacks for a certain duration\\nPhase Two: Summon a war bull. Use brute force in front of the shield to stun enemy units", - "en": "Phase One: Raise an energy shield that can block damage from frontal attacks for a certain duration\\nPhase Two: Summon a war bull. Use brute force in front of the shield to stun enemy units", - "id": "Phase One: Raise an energy shield that can block damage from frontal attacks for a certain duration\\nPhase Two: Summon a war bull. Use brute force in front of the shield to stun enemy units" - }, - { - "info": "hero_passive_skill", - "zh-hk": "Passive", - "en": "Passive", - "id": "Passive" - }, - { - "info": "NO_ITEM", - "zh-hk": "NO ITEMS", - "en": "NO ITEMS", - "id": "NO ITEMS" - }, - { - "info": "NO_RECORDS", - "zh-hk": "NO RECORDS", - "en": "NO RECORDS", - "id": "NO RECORDS" - }, - { - "info": "item_des_31002", - "zh-hk": "Restores some health after picking up", - "en": "Restores some health after picking up", - "id": "Restores some health after picking up" - }, - { - "info": "Buy_potion_tips", - "zh-hk": "Buy Now", - "en": "Buy Now", - "id": "Buy Now" - }, - { - "info": "email_log_error_1", - "zh-hk": "Invalid email , Please re-enter", - "en": "Invalid email , Please re-enter", - "id": "Invalid email , Please re-enter" - }, - { - "info": "code_text_1", - "zh-hk": "Use this code on the Wheel of Fortune website to link your game account", - "en": "Use this code on the Wheel of Fortune website to link your game account", - "id": "Use this code on the Wheel of Fortune website to link your game account" - }, - { - "info": "code_text_2", - "zh-hk": "Learn more: treasure.counterfire.games", - "en": "Learn more: treasure.counterfire.games", - "id": "Learn more: treasure.counterfire.games" - }, - { - "info": "hashrate_tips_1", - "zh-hk": "1.The hashrate is divided into two phases: tasks and rewards.\\n\\n\\n\n2.Task phase: You can earn hashrate points by completing tasks.\\n\\n\\n\n3.Reward phase: The number of hashrate points you have will additionally increase the gold coins earned from matches.\\n\\n\\n\n", - "en": "1.The hashrate is divided into two phases: tasks and rewards.\\n\\n\\n\n2.Task phase: You can earn hashrate points by completing tasks.\\n\\n\\n\n3.Reward phase: The number of hashrate points you have will additionally increase the gold coins earned from matches.\\n\\n\\n\n", - "id": "1.The hashrate is divided into two phases: tasks and rewards.\\n\\n\\n\n2.Task phase: You can earn hashrate points by completing tasks.\\n\\n\\n\n3.Reward phase: The number of hashrate points you have will additionally increase the gold coins earned from matches.\\n\\n\\n\n" - }, - { - "info": "team_lack_time_tips_1", - "zh-hk": "Insufficient gold farming days", - "en": "Insufficient gold farming days", - "id": "Insufficient gold farming days" - }, - { - "info": "team_lack_time_tips_2", - "zh-hk": "Insufficient gold earnings attempts", - "en": "Insufficient gold earnings attempts", - "id": "Insufficient gold earnings attempts" - }, - { - "info": "team_lack_time_tips_3", - "zh-hk": "The remaining gold farming time for the deployed hero is insufficient and will not produce gold earnings. Continue the battle?", - "en": "The remaining gold farming time for the deployed hero is insufficient and will not produce gold earnings. Continue the battle?", - "id": "The remaining gold farming time for the deployed hero is insufficient and will not produce gold earnings. Continue the battle?" - }, - { - "info": "team_lack_time_tips_4", - "zh-hk": "Today's gold earnings have reached the limit and will not produce additional gold. Continue the battle?", - "en": "Today's gold earnings have reached the limit and will not produce additional gold. Continue the battle?", - "id": "Today's gold earnings have reached the limit and will not produce additional gold. Continue the battle?" - }, - { - "info": "UI_BALANCE_RANKCHANGE_BTN_CONTINUE", - "zh-hk": "Continue", - "en": "Continue", - "id": "Continue" - }, - { - "info": "UI_BALANCE_MOBA_OVER_LABEL_MY_TEAM", - "zh-hk": "/MY TEAM", - "en": "/MY TEAM", - "id": "/MY TEAM" - }, - { - "info": "UI_BALANCE_MOBA_OVER_LABEL_OPPONENTS", - "zh-hk": "OPPONENTS/", - "en": "OPPONENTS/", - "id": "OPPONENTS/" - }, - { - "info": "UI_BALANCE_MOBA_OVER_LABEL_KILL", - "zh-hk": "Kill", - "en": "Kill", - "id": "Kill" - }, - { - "info": "UI_BALANCE_MOBA_OVER_LABEL_DEAD", - "zh-hk": "Dead", - "en": "Dead", - "id": "Dead" - }, - { - "info": "UI_BALANCE_MOBA_OVER_LABEL_ASSIST", - "zh-hk": "Assist", - "en": "Assist", - "id": "Assist" - }, - { - "info": "UI_BALANCE_MOBA_OVER_LABEL_SCORE", - "zh-hk": "Score", - "en": "Score", - "id": "Score" - }, - { - "info": "UI_BALANCE_PERSONAL_REWARD_BTN_CONTINUE", - "zh-hk": "Continue", - "en": "Continue", - "id": "Continue" - }, - { - "info": "UI_BALANCE_PERSONAL_REWARD_LABEL_TITLE", - "zh-hk": "TITLE", - "en": "TITLE", - "id": "TITLE" - }, - { - "info": "UI_BALANCE_PERSONAL_REWARD_LABEL_GOLD_COINS", - "zh-hk": "Gold coins", - "en": "Gold coins", - "id": "Gold coins" - }, - { - "info": "UI_BALANCE_PERSONAL_REWARD_LABEL_TOTAL", - "zh-hk": "Total :", - "en": "Total :", - "id": "Total :" - }, - { - "info": "UI_BALANCE_PERSONAL_REWARD_LABEL_THE_REWARD_FALLS", - "zh-hk": "The reward falls", - "en": "The reward falls", - "id": "The reward falls" - }, - { - "info": "UI_BALANCE_PERSONAL_REWARD_LABEL_NO_REWARD", - "zh-hk": "No reward", - "en": "No reward", - "id": "No reward" - }, - { - "info": "item_name_70008", - "zh-hk": "Dual pistols", - "en": "Dual pistols", - "id": "Dual pistols" - }, - { - "info": "item_name_70009", - "zh-hk": "Grenade launcher", - "en": "Grenade launcher", - "id": "Grenade launcher" - }, - { - "info": "item_name_70010", - "zh-hk": "Railgun", - "en": "Railgun", - "id": "Railgun" - }, - { - "info": "item_desc_70008", - "zh-hk": "Fast and versatile, dual pistols allow for rapid fire and quick takedowns at close to medium range.", - "en": "Fast and versatile, dual pistols allow for rapid fire and quick takedowns at close to medium range.", - "id": "Fast and versatile, dual pistols allow for rapid fire and quick takedowns at close to medium range." - }, - { - "info": "item_desc_70009", - "zh-hk": "The grenade launcher excels in dealing area-of-effect damage, perfect for clearing groups of enemies or fortified positions.", - "en": "The grenade launcher excels in dealing area-of-effect damage, perfect for clearing groups of enemies or fortified positions.", - "id": "The grenade launcher excels in dealing area-of-effect damage, perfect for clearing groups of enemies or fortified positions." - }, - { - "info": "item_desc_70010", - "zh-hk": "The railgun fires high-velocity projectiles with immense power, capable of penetrating armor and dealing massive damage from long distances.", - "en": "The railgun fires high-velocity projectiles with immense power, capable of penetrating armor and dealing massive damage from long distances.", - "id": "The railgun fires high-velocity projectiles with immense power, capable of penetrating armor and dealing massive damage from long distances." - }, - { - "info": "UI_BALANCE_MOBA_OVER_TIPS_FRIEDN_REQUEST_SENDED", - "zh-hk": "Sended", - "en": "Sended", - "id": "Sended" - }, - { - "info": "UI_BALANCE_REWARD_CTRL_GOLD_DETAIL_NAME_baseValue", - "zh-hk": "base", - "en": "base", - "id": "base" - }, - { - "info": "UI_BALANCE_REWARD_CTRL_GOLD_DETAIL_NAME_wealthValue", - "zh-hk": "wealth", - "en": "wealth", - "id": "wealth" - }, - { - "info": "UI_BALANCE_REWARD_CTRL_GOLD_DETAIL_NAME_hashRateValue", - "zh-hk": "hash rate", - "en": "hash rate", - "id": "hash rate" - } -] \ No newline at end of file diff --git a/bin/payserver/res/recharge@recharge.json b/bin/payserver/res/recharge@recharge.json deleted file mode 100644 index 995e56a..0000000 --- a/bin/payserver/res/recharge@recharge.json +++ /dev/null @@ -1,42 +0,0 @@ -[ - { - "id": 1001, - "diamond": 600, - "present_diamond": 66, - "price": 6, - "can_email_buy": 0, - "max_buy_times": 1 - }, - { - "id": 1002, - "diamond": 6800, - "present_diamond": 1200, - "price": 68, - "can_email_buy": 0, - "max_buy_times": 1 - }, - { - "id": 1003, - "diamond": 16800, - "present_diamond": 3200, - "price": 168, - "can_email_buy": 0, - "max_buy_times": 1 - }, - { - "id": 1004, - "diamond": 26800, - "present_diamond": 6200, - "price": 268, - "can_email_buy": 0, - "max_buy_times": 1 - }, - { - "id": 1006, - "diamond": 100, - "present_diamond": 0, - "price": 1, - "can_email_buy": 1, - "max_buy_times": 9999 - } -] diff --git a/bin/payserver/res/stakingVip@stakingVip.json b/bin/payserver/res/stakingVip@stakingVip.json deleted file mode 120000 index 2787154..0000000 --- a/bin/payserver/res/stakingVip@stakingVip.json +++ /dev/null @@ -1 +0,0 @@ -../../light_backtask/res/stakingVip@stakingVip.json \ No newline at end of file diff --git a/bin/payserver/res/wxconfig@wxconfig.json b/bin/payserver/res/wxconfig@wxconfig.json new file mode 100644 index 0000000..5d1e201 --- /dev/null +++ b/bin/payserver/res/wxconfig@wxconfig.json @@ -0,0 +1,16 @@ +[ + { + "gameid": "1004", + "appid": "wx1e89277247304160", + "appkey": "CBP5uFcZP0S2PlcgkBTHxfZEXJft9wMK", + "zoneid": "1", + "offerid": "1450310463" + }, + { + "gameid": "2004", + "appid": "wx327f44630205dcd2", + "appkey": "CrIjLw1wiExEnNBVqBQqWGMy0yToREC7", + "zoneid": "1", + "offerid": "1450318181" + } +] diff --git a/server/payserver/api/v1/activity/bitget.go b/server/payserver/api/v1/activity/bitget.go deleted file mode 100644 index e7a1f07..0000000 --- a/server/payserver/api/v1/activity/bitget.go +++ /dev/null @@ -1,61 +0,0 @@ -package activity - -import ( - "f5" - "fmt" - "main/constant" - "main/service" - "q5" - "strings" - - "github.com/gin-gonic/gin" -) - -type BitGetApi struct { -} - -func (this *BitGetApi) NewUserMission(c *gin.Context) { - email := strings.ToLower(c.DefaultQuery("email", "")) - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - CP string `json:"contributionPoint"` - Missions []struct { - MissionId int32 `json:"mission_id"` - Current int32 `json:"current"` - Target int32 `json:"target"` - } `json:"missions"` - }{} - q5.NewSlice(&rspObj.Missions, 0, 10) - p := q5.NewSliceElement(&rspObj.Missions) - p.MissionId = 1 - p.Target = 5 - - if email != "" { - mycp, accountid, _ := service.Contribution.GetEmailContributionAccountid(email) - rspObj.CP = fmt.Sprintf("%.2f", mycp) - - if accountid != "" { - sql := `SELECT count(idx) FROM t_battle_settlement_single WHERE idx > 0 AND account_id = ?` - f5.GetGoStyleDb().RawQuery( - constant.GAME_DB, - sql, - []string{accountid}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - p.Current = q5.SafeToInt32(ds.GetByIndex(0)) - if p.Current > p.Target { - p.Current = p.Target - } - - } - }) - } - } - - c.JSON(200, rspObj) -} diff --git a/server/payserver/api/v1/activity/contribution.go b/server/payserver/api/v1/activity/contribution.go deleted file mode 100644 index d78f856..0000000 --- a/server/payserver/api/v1/activity/contribution.go +++ /dev/null @@ -1,148 +0,0 @@ -package activity - -import ( - "f5" - "fmt" - "main/constant" - "main/service" - "q5" - "strings" - - "github.com/gin-gonic/gin" -) - -type ContriApi struct { -} - -func (cta *ContriApi) HistoryQuery(c *gin.Context) { - account := strings.ToLower(c.Param("account_address")) - if account == "" { - f5.RspErr(c, 2, "empty account") - return - } - - type info struct { - Type int32 `json:"type"` - Time int32 `json:"give_time"` - CP string `json:"contribution_point"` - } - - rspObj := struct { - Errcode int32 `json:"errcode"` - Msg int32 `json:"errmsg"` - CP string `json:"contributionPoint"` - Rows []*info `json:"rows"` - }{} - - mycp, _ := service.Contribution.GetAddressContribution(account, false) - rspObj.CP = fmt.Sprintf("%.2f", mycp) - q5.NewSlice(&rspObj.Rows, 0, 10) - - if mycp > 0.000001 { - sql := `SELECT * FROM t_staking_daily_settlement WHERE idx > 0 and account_address = ?` - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - []string{account}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - for ds.Next() { - p := new(info) - p.Type = 1 - p.Time = q5.SafeToInt32(ds.GetByName("settle_date")) - p.CP = fmt.Sprintf("%.2f", q5.ToFloat64(ds.GetByName("contribution"))) - q5.AppendSlice(&rspObj.Rows, p) - } - }) - - { - loweremail, accountid := service.Contribution.GetEmailAccountId(account) - if accountid != "" { - sql = `SELECT * FROM t_contribution_history WHERE idx > 0 AND account_id = ?` - f5.GetGoStyleDb().RawQuery( - constant.GAME_DB, - sql, - []string{accountid}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - for ds.Next() { - p := new(info) - p.Type = 2 - p.Time = q5.SafeToInt32(ds.GetByName("createtime")) - p.CP = fmt.Sprintf("%.2f", q5.ToFloat64(ds.GetByName("contribution"))) - q5.AppendSlice(&rspObj.Rows, p) - } - }) - } - - sql = `SELECT * FROM t_recharge_return_contribution WHERE idx > 0 AND user_identity IN (?` - - params := []string{account} - if loweremail != "" { - sql += ", ?" - params = append(params, loweremail) - } - sql += ")" - - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - params, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - for ds.Next() { - p := new(info) - p.Type = 3 - p.Time = q5.SafeToInt32(ds.GetByName("pay_time")) - p.CP = fmt.Sprintf("%.2f", q5.ToFloat64(ds.GetByName("return_contribution"))) - q5.AppendSlice(&rspObj.Rows, p) - } - }) - } - } - - q5.Sort(rspObj.Rows, func(a *info, b *info) bool { - return a.Time > b.Time - }) - - c.JSON(200, rspObj) -} - -func (cta *ContriApi) CECQuery(c *gin.Context) { - account := strings.ToLower(c.Param("account_address")) - if account == "" { - f5.RspErr(c, 2, "empty account") - return - } - - rspObj := struct { - Errcode int32 `json:"errcode"` - Msg int32 `json:"errmsg"` - CP string `json:"contributionPoint"` - Info struct { - MyCP string `json:"my_contribution"` - GCP string `json:"global_contribution"` - GCEC int64 `json:"total_cec_pool"` - MyCEC int64 `json:"my_expected_cec"` - } `json:"info"` - }{} - - mycp, _ := service.Contribution.GetAddressContribution(account, false) - totalgcp, _ := service.Contribution.GetGlobalContribution(false) - rspObj.CP = fmt.Sprintf("%.2f", mycp) - rspObj.Info.MyCP = rspObj.CP - rspObj.Info.GCP = fmt.Sprintf("%.2f", totalgcp) - rspObj.Info.GCEC = 500000 - rspObj.Info.MyCEC = q5.SafeToInt64(float64(rspObj.Info.GCEC) * (mycp) / totalgcp) - - c.JSON(200, rspObj) -} diff --git a/server/payserver/api/v1/activity/enter.go b/server/payserver/api/v1/activity/enter.go deleted file mode 100644 index 09f097d..0000000 --- a/server/payserver/api/v1/activity/enter.go +++ /dev/null @@ -1,6 +0,0 @@ -package activity - -type ApiGroup struct { - BitGetApi - ContriApi -} diff --git a/server/payserver/api/v1/asset/asset.go b/server/payserver/api/v1/asset/asset.go deleted file mode 100644 index 8c6244c..0000000 --- a/server/payserver/api/v1/asset/asset.go +++ /dev/null @@ -1,105 +0,0 @@ -package asset - -import ( - "f5" - "fmt" - "jccommon" - "main/common" - "main/constant" - . "main/global" - "main/mt" - "q5" - "strings" - - "github.com/gin-gonic/gin" -) - -type AssetApi struct { -} - -/* -filterType: 0:全部 1:已上架 2:未上架 3:质押中 -*/ -func (this *AssetApi) AccountAsset(c *gin.Context) { - - c.JSON(200, nil) -} - -func (this *AssetApi) Listing(c *gin.Context) { - pageSize := q5.AdjustRangeValue(q5.ToInt32(c.DefaultQuery("page_size", "")), 1, 20) - cursor := q5.ToInt64(c.DefaultQuery("cursor", "")) - netId := q5.ToInt64(c.Param("net_id")) - accountAddress := strings.ToLower(c.Param("account_address")) - searchName := c.DefaultQuery("search_name", "") - sql := fmt.Sprintf(` -SELECT * FROM t_order WHERE net_id = %d AND status = "%s" AND seller_address=?`, - netId, - jccommon.ORDER_STATUS_ACTIVE) - params := []string{accountAddress} - subFilters := []f5.DbQueryFilter{} - { - itemIds := map[int32]int32{} - if searchName != "" { - mt.Table.Item.Search(searchName, itemIds) - } - if len(itemIds) > 0 { - inSub := `item_id IN (` - i := 0 - for key, _ := range itemIds { - if i == 0 { - inSub += q5.ToString(key) - } else { - inSub += "," + q5.ToString(key) - } - i += 1 - } - inSub += ")" - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom(inSub).And()) - } - } - orderBy := "" - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Page common.StreamPagination `json:"page"` - Rows []struct { - Event interface{} `json:"event"` - Nft interface{} `json:"nft"` - InShopCart int32 `json:"in_shopcart"` - Price string `json:"price"` - } `json:"rows"` - }{} - nfts := []*common.NftDto{} - f5.GetGoStyleDb().StreamPageQuery( - constant.BCNFT_DB, - pageSize, - cursor, - sql, - params, - f5.GetDbFilter().Comp(subFilters...), - orderBy, - func(err error, pagination *f5.StreamPagination) { - rspObj.Page.FillPage(pagination) - }, - func(ds *f5.DataSet) { - p := new(common.NftDto) - p.NetId = q5.ToInt32(ds.GetByName("net_id")) - p.ContractAddress = ds.GetByName("contract_address") - p.TokenId = ds.GetByName("token_id") - q5.DecodeJson(ds.GetByName("event_data"), &p.Payload) - q5.AppendSlice(&nfts, p) - }) - GetCacheMgr().GetNfts(nfts) - { - for _, val := range nfts { - p := q5.NewSliceElement(&rspObj.Rows) - p.Event = val.Payload - p.Nft = val.NftCache.GetJsonData() - /* - if cartDb != nil && cartDb.GetGoods(val.NetId, val.ContractAddress, val.TokenId) != nil{ - p.InShopCart = 1 - }*/ - } - } - c.JSON(200, rspObj) -} diff --git a/server/payserver/api/v1/asset/enter.go b/server/payserver/api/v1/asset/enter.go deleted file mode 100644 index 98329ef..0000000 --- a/server/payserver/api/v1/asset/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package asset - -type ApiGroup struct { - AssetApi -} diff --git a/server/payserver/api/v1/enter.go b/server/payserver/api/v1/enter.go index 11bce58..92a8b12 100644 --- a/server/payserver/api/v1/enter.go +++ b/server/payserver/api/v1/enter.go @@ -1,33 +1,11 @@ package v1 import ( - "main/api/v1/activity" - "main/api/v1/asset" - "main/api/v1/event" - "main/api/v1/game_switch" - "main/api/v1/gold_bullion" - "main/api/v1/hero" "main/api/v1/ingame" - "main/api/v1/market" - "main/api/v1/recharge" - "main/api/v1/shopcart" - "main/api/v1/user" - "main/api/v1/vip" ) -type ApiGroup struct { - MarketApiGroup market.ApiGroup - AssetApiGroup asset.ApiGroup - HeroApiGroup hero.ApiGroup - GoldBullionApiGroup gold_bullion.ApiGroup - ShopCartApiGroup shopcart.ApiGroup +type ApiGroup struct { InGameApiGroup ingame.ApiGroup - UserApiGroup user.ApiGroup - ActivityApiGroup activity.ApiGroup - EventApiGroup event.ApiGroup - RechargeApiGroup recharge.ApiGroup - SwitchApiGroup game_switch.ApiGroup - VIPApiGroup vip.ApiGroup } var ApiGroupApp = new(ApiGroup) diff --git a/server/payserver/api/v1/event/enter.go b/server/payserver/api/v1/event/enter.go deleted file mode 100644 index 5124f6f..0000000 --- a/server/payserver/api/v1/event/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package event - -type ApiGroup struct { - EventApi -} diff --git a/server/payserver/api/v1/event/event.go b/server/payserver/api/v1/event/event.go deleted file mode 100644 index 5b7b82a..0000000 --- a/server/payserver/api/v1/event/event.go +++ /dev/null @@ -1,198 +0,0 @@ -package event - -import ( - "f5" - "fmt" - "main/common" - "main/constant" - - . "main/global" - "main/mt" - "net/http" - "q5" - "strings" - - "github.com/gin-gonic/gin" -) - -type EventApi struct { -} - -var EVENTYPE = map[string]int32{ - "mint": 1, - "lock": 2, - "unlock": 3, -} - -func (ea *EventApi) TxQuery(c *gin.Context) { - netid := q5.SafeToInt32(c.Param("net_id")) - txhash := strings.ToLower(c.Param("txhash")) - - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Confirmed int32 `json:"confirmed"` - }{} - - { - sql := fmt.Sprintf(`SELECT idx FROM t_blockchain_event WHERE idx > 0 AND txhash = ? AND net_id = %d`, netid) - params := []string{ - txhash, - } - f5.GetGoStyleDb().RawQuery( - constant.PAY_DB, - sql, - params, - func(err error, ds *f5.DataSet) { - if err != nil { - c.JSON(200, rspObj) - return - } - - if ds != nil { - rspObj.Confirmed = 1 - } - - c.JSON(200, rspObj) - }) - } -} - -func (ea *EventApi) ActivityQuery(c *gin.Context) { - account := strings.ToLower(c.Param("account_address")) - reqJson := struct { - PageSize interface{} `json:"page_size"` - Cursor interface{} `json:"cursor"` - Search struct { - Name string `json:"name"` - } `json:"search"` - Filter struct { - ItemIds []interface{} `json:"item_ids"` - } `json:"filter"` - Sort struct { - Fields []struct { - Name string `json:"name"` - Type interface{} `json:"type"` - } `json:"fields"` - } `json:"sort"` - }{} - if err := c.ShouldBindJSON(&reqJson); err != nil { - c.JSON(http.StatusOK, gin.H{ - "errcode": 1, - "errmsg": err.Error(), - }) - return - } - - pageSize := q5.AdjustRangeValue(q5.SafeToInt32(reqJson.PageSize), 1, 20) - cursor := q5.SafeToInt64(reqJson.Cursor) - - sql := fmt.Sprintf(` - SELECT * FROM t_chain_activity - WHERE idx > %d AND (sender_address = ? OR to_address = ?) `, - cursor) - - params := []string{account, account} - subFilters := []f5.DbQueryFilter{} - - { - itemIds := map[int32]int32{} - if reqJson.Search.Name != "" { - mt.Table.Item.Search(reqJson.Search.Name, itemIds) - } - for _, val := range reqJson.Filter.ItemIds { - itemId := q5.SafeToInt32(val) - itemIds[itemId] = 1 - } - if len(itemIds) > 0 { - inSub := `item_id IN (` - i := 0 - for key, _ := range itemIds { - if i == 0 { - inSub += q5.ToString(key) - } else { - inSub += "," + q5.ToString(key) - } - i += 1 - } - inSub += ")" - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom(inSub).And()) - } - } - orderBy := " ORDER BY createtime DESC " - // { - // for _, val := range reqJson.Sort.Fields { - // if val.Name == "price" && orderBy == "" { - // t := q5.SafeToInt32(val.Type) - // if t < 0 { - // orderBy = " ORDER BY price_len DESC, price DESC" - // } else { - // orderBy = " ORDER BY price_len ASC, price ASC" - // } - // } - // } - // } - - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Page common.StreamPagination `json:"page"` - Rows []struct { - Nft interface{} `json:"nft"` - Type int32 `json:"type"` - From string `json:"from"` - To string `json:"to"` - Date int32 `json:"date"` - } `json:"rows"` - }{} - q5.NewSlice(&rspObj.Rows, 0, 10) - nfts := []*common.NftDto{} - - f5.GetGoStyleDb().StreamPageQuery( - constant.PAY_DB, - pageSize, - cursor, - sql, - params, - f5.GetDbFilter().Comp(subFilters...), - orderBy, - func(err error, pagination *f5.StreamPagination) { - rspObj.Page.FillPage(pagination) - }, - func(ds *f5.DataSet) { - p := new(common.NftDto) - p.NetId = q5.ToInt32(ds.GetByName("net_id")) - p.ContractAddress = ds.GetByName("nft_contract_address") - p.TokenId = ds.GetByName("token_id") - p.Payload = map[string]string{} - if ds.GetByName("is_mint") != "0" { - p.Payload.(map[string]string)["type"] = "mint" - } else { - p.Payload.(map[string]string)["type"] = ds.GetByName("event_name") - } - p.Payload.(map[string]string)["to"] = ds.GetByName("to_address") - p.Payload.(map[string]string)["from"] = ds.GetByName("sender_address") - p.Payload.(map[string]string)["date"] = ds.GetByName("createtime") - q5.AppendSlice(&nfts, p) - }) - GetCacheMgr().GetNfts(nfts) - { - for _, val := range nfts { - p := q5.NewSliceElement(&rspObj.Rows) - jsonData := val.NftCache.GetJsonData() - if jsonData != nil { - if v, ok := jsonData.(map[string]interface{}); ok { - v := q5.MapClone(v) - tmpmap := val.Payload.(map[string]string) - p.Type = EVENTYPE[strings.ToLower(tmpmap["type"])] - p.To = tmpmap["to"] - p.From = tmpmap["from"] - p.Date = q5.SafeToInt32(tmpmap["date"]) - jsonData = v - } - } - p.Nft = jsonData - } - } - c.JSON(200, rspObj) -} diff --git a/server/payserver/api/v1/game_switch/enter.go b/server/payserver/api/v1/game_switch/enter.go deleted file mode 100644 index 0cac7f1..0000000 --- a/server/payserver/api/v1/game_switch/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package game_switch - -type ApiGroup struct { - GameSwitchApi -} diff --git a/server/payserver/api/v1/game_switch/gswitch.go b/server/payserver/api/v1/game_switch/gswitch.go deleted file mode 100644 index 31c6a0e..0000000 --- a/server/payserver/api/v1/game_switch/gswitch.go +++ /dev/null @@ -1,23 +0,0 @@ -package game_switch - -import ( - "main/service" - "net/http" - - "github.com/gin-gonic/gin" -) - -type GameSwitchApi struct { - data map[string]int32 - time int64 -} - -func (this *GameSwitchApi) List(c *gin.Context) { - - c.JSON(http.StatusOK, gin.H{ - "code": 0, - "message": "获取成功", - "contributionPoint": "", - "data": service.GameSwitches.GetSwitchList(), - }) -} diff --git a/server/payserver/api/v1/gold_bullion/enter.go b/server/payserver/api/v1/gold_bullion/enter.go deleted file mode 100644 index 3f9e265..0000000 --- a/server/payserver/api/v1/gold_bullion/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package gold_bullion - -type ApiGroup struct { - GoldBullionApi -} diff --git a/server/payserver/api/v1/gold_bullion/gold_bullion.go b/server/payserver/api/v1/gold_bullion/gold_bullion.go deleted file mode 100644 index a005b30..0000000 --- a/server/payserver/api/v1/gold_bullion/gold_bullion.go +++ /dev/null @@ -1,9 +0,0 @@ -package gold_bullion - -import ( - -) - -type GoldBullionApi struct { - -} diff --git a/server/payserver/api/v1/hero/enter.go b/server/payserver/api/v1/hero/enter.go deleted file mode 100644 index 2fe2599..0000000 --- a/server/payserver/api/v1/hero/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package hero - -type ApiGroup struct { - HeroApi -} diff --git a/server/payserver/api/v1/hero/hero.go b/server/payserver/api/v1/hero/hero.go deleted file mode 100644 index df9fc5a..0000000 --- a/server/payserver/api/v1/hero/hero.go +++ /dev/null @@ -1,8 +0,0 @@ -package hero - -import ( -) - -type HeroApi struct { - -} diff --git a/server/payserver/api/v1/ingame/ingame.go b/server/payserver/api/v1/ingame/ingame.go index b711445..67590c1 100644 --- a/server/payserver/api/v1/ingame/ingame.go +++ b/server/payserver/api/v1/ingame/ingame.go @@ -1,8 +1,11 @@ package ingame import ( + "encoding/json" "f5" + "main/constant" "main/model" + "main/service" "q5" "strings" @@ -27,13 +30,7 @@ func (this *InGameApi) PreOrder(c *gin.Context) { order.AccountId = reqJson.AccountId order.OrderId = q5.ToString(f5.GetApp().NewLockNodeUuid()) order.ItemId = reqJson.GoodsId - order.IP = c.Request.Header.Get("X-Real-Ip") - if order.IP == "" { - order.IP = strings.Split(c.Request.Header.Get("X-Forwarded-For"), ",")[0] - } - if order.IP == "" { - order.IP = c.Request.RemoteAddr - } + order.IP = this.getIP(c) order.CreateTime = nowTime order.ModifyTime = nowTime @@ -76,6 +73,26 @@ func (this *InGameApi) OrderInfo(c *gin.Context) { return } + strs := strings.Split(reqJson.AccountId, "_") + if len(strs) < 3 { + f5.RspErr(c, 401, "params error1") + return + } + + rediskey := "ls:accountid:" + reqJson.AccountId + str, err := service.Redis.Get(constant.LOGIN_REDIS, rediskey) + if err != nil { + f5.RspErr(c, 402, "invalid session") + return + } + + data := map[string]interface{}{} + if json.Unmarshal([]byte(str), &data) != nil { + f5.RspErr(c, 402, "invalid session 1") + return + } + + status := orderModel.Status rspObj := struct { ErrorCode int32 `json:"errcode"` ErrMsg string `json:"errmsg"` @@ -83,8 +100,56 @@ func (this *InGameApi) OrderInfo(c *gin.Context) { GoodsId int32 `json:"goods_id"` Status int32 `json:"status"` }{} + for status == 0 { + gameid := q5.SafeToInt64(strs[1]) + openid := strs[2] + sessionkey := q5.SafeToString(data["session_key"]) + userip := this.getIP(c) + balance, errcode, err := service.Wxpay.QueryBalance(openid, gameid, userip, sessionkey) + if err != nil { + f5.RspErr(c, 500, "system busy") + return + } + + if errcode == constant.WX_ERRCODE_OK { + count, err := service.Wxpay.GetGoodsCount(gameid, int64(orderModel.ItemId)) + if err != nil { + f5.RspErr(c, 401, "goods error") + return + } + + if balance < count { + break + } + + errcode = service.Wxpay.QueryPay(openid, gameid, userip, sessionkey, int32(count), orderModel.OrderId) + if errcode == constant.WX_ERRCODE_OK { + status = 1 + orderModel.Status = 2 + orderModel.UpdateFields([]string{"status"}) + } + } + + if errcode == constant.WX_ERRCODE_SESSIONERR || errcode == constant.WX_ERRCODE_SIGERR { + rspObj.ErrorCode = 402 + rspObj.ErrMsg = "session overtime" + } + } + rspObj.OrderId = orderModel.OrderId rspObj.GoodsId = orderModel.ItemId - rspObj.Status = orderModel.Status + rspObj.Status = status c.JSON(200, rspObj) } + +func (this *InGameApi) getIP(c *gin.Context) (ip string) { + ip = c.Request.Header.Get("X-Real-Ip") + if ip == "" { + ip = strings.Split(c.Request.Header.Get("X-Forwarded-For"), ",")[0] + } + if ip == "" { + ip = c.Request.RemoteAddr + } + + return ip +} diff --git a/server/payserver/api/v1/market/enter.go b/server/payserver/api/v1/market/enter.go deleted file mode 100644 index 02cc742..0000000 --- a/server/payserver/api/v1/market/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package market - -type ApiGroup struct { - MarketApi -} diff --git a/server/payserver/api/v1/market/market.go b/server/payserver/api/v1/market/market.go deleted file mode 100644 index 7f36337..0000000 --- a/server/payserver/api/v1/market/market.go +++ /dev/null @@ -1,739 +0,0 @@ -package market - -import ( - "f5" - "fmt" - "jccommon" - "main/common" - "main/constant" - . "main/global" - "main/service" - "main/mt" - "net/http" - "q5" - "strings" - - "github.com/gin-gonic/gin" -) - -type goodsDto struct { - Event interface{} `json:"event"` - Nft interface{} `json:"nft"` - InShopCart int32 `json:"in_shopcart"` -} - -type MarketApi struct { - -} - -func (this *MarketApi) ProductList1(c *gin.Context) { - openId := c.MustGet("open_id").(string) - cartDb := service.GetShopCartByOpenId(openId) - netId := q5.ToInt64(c.Param("net_id")) - reqJson := struct { - PageSize interface{} `json:"page_size"` - Cursor interface{} `json:"cursor"` - Search struct { - Name string `json:"name"` - } `json:"search"` - Filter struct { - PriceMin interface{} `json:"price_min"` - PriceMax interface{} `json:"price_max"` - ItemIds []interface{} `json:"item_ids"` - HeroRanks []interface{} `json:"hero_ranks"` - } `json:"filter"` - Sort struct { - Fields [] struct { - Name string `json:"name"` - Type interface{} `json:"type"` - } `json:"fields"` - } `json:"sort"` - }{} - if err := c.ShouldBindJSON(&reqJson); err != nil { - c.JSON(http.StatusOK, gin.H{ - "code": 1, - "message": err.Error(), - }) - return - } - - pageSize := q5.AdjustRangeValue(q5.SafeToInt32(reqJson.PageSize), 1, 20) - cursor := q5.SafeToInt64(reqJson.Cursor) - sql := fmt.Sprintf(` -SELECT * FROM t_order A WHERE idx > %d AND net_id = %d AND status="%s" -`, - cursor, netId, jccommon.ORDER_STATUS_ACTIVE) - /* - if f5.IsTestEnv() { - sql = fmt.Sprintf(` -SELECT * FROM t_order A WHERE idx > %d AND net_id = %d -`, - cursor, netId) - }*/ - - orderBy := "" - { - for _, val := range reqJson.Sort.Fields { - if val.Name == "price" && orderBy == "" { - t := q5.SafeToInt32(val.Type) - if t < 0 { - orderBy = " ORDER BY price_len DESC, price DESC" - } else { - orderBy = " ORDER BY price_len ASC, price ASC" - } - } - } - } - subFilters := []f5.DbQueryFilter{} - { - priceMin := q5.SafeToString(reqJson.Filter.PriceMin) - priceMax := q5.SafeToString(reqJson.Filter.PriceMax) - if !q5.IsPureNumber(priceMin) { - priceMin = "" - } - if !q5.IsPureNumber(priceMax) { - priceMax = "" - } - if priceMin != "" && priceMax != "" { - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom( - fmt.Sprintf(`LENGTH(price) >= LENGTH('%s') AND price >= '%s' AND - LENGTH(price) <= LENGTH('%s') AND price <= '%s'`, - priceMin, - priceMin, - priceMax, - priceMax)).And()) - } else if priceMin != "" { - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom( - fmt.Sprintf(`LENGTH(price) >= LENGTH('%s') AND price >= '%s'`, - priceMin, - priceMin)).And()) - } else if priceMax != "" { - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom( - fmt.Sprintf(`LENGTH(price) <= LENGTH('%s') AND price <= '%s'`, - priceMax, - priceMax)).And()) - } - } - { - itemIds := map[int32]int32{} - if reqJson.Search.Name != "" { - mt.Table.Item.Search(reqJson.Search.Name, itemIds) - } - for _, val := range(reqJson.Filter.ItemIds) { - itemId := q5.SafeToInt32(val) - itemIds[itemId] = 1 - } - if len(itemIds) > 0 { - inSub := `item_id IN (` - i := 0 - for key, _ := range(itemIds) { - if i == 0 { - inSub += q5.ToString(key) - } else { - inSub += "," + q5.ToString(key) - } - i += 1 - } - inSub += ")" - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom(inSub).And()) - } - } - { - heroRanks := map[int32]int32{} - for _, val := range(reqJson.Filter.HeroRanks) { - rank := q5.SafeToInt32(val) - heroRanks[rank] = 1 - } - if len(heroRanks) > 0 { - inSub := `hero_quality IN (` - i := 0 - for key, _ := range(heroRanks) { - if i == 0 { - inSub += q5.ToString(key) - } else { - inSub += "," + q5.ToString(key) - } - i += 1 - } - inSub += ")" - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom(inSub).And()) - } - } - - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Page common.StreamPagination `json:"page"` - Rows []struct{ - Event interface{} `json:"event"` - Nft interface{} `json:"nft"` - InShopCart int32 `json:"in_shopcart"` - Price string `json:"price"` - } `json:"rows"` - }{} - q5.NewSlice(&rspObj.Rows, 0, 10) - nfts := []*common.NftDto{} - f5.GetGoStyleDb().StreamPageQuery( - constant.BCNFT_DB, - pageSize, - cursor, - sql, - []string{ - }, - f5.GetDbFilter().Comp(subFilters...), - orderBy, - func (err error, pagination *f5.StreamPagination) { - rspObj.Page.FillPage(pagination) - }, - func (ds *f5.DataSet) { - p := new(common.NftDto) - p.NetId = q5.ToInt32(ds.GetByName("net_id")) - p.ContractAddress = ds.GetByName("contract_address") - p.TokenId = ds.GetByName("token_id") - p.Price = ds.GetByName("price") - p.Payload = map[string]interface{}{} - q5.DecodeJson(ds.GetByName("event_data"), &p.Payload) - q5.AppendSlice(&nfts, p) - }) - GetCacheMgr().GetNfts(nfts) - { - for _, val := range nfts { - p := q5.NewSliceElement(&rspObj.Rows) - p.Event = val.Payload - p.Nft = val.NftCache.GetJsonData() - if cartDb != nil && cartDb.GetGoods(val.NetId, val.ContractAddress, val.TokenId) != nil{ - p.InShopCart = 1 - } - } - } - c.JSON(200, rspObj) -} - -func (this *MarketApi) ProductList(c *gin.Context) { - openId := c.MustGet("open_id").(string) - cartDb := service.GetShopCartByOpenId(openId) - netId := q5.ToInt64(c.Param("net_id")) - reqJson := struct { - PageSize interface{} `json:"page_size"` - Cursor interface{} `json:"cursor"` - Search struct { - Name string `json:"name"` - } `json:"search"` - Filter struct { - PriceMin interface{} `json:"price_min"` - PriceMax interface{} `json:"price_max"` - ItemIds []interface{} `json:"item_ids"` - HeroRanks []interface{} `json:"hero_ranks"` - } `json:"filter"` - Sort struct { - Fields [] struct { - Name string `json:"name"` - Type interface{} `json:"type"` - } `json:"fields"` - } `json:"sort"` - }{} - if err := c.ShouldBindJSON(&reqJson); err != nil { - c.JSON(http.StatusOK, gin.H{ - "code": 1, - "message": err.Error(), - }) - return - } - - pageSize := q5.AdjustRangeValue(q5.SafeToInt32(reqJson.PageSize), 1, 20) - cursor := q5.SafeToInt64(reqJson.Cursor) - sql := fmt.Sprintf(` -SELECT * FROM t_order A WHERE net_id = %d AND status="%s" -`, - netId, jccommon.ORDER_STATUS_ACTIVE) - /* - if f5.IsTestEnv() { - sql = fmt.Sprintf(` -SELECT * FROM t_order A WHERE idx > %d AND net_id = %d -`, - cursor, netId) - }*/ - - orderBy := "" - { - for _, val := range reqJson.Sort.Fields { - if val.Name == "price" && orderBy == "" { - t := q5.SafeToInt32(val.Type) - if t < 0 { - orderBy = " ORDER BY price_len DESC, price DESC" - } else { - orderBy = " ORDER BY price_len ASC, price ASC" - } - } - } - } - subFilters := []f5.DbQueryFilter{} - { - priceMin := q5.SafeToString(reqJson.Filter.PriceMin) - priceMax := q5.SafeToString(reqJson.Filter.PriceMax) - if !q5.IsPureNumber(priceMin) { - priceMin = "" - } - if !q5.IsPureNumber(priceMax) { - priceMax = "" - } - if priceMin != "" && priceMax != "" { - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom( - fmt.Sprintf(` -((LENGTH(price) > LENGTH('%s') OR (LENGTH(price) = LENGTH('%s') AND price >= '%s'))) AND -((LENGTH(price) < LENGTH('%s') OR (LENGTH(price) = LENGTH('%s') AND price <= '%s')))`, - priceMin, - priceMin, - priceMin, - priceMax, - priceMax, - priceMax)).And()) - } else if priceMin != "" { - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom( - fmt.Sprintf(`(LENGTH(price) > LENGTH('%s') OR (LENGTH(price) = LENGTH('%s') AND price >= '%s'))`, - priceMin, - priceMin, - priceMin)).And()) - } else if priceMax != "" { - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom( - fmt.Sprintf(`(LENGTH(price) < LENGTH('%s') OR (LENGTH(price) = LENGTH('%s') AND price <= '%s'))`, - priceMax, - priceMax, - priceMax)).And()) - } - } - { - itemIds := map[int32]int32{} - if reqJson.Search.Name != "" { - mt.Table.Item.Search(reqJson.Search.Name, itemIds) - } - for _, val := range(reqJson.Filter.ItemIds) { - itemId := q5.SafeToInt32(val) - itemIds[itemId] = 1 - } - if len(itemIds) > 0 { - inSub := `item_id IN (` - i := 0 - for key, _ := range(itemIds) { - if i == 0 { - inSub += q5.ToString(key) - } else { - inSub += "," + q5.ToString(key) - } - i += 1 - } - inSub += ")" - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom(inSub).And()) - } - } - { - heroRanks := map[int32]int32{} - for _, val := range(reqJson.Filter.HeroRanks) { - rank := q5.SafeToInt32(val) - heroRanks[rank] = 1 - } - if len(heroRanks) > 0 { - inSub := `hero_quality IN (` - i := 0 - for key, _ := range(heroRanks) { - if i == 0 { - inSub += q5.ToString(key) - } else { - inSub += "," + q5.ToString(key) - } - i += 1 - } - inSub += ")" - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom(inSub).And()) - } - } - - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Page common.StreamPagination `json:"page"` - Rows []struct{ - Event interface{} `json:"event"` - Nft interface{} `json:"nft"` - InShopCart int32 `json:"in_shopcart"` - Price string `json:"price"` - } `json:"rows"` - }{} - q5.NewSlice(&rspObj.Rows, 0, 10) - nfts := []*common.NftDto{} - f5.GetGoStyleDb().StreamPageQuery( - constant.BCNFT_DB, - pageSize, - cursor, - sql, - []string{ - }, - f5.GetDbFilter().Comp(subFilters...), - orderBy, - func (err error, pagination *f5.StreamPagination) { - rspObj.Page.FillPage(pagination) - }, - func (ds *f5.DataSet) { - p := new(common.NftDto) - p.NetId = q5.ToInt32(ds.GetByName("net_id")) - p.ContractAddress = ds.GetByName("contract_address") - p.TokenId = ds.GetByName("token_id") - p.Price = ds.GetByName("price") - p.Payload = map[string]interface{}{} - q5.DecodeJson(ds.GetByName("event_data"), &p.Payload) - q5.AppendSlice(&nfts, p) - }) - GetCacheMgr().GetNfts(nfts) - { - for _, val := range nfts { - p := q5.NewSliceElement(&rspObj.Rows) - p.Event = val.Payload - p.Price = val.Price - p.Nft = val.NftCache.GetJsonData() - if cartDb != nil && cartDb.GetGoods(val.NetId, val.ContractAddress, val.TokenId) != nil{ - p.InShopCart = 1 - } - } - } - c.JSON(200, rspObj) -} - -func (this *MarketApi) TransactionHistory(c *gin.Context) { - pageSize := q5.AdjustRangeValue(q5.ToInt32(c.DefaultQuery("page_size", "")), 1, 20) - cursor := q5.ToInt64(c.DefaultQuery("cursor", "")) - netId := q5.ToInt64(c.Param("net_id")) - accountAddress := strings.ToLower(c.Param("account_address")) - searchName := c.DefaultQuery("search_name", "") - filterType := q5.ToInt32(c.DefaultQuery("type", "")) - sql := fmt.Sprintf(` -SELECT * FROM t_sale WHERE idx > %d AND net_id = %d `, - cursor, netId) - params := []string{} - subFilters := []f5.DbQueryFilter{} - { - if filterType == 1 { - sql += "AND buyer = ? " - q5.AppendSlice(¶ms, accountAddress) - } else if filterType == 2 { - sql += "AND seller = ? " - q5.AppendSlice(¶ms, accountAddress) - } else { - sql += "AND (buyer = ? OR seller = ?)" - q5.AppendSlice(¶ms, accountAddress) - q5.AppendSlice(¶ms, accountAddress) - } - } - { - itemIds := map[int32]int32{} - if searchName != "" { - mt.Table.Item.Search(searchName, itemIds) - } - if len(itemIds) > 0 { - inSub := `item_id IN (` - i := 0 - for key, _ := range(itemIds) { - if i == 0 { - inSub += q5.ToString(key) - } else { - inSub += "," + q5.ToString(key) - } - i += 1 - } - inSub += ")" - q5.AppendSlice(&subFilters, f5.GetDbFilter().Custom(inSub).And()) - } - } - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Page common.StreamPagination `json:"page"` - Rows []struct{ - Event interface{} `json:"event"` - Nft interface{} `json:"nft"` - InShopCart int32 `json:"in_shopcart"` - } `json:"rows"` - }{ - } - q5.NewSlice(&rspObj.Rows, 0, 10) - orderBy := " ORDER BY modifytime DESC " - nfts := []*common.NftDto{} - f5.GetGoStyleDb().StreamPageQuery( - constant.BCNFT_DB, - pageSize, - cursor, - sql, - params, - f5.GetDbFilter().Comp(subFilters...), - orderBy, - func (err error, pagination *f5.StreamPagination) { - rspObj.Page.FillPage(pagination) - }, - func (ds *f5.DataSet) { - p := new(common.NftDto) - p.NetId = q5.ToInt32(ds.GetByName("net_id")) - p.ContractAddress = ds.GetByName("contract_address") - p.TokenId = ds.GetByName("token_id") - p.Payload = map[string]interface{}{} - q5.DecodeJson(ds.GetByName("event_data"), &p.Payload) - q5.AppendSlice(&nfts, p) - }) - GetCacheMgr().GetNfts(nfts) - { - for _, val := range nfts { - p := q5.NewSliceElement(&rspObj.Rows) - p.Event = val.Payload - p.Nft = val.NftCache.GetJsonData() - } - } - c.JSON(200, rspObj) -} - -func (this *MarketApi) CategoryGoodsNum(c *gin.Context) { - netId := q5.ToInt64(c.Param("net_id")) - - rspObj := &struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Data []struct{ - ItemId int32 `json:"item_id"` - Num int32 `json:"num"` - } `json:"data"` - }{} - q5.NewSlice(&rspObj.Data, 0, 10) - - sql := fmt.Sprintf(` -SELECT item_id, COUNT(idx) AS num FROM t_order -WHERE net_id = %d AND status="%s" AND item_id <> 0 GROUP BY item_id -`, - netId, - jccommon.ORDER_STATUS_ACTIVE) - params := []string{} - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - params, - func (err error, ds *f5.DataSet) { - if err != nil { - rspObj.ErrCode = 500 - rspObj.ErrMsg = "server internal error" - c.JSON(200, rspObj) - return - } - for ds.Next() { - p := q5.NewSliceElement(&rspObj.Data) - p.ItemId = q5.ToInt32(ds.GetByName("item_id")) - p.Num = q5.ToInt32(ds.GetByName("num")) - } - c.JSON(200, rspObj) - }) -} - -func (this *MarketApi) QueryPrice(c *gin.Context) { - netId := q5.ToInt64(c.DefaultQuery("net_id", "")) - itemId := q5.ToInt64(c.DefaultQuery("item_id", "")) - contractAddress := c.DefaultQuery("contract_address", "") - itemQuality := q5.ToInt64(c.DefaultQuery("quality", "")) - - itemMeta := mt.Table.Item.GetById(itemId) - if itemMeta != nil && itemMeta.GetType() != jccommon.ITEM_TYPE_HERO { - itemQuality = 0 - } - - rspObj := &struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - LowestPriceGoods *goodsDto `json:"lowest_price_goods"` - HighestPriceGoods *goodsDto `json:"highest_price_goods"` - }{} - - lowestPriceGoodsIdx := int64(0) - highestPriceGoodsIdx := int64(0) - { - var dbErr error - lowestPrice := "" - highestPrice := "" - sql := fmt.Sprintf(` -SELECT idx, price FROM t_order -WHERE net_id = %d AND contract_address=? AND status="%s" AND item_id = %d AND hero_quality = %d -`, - netId, - jccommon.ORDER_STATUS_ACTIVE, - itemId, - itemQuality) - params := []string{ - contractAddress, - } - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - params, - func (err error, ds *f5.DataSet) { - dbErr = err - if err != nil { - return - } - for ds.Next() { - idx := q5.ToInt64(ds.GetByName("idx")) - price := ds.GetByName("price") - if lowestPriceGoodsIdx == 0 || - q5.BigIntStrCmp(lowestPrice, price) < 0 { - lowestPriceGoodsIdx = idx - lowestPrice = price - } - if highestPriceGoodsIdx == 0 || - q5.BigIntStrCmp(highestPrice, price) > 0 { - highestPriceGoodsIdx = idx - highestPrice = price - } - } - }) - if dbErr != nil { - rspObj.ErrCode = 500 - rspObj.ErrMsg = "server internal error" - c.JSON(200, rspObj) - return - } - } - { - idxs := []string{} - if lowestPriceGoodsIdx > 0 { - q5.AppendSlice(&idxs, q5.ToString(lowestPriceGoodsIdx)) - } - if highestPriceGoodsIdx > 0 { - q5.AppendSlice(&idxs, q5.ToString(highestPriceGoodsIdx)) - } - if len(idxs) <= 0 { - c.JSON(200, rspObj) - return - } - var dbErr error - sql := fmt.Sprintf(` -SELECT * FROM t_order -WHERE idx in (%s) -`, - strings.Join(idxs, ",")) - nfts := []*common.NftDto{} - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - []string{}, - func (err error, ds *f5.DataSet) { - dbErr = err - if err != nil { - return - } - for ds.Next() { - p := new(common.NftDto) - p.Param1 = q5.ToInt64(ds.GetByName("idx")) - p.NetId = q5.ToInt32(ds.GetByName("net_id")) - p.ContractAddress = ds.GetByName("contract_address") - p.TokenId = ds.GetByName("token_id") - p.Payload = map[string]interface{}{} - q5.DecodeJson(ds.GetByName("event_data"), &p.Payload) - q5.AppendSlice(&nfts, p) - } - }) - if dbErr != nil { - c.JSON(200, rspObj) - return - } - GetCacheMgr().GetNfts(nfts) - { - for _, val := range nfts { - var p *goodsDto - p = new(goodsDto) - p.Event = val.Payload - p.Nft = val.NftCache.GetJsonData() - if val.Param1 == lowestPriceGoodsIdx { - rspObj.LowestPriceGoods = p - } - if val.Param1 == highestPriceGoodsIdx { - rspObj.HighestPriceGoods = p - } - } - } - c.JSON(200, rspObj) - } -} - -func (this *MarketApi) Goods(c *gin.Context) { - openId := c.MustGet("open_id").(string) - cartDb := service.GetShopCartByOpenId(openId) - - netId := q5.ToInt64(c.Param("net_id")) - contractAddress := c.Param("contract_address") - tokenId := c.Param("token_id") - - rspObj := &struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Data *goodsDto `json:"data"` - }{} - - var dbErr error - sql := fmt.Sprintf(` -SELECT * FROM t_order -WHERE net_id=? AND contract_address=? AND token_id=? AND status=? -`) - nfts := []*common.NftDto{} - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - []string{ - q5.ToString(netId), - contractAddress, - tokenId, - jccommon.ORDER_STATUS_ACTIVE, - }, - func (err error, ds *f5.DataSet) { - dbErr = err - if err != nil { - return - } - for ds.Next() { - p := new(common.NftDto) - p.Param1 = q5.ToInt64(ds.GetByName("idx")) - p.NetId = q5.ToInt32(ds.GetByName("net_id")) - p.ContractAddress = ds.GetByName("contract_address") - p.TokenId = ds.GetByName("token_id") - p.Payload = map[string]interface{}{} - q5.DecodeJson(ds.GetByName("event_data"), &p.Payload) - q5.AppendSlice(&nfts, p) - } - }) - if dbErr != nil { - rspObj.ErrCode = 500 - rspObj.ErrMsg = "server internal error" - c.JSON(200, rspObj) - return - } - if len(nfts) <= 0 { - p := new(common.NftDto) - //p.Param1 = q5.ToInt64(ds.GetByName("idx")) - p.NetId = q5.ToInt32(netId) - p.ContractAddress = contractAddress - p.TokenId = tokenId - p.Payload = nil - q5.AppendSlice(&nfts, p) - } - GetCacheMgr().GetNfts(nfts) - { - for _, val := range nfts { - var p *goodsDto - p = new(goodsDto) - p.Event = val.Payload - p.Nft = val.NftCache.GetJsonData() - if cartDb != nil && cartDb.GetGoods(val.NetId, val.ContractAddress, val.TokenId) != nil{ - p.InShopCart = 1 - } - rspObj.Data = p - } - } - if rspObj.Data == nil { - rspObj.ErrCode = 1 - rspObj.ErrMsg = "not found" - c.JSON(200, rspObj) - return - } - c.JSON(200, rspObj) -} diff --git a/server/payserver/api/v1/recharge/enter.go b/server/payserver/api/v1/recharge/enter.go deleted file mode 100644 index b1dede3..0000000 --- a/server/payserver/api/v1/recharge/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package recharge - -type ApiGroup struct { - RechargeApi -} diff --git a/server/payserver/api/v1/recharge/recharge.go b/server/payserver/api/v1/recharge/recharge.go deleted file mode 100644 index 5055159..0000000 --- a/server/payserver/api/v1/recharge/recharge.go +++ /dev/null @@ -1,340 +0,0 @@ -package recharge - -import ( - "f5" - "fmt" - "jccommon" - "main/common" - "main/constant" - "main/service" - - "main/mt" - "net/http" - "q5" - "strings" - - "math/big" - "github.com/gin-gonic/gin" -) - -type RechargeApi struct { -} - -func (ea *RechargeApi) RechargeList(c *gin.Context) { - netId := q5.ToInt32(c.DefaultQuery("net_id", "")) - accountAddress := c.DefaultQuery("account_address", "") - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Contribution string `json:"contribution"` - Rows []interface{} `json:"rows"` - }{} - - currencysMeta := mt.Table.Currency.GetByNetId(netId) - if currencysMeta == nil { - f5.RspErr(c, 2, "server internal error") - return - } - - if contribution, err := service.Contribution.GetAddressContribution(accountAddress, true); err != nil { - f5.RspErr(c, 2, err.Error()) - return - } else { - rspObj.Contribution = q5.ToString(contribution) - } - - mt.Table.Recharge.Traverse(func(tb *mt.Recharge) bool { - tmpmap := map[string]interface{}{} - tmpmap["goods_id"] = tb.GetId() - tmpmap["diamond"] = tb.GetDiamond() - tmpmap["present_diamond"] = tb.GetPresentDiamond() - tmpmap["price"] = tb.GetPrice() - tmpmap["max_buy_times"] = tb.GetMaxBuyTimes() - tmpmap["can_email_buy"] = tb.GetCanEmailBuy() - currencyList := []struct { - Name string `json:"name"` - Address string `json:"address"` - }{} - currencysMeta.Range( - func(key string, val *mt.Currency) bool { - currency := val - p := q5.NewSliceElement(¤cyList) - p.Name = currency.GetCurrencyName() - p.Address = currency.GetContract().GetAddress() - return true - }) - tmpmap["currency_list"] = currencyList - - rspObj.Rows = append(rspObj.Rows, tmpmap) - - return true - }) - - c.JSON(200, rspObj) -} - -func (this *RechargeApi) Buy(c *gin.Context) { - passportAddress := c.MustGet("account_address").(string) - reqJson := struct { - NetId int32 `json:"net_id"` - GoodsId int32 `json:"goods_id"` - GoodsNum int32 `json:"goods_num"` - AccountAddress string `json:"account_address"` - CurrencyAddress string `json:"currency_address"` - }{} - if err := c.ShouldBindJSON(&reqJson); err != nil { - f5.RspErr(c, 1, err.Error()) - return - } - this.internalBuy(c, reqJson.NetId, reqJson.GoodsId, reqJson.GoodsNum, - reqJson.AccountAddress, passportAddress, "", reqJson.CurrencyAddress) -} - -func (this *RechargeApi) BuyWithEmail(c *gin.Context) { - passportAddress := c.MustGet("account_address").(string) - email := c.MustGet("email").(string) - reqJson := struct { - NetId int32 `json:"net_id"` - GoodsId int32 `json:"goods_id"` - GoodsNum int32 `json:"goods_num"` - AccountAddress string `json:"account_address"` - CurrencyAddress string `json:"currency_address"` - }{} - if err := c.ShouldBindJSON(&reqJson); err != nil { - f5.GetSysLog().Info("BuyWithEmail passport_address:%s err:%s", - passportAddress, err) - f5.RspErr(c, 1, err.Error()) - return - } - f5.GetSysLog().Info("BuyWithEmail passport_address:%s email:%s reqJson:%s", - passportAddress, email, q5.EncodeJson(&reqJson)) - if email == "" { - f5.RspErr(c, 1, "email is empty") - return - } - this.internalBuy(c, reqJson.NetId, reqJson.GoodsId, reqJson.GoodsNum, - reqJson.AccountAddress, passportAddress, email, reqJson.CurrencyAddress) -} - -func (this *RechargeApi) internalBuy(c *gin.Context, - netId int32, goodsId int32, goodsNum int32, accountAddress string, passportAddress string, - email string, currencyAddress string) { - accountAddress = strings.ToLower(accountAddress) - passportAddress = strings.ToLower(passportAddress) - currencyMeta := mt.Table.Currency.GetByNetIdAddress(netId, currencyAddress) - if currencyMeta == nil { - f5.GetSysLog().Info("internalBuy error:1") - f5.RspErr(c, 2, "server internal error") - return - } - currencyContractMeta := currencyMeta.GetContract() - if currencyContractMeta == nil { - f5.GetSysLog().Info("internalBuy error:2") - f5.RspErr(c, 2, "server internal error") - return - } - goodsMeta := mt.Table.Recharge.GetById(q5.ToInt64(goodsId)) - if goodsMeta == nil { - f5.GetSysLog().Info("internalBuy error:3") - f5.RspErr(c, 2, "goods id param error") - return - } - if goodsMeta.GetPrice() <= 0 { - f5.GetSysLog().Info("internalBuy error:4") - f5.RspErr(c, 2, "goods id param error") - return - } - if goodsNum <= 0 || goodsNum > goodsMeta.GetMaxBuyTimes() { - f5.GetSysLog().Info("internalBuy error:5") - f5.RspErr(c, 2, "num param error") - return - } - if email != "" && goodsMeta.GetCanEmailBuy() == 0 { - f5.GetSysLog().Info("internalBuy error:6") - f5.RspErr(c, 2, "cant email buy") - return - } - nowTime := q5.ToInt32(f5.GetApp().GetRealSeconds()) - shortOrderId := f5.GetApp().NewLockNodeUuid() - orderId := "" - { - transId := jccommon.NewTransId() - transId.Init( - jccommon.TRANS_ID_FUNC_NORMAL, - nowTime, - 0, - [3]int64{ - q5.ToInt64(goodsNum), - q5.ToInt64(goodsMeta.GetId()), - shortOrderId, - }) - var err error - orderId, err = transId.ToString() - if err != nil { - f5.GetSysLog().Info("internalBuy error:6") - f5.RspErr(c, 2, "server internal error") - return - } - } - srcPrice := q5.ToInt64(goodsMeta.GetPrice()) * q5.ToInt64(goodsNum) - bnPrice := big.NewInt(0) - { - var i, e = big.NewInt(10), big.NewInt(currencyMeta.GetCurrencyDecimal()) - i.Exp(i, e, nil) - bnPrice = i.Mul(i, big.NewInt(srcPrice)) - } - f5.GetSysLog().Info("recharge net_id:%d currency_name:%s decimal:%d srcPrice:%d bnPrice:%s", - netId, currencyMeta.GetCurrencyName(), currencyMeta.GetCurrencyDecimal(), srcPrice, bnPrice.String()); - if bnPrice.Cmp(big.NewInt(0)) < 0 || bnPrice.Cmp(big.NewInt(srcPrice)) < 0 { - f5.GetSysLog().Info("internalBuy error:7") - f5.RspErr(c, 3, "server internal error") - return - } - if ok, err := service.User.InBlackList(accountAddress); err != nil { - f5.GetSysLog().Info("internalBuy error:8") - f5.RspErr(c, 500, "server internal error") - return - } else if ok { - f5.GetSysLog().Info("internalBuy error:9") - f5.RspErr(c, 501, "illegal user") - return - } - params := map[string]string{ - "c": "BcService", - "a": "recharge", - "net_id": q5.ToString(netId), - "order_id": orderId, - "account_address": accountAddress, - "passport_address": passportAddress, - "amount": bnPrice.String(), - "currency_name": currencyContractMeta.GetName(), - "currency_address": currencyContractMeta.GetAddress(), - } - jsonRspObj := &struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Calls []jccommon.ContractCall `json:"calls"` - }{} - var itemNum int32 = goodsNum - var diamond int64 = q5.ToInt64(goodsMeta.GetDiamond()) * int64(itemNum) - var presentDiamond int64 = int64(goodsMeta.GetPresentDiamond()) * int64(itemNum) - url := fmt.Sprintf("%s/webapp/index.php", mt.Table.Web3SignCluster.RandElement().GetUrl()) - f5.GetHttpCliMgr().SendGoStyleRequest( - url, - params, - func(rsp f5.HttpCliResponse) { - if rsp.GetErr() != nil { - f5.GetSysLog().Info("internalBuy error:a") - f5.RspErr(c, 500, "server internal error") - return - } - if q5.DecodeJson(rsp.GetRawData(), &jsonRspObj) != nil { - f5.GetSysLog().Info("internalBuy error:b") - f5.RspErr(c, 500, "server internal error") - return - } - if jsonRspObj.ErrCode != 0 { - c.JSON(200, jsonRspObj) - return - } - if !service.AddRechargeOrder( - orderId, - q5.ToString(shortOrderId), - netId, - accountAddress, - passportAddress, - currencyContractMeta.GetName(), - currencyContractMeta.GetAddress(), - goodsMeta.GetId(), - itemNum, - bnPrice.String(), - srcPrice, - diamond, - presentDiamond, - email) { - f5.GetSysLog().Info("internalBuy error:c") - f5.RspErr(c, 500, "server internal error") - return - } - f5.GetSysLog().Info("recharge net_id:%d currency_name:%s decimal:%d srcPrice:%d bnPrice:%s calls.len:%d jsonRsp:%s", - netId, - currencyMeta.GetCurrencyName(), - currencyMeta.GetCurrencyDecimal(), - srcPrice, - bnPrice.String(), - len(jsonRspObj.Calls), - q5.EncodeJson(&jsonRspObj)); - c.JSON(200, jsonRspObj) - }) -} - -func (ea *RechargeApi) RechargeQuery(c *gin.Context) { - account := strings.ToLower(c.Param("account_address")) - netId := q5.ToInt64(c.Param("net_id")) - reqJson := struct { - PageSize interface{} `json:"page_size"` - Cursor interface{} `json:"cursor"` - Search struct{} `json:"search"` - Filter struct{} `json:"filter"` - Sort struct { - Fields []struct{} `json:"fields"` - } `json:"sort"` - }{} - if err := c.ShouldBindJSON(&reqJson); err != nil { - c.JSON(http.StatusOK, gin.H{ - "errcode": 1, - "errmsg": err.Error(), - }) - return - } - - var pageSize int32 = 0xFFFF //q5.AdjustRangeValue(q5.SafeToInt32(reqJson.PageSize), 1, 20) - cursor := q5.SafeToInt64(reqJson.Cursor) - - sql := fmt.Sprintf(` - SELECT * FROM t_recharge_order - WHERE idx > %d AND net_id = %d AND passport_address = ? AND pay_status = 1`, - cursor, netId) - - params := []string{account} - subFilters := []f5.DbQueryFilter{} - - orderBy := " ORDER BY createtime DESC " - - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Page common.StreamPagination `json:"page"` - Rows []struct { - OrderID string `gorm:"column:order_id" json:"order_id"` - ShortOrderID string `gorm:"column:short_order_id" json:"short_order_id"` - TxHash string `gorm:"column:txhash" json:"txhash"` - NetID int64 `gorm:"column:net_id" json:"net_id"` - Currency string `gorm:"column:currency_address" json:"currency"` - CurrencyName string `gorm:"column:currency_name" json:"currency_name"` - Amount string `gorm:"column:price" json:"amount"` - Diamond string `gorm:"column:diamond+present_diamond" json:"diamond"` - Date int32 `gorm:"column:createtime" json:"createtime"` - Account string `gorm:"column:account_address" json:"account_address"` - Passport string `gorm:"column:passport_address" json:"passport_address"` - } `json:"rows"` - }{} - q5.NewSlice(&rspObj.Rows, 0, 10) - - f5.GetGoStyleDb().StreamPageQuery( - constant.BCNFT_DB, - pageSize, - cursor, - sql, - params, - f5.GetDbFilter().Comp(subFilters...), - orderBy, - func(err error, pagination *f5.StreamPagination) { - rspObj.Page.FillPage(pagination) - }, - func(ds *f5.DataSet) { - p := q5.NewSliceElement(&rspObj.Rows) - f5.UnmarshalModel(ds, p) - }) - c.JSON(200, rspObj) -} diff --git a/server/payserver/api/v1/shopcart/enter.go b/server/payserver/api/v1/shopcart/enter.go deleted file mode 100644 index cbe1ce6..0000000 --- a/server/payserver/api/v1/shopcart/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package shopcart - -type ApiGroup struct { - ShopCartApi -} diff --git a/server/payserver/api/v1/shopcart/shopcart.go b/server/payserver/api/v1/shopcart/shopcart.go deleted file mode 100644 index 6c5680c..0000000 --- a/server/payserver/api/v1/shopcart/shopcart.go +++ /dev/null @@ -1,423 +0,0 @@ -package shopcart - -import ( - "f5" - "jccommon" - "main/common" - "main/constant" - . "main/global" - "q5" - "strings" - - "github.com/gin-gonic/gin" -) - -type ShopCartApi struct { -} - -func (this *ShopCartApi) List(c *gin.Context) { - openId := c.MustGet("open_id").(string) - accountAddress := c.MustGet("account_address").(string) - - rspObj := &struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Data []struct { - Event interface{} `json:"event"` - Nft interface{} `json:"nft"` - } `json:"data"` - }{} - q5.NewSlice(&rspObj.Data, 0, 10) - f5.GetGoStyleDb().OrmSelectOne( - constant.BCNFT_DB, - "t_shopcart", - [][]string{ - {"open_id", openId}, - }, - func(err error, ds *f5.DataSet) { - if err != nil { - rspObj.ErrCode = 500 - rspObj.ErrMsg = "server internal error" - c.JSON(200, rspObj) - return - } - nfts := []*common.NftDto{} - if ds.Next() { - cartDb := common.NewShopCart() - if q5.DecodeJson(ds.GetByName("data"), cartDb) == nil { - q5.Sort[common.ShopCartGoods](cartDb.Goods, - func(a *common.ShopCartGoods, b *common.ShopCartGoods) bool { - return a.SortIdx < b.SortIdx - }) - dirty := false - newGoods := []*common.ShopCartGoods{} - priceType := "" - priceContractAddress := "" - for _, val := range cartDb.Goods { - var err1 error - wherekv := [][]string{ - {"net_id", q5.ToString(val.NetId)}, - {"contract_address", q5.ToString(val.ContractAddress)}, - {"token_id", q5.ToString(val.TokenId)}, - {"status", jccommon.ORDER_STATUS_ACTIVE}, - } - - if priceType != "" { - wherekv = append(wherekv, []string{"src_price_item_type", priceType}) - } - - if priceContractAddress != "" { - wherekv = append(wherekv, []string{"src_price_contract_address", priceContractAddress}) - } - - f5.GetGoStyleDb().OrmSelectOne( - constant.BCNFT_DB, - "t_order", - wherekv, - func(err error, ds *f5.DataSet) { - err1 = err - if err == nil { - if ds.Next() { - if ds.GetByName("seller_address") != accountAddress { - val.PriceType = ds.GetByName("src_price_item_type") - val.PriceContractAddress = ds.GetByName("src_price_contract_address") - val.OrderId = ds.GetByName("order_id") - - if priceType == "" && priceContractAddress == "" { - priceType = val.PriceType - priceContractAddress = val.PriceContractAddress - } - - p := new(common.NftDto) - p.NetId = q5.ToInt32(ds.GetByName("net_id")) - p.ContractAddress = ds.GetByName("contract_address") - p.TokenId = ds.GetByName("token_id") - p.Payload = map[string]interface{}{} - q5.DecodeJson(ds.GetByName("event_data"), &p.Payload) - q5.AppendSlice(&nfts, p) - q5.AppendSlice(&newGoods, val) - } - } else { - val.Flag = 1 - } - dirty = true - } - }) - if err1 != nil { - rspObj.ErrCode = 500 - rspObj.ErrMsg = "server internal error" - c.JSON(200, rspObj) - return - } - } //end for goods - if dirty { - cartDb.Goods = newGoods - this.save(openId, cartDb) - } - } - } - GetCacheMgr().GetNfts(nfts) - { - for _, val := range nfts { - p := q5.NewSliceElement(&rspObj.Data) - p.Event = val.Payload - p.Nft = val.NftCache.GetJsonData() - } - } - c.JSON(200, rspObj) - }) -} - -func (this *ShopCartApi) Add(c *gin.Context) { - openId := c.MustGet("open_id").(string) - accountAddress := c.MustGet("account_address").(string) - - rspObj := &struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - }{} - - reqJson := struct { - NetId interface{} `json:"net_id"` - Tokens []struct { - TokenId interface{} `json:"token_id"` - ContractAddress string `json:"contract_address"` - } `json:"tokens"` - }{} - if err := c.ShouldBindJSON(&reqJson); err != nil { - rspObj.ErrCode = 1 - rspObj.ErrMsg = "json parse error" - c.JSON(200, rspObj) - return - } - if len(reqJson.Tokens) > constant.SHOPCART_MAX_GOODS_NUM { - rspObj.ErrCode = 2 - rspObj.ErrMsg = "token len error" - c.JSON(200, rspObj) - return - } - - f5.GetGoStyleDb().OrmSelectOne( - constant.BCNFT_DB, - "t_shopcart", - [][]string{ - {"open_id", openId}, - }, - func(err error, ds *f5.DataSet) { - if err != nil { - rspObj.ErrCode = 500 - rspObj.ErrMsg = "server internal error" - c.JSON(200, rspObj) - return - } - cartDb := common.NewShopCart() - dirty := false - if ds.Next() { - if q5.DecodeJson(ds.GetByName("data"), cartDb) == nil { - } - } - - priceType := "" - priceContractAddress := "" - for _, g := range cartDb.Goods { - inreq := false - for _, req := range reqJson.Tokens { - netId := q5.SafeToInt32(reqJson.NetId) - contractAddress := req.ContractAddress - tokenId := q5.SafeToString(req.TokenId) - if g.NetId == netId && g.ContractAddress == contractAddress && g.TokenId == tokenId { - inreq = true - break - } - } - - if !inreq { - priceType = g.PriceType - priceContractAddress = g.PriceContractAddress - break - } - } - - for _, val := range reqJson.Tokens { - netId := q5.SafeToInt32(reqJson.NetId) - contractAddress := val.ContractAddress - tokenId := q5.SafeToString(val.TokenId) - p := cartDb.GetGoods(netId, contractAddress, tokenId) - if p != nil { - var err1 error - orderok := false - f5.GetGoStyleDb().OrmSelectOne( - constant.BCNFT_DB, - "t_order", - [][]string{ - {"net_id", q5.ToString(netId)}, - {"contract_address", contractAddress}, - {"token_id", tokenId}, - {"status", jccommon.ORDER_STATUS_ACTIVE}, - }, - func(err error, ds *f5.DataSet) { - err1 = err - if err != nil { - return - } - if !ds.Next() { - return - } - if ds.GetByName("seller_address") == accountAddress { - return - } - - p.OrderId = ds.GetByName("order_id") - p.PriceType = ds.GetByName("src_price_item_type") - p.PriceContractAddress = ds.GetByName("src_price_contract_address") - if priceType == "" && priceContractAddress == "" { - priceType = p.PriceType - priceContractAddress = p.PriceContractAddress - orderok = true - } else if priceType != "" && priceContractAddress != "" && - priceType == p.PriceType && priceContractAddress == p.PriceContractAddress { - orderok = true - } - }) - if err1 != nil { - rspObj.ErrCode = 500 - rspObj.ErrMsg = "server internal error" - c.JSON(200, rspObj) - return - } - - if orderok { - cartDb.CurrSortIdx += 1 - p.SortIdx = cartDb.CurrSortIdx - p.AddTime = q5.ToInt32(f5.GetApp().GetRealSeconds()) - } else { - j := 0 - for _, g := range cartDb.Goods { - if g != p { - cartDb.Goods[j] = g - j++ - } - } - cartDb.Goods = cartDb.Goods[:j] - } - dirty = true - } else { - var err1 error - f5.GetGoStyleDb().OrmSelectOne( - constant.BCNFT_DB, - "t_order", - [][]string{ - {"net_id", q5.ToString(netId)}, - {"contract_address", contractAddress}, - {"token_id", tokenId}, - {"status", jccommon.ORDER_STATUS_ACTIVE}, - }, - func(err error, ds *f5.DataSet) { - err1 = err - if err == nil { - if ds.Next() { - if ds.GetByName("seller_address") != accountAddress { - cartDb.CurrSortIdx += 1 - g := common.NewShopCartGoods() - g.NetId = netId - g.ContractAddress = contractAddress - g.TokenId = tokenId - g.SortIdx = cartDb.CurrSortIdx - g.AddTime = q5.ToInt32(f5.GetApp().GetRealSeconds()) - g.OrderId = ds.GetByName("order_id") - g.PriceType = ds.GetByName("src_price_item_type") - g.PriceContractAddress = ds.GetByName("src_price_contract_address") - orderok := false - if priceType == "" && priceContractAddress == "" { - orderok = true - priceType = g.PriceType - priceContractAddress = g.PriceContractAddress - } else if priceType != "" && priceContractAddress != "" && priceType == g.PriceType && priceContractAddress == g.PriceContractAddress { - orderok = true - } - - if orderok { - q5.AppendSlice(&cartDb.Goods, g) - } - } - } else { - } - } - }) - if err1 != nil { - rspObj.ErrCode = 500 - rspObj.ErrMsg = "server internal error" - c.JSON(200, rspObj) - return - } - dirty = true - } - } - if dirty { - cartDb.DeleteExcessData() - this.save(openId, cartDb) - } - c.JSON(200, rspObj) - }) -} - -func (this *ShopCartApi) Del(c *gin.Context) { - openId := c.MustGet("open_id").(string) - - rspObj := &struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - }{} - - reqJson := struct { - NetId interface{} `json:"net_id"` - Tokens []struct { - TokenId interface{} `json:"token_id"` - ContractAddress string `json:"contract_address"` - } `json:"tokens"` - }{} - if err := c.ShouldBindJSON(&reqJson); err != nil { - rspObj.ErrCode = 1 - rspObj.ErrMsg = "json parse error" - c.JSON(200, rspObj) - return - } - - f5.GetGoStyleDb().OrmSelectOne( - constant.BCNFT_DB, - "t_shopcart", - [][]string{ - {"open_id", openId}, - }, - func(err error, ds *f5.DataSet) { - if err != nil { - rspObj.ErrCode = 500 - rspObj.ErrMsg = "server internal error" - c.JSON(200, rspObj) - return - } - cartDb := common.NewShopCart() - dirty := false - if ds.Next() { - if q5.DecodeJson(ds.GetByName("data"), cartDb) == nil { - } - } - newGoods := []*common.ShopCartGoods{} - for _, val := range cartDb.Goods { - found := false - for _, val2 := range reqJson.Tokens { - if val.NetId == q5.SafeToInt32(reqJson.NetId) && - q5.ToString(val.TokenId) == q5.SafeToString(val2.TokenId) && - strings.ToLower(val.ContractAddress) == strings.ToLower(val2.ContractAddress) { - found = true - } - } - if !found { - q5.AppendSlice(&newGoods, val) - } else { - dirty = true - } - } - cartDb.Goods = newGoods - if dirty { - this.save(openId, cartDb) - } - c.JSON(200, rspObj) - }) -} - -func (this *ShopCartApi) Clear(c *gin.Context) { - openId := c.MustGet("open_id").(string) - - rspObj := &struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - }{} - - cartDb := common.NewShopCart() - this.save(openId, cartDb) - c.JSON(200, rspObj) -} - -func (this *ShopCartApi) save(openId string, cartDb *common.ShopCart) { - nowTime := f5.GetApp().GetRealSeconds() - f5.GetGoStyleDb().Upsert( - constant.BCNFT_DB, - "t_shopcart", - [][]string{ - {"open_id", openId}, - }, - [][]string{ - {"data", q5.EncodeJson(cartDb)}, - {"modifytime", q5.ToString(nowTime)}, - }, - [][]string{ - {"open_id", openId}, - {"data", q5.EncodeJson(cartDb)}, - {"createtime", q5.ToString(nowTime)}, - {"modifytime", q5.ToString(nowTime)}, - }, - func(err error, lastInsertId int64, rowsAffected int64) { - - }) -} diff --git a/server/payserver/api/v1/user/enter.go b/server/payserver/api/v1/user/enter.go deleted file mode 100644 index e21f9c7..0000000 --- a/server/payserver/api/v1/user/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package user - -type ApiGroup struct { - UserApi -} diff --git a/server/payserver/api/v1/user/user.go b/server/payserver/api/v1/user/user.go deleted file mode 100644 index 524b299..0000000 --- a/server/payserver/api/v1/user/user.go +++ /dev/null @@ -1,134 +0,0 @@ -package user - -import ( - "f5" - "fmt" - "main/constant" - "main/service" - "q5" - "strings" - - "github.com/gin-gonic/gin" -) - -type UserApi struct { -} - -func (this *UserApi) Info(c *gin.Context) { - accountAddress := strings.ToLower(c.Param("account_address")) - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - NickName string `json:"nickname"` - Email string `json:"email"` - ContributionPoint string `json:"contribution_point"` - Gold string `json:"gold"` - Diamond string `json:"diamond"` - }{} - rspObj.Email = c.MustGet("email").(string) - contributionPoint, err := service.Contribution.GetAddressContribution(accountAddress, false) - if err != nil { - f5.RspErr(c, 2, err.Error()) - return - } - var gold float64 - var diamond float64 - { - var dbErr error - f5.GetGoStyleDb().OrmSelectOne( - constant.GAME_DB, - "t_user", - [][]string{ - {"address", accountAddress}, - }, - func(err error, ds *f5.DataSet) { - dbErr = err - if err != nil { - return - } - if ds.Next() { - rspObj.NickName = ds.GetByName("name") - gold = q5.ToFloat64(ds.GetByName("gold")) - diamond = q5.ToFloat64(ds.GetByName("diamond")) - } - }) - if dbErr != nil { - f5.RspErr(c, 500, "server internal error") - return - } - } - // { - // var dbErr error - // f5.GetGoStyleDb().OrmSelectOne( - // constant.BCNFT_DB, - // "t_contribution", - // [][]string{ - // {"account_address", accountAddress}, - // }, - // func(err error, ds *f5.DataSet) { - // dbErr = err - // if err != nil { - // return - // } - // if ds.Next() { - // contributionPoint += q5.ToFloat64(ds.GetByName("contribution")) - // } - // }) - // if dbErr != nil { - // f5.RspErr(c, 500, "server internal error") - // return - // } - // } - // { - // var dbErr error - // sql := "SELECT SUM(contribution) FROM t_staking_daily_settlement WHERE account_address = ?" - // params := []string{ - // accountAddress, - // } - // f5.GetGoStyleDb().RawQuery( - // constant.BCNFT_DB, - // sql, - // params, - // func(err error, ds *f5.DataSet) { - // dbErr = err - // if err != nil { - // return - // } - // for ds.Next() { - // contributionPoint += q5.ToFloat64(ds.GetByIndex(0)) - // } - // }) - // if dbErr != nil { - // f5.RspErr(c, 500, "server internal error") - // return - // } - // } - { - var dbErr error - sql := "SELECT SUM(diamond+present_diamond) FROM t_recharge_order WHERE passport_address = ? AND pay_status = 1 AND delivery_status = 0;" - params := []string{ - accountAddress, - } - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - params, - func(err error, ds *f5.DataSet) { - dbErr = err - if err != nil { - return - } - if ds.Next() { - diamond += q5.ToFloat64(ds.GetByIndex(0)) - } - }) - if dbErr != nil { - f5.RspErr(c, 500, "server internal error") - return - } - } - rspObj.ContributionPoint = fmt.Sprintf("%.2f", contributionPoint) - rspObj.Gold = fmt.Sprintf("%.2f", gold) - rspObj.Diamond = fmt.Sprintf("%.2f", diamond) - c.JSON(200, rspObj) -} diff --git a/server/payserver/api/v1/vip/enter.go b/server/payserver/api/v1/vip/enter.go deleted file mode 100644 index e0a2629..0000000 --- a/server/payserver/api/v1/vip/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package vip - -type ApiGroup struct { - VIPApi -} diff --git a/server/payserver/api/v1/vip/vip.go b/server/payserver/api/v1/vip/vip.go deleted file mode 100644 index 82b3a3e..0000000 --- a/server/payserver/api/v1/vip/vip.go +++ /dev/null @@ -1,167 +0,0 @@ -package vip - -import ( - "f5" - "main/constant" - "main/service" - "q5" - "strings" - - "github.com/gin-gonic/gin" -) - -type VIPApi struct { -} - -func (this *VIPApi) Info(c *gin.Context) { - accountAddress := c.MustGet("account_address").(string) - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - ContributionPoint string `json:"contribution_point"` - Info struct { - BindPassport string `json:"bind_passport_address"` - Email string `json:"bind_email"` - } `json:"info"` - }{} - - { - var dbErr error - sql := "SELECT passport_address,lower_case_email FROM t_vip_bind WHERE account_address = ?;" - params := []string{ - accountAddress, - } - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - params, - func(err error, ds *f5.DataSet) { - dbErr = err - if err != nil { - return - } - if ds.Next() { - rspObj.Info.BindPassport = ds.GetByIndex(0) - rspObj.Info.Email = ds.GetByIndex(1) - } - }) - - if dbErr != nil { - f5.RspErr(c, 500, "server internal error") - return - } - } - - c.JSON(200, rspObj) -} - -func (this *VIPApi) Bind(c *gin.Context) { - accountAddress := c.GetString("account_address") - if accountAddress == "" { - f5.RspErr(c, 1, "bad request") - return - } - reqObj := struct { - Passport_jwt string `json:"passport_jwt"` - }{} - - if err := c.ShouldBindJSON(&reqObj); err != nil { - f5.RspErr(c, 1, err.Error()) - return - } - - info := map[string]interface{}{} - info["account_address"] = "" - info["email"] = "" - service.JwtAuth.JwtAuthHandle(reqObj.Passport_jwt, &info, constant.JWT_PASSPORT) - passport_addr := info["account_address"].(string) - if passport_addr == "" || accountAddress == passport_addr { - f5.RspErr(c, 1, "bad request passport") - return - } - - email := info["email"].(string) - - bound := false - { - var dbErr error - sql := "SELECT idx FROM t_vip_bind WHERE account_address = ? OR passport_address = ?;" - params := []string{ - accountAddress, - passport_addr, - } - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - params, - func(err error, ds *f5.DataSet) { - dbErr = err - if err != nil { - return - } - - if ds.Next() { - bound = true - } - }) - - if dbErr != nil { - f5.RspErr(c, 500, "server internal error") - return - } - } - - if bound { - f5.RspErr(c, 1, "account or passport bound") - return - } - - { - ts := f5.GetApp().GetRealSeconds() - var dbErr error - f5.GetGoStyleDb().Insert( - constant.BCNFT_DB, - "t_vip_bind", - [][]string{ - {"account_address", accountAddress}, - {"passport_address", passport_addr}, - {"email", email}, - {"lower_case_email", strings.ToLower(email)}, - {"createtime", q5.ToString(ts)}, - {"modifytime", q5.ToString(ts)}, - }, - func(err error, lastInsertId int64, rowsAffected int64) { - if err != nil { - dbErr = err - return - } - }) - - if dbErr != nil { - f5.RspErr(c, 500, "server internal error") - return - } - } - - f5.RspErr(c, 0, "") -} - -func (this *VIPApi) Details(c *gin.Context) { - accountAddress := c.GetString("account_address") - if accountAddress == "" { - f5.RspErr(c, 1, "bad request") - return - } - - rspObj := struct { - ErrCode int32 `json:"errcode"` - ErrMsg string `json:"errmsg"` - Info struct { - Level int32 `json:"level"` - Cur int64 `json:"curpoint"` - Target int64 `json:"target"` - } `json:"info"` - }{} - - c.JSON(200, rspObj) -} diff --git a/server/payserver/app/app.go b/server/payserver/app/app.go index 71755c7..06266d5 100644 --- a/server/payserver/app/app.go +++ b/server/payserver/app/app.go @@ -2,10 +2,8 @@ package app import ( "f5" - "jccommon" "main/constant" "main/mt" - "q5" ) type app struct { @@ -30,20 +28,7 @@ func (this *app) Run(initCb func(), unInitCb func()) { func (this *app) Init() { f5.LoadMetaTable(mt.Table) this.registerDataSources() - this.initCb() - transId := jccommon.NewTransId() - transId.Init(11, q5.ToInt32(f5.GetApp().GetRealSeconds()), 1234567, [3]int64{ - 1000000000123456789, - 1000000000123456789, - 1000000000123456789}) - idStr, _ := transId.ToString() - transId2 := jccommon.NewTransId() - transId2.ParseString(idStr) - f5.GetSysLog().Info("transId1:%s", idStr) - { - idStr2, _ := transId2.ToString() - f5.GetSysLog().Info("transId2:%s", idStr2) - } + this.initCb() } func (this *app) UnInit() { @@ -54,17 +39,6 @@ func (this *app) Update() { } func (this *app) registerDataSources() { - f5.GetGoStyleDb().RegisterDataSource( - constant.BCNFT_DB, - mt.Table.NftDb.GetById(0).GetHost(), - mt.Table.NftDb.GetById(0).GetPort(), - mt.Table.NftDb.GetById(0).GetUser(), - mt.Table.NftDb.GetById(0).GetPasswd(), - mt.Table.NftDb.GetById(0).GetDatabase(), - 1, - mt.Table.NftDb.GetById(0).GetMaxOpenConns(), - mt.Table.NftDb.GetById(0).GetMaxIdleConns()) - f5.GetGoStyleDb().RegisterDataSource( constant.PAY_DB, mt.Table.PayDb.GetById(0).GetHost(), diff --git a/server/payserver/constant/constant.go b/server/payserver/constant/constant.go index 01b4c30..ac6d31c 100644 --- a/server/payserver/constant/constant.go +++ b/server/payserver/constant/constant.go @@ -1,11 +1,12 @@ package constant const ( - ACCOUNT_DB = "accountdb" - BCNFT_DB = "bcnftdb" - GAME_DB = "gamedb" - CONF_DB = "confdb" - PAY_DB = "paydb" + ACCOUNT_DB = "accountdb" + BCNFT_DB = "bcnftdb" + GAME_DB = "gamedb" + CONF_DB = "confdb" + PAY_DB = "paydb" + LOGIN_REDIS = "loginredis" ) const ( @@ -37,3 +38,14 @@ const ( JWT_METAMAST = 1 JWT_PASSPORT = 2 ) + +const ( + WX_ERRCODE_OK = 0 + WX_ERRCODE_BUSY = -1 + WX_ERRCODE_SIGERR = 90010 + WX_ERRCODE_PAYSIGERR = 90011 + WX_ERRCODE_SAMEBILLNO = 90012 + WX_ERRCODE_NOENOUGH = 90013 + WX_ERRCODE_SESSIONERR = 90016 + WX_ERRCODE_PARAMERR = 90018 +) diff --git a/server/payserver/middleware/jwtauth.go b/server/payserver/middleware/jwtauth.go index fc9a507..7738094 100644 --- a/server/payserver/middleware/jwtauth.go +++ b/server/payserver/middleware/jwtauth.go @@ -1,12 +1,7 @@ package middleware import ( - "f5" - "fmt" - "jccommon" - "main/mt" "q5" - "strings" "github.com/gin-gonic/gin" ) @@ -46,133 +41,133 @@ func internalJwtAuth(c *gin.Context, maybe bool) { } func internalImmutJwtAuth(c *gin.Context, jwtToken string) { - params := map[string]string{ - "c": "Jwt", - "a": "verify", - } - jsonReqObj := &struct { - JwksUri string `json:"jwksUri"` - Data string `json:"data"` - }{ - JwksUri: mt.Table.Config.GetJwksUri(), - Data: jwtToken, - } - jsonRspObj := &struct { - ErrCode interface{} `json:"errcode"` - ErrMsg string `json:"errmsg"` - Decoded struct { - Sub string `json:"sub"` - Email string `json:"email"` - EmailVerified bool `json:"email_verified"` - Sid string `json:"sid"` - Passport struct { - ZkevmEthAddress string `json:"zkevm_eth_address"` - } `json:"passport"` - } `json:"decoded"` - }{} - rspObj := &struct { - ErrCode interface{} `json:"errcode"` - ErrMsg string `json:"errmsg"` - }{} - paramsStr := q5.EncodeJson(jsonReqObj) - url := fmt.Sprintf("%s/webapp/index.php", mt.Table.Web3ServiceCluster.RandElement().GetUrl()) - f5.GetHttpCliMgr().SendGoStyleJsonRspPost( - url, - params, - jsonRspObj, - q5.HTTP_HEADER_JSON, - paramsStr, - func(rsp f5.HttpCliResponse) { - if rsp.GetErr() != nil || - !rsp.JsonParseOk() { - rspObj.ErrCode = 500 - rspObj.ErrMsg = "server internal error" - c.JSON(200, rspObj) - c.Abort() - return - } - rspObj.ErrCode = q5.SafeToInt32(jsonRspObj.ErrCode) - rspObj.ErrMsg = jsonRspObj.ErrMsg - if q5.SafeToInt32(rspObj.ErrCode) != 0 { - rspObj.ErrCode = 501 - rspObj.ErrMsg = "jwt expired" - c.JSON(200, rspObj) - c.Abort() - return - } - openId := fmt.Sprintf("%d_2006_%s", jccommon.IMTBL_CHANNEL, jsonRspObj.Decoded.Sub) - c.Set("open_id", openId) - c.Set("account_address", jsonRspObj.Decoded.Passport.ZkevmEthAddress) - c.Set("email", jsonRspObj.Decoded.Email) - c.Next() - }) + // params := map[string]string{ + // "c": "Jwt", + // "a": "verify", + // } + // jsonReqObj := &struct { + // JwksUri string `json:"jwksUri"` + // Data string `json:"data"` + // }{ + // JwksUri: mt.Table.Config.GetJwksUri(), + // Data: jwtToken, + // } + // jsonRspObj := &struct { + // ErrCode interface{} `json:"errcode"` + // ErrMsg string `json:"errmsg"` + // Decoded struct { + // Sub string `json:"sub"` + // Email string `json:"email"` + // EmailVerified bool `json:"email_verified"` + // Sid string `json:"sid"` + // Passport struct { + // ZkevmEthAddress string `json:"zkevm_eth_address"` + // } `json:"passport"` + // } `json:"decoded"` + // }{} + // rspObj := &struct { + // ErrCode interface{} `json:"errcode"` + // ErrMsg string `json:"errmsg"` + // }{} + // paramsStr := q5.EncodeJson(jsonReqObj) + // url := fmt.Sprintf("%s/webapp/index.php", mt.Table.Web3ServiceCluster.RandElement().GetUrl()) + // f5.GetHttpCliMgr().SendGoStyleJsonRspPost( + // url, + // params, + // jsonRspObj, + // q5.HTTP_HEADER_JSON, + // paramsStr, + // func(rsp f5.HttpCliResponse) { + // if rsp.GetErr() != nil || + // !rsp.JsonParseOk() { + // rspObj.ErrCode = 500 + // rspObj.ErrMsg = "server internal error" + // c.JSON(200, rspObj) + // c.Abort() + // return + // } + // rspObj.ErrCode = q5.SafeToInt32(jsonRspObj.ErrCode) + // rspObj.ErrMsg = jsonRspObj.ErrMsg + // if q5.SafeToInt32(rspObj.ErrCode) != 0 { + // rspObj.ErrCode = 501 + // rspObj.ErrMsg = "jwt expired" + // c.JSON(200, rspObj) + // c.Abort() + // return + // } + // openId := fmt.Sprintf("%d_2006_%s", jccommon.IMTBL_CHANNEL, jsonRspObj.Decoded.Sub) + // c.Set("open_id", openId) + // c.Set("account_address", jsonRspObj.Decoded.Passport.ZkevmEthAddress) + // c.Set("email", jsonRspObj.Decoded.Email) + // c.Next() + // }) } func internalMetaMaskJwtAuth(c *gin.Context, jwtToken string) { - params := map[string]string{ - "c": "MetaMaskJwt", - "a": "verify", - } - jsonReqObj := &struct { - Data string `json:"data"` - }{ - Data: jwtToken, - } - jsonRspObj := &struct { - ErrCode interface{} `json:"errcode"` - ErrMsg string `json:"errmsg"` - Decoded struct { - Id string `json:"id"` - OpenId string `json:"openid"` - Plat int32 `json:"plat"` - Version int32 `json:"version"` - Email string `json:"email"` - } `json:"decoded"` - }{} - rspObj := &struct { - ErrCode interface{} `json:"errcode"` - ErrMsg string `json:"errmsg"` - }{} - paramsStr := q5.EncodeJson(jsonReqObj) - url := fmt.Sprintf("%s/webapp/index.php", mt.Table.Web3ServiceCluster.RandElement().GetUrl()) - f5.GetHttpCliMgr().SendGoStyleJsonRspPost( - url, - params, - jsonRspObj, - q5.HTTP_HEADER_JSON, - paramsStr, - func(rsp f5.HttpCliResponse) { - if rsp.GetErr() != nil || - !rsp.JsonParseOk() { - rspObj.ErrCode = 500 - rspObj.ErrMsg = "server internal error" - c.JSON(200, rspObj) - c.Abort() - return - } - rspObj.ErrCode = q5.SafeToInt32(jsonRspObj.ErrCode) - rspObj.ErrMsg = jsonRspObj.ErrMsg - if q5.SafeToInt32(rspObj.ErrCode) != 0 { - rspObj.ErrCode = 501 - rspObj.ErrMsg = "jwt error" - c.JSON(200, rspObj) - c.Abort() - return - } - if jsonRspObj.Decoded.Plat != jccommon.BC_POLY_POLY_METAKASK { - rspObj.ErrCode = 501 - rspObj.ErrMsg = "not support this platform" - c.JSON(200, rspObj) - c.Abort() - f5.GetSysLog().Info("not support this platform:%s", rsp.GetRawData()) - return - } - openId := fmt.Sprintf("%d_2006_%s", - jccommon.BC_CHANNEL, - strings.ToLower(jsonRspObj.Decoded.OpenId)) - c.Set("open_id", openId) - c.Set("account_address", strings.ToLower(jsonRspObj.Decoded.OpenId)) - c.Set("email", strings.ToLower(jsonRspObj.Decoded.Email)) - c.Next() - }) + // params := map[string]string{ + // "c": "MetaMaskJwt", + // "a": "verify", + // } + // jsonReqObj := &struct { + // Data string `json:"data"` + // }{ + // Data: jwtToken, + // } + // jsonRspObj := &struct { + // ErrCode interface{} `json:"errcode"` + // ErrMsg string `json:"errmsg"` + // Decoded struct { + // Id string `json:"id"` + // OpenId string `json:"openid"` + // Plat int32 `json:"plat"` + // Version int32 `json:"version"` + // Email string `json:"email"` + // } `json:"decoded"` + // }{} + // rspObj := &struct { + // ErrCode interface{} `json:"errcode"` + // ErrMsg string `json:"errmsg"` + // }{} + // paramsStr := q5.EncodeJson(jsonReqObj) + // url := fmt.Sprintf("%s/webapp/index.php", mt.Table.Web3ServiceCluster.RandElement().GetUrl()) + // f5.GetHttpCliMgr().SendGoStyleJsonRspPost( + // url, + // params, + // jsonRspObj, + // q5.HTTP_HEADER_JSON, + // paramsStr, + // func(rsp f5.HttpCliResponse) { + // if rsp.GetErr() != nil || + // !rsp.JsonParseOk() { + // rspObj.ErrCode = 500 + // rspObj.ErrMsg = "server internal error" + // c.JSON(200, rspObj) + // c.Abort() + // return + // } + // rspObj.ErrCode = q5.SafeToInt32(jsonRspObj.ErrCode) + // rspObj.ErrMsg = jsonRspObj.ErrMsg + // if q5.SafeToInt32(rspObj.ErrCode) != 0 { + // rspObj.ErrCode = 501 + // rspObj.ErrMsg = "jwt error" + // c.JSON(200, rspObj) + // c.Abort() + // return + // } + // if jsonRspObj.Decoded.Plat != jccommon.BC_POLY_POLY_METAKASK { + // rspObj.ErrCode = 501 + // rspObj.ErrMsg = "not support this platform" + // c.JSON(200, rspObj) + // c.Abort() + // f5.GetSysLog().Info("not support this platform:%s", rsp.GetRawData()) + // return + // } + // openId := fmt.Sprintf("%d_2006_%s", + // jccommon.BC_CHANNEL, + // strings.ToLower(jsonRspObj.Decoded.OpenId)) + // c.Set("open_id", openId) + // c.Set("account_address", strings.ToLower(jsonRspObj.Decoded.OpenId)) + // c.Set("email", strings.ToLower(jsonRspObj.Decoded.Email)) + // c.Next() + // }) } diff --git a/server/payserver/model/inapp_order.go b/server/payserver/model/inapp_order.go index f447f2a..4fbd608 100644 --- a/server/payserver/model/inapp_order.go +++ b/server/payserver/model/inapp_order.go @@ -54,14 +54,6 @@ func (this *InAppOrder) UpdateFields(fields []string) error { } func (this *InAppOrder) Find(accountId string, orderId string) (error, bool) { - // if result := f5.GetApp().GetOrmDb(constant.PAY_DB).Table(this.TableName()).Take( - // this, "account_id = ? AND order_id = ?", accountId, orderId); result.Error != nil && - // !errors.Is(result.Error, gorm.ErrRecordNotFound) { - // return result.Error, false - // } else { - // return nil, result.RowsAffected > 0 - // } - err, ok := this.FindByOrderId(orderId) if err != nil { return err, false diff --git a/server/payserver/mt/Config.go b/server/payserver/mt/Config.go index 72b6328..e106490 100644 --- a/server/payserver/mt/Config.go +++ b/server/payserver/mt/Config.go @@ -3,6 +3,7 @@ package mt import ( "f5" "main/mtb" + "strings" ) type Config struct { @@ -18,8 +19,8 @@ func (this *ConfigTable) GetGameApiUrl() string { return this.selfConf.GetGameapiUrl() } -func (this *ConfigTable) GetJwksUri() string { - return this.selfConf.GetJwksUri() +func (this *ConfigTable) GetWxUrl() []string { + return strings.Split(this.selfConf.GetWxUrl(), "|") } /* diff --git a/server/payserver/mt/Contract.go b/server/payserver/mt/Contract.go deleted file mode 100644 index 8d95743..0000000 --- a/server/payserver/mt/Contract.go +++ /dev/null @@ -1,112 +0,0 @@ -package mt - -import ( - "encoding/json" - "f5" - "fmt" - "q5" - "strings" -) - -type Contract struct { - name string - address string -} - -type ContractTable struct { - netIdNameHash *q5.ConcurrentMap[string, *Contract] - netIdAddressHash *q5.ConcurrentMap[string, *Contract] -} - -func (this *Contract) GetName() string { - return this.name -} - -func (this *Contract) GetAddress() string { - return this.address -} - -func (this *ContractTable) IsNoLoad() bool { - return false -} - -func (this *ContractTable) Load() { - this.netIdNameHash = new(q5.ConcurrentMap[string, *Contract]) - this.netIdAddressHash = new(q5.ConcurrentMap[string, *Contract]) - nets := []interface{}{} - { - if jsonStr, err := f5.ReadJsonFile("../config/nets.json"); err == nil { - if err := json.Unmarshal([]byte(jsonStr), &nets); err != nil { - panic(fmt.Sprintf("load metafile json decode error %s %s", "nets.json", err)) - } - } else { - panic(fmt.Sprintf("load metafile error %s %s", "nets.json", err)) - } - } - { - for _, val := range nets { - netId := q5.SafeToInt32(val) - fileName := fmt.Sprintf("../config/nets/%d/contract.json", netId) - if jsonStr, err := f5.ReadJsonFile(fileName); err == nil { - contracts := []struct { - Name string `json:"name"` - Address string `json:"address"` - }{} - if err := json.Unmarshal([]byte(jsonStr), &contracts); err != nil { - panic(fmt.Sprintf("load metafile json decode error %s %s", "contract.json", err)) - } - for _, val2 := range contracts { - p := new(Contract) - p.name = q5.SafeToString(val2.Name) - p.address = strings.ToLower(q5.SafeToString(val2.Address)) - { - key := fmt.Sprintf("%d_%s", netId, p.name) - this.netIdNameHash.Store(key, p) - } - { - key := fmt.Sprintf("%d_%s", netId, p.address) - this.netIdAddressHash.Store(key, p) - } - } - } else { - panic(fmt.Sprintf("load metafile error %s %s", "contract.json", err)) - } - } - } -} - -func (this *ContractTable) PreInit1() { - -} - -func (this *ContractTable) ElementsInit(int) { - -} - -func (this *ContractTable) PostInit1() { - -} - -func (this *ContractTable) GetByNetIdName(netId int32, name string) *Contract { - key := fmt.Sprintf("%d_%s", netId, name) - if v, ok := this.netIdNameHash.Load(key); ok { - return *v - } else { - return nil - } -} - -func (this *ContractTable) GetByNetIdAddress(netId int32, address string) *Contract { - key := fmt.Sprintf("%d_%s", netId, address) - if v, ok := this.netIdAddressHash.Load(key); ok { - return *v - } else { - return nil - } -} - -func (this *ContractTable) Traverse(cb func(*Contract) bool) { - this.netIdNameHash.Range(func(k string, v *Contract) bool { - return cb(v) - }) -} diff --git a/server/payserver/mt/Currency.go b/server/payserver/mt/Currency.go deleted file mode 100644 index 19b71bb..0000000 --- a/server/payserver/mt/Currency.go +++ /dev/null @@ -1,164 +0,0 @@ -package mt - -import ( - "f5" - "fmt" - "jccommon" - "main/constant" - "q5" - "strings" -) - -type Currency struct { - currencyName string - contractName string - currencyDecimal int64 - contract *Contract -} - -type CurrencyTable struct { - f5.CustomMetaTable - netIdHash *q5.ConcurrentMap[int32, *q5.ConcurrentMap[string, *Currency]] -} - -func (this *Currency) init(currencyName string, contractName string, currencyDecimal int64) { - this.currencyName = currencyName - this.contractName = contractName - this.currencyDecimal = currencyDecimal -} - -func (this *Currency) GetCurrencyName() string { - return this.currencyName -} - -func (this *Currency) GetContractName() string { - return this.contractName -} - -func (this *Currency) GetCurrencyDecimal() int64 { - return this.currencyDecimal -} - -func (this *Currency) GetContract() *Contract { - return this.contract -} - -func (this *Currency) check(netId int32) { - if this.GetCurrencyDecimal() <= 0 { - panic("Currency currency_decimal <= 0") - return - } - if netId == 56 || netId == 97 { - if this.GetCurrencyDecimal() != constant.BNB_RECHARGE_CURRENCY_MAX_DECIMAL { - panic("Currency exchange_rate > uplimit") - return - } - } else { - if this.GetCurrencyDecimal() != constant.RECHARGE_CURRENCY_MAX_DECIMAL { - panic("Currency exchange_rate > uplimit") - return - } - } -} - -func (this *CurrencyTable) GetByNetId(netId int32) *q5.ConcurrentMap[string, *Currency] { - if v, ok := this.netIdHash.Load(netId); ok { - return *v - } else { - return nil - } -} - -func (this *CurrencyTable) GetByNetIdAddress(netId int32, currencyAddress string) *Currency { - currencysMeta := this.GetByNetId(netId) - if currencysMeta == nil { - return nil - } - var result *Currency - currencyAddress = strings.ToLower(currencyAddress) - currencysMeta.Range( - func(key string, meta *Currency) bool { - if meta.GetContract().GetAddress() == currencyAddress { - result = meta - return false - } - return true - }) - return result -} - -func (this *CurrencyTable) Load() { - -} - -func (this *CurrencyTable) PostInit1() { - -} - -func (this *CurrencyTable) verifyCurrencyAddress(netId int32, name string, address string) { - switch netId { - case jccommon.ETH_NET_ID: - { - if name == "BEUSDC" { - if strings.ToLower(address) != strings.ToLower(jccommon.ETH_USDC_ADDRESS) { - panic(fmt.Sprintf("verifyCurrencyAddress error net:%d name:%s address:%s", - netId, name, address)) - } - } else if name == "BEUSDT" { - if strings.ToLower(address) != strings.ToLower(jccommon.ETH_USDT_ADDRESS) { - panic(fmt.Sprintf("verifyCurrencyAddress error net:%d name:%s address:%s", - netId, name, address)) - } - } else { - panic(fmt.Sprintf("verifyCurrencyAddress error net:%d name:%s address:%s", - netId, name, address)) - } - } - case jccommon.IMTBL_NET_ID: - { - if name == "BEUSDC" { - if strings.ToLower(address) != strings.ToLower(jccommon.IMTBL_USDC_ADDRESS) { - panic(fmt.Sprintf("verifyCurrencyAddress error net:%d name:%s address:%s", - netId, name, address)) - } - } else { - panic(fmt.Sprintf("verifyCurrencyAddress error net:%d name:%s address:%s", - netId, name, address)) - } - } - case jccommon.ARB_NET_ID: - { - if name == "BEUSDC" { - if strings.ToLower(address) != strings.ToLower(jccommon.ARB_USDC_ADDRESS) { - panic(fmt.Sprintf("verifyCurrencyAddress error net:%d name:%s address:%s", - netId, name, address)) - } - } else if name == "BEUSDT" { - if strings.ToLower(address) != strings.ToLower(jccommon.ARB_USDT_ADDRESS) { - panic(fmt.Sprintf("verifyCurrencyAddress error net:%d name:%s address:%s", - netId, name, address)) - } - } else { - panic(fmt.Sprintf("verifyCurrencyAddress error net:%d name:%s address:%s", - netId, name, address)) - } - } - case jccommon.BNB_NET_ID: - { - if name == "BEUSDC" { - if strings.ToLower(address) != strings.ToLower(jccommon.BNB_USDC_ADDRESS) { - panic(fmt.Sprintf("verifyCurrencyAddress error net:%d name:%s address:%s", - netId, name, address)) - } - } else if name == "BEUSDT" { - if strings.ToLower(address) != strings.ToLower(jccommon.BNB_USDT_ADDRESS) { - panic(fmt.Sprintf("verifyCurrencyAddress error net:%d name:%s address:%s", - netId, name, address)) - } - } else { - panic(fmt.Sprintf("verifyCurrencyAddress error net:%d name:%s address:%s", - netId, name, address)) - } - } - } -} diff --git a/server/payserver/mt/Item.go b/server/payserver/mt/Item.go deleted file mode 100644 index 436ad32..0000000 --- a/server/payserver/mt/Item.go +++ /dev/null @@ -1,60 +0,0 @@ -package mt - -import ( - "q5" - "f5" - "os" - "main/mtb" - "jccommon" - "strings" -) - -type Item struct { - mtb.Item - lowerName string -} - -type ItemTable struct { - f5.IdMetaTable[Item] - itemIdHash *q5.ConcurrentMap[int64, *Item] -} - -func (this *ItemTable) PostInit1() { - this.itemIdHash = new(q5.ConcurrentMap[int64, *Item]) - items := []struct { - Id int32 `json:"id"` - Name string `json:"name"` - Type int32 `json:"type"` - SubType int32 `json:"sub_type"` - }{} - this.Traverse( - func (ele *Item) bool { - if ele.GetType() == jccommon.ITEM_TYPE_HERO || - ele.GetType() == jccommon.ITEM_TYPE_GOLD_BULLION { - langMeta := Table.Language.GetByName(ele.GetName()) - p := q5.NewSliceElement(&items) - p.Id = ele.GetId() - p.Name = langMeta.GetEn() - p.Type = ele.GetType() - p.SubType = ele.GetSubType() - - ele.lowerName = strings.ToLower(langMeta.GetEn()) - this.itemIdHash.Store(q5.ToInt64(ele.GetId()), ele) - } - return true - }) - data := q5.EncodeJson(&items) - if err := os.WriteFile("item.json", []byte(data), 0644); err == nil { - } -} - -func (this *ItemTable) Search(name string, itemIds map[int32]int32) { - name = strings.ToLower(name) - this.Traverse( - func (ele *Item) bool { - if strings.Contains(ele.lowerName, name) { - itemIds[ele.GetId()] = 1 - } - return true - }) -} diff --git a/server/payserver/mt/Language.go b/server/payserver/mt/Language.go deleted file mode 100644 index cc033fb..0000000 --- a/server/payserver/mt/Language.go +++ /dev/null @@ -1,14 +0,0 @@ -package mt - -import ( - "f5" - "main/mtb" -) - -type Language struct { - mtb.Language -} - -type LanguageTable struct { - f5.NameMetaTable[Language] -} diff --git a/server/payserver/mt/LoginRedis.go b/server/payserver/mt/LoginRedis.go new file mode 100644 index 0000000..fca21da --- /dev/null +++ b/server/payserver/mt/LoginRedis.go @@ -0,0 +1,15 @@ +package mt + +import ( + "f5" + "main/mtb" +) + +type LoginRedis struct { + mtb.LoginRedis +} + +type LoginRedisTable struct { + f5.IdMetaTable[LoginRedis] + selfConf *LoginRedis +} diff --git a/server/payserver/mt/NftDb.go b/server/payserver/mt/NftDb.go deleted file mode 100644 index cfb49c9..0000000 --- a/server/payserver/mt/NftDb.go +++ /dev/null @@ -1,17 +0,0 @@ -package mt - -import ( - "f5" - "main/mtb" -) - -type NftDb struct { - mtb.NftDb -} - -type NftDbTable struct { - f5.IdMetaTable[NftDb] -} - -func (this *NftDb) Init1() { -} diff --git a/server/payserver/mt/StakingVip.go b/server/payserver/mt/StakingVip.go deleted file mode 100644 index 73c6528..0000000 --- a/server/payserver/mt/StakingVip.go +++ /dev/null @@ -1,14 +0,0 @@ -package mt - -import ( - "f5" - "main/mtb" -) - -type StakingVip struct { - mtb.StakingVip -} - -type StakingVipTable struct { - f5.IdMetaTable[StakingVip] -} \ No newline at end of file diff --git a/server/payserver/mt/Web3ServiceCluster.go b/server/payserver/mt/Web3ServiceCluster.go deleted file mode 100644 index fd4a1ac..0000000 --- a/server/payserver/mt/Web3ServiceCluster.go +++ /dev/null @@ -1,18 +0,0 @@ -package mt - -import ( - "f5" - "main/mtb" -) - -type Web3ServiceCluster struct { - mtb.Web3ServiceCluster -} - -type Web3ServiceClusterTable struct { - f5.IdMetaTable[Web3ServiceCluster] -} - -func (this *Web3ServiceCluster) Init1() { - -} diff --git a/server/payserver/mt/Web3SignCluster.go b/server/payserver/mt/Web3SignCluster.go deleted file mode 100644 index 2b62e30..0000000 --- a/server/payserver/mt/Web3SignCluster.go +++ /dev/null @@ -1,18 +0,0 @@ -package mt - -import ( - "f5" - "main/mtb" -) - -type Web3SignCluster struct { - mtb.Web3SignCluster -} - -type Web3SignClusterTable struct { - f5.IdMetaTable[Web3SignCluster] -} - -func (this *Web3SignCluster) Init1() { - -} diff --git a/server/payserver/mt/Wxconfig.go b/server/payserver/mt/Wxconfig.go new file mode 100644 index 0000000..b7beb1f --- /dev/null +++ b/server/payserver/mt/Wxconfig.go @@ -0,0 +1,14 @@ +package mt + +import ( + "f5" + "main/mtb" +) + +type Wxconfig struct { + mtb.Wxconfig +} + +type WxconfigTable struct { + f5.IdMetaTable[Wxconfig] +} diff --git a/server/payserver/mt/export.go b/server/payserver/mt/export.go index 9339413..09e699b 100644 --- a/server/payserver/mt/export.go +++ b/server/payserver/mt/export.go @@ -5,19 +5,14 @@ import ( ) type table struct { - PayServerCluster *PayServerClusterTable - NftDb *NftDbTable - PayDb *PayDbTable - GameDb *GameDbTable - Config *ConfigTable - Item *ItemTable - Language *LanguageTable - Web3ServiceCluster *Web3ServiceClusterTable - Web3SignCluster *Web3SignClusterTable - Recharge *RechargeTable - Currency *CurrencyTable - AccountDb *AccountDbTable - ConfDb *ConfDbTable + PayServerCluster *PayServerClusterTable + PayDb *PayDbTable + GameDb *GameDbTable + Config *ConfigTable + AccountDb *AccountDbTable + ConfDb *ConfDbTable + Wxconfig *WxconfigTable + LoginRedis *LoginRedisTable } var Table = f5.New(func(this *table) { @@ -26,11 +21,6 @@ var Table = f5.New(func(this *table) { this.PrimKey = "instance_id" }) - this.NftDb = f5.New(func(this *NftDbTable) { - this.FileName = "../config/nftdb.mysql.json" - this.PrimKey = "" - }) - this.PayDb = f5.New(func(this *PayDbTable) { this.FileName = "../config/paydb.mysql.json" this.PrimKey = "" @@ -56,30 +46,13 @@ var Table = f5.New(func(this *table) { this.PrimKey = "" }) - this.Item = f5.New(func(this *ItemTable) { - this.FileName = "../res/item@item.json" - this.PrimKey = "id" + this.Wxconfig = f5.New(func(this *WxconfigTable) { + this.FileName = "../res/wxconfig@wxconfig.json" + this.PrimKey = "gameid" }) - this.Language = f5.New(func(this *LanguageTable) { - this.FileName = "../res/language@language.json" - this.PrimKey = "info" - }) - - this.Web3ServiceCluster = f5.New(func(this *Web3ServiceClusterTable) { - this.FileName = "../config/web3service.cluster.json" + this.LoginRedis = f5.New(func(this *LoginRedisTable){ + this.FileName = "../config/login.redis.json" this.PrimKey = "" }) - - this.Web3SignCluster = f5.New(func(this *Web3SignClusterTable) { - this.FileName = "../config/web3sign.cluster.json" - this.PrimKey = "" - }) - - this.Currency = new(CurrencyTable) - - this.Recharge = f5.New(func(this *RechargeTable) { - this.FileName = "../res/recharge@recharge.json" - this.PrimKey = "id" - }) }) diff --git a/server/payserver/mtb/mtb.auto_gen.go b/server/payserver/mtb/mtb.auto_gen.go index ad8b4a5..3d69131 100644 --- a/server/payserver/mtb/mtb.auto_gen.go +++ b/server/payserver/mtb/mtb.auto_gen.go @@ -26,19 +26,6 @@ type AccountDb struct { _flags2_ uint64 } -type NftDb struct { - host string - port int32 - user string - passwd string - database string - max_open_conns int32 - max_idle_conns int32 - - _flags1_ uint64 - _flags2_ uint64 -} - type PayDb struct { host string port int32 @@ -80,7 +67,7 @@ type ConfDb struct { type Config struct { gameapi_url string - jwks_uri string + wx_url string _flags1_ uint64 _flags2_ uint64 @@ -125,30 +112,24 @@ type Recharge struct { _flags2_ uint64 } -type Web3ServiceCluster struct { - url string +type Wxconfig struct { + gameid int64 + appid string + appkey string + zoneid string + offerid string _flags1_ uint64 _flags2_ uint64 } -type Web3SignCluster struct { - url string - - _flags1_ uint64 - _flags2_ uint64 -} - -type StakingVip struct { - rights string - require int64 - thisPoint int64 - rank int32 - vip_name string - rate float64 - vip_working_tips string - vip_unworking_tips string - id int32 +type LoginRedis struct { + host string + port int32 + passwd string + database int32 + max_open_conns int32 + max_idle_conns int32 _flags1_ uint64 _flags2_ uint64 @@ -234,62 +215,6 @@ func (this *AccountDb) HasMaxIdleConns() bool { return (this._flags1_ & (uint64(1) << 7)) > 0 } -func (this *NftDb) GetHost() string { - return this.host -} - -func (this *NftDb) HasHost() bool { - return (this._flags1_ & (uint64(1) << 1)) > 0 -} - -func (this *NftDb) GetPort() int32 { - return this.port -} - -func (this *NftDb) HasPort() bool { - return (this._flags1_ & (uint64(1) << 2)) > 0 -} - -func (this *NftDb) GetUser() string { - return this.user -} - -func (this *NftDb) HasUser() bool { - return (this._flags1_ & (uint64(1) << 3)) > 0 -} - -func (this *NftDb) GetPasswd() string { - return this.passwd -} - -func (this *NftDb) HasPasswd() bool { - return (this._flags1_ & (uint64(1) << 4)) > 0 -} - -func (this *NftDb) GetDatabase() string { - return this.database -} - -func (this *NftDb) HasDatabase() bool { - return (this._flags1_ & (uint64(1) << 5)) > 0 -} - -func (this *NftDb) GetMaxOpenConns() int32 { - return this.max_open_conns -} - -func (this *NftDb) HasMaxOpenConns() bool { - return (this._flags1_ & (uint64(1) << 6)) > 0 -} - -func (this *NftDb) GetMaxIdleConns() int32 { - return this.max_idle_conns -} - -func (this *NftDb) HasMaxIdleConns() bool { - return (this._flags1_ & (uint64(1) << 7)) > 0 -} - func (this *PayDb) GetHost() string { return this.host } @@ -466,11 +391,11 @@ func (this *Config) HasGameapiUrl() bool { return (this._flags1_ & (uint64(1) << 1)) > 0 } -func (this *Config) GetJwksUri() string { - return this.jwks_uri +func (this *Config) GetWxUrl() string { + return this.wx_url } -func (this *Config) HasJwksUri() bool { +func (this *Config) HasWxUrl() bool { return (this._flags1_ & (uint64(1) << 2)) > 0 } @@ -594,94 +519,94 @@ func (this *Recharge) HasCanEmailBuy() bool { return (this._flags1_ & (uint64(1) << 6)) > 0 } -func (this *Web3ServiceCluster) GetUrl() string { - return this.url +func (this *Wxconfig) GetGameid() int64 { + return this.gameid } -func (this *Web3ServiceCluster) HasUrl() bool { +func (this *Wxconfig) HasGameid() bool { return (this._flags1_ & (uint64(1) << 1)) > 0 } -func (this *Web3SignCluster) GetUrl() string { - return this.url +func (this *Wxconfig) GetAppid() string { + return this.appid } -func (this *Web3SignCluster) HasUrl() bool { - return (this._flags1_ & (uint64(1) << 1)) > 0 -} - -func (this *StakingVip) GetRights() string { - return this.rights -} - -func (this *StakingVip) HasRights() bool { - return (this._flags1_ & (uint64(1) << 1)) > 0 -} - -func (this *StakingVip) GetRequire() int64 { - return this.require -} - -func (this *StakingVip) HasRequire() bool { +func (this *Wxconfig) HasAppid() bool { return (this._flags1_ & (uint64(1) << 2)) > 0 } -func (this *StakingVip) GetThisPoint() int64 { - return this.thisPoint +func (this *Wxconfig) GetAppkey() string { + return this.appkey } -func (this *StakingVip) HasThisPoint() bool { +func (this *Wxconfig) HasAppkey() bool { return (this._flags1_ & (uint64(1) << 3)) > 0 } -func (this *StakingVip) GetRank() int32 { - return this.rank +func (this *Wxconfig) GetZoneid() string { + return this.zoneid } -func (this *StakingVip) HasRank() bool { +func (this *Wxconfig) HasZoneid() bool { return (this._flags1_ & (uint64(1) << 4)) > 0 } -func (this *StakingVip) GetVipName() string { - return this.vip_name +func (this *Wxconfig) GetOfferid() string { + return this.offerid } -func (this *StakingVip) HasVipName() bool { +func (this *Wxconfig) HasOfferid() bool { return (this._flags1_ & (uint64(1) << 5)) > 0 } -func (this *StakingVip) GetRate() float64 { - return this.rate +func (this *LoginRedis) GetHost() string { + return this.host } -func (this *StakingVip) HasRate() bool { +func (this *LoginRedis) HasHost() bool { + return (this._flags1_ & (uint64(1) << 1)) > 0 +} + +func (this *LoginRedis) GetPort() int32 { + return this.port +} + +func (this *LoginRedis) HasPort() bool { + return (this._flags1_ & (uint64(1) << 2)) > 0 +} + +func (this *LoginRedis) GetPasswd() string { + return this.passwd +} + +func (this *LoginRedis) HasPasswd() bool { + return (this._flags1_ & (uint64(1) << 3)) > 0 +} + +func (this *LoginRedis) GetDatabase() int32 { + return this.database +} + +func (this *LoginRedis) HasDatabase() bool { + return (this._flags1_ & (uint64(1) << 4)) > 0 +} + +func (this *LoginRedis) GetMaxOpenConns() int32 { + return this.max_open_conns +} + +func (this *LoginRedis) HasMaxOpenConns() bool { + return (this._flags1_ & (uint64(1) << 5)) > 0 +} + +func (this *LoginRedis) GetMaxIdleConns() int32 { + return this.max_idle_conns +} + +func (this *LoginRedis) HasMaxIdleConns() bool { return (this._flags1_ & (uint64(1) << 6)) > 0 } -func (this *StakingVip) GetVipWorkingTips() string { - return this.vip_working_tips -} - -func (this *StakingVip) HasVipWorkingTips() bool { - return (this._flags1_ & (uint64(1) << 7)) > 0 -} - -func (this *StakingVip) GetVipUnworkingTips() string { - return this.vip_unworking_tips -} - -func (this *StakingVip) HasVipUnworkingTips() bool { - return (this._flags1_ & (uint64(1) << 8)) > 0 -} - -func (this *StakingVip) GetId() int32 { - return this.id -} - -func (this *StakingVip) HasId() bool { - return (this._flags1_ & (uint64(1) << 9)) > 0 -} - func (this *PayServerCluster) LoadFromKv(kv map[string]interface{}) { f5.ReadMetaTableField(&this.instance_id, "instance_id", &this._flags1_, 1, kv) @@ -699,16 +624,6 @@ func (this *AccountDb) LoadFromKv(kv map[string]interface{}) { f5.ReadMetaTableField(&this.max_idle_conns, "max_idle_conns", &this._flags1_, 7, kv) } -func (this *NftDb) LoadFromKv(kv map[string]interface{}) { - f5.ReadMetaTableField(&this.host, "host", &this._flags1_, 1, kv) - f5.ReadMetaTableField(&this.port, "port", &this._flags1_, 2, kv) - f5.ReadMetaTableField(&this.user, "user", &this._flags1_, 3, kv) - f5.ReadMetaTableField(&this.passwd, "passwd", &this._flags1_, 4, kv) - f5.ReadMetaTableField(&this.database, "database", &this._flags1_, 5, kv) - f5.ReadMetaTableField(&this.max_open_conns, "max_open_conns", &this._flags1_, 6, kv) - f5.ReadMetaTableField(&this.max_idle_conns, "max_idle_conns", &this._flags1_, 7, kv) -} - func (this *PayDb) LoadFromKv(kv map[string]interface{}) { f5.ReadMetaTableField(&this.host, "host", &this._flags1_, 1, kv) f5.ReadMetaTableField(&this.port, "port", &this._flags1_, 2, kv) @@ -741,7 +656,7 @@ func (this *ConfDb) LoadFromKv(kv map[string]interface{}) { func (this *Config) LoadFromKv(kv map[string]interface{}) { f5.ReadMetaTableField(&this.gameapi_url, "gameapi_url", &this._flags1_, 1, kv) - f5.ReadMetaTableField(&this.jwks_uri, "jwks_uri", &this._flags1_, 2, kv) + f5.ReadMetaTableField(&this.wx_url, "wx_url", &this._flags1_, 2, kv) } func (this *RechargeCurrency) LoadFromKv(kv map[string]interface{}) { @@ -771,22 +686,19 @@ func (this *Recharge) LoadFromKv(kv map[string]interface{}) { f5.ReadMetaTableField(&this.can_email_buy, "can_email_buy", &this._flags1_, 6, kv) } -func (this *Web3ServiceCluster) LoadFromKv(kv map[string]interface{}) { - f5.ReadMetaTableField(&this.url, "url", &this._flags1_, 1, kv) +func (this *Wxconfig) LoadFromKv(kv map[string]interface{}) { + f5.ReadMetaTableField(&this.gameid, "gameid", &this._flags1_, 1, kv) + f5.ReadMetaTableField(&this.appid, "appid", &this._flags1_, 2, kv) + f5.ReadMetaTableField(&this.appkey, "appkey", &this._flags1_, 3, kv) + f5.ReadMetaTableField(&this.zoneid, "zoneid", &this._flags1_, 4, kv) + f5.ReadMetaTableField(&this.offerid, "offerid", &this._flags1_, 5, kv) } -func (this *Web3SignCluster) LoadFromKv(kv map[string]interface{}) { - f5.ReadMetaTableField(&this.url, "url", &this._flags1_, 1, kv) -} - -func (this *StakingVip) LoadFromKv(kv map[string]interface{}) { - f5.ReadMetaTableField(&this.rights, "rights", &this._flags1_, 1, kv) - f5.ReadMetaTableField(&this.require, "require", &this._flags1_, 2, kv) - f5.ReadMetaTableField(&this.thisPoint, "thisPoint", &this._flags1_, 3, kv) - f5.ReadMetaTableField(&this.rank, "rank", &this._flags1_, 4, kv) - f5.ReadMetaTableField(&this.vip_name, "vip_name", &this._flags1_, 5, kv) - f5.ReadMetaTableField(&this.rate, "rate", &this._flags1_, 6, kv) - f5.ReadMetaTableField(&this.vip_working_tips, "vip_working_tips", &this._flags1_, 7, kv) - f5.ReadMetaTableField(&this.vip_unworking_tips, "vip_unworking_tips", &this._flags1_, 8, kv) - f5.ReadMetaTableField(&this.id, "id", &this._flags1_, 9, kv) +func (this *LoginRedis) LoadFromKv(kv map[string]interface{}) { + f5.ReadMetaTableField(&this.host, "host", &this._flags1_, 1, kv) + f5.ReadMetaTableField(&this.port, "port", &this._flags1_, 2, kv) + f5.ReadMetaTableField(&this.passwd, "passwd", &this._flags1_, 3, kv) + f5.ReadMetaTableField(&this.database, "database", &this._flags1_, 4, kv) + f5.ReadMetaTableField(&this.max_open_conns, "max_open_conns", &this._flags1_, 5, kv) + f5.ReadMetaTableField(&this.max_idle_conns, "max_idle_conns", &this._flags1_, 6, kv) } diff --git a/server/payserver/proto/mt.proto b/server/payserver/proto/mt.proto index 1144185..e2f01e4 100644 --- a/server/payserver/proto/mt.proto +++ b/server/payserver/proto/mt.proto @@ -20,17 +20,6 @@ message AccountDb optional int32 max_idle_conns = 7; } -message NftDb -{ - optional string host = 1; - optional int32 port = 2; - optional string user = 3; - optional string passwd = 4; - optional string database = 5; - optional int32 max_open_conns = 6; - optional int32 max_idle_conns = 7; -} - message PayDb { optional string host = 1; @@ -67,7 +56,7 @@ message ConfDb message Config { optional string gameapi_url = 1; - optional string jwks_uri = 2; + optional string wx_url = 2; } message RechargeCurrency @@ -101,25 +90,21 @@ message Recharge optional int32 can_email_buy = 6; } -message Web3ServiceCluster +message Wxconfig { - optional string url = 1; + optional int64 gameid = 1; + optional string appid = 2; + optional string appkey = 3; + optional string zoneid = 4; + optional string offerid = 5; } -message Web3SignCluster +message LoginRedis { - optional string url = 1; + optional string host = 1; + optional int32 port = 2; + optional string passwd = 3; + optional int32 database = 4; + optional int32 max_open_conns = 5; + optional int32 max_idle_conns = 6; } - -message StakingVip -{ - optional string rights = 1; - optional int64 require = 2; - optional int64 thisPoint = 3; - optional int32 rank = 4; - optional string vip_name = 5; - optional double rate = 6; - optional string vip_working_tips = 7; - optional string vip_unworking_tips = 8; - optional int32 id = 9; -} \ No newline at end of file diff --git a/server/payserver/router/activity/bitget.go b/server/payserver/router/activity/bitget.go deleted file mode 100644 index 7a1be7d..0000000 --- a/server/payserver/router/activity/bitget.go +++ /dev/null @@ -1,14 +0,0 @@ -package activity - -import ( - "f5" - v1 "main/api/v1" -) - -type BitGetRouter struct{} - -func (this *BitGetRouter) InitRouter() { - api := v1.ApiGroupApp.ActivityApiGroup - f5.GetApp().GetGinEngine().GET("/api/activity/bitget/mission/newuser/progress", - api.BitGetApi.NewUserMission) -} diff --git a/server/payserver/router/activity/contribution.go b/server/payserver/router/activity/contribution.go deleted file mode 100644 index 655ff46..0000000 --- a/server/payserver/router/activity/contribution.go +++ /dev/null @@ -1,16 +0,0 @@ -package activity - -import ( - "f5" - v1 "main/api/v1" -) - -type ContributionRouter struct{} - -func (this *ContributionRouter) InitRouter() { - api := v1.ApiGroupApp.ActivityApiGroup - f5.GetApp().GetGinEngine().GET("api/activity/contribution/history/:account_address", - api.ContriApi.HistoryQuery) - f5.GetApp().GetGinEngine().GET("/api/activity/cec/contribution/:account_address", - api.ContriApi.CECQuery) -} diff --git a/server/payserver/router/activity/enter.go b/server/payserver/router/activity/enter.go deleted file mode 100644 index a852227..0000000 --- a/server/payserver/router/activity/enter.go +++ /dev/null @@ -1,6 +0,0 @@ -package activity - -type RouterGroup struct { - BitGetRouter - ContributionRouter -} diff --git a/server/payserver/router/asset/asset.go b/server/payserver/router/asset/asset.go deleted file mode 100644 index b73f191..0000000 --- a/server/payserver/router/asset/asset.go +++ /dev/null @@ -1,14 +0,0 @@ -package asset - -import ( - "f5" - "main/api/v1" -) - -type AssetRouter struct{} - -func (this *AssetRouter) InitRouter() { - api := v1.ApiGroupApp.AssetApiGroup - f5.GetApp().GetGinEngine().GET("/api/asset/:net_id/:account_address", api.AssetApi.AccountAsset) - f5.GetApp().GetGinEngine().GET("/api/listing/:net_id/:account_address", api.AssetApi.Listing) -} diff --git a/server/payserver/router/asset/enter.go b/server/payserver/router/asset/enter.go deleted file mode 100644 index 5fb7e12..0000000 --- a/server/payserver/router/asset/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package asset - -type RouterGroup struct { - AssetRouter -} diff --git a/server/payserver/router/event/enter.go b/server/payserver/router/event/enter.go deleted file mode 100644 index d5d44f6..0000000 --- a/server/payserver/router/event/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package event - -type RouterGroup struct { - EventRouter -} diff --git a/server/payserver/router/event/event.go b/server/payserver/router/event/event.go deleted file mode 100644 index 036d607..0000000 --- a/server/payserver/router/event/event.go +++ /dev/null @@ -1,14 +0,0 @@ -package event - -import ( - "f5" - v1 "main/api/v1" -) - -type EventRouter struct{} - -func (er *EventRouter) InitRouter() { - api := v1.ApiGroupApp.EventApiGroup - f5.GetApp().GetGinEngine().GET("/api/chain/txhash/:net_id/:txhash", api.EventApi.TxQuery) - f5.GetApp().GetGinEngine().POST("/api/chain/event/activity/:account_address", api.EventApi.ActivityQuery) -} diff --git a/server/payserver/router/game_switch/enter.go b/server/payserver/router/game_switch/enter.go deleted file mode 100644 index 1871e5c..0000000 --- a/server/payserver/router/game_switch/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package game_switch - -type RouterGroup struct { - GameSwitchRouter -} diff --git a/server/payserver/router/game_switch/game_switch.go b/server/payserver/router/game_switch/game_switch.go deleted file mode 100644 index 9811f62..0000000 --- a/server/payserver/router/game_switch/game_switch.go +++ /dev/null @@ -1,13 +0,0 @@ -package game_switch - -import ( - "f5" - v1 "main/api/v1" -) - -type GameSwitchRouter struct{} - -func (this *GameSwitchRouter) InitRouter() { - api := v1.ApiGroupApp.SwitchApiGroup - f5.GetApp().GetGinEngine().GET("/api/server_switch", api.GameSwitchApi.List) -} diff --git a/server/payserver/router/gold_bullion/enter.go b/server/payserver/router/gold_bullion/enter.go deleted file mode 100644 index a6cc328..0000000 --- a/server/payserver/router/gold_bullion/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package gold_bullion - -type RouterGroup struct { - GoldBullionRouter -} diff --git a/server/payserver/router/gold_bullion/gold_bullion.go b/server/payserver/router/gold_bullion/gold_bullion.go deleted file mode 100644 index cad00f9..0000000 --- a/server/payserver/router/gold_bullion/gold_bullion.go +++ /dev/null @@ -1,13 +0,0 @@ -package gold_bullion - -import ( - //"f5" - //"main/api/v1" -) - -type GoldBullionRouter struct{} - -func (this *GoldBullionRouter) InitRouter() { - //api := v1.ApiGroupApp.GoldBullionApiGroup - // f5.GetApp().GetGinEngine().POST("/api/gold_bullion/use/:net_id", api.GoldBullionApi.Use) -} diff --git a/server/payserver/router/hero/enter.go b/server/payserver/router/hero/enter.go deleted file mode 100644 index 9e8ed7c..0000000 --- a/server/payserver/router/hero/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package hero - -type RouterGroup struct { - HeroRouter -} diff --git a/server/payserver/router/hero/hero.go b/server/payserver/router/hero/hero.go deleted file mode 100644 index 2b30a29..0000000 --- a/server/payserver/router/hero/hero.go +++ /dev/null @@ -1,13 +0,0 @@ -package hero - -import ( - //"f5" - //"main/api/v1" -) - -type HeroRouter struct{} - -func (this *HeroRouter) InitRouter() { - //api := v1.ApiGroupApp.HeroApiGroup - //f5.GetApp().GetGinEngine().POST("/api/hero/use/:net_id", api.HeroApi.Use) -} diff --git a/server/payserver/router/market/enter.go b/server/payserver/router/market/enter.go deleted file mode 100644 index 5e71f16..0000000 --- a/server/payserver/router/market/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package market - -type RouterGroup struct { - MarketRouter -} diff --git a/server/payserver/router/market/market.go b/server/payserver/router/market/market.go deleted file mode 100644 index 6c8f116..0000000 --- a/server/payserver/router/market/market.go +++ /dev/null @@ -1,26 +0,0 @@ -package market - -import ( - "f5" - v1 "main/api/v1" - "main/middleware" -) - -type MarketRouter struct{} - -func (this *MarketRouter) InitRouter() { - api := v1.ApiGroupApp.MarketApiGroup - f5.GetApp().GetGinEngine().POST("/api/market/product/list/:net_id", - middleware.MaybeJwtAuth, - api.MarketApi.ProductList) - f5.GetApp().GetGinEngine().POST("/api/market/product1/list/:net_id", - middleware.MaybeJwtAuth, - api.MarketApi.ProductList1) - f5.GetApp().GetGinEngine().GET("/api/market/transaction/history/:net_id/:account_address", - api.MarketApi.TransactionHistory) - f5.GetApp().GetGinEngine().GET("/api/market/product/category/:net_id", api.MarketApi.CategoryGoodsNum) - f5.GetApp().GetGinEngine().GET("/api/market/product/query_price", api.MarketApi.QueryPrice) - f5.GetApp().GetGinEngine().GET("/api/market/product/goods/:net_id/:contract_address/:token_id", - middleware.MaybeJwtAuth, - api.MarketApi.Goods) -} diff --git a/server/payserver/router/recharge/enter.go b/server/payserver/router/recharge/enter.go deleted file mode 100644 index 226b457..0000000 --- a/server/payserver/router/recharge/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package recharge - -type RouterGroup struct { - RechargeRouter -} diff --git a/server/payserver/router/recharge/recharge.go b/server/payserver/router/recharge/recharge.go deleted file mode 100644 index a455ca3..0000000 --- a/server/payserver/router/recharge/recharge.go +++ /dev/null @@ -1,17 +0,0 @@ -package recharge - -import ( - "f5" - v1 "main/api/v1" - "main/middleware" -) - -type RechargeRouter struct{} - -func (er *RechargeRouter) InitRouter() { - api := v1.ApiGroupApp.RechargeApiGroup - f5.GetApp().GetGinEngine().POST("/api/recharge/history/:net_id/:account_address", api.RechargeApi.RechargeQuery) - f5.GetApp().GetGinEngine().GET("/api/recharge/goods", api.RechargeApi.RechargeList) - f5.GetApp().GetGinEngine().POST("/api/recharge/buy", middleware.JwtAuth, api.RechargeApi.Buy) - f5.GetApp().GetGinEngine().POST("/api/recharge/buy_with_email", middleware.JwtAuth, api.RechargeApi.BuyWithEmail) -} diff --git a/server/payserver/router/routermgr.go b/server/payserver/router/routermgr.go index 2fdc01c..331c01a 100644 --- a/server/payserver/router/routermgr.go +++ b/server/payserver/router/routermgr.go @@ -3,51 +3,17 @@ package router import ( "f5" "main/middleware" - "main/router/activity" - "main/router/asset" - "main/router/event" - "main/router/game_switch" - "main/router/gold_bullion" - "main/router/hero" "main/router/ingame" - "main/router/market" - "main/router/recharge" - "main/router/shopcart" - "main/router/user" - "main/router/vip" ) type routerMgr struct { - market market.RouterGroup - asset asset.RouterGroup - hero hero.RouterGroup - goldBullion gold_bullion.RouterGroup - shopCart shopcart.RouterGroup ingame ingame.RouterGroup - user user.RouterGroup - activity activity.RouterGroup - event event.RouterGroup - recharge recharge.RouterGroup - gameswitch game_switch.RouterGroup - vip vip.RouterGroup } func (this *routerMgr) Init() { f5.GetApp().GetGinEngine().Use(middleware.Cors()) - this.market.MarketRouter.InitRouter() - this.asset.AssetRouter.InitRouter() - this.hero.HeroRouter.InitRouter() - this.goldBullion.GoldBullionRouter.InitRouter() - this.shopCart.ShopCartRouter.InitRouter() this.ingame.IngameRouter.InitRouter() - this.user.UserRouter.InitRouter() - this.activity.BitGetRouter.InitRouter() - this.activity.ContributionRouter.InitRouter() - this.event.EventRouter.InitRouter() - this.recharge.RechargeRouter.InitRouter() - this.gameswitch.GameSwitchRouter.InitRouter() - this.vip.InitRouter() - + f5.GetSysLog().Info("routerMgr.init") } diff --git a/server/payserver/router/shopcart/enter.go b/server/payserver/router/shopcart/enter.go deleted file mode 100644 index 0df91af..0000000 --- a/server/payserver/router/shopcart/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package shopcart - -type RouterGroup struct { - ShopCartRouter -} diff --git a/server/payserver/router/shopcart/shopcart.go b/server/payserver/router/shopcart/shopcart.go deleted file mode 100644 index e7a75e1..0000000 --- a/server/payserver/router/shopcart/shopcart.go +++ /dev/null @@ -1,19 +0,0 @@ -package shopcart - -import ( - "f5" - "main/api/v1" - "main/middleware" -) - -type ShopCartRouter struct{} - -func (this *ShopCartRouter) InitRouter() { - api := v1.ApiGroupApp.ShopCartApiGroup - shopCartGroup := f5.GetApp().GetGinEngine().Group("/api/shopcart") - shopCartGroup.Use(middleware.JwtAuth) - shopCartGroup.GET("/list", api.ShopCartApi.List) - shopCartGroup.POST("/add", api.ShopCartApi.Add) - shopCartGroup.POST("/del", api.ShopCartApi.Del) - shopCartGroup.POST("/clear", api.ShopCartApi.Clear) -} diff --git a/server/payserver/router/user/enter.go b/server/payserver/router/user/enter.go deleted file mode 100644 index 2ec59bd..0000000 --- a/server/payserver/router/user/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package user - -type RouterGroup struct { - UserRouter -} diff --git a/server/payserver/router/user/user.go b/server/payserver/router/user/user.go deleted file mode 100644 index c2ac772..0000000 --- a/server/payserver/router/user/user.go +++ /dev/null @@ -1,16 +0,0 @@ -package user - -import ( - "f5" - "main/middleware" - "main/api/v1" -) - -type UserRouter struct{} - -func (this *UserRouter) InitRouter() { - api := v1.ApiGroupApp.UserApiGroup - f5.GetApp().GetGinEngine().GET("/api/user/:account_address", - middleware.MaybeJwtAuth, - api.UserApi.Info) -} diff --git a/server/payserver/router/vip/enter.go b/server/payserver/router/vip/enter.go deleted file mode 100644 index 022844d..0000000 --- a/server/payserver/router/vip/enter.go +++ /dev/null @@ -1,5 +0,0 @@ -package vip - -type RouterGroup struct { - VIPRouter -} diff --git a/server/payserver/router/vip/vip.go b/server/payserver/router/vip/vip.go deleted file mode 100644 index d3d456b..0000000 --- a/server/payserver/router/vip/vip.go +++ /dev/null @@ -1,22 +0,0 @@ -package vip - -import ( - "f5" - v1 "main/api/v1" - "main/middleware" -) - -type VIPRouter struct{} - -func (this *VIPRouter) InitRouter() { - api := v1.ApiGroupApp.VIPApiGroup - f5.GetApp().GetGinEngine().GET("/api/vip/info", - middleware.JwtAuth, - api.VIPApi.Info) - f5.GetApp().GetGinEngine().POST("/api/vip/bind", - middleware.JwtAuth, - api.VIPApi.Bind) - f5.GetApp().GetGinEngine().GET("/api/vip/details", - middleware.JwtAuth, - api.VIPApi.Details) -} diff --git a/server/payserver/service/contribution.go b/server/payserver/service/contribution.go deleted file mode 100644 index 4f17312..0000000 --- a/server/payserver/service/contribution.go +++ /dev/null @@ -1,341 +0,0 @@ -package service - -import ( - "f5" - "fmt" - "main/constant" - "q5" - "time" -) - -type accountContribution struct { - history float64 - stakingContri float64 - gamecontribution float64 - rechargeContri float64 - gcTime int64 - loweremail string - accountid string -} - -func (ac *accountContribution) sum() float64 { - return ac.history + ac.stakingContri + ac.gamecontribution + ac.rechargeContri -} - -type contribution struct { - historyContribution float64 - stakingContribution float64 - rechargeContribution float64 - gameContribution float64 - gcTime int64 - - accountContributionlist q5.ConcurrentMap[string, *accountContribution] - emailContributionlist q5.ConcurrentMap[string, *accountContribution] -} - -func (this *contribution) init() { - this.accountContributionlist = q5.ConcurrentMap[string, *accountContribution]{} - this.emailContributionlist = q5.ConcurrentMap[string, *accountContribution]{} - this.GetGlobalContribution(true) - go this.checkContributionList() -} - -func (this *contribution) unInit() { - -} - -func (c *contribution) sum() float64 { - return c.historyContribution + c.stakingContribution + c.rechargeContribution + c.gameContribution -} - -func (this *contribution) GetEmailContributionAccountid(email string) (float64, string, error) { - info, exist := this.emailContributionlist.Load(email) - if exist { - return (*info).sum(), (*info).accountid, nil - } - - accountid := "" - accountAddress := "" - sql := `SELECT account_id, address FROM t_immutable_account WHERE idx > 0 AND lower_case_email = ?` - f5.GetGoStyleDb().RawQuery( - constant.ACCOUNT_DB, - sql, - []string{email}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - accountid = ds.GetByIndex(0) - accountAddress = ds.GetByIndex(1) - } - }) - - if accountAddress != "" { - contrinfo := new(accountContribution) - contrinfo.loweremail = email - contrinfo.accountid = accountid - this.accountContributionlist.Store(accountAddress, contrinfo) - contri, _ := this.GetAddressContribution(accountAddress, false) - - return contri, accountid, nil - } - - return 0, accountid, nil -} - -func (this *contribution) GetEmailAccountId(accountAddress string) (string, string) { - accinfo, exist := this.accountContributionlist.Load(accountAddress) - if exist { - return (*accinfo).loweremail, (*accinfo).accountid - } - - return "", "" -} - -func (this *contribution) GetAddressContribution(accountAddress string, onlyrecharge bool) (float64, error) { - if accountAddress == "" { - return 0, fmt.Errorf("empty account") - } - accinfo, exist := this.accountContributionlist.Load(accountAddress) - var beforcontribution float64 = 0 - if exist { - beforcontribution = (*accinfo).sum() - } - - if nowseconds := f5.GetApp().GetRealSeconds(); !exist || (*accinfo).gcTime+60 < nowseconds { - if !exist { - info := new(accountContribution) - this.accountContributionlist.Store(accountAddress, info) - accinfo = &info - } - beforcontribution = (*accinfo).sum() - - if (*accinfo).loweremail == "" { - sql := `SELECT account_id FROM t_user WHERE idx > 0 AND address = ?` - f5.GetGoStyleDb().RawQuery( - constant.GAME_DB, - sql, - []string{accountAddress}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - (*accinfo).accountid = ds.GetByIndex(0) - } - }) - - if (*accinfo).accountid != "" { - sql := `SELECT lower_case_email FROM t_immutable_account WHERE idx > 0 AND account_id = ?` - f5.GetGoStyleDb().RawQuery( - constant.ACCOUNT_DB, - sql, - []string{(*accinfo).accountid}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - (*accinfo).loweremail = ds.GetByIndex(0) - } - }) - } - - if (*accinfo).loweremail != "" { - this.emailContributionlist.Store((*accinfo).loweremail, *accinfo) - } - } - - { - sql := `SELECT contribution FROM t_contribution WHERE idx > 0 and account_address = ?` - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - []string{accountAddress}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - (*accinfo).history, _ = q5.ToFloat64Ex(ds.GetByIndex(0)) - } - }) - - sql = `SELECT SUM(contribution) FROM t_staking_daily_settlement WHERE idx > 0 and account_address = ?` - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - []string{accountAddress}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - (*accinfo).stakingContri, _ = q5.ToFloat64Ex(ds.GetByIndex(0)) - } - }) - } - - if (*accinfo).accountid != "" { - sql := `SELECT contribution FROM t_contribution WHERE idx > 0 AND account_id = ?` - f5.GetGoStyleDb().RawQuery( - constant.GAME_DB, - sql, - []string{(*accinfo).accountid}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - (*accinfo).gamecontribution, _ = q5.ToFloat64Ex(ds.GetByIndex(0)) - } - }) - } - - { - params := []string{accountAddress} - sql := `SELECT SUM(return_contribution) FROM t_recharge_return_contribution WHERE idx > 0 AND user_identity IN (?` - if (*accinfo).loweremail != "" { - sql += ", ?" - params = append(params, (*accinfo).loweremail) - } - sql += ")" - - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - params, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - (*accinfo).rechargeContri, _ = q5.ToFloat64Ex(ds.GetByIndex(0)) - } - }) - } - - (*accinfo).gcTime = nowseconds - } - - if beforcontribution > 0.000001 && (*accinfo).sum() > beforcontribution+0.000001 { - this.GetGlobalContribution(true) - } - - if onlyrecharge { - return (*accinfo).rechargeContri, nil - } - - return (*accinfo).sum(), nil -} - -func (this *contribution) GetGlobalContribution(instant bool) (float64, error) { - if this.historyContribution < 0.000001 { - sql := `SELECT SUM(contribution) FROM t_contribution WHERE idx > 0` - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - []string{}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - this.historyContribution, _ = q5.ToFloat64Ex(ds.GetByIndex(0)) - } - }) - } - - if nowseconds := f5.GetApp().GetRealSeconds(); nowseconds > this.gcTime+60 || instant { - sql := `SELECT SUM(contribution) FROM t_staking_daily_settlement WHERE idx > 0` - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - []string{}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - this.stakingContribution, _ = q5.ToFloat64Ex(ds.GetByIndex(0)) - } - }) - - sql = `SELECT SUM(contribution) FROM t_contribution WHERE idx > 0` - f5.GetGoStyleDb().RawQuery( - constant.GAME_DB, - sql, - []string{}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - this.gameContribution, _ = q5.ToFloat64Ex(ds.GetByIndex(0)) - } - }) - sql = `SELECT SUM(return_contribution) FROM t_recharge_return_contribution WHERE idx > 0` - f5.GetGoStyleDb().RawQuery( - constant.BCNFT_DB, - sql, - []string{}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - if ds.Next() { - this.rechargeContribution, _ = q5.ToFloat64Ex(ds.GetByIndex(0)) - } - }) - - this.gcTime = nowseconds - } - - return this.sum(), nil -} - -func (this *contribution) checkContributionList() { - fmt.Println("checkContributionList start") - for { - if time.Now().UTC().Hour() == 0 && time.Now().UTC().Minute() == 0 { - nowseconds := f5.GetApp().GetRealSeconds() - deletelist := []string{} - this.accountContributionlist.Range(func(key string, value *accountContribution) bool { - if value.gcTime+86400 < nowseconds { - deletelist = append(deletelist, key) - } - return true - }) - - for _, account := range deletelist { - v, _ := this.accountContributionlist.Load(account) - if (*v).loweremail != "" { - this.emailContributionlist.Delete((*v).loweremail) - } - this.accountContributionlist.Delete(account) - } - f5.GetSysLog().Info("delete contribution address cache count:%d", len(deletelist)) - } - - f5.GetSysLog().Info("<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<") - f5.GetSysLog().Info("contribution cache total:%.2f, recharge:%.2f, ingame:%.2f, history:%.2f", - this.sum(), - this.rechargeContribution, - this.gameContribution, - this.historyContribution) - f5.GetSysLog().Info(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>") - time.Sleep((time.Second * 60)) - } -} diff --git a/server/payserver/service/export.go b/server/payserver/service/export.go index 80aea6a..83e65ab 100644 --- a/server/payserver/service/export.go +++ b/server/payserver/service/export.go @@ -5,11 +5,9 @@ import ( "main/global" ) -var Contribution = new(contribution) var _serviceMgr = new(serviceMgr) -var GameSwitches = new(gameSwitch) -var User = new(user) -var JwtAuth = new(jwtauth) +var Wxpay = new(wxpay) +var Redis = new(redisMap) func init() { global.RegModule(constant.SERVICE_MGR_MODULE_IDX, _serviceMgr) diff --git a/server/payserver/service/gameswitch.go b/server/payserver/service/gameswitch.go deleted file mode 100644 index 05337fe..0000000 --- a/server/payserver/service/gameswitch.go +++ /dev/null @@ -1,52 +0,0 @@ -package service - -import ( - "f5" - "main/constant" - "q5" -) - -type gameSwitch struct { - data map[string]int32 - time int64 -} - -func (this *gameSwitch) init() { - this.GetSwitchList() -} - -func (this *gameSwitch) unInit() { -} - -func (this *gameSwitch) GetSwitchList() map[string]int32 { - now := f5.GetApp().GetRealSeconds() - if now > this.time+30 { - this.data = map[string]int32{} - this.time = now - - f5.GetGoStyleDb().RawQuery( - constant.CONF_DB, - "SELECT * FROM t_game_switch WHERE 1=1", - []string{}, - func(err error, ds *f5.DataSet) { - if err != nil { - return - } - - for ds.Next() { - this.data[ds.GetByName("switch_name")] = q5.SafeToInt32(ds.GetByName("is_open")) - } - }) - } - - return this.data -} - -func (this *gameSwitch) CheckSwitch(gs string) int32 { - v, exist := this.data[gs] - if exist { - return v - } - - return 0 -} diff --git a/server/payserver/service/jwtauth.go b/server/payserver/service/jwtauth.go deleted file mode 100644 index 0d69030..0000000 --- a/server/payserver/service/jwtauth.go +++ /dev/null @@ -1,149 +0,0 @@ -package service - -import ( - "f5" - "fmt" - "jccommon" - "main/constant" - "main/mt" - "q5" - "strings" -) - -type jwtauth struct { -} - -func (this *jwtauth) init() { -} - -func (this *jwtauth) unInit() { -} - -func (this *jwtauth) JwtAuthHandle(srcToken string, rspinfo *map[string]interface{}, jwtType int32) { - jwtToken := "" - if len(srcToken) > 8 { - jwtToken = srcToken[7:] - } - - tmpStrings := q5.StrSplit(jwtToken, ".") - if len(tmpStrings) > 3 { - if jwtType == constant.JWT_METAMAST { - this.internalMetaMaskJwtAuth(jwtToken, rspinfo) - } - } else { - if jwtType == constant.JWT_PASSPORT { - this.internalImmutJwtAuth(jwtToken, rspinfo) - } - } -} - -func (this *jwtauth) internalImmutJwtAuth(jwtToken string, rspinfo *map[string]interface{}) { - params := map[string]string{ - "c": "Jwt", - "a": "verify", - } - jsonReqObj := &struct { - JwksUri string `json:"jwksUri"` - Data string `json:"data"` - }{ - JwksUri: mt.Table.Config.GetJwksUri(), - Data: jwtToken, - } - jsonRspObj := &struct { - ErrCode interface{} `json:"errcode"` - ErrMsg string `json:"errmsg"` - Decoded struct { - Sub string `json:"sub"` - Email string `json:"email"` - EmailVerified bool `json:"email_verified"` - Sid string `json:"sid"` - Passport struct { - ZkevmEthAddress string `json:"zkevm_eth_address"` - } `json:"passport"` - } `json:"decoded"` - }{} - rspObj := &struct { - ErrCode interface{} `json:"errcode"` - ErrMsg string `json:"errmsg"` - }{} - paramsStr := q5.EncodeJson(jsonReqObj) - url := fmt.Sprintf("%s/webapp/index.php", mt.Table.Web3ServiceCluster.RandElement().GetUrl()) - f5.GetHttpCliMgr().SendGoStyleJsonRspPost( - url, - params, - jsonRspObj, - q5.HTTP_HEADER_JSON, - paramsStr, - func(rsp f5.HttpCliResponse) { - if rsp.GetErr() != nil || - !rsp.JsonParseOk() { - return - } - rspObj.ErrCode = q5.SafeToInt32(jsonRspObj.ErrCode) - rspObj.ErrMsg = jsonRspObj.ErrMsg - if q5.SafeToInt32(rspObj.ErrCode) != 0 { - return - } - openId := fmt.Sprintf("%d_2006_%s", jccommon.IMTBL_CHANNEL, jsonRspObj.Decoded.Sub) - (*rspinfo)["open_id"] = openId - (*rspinfo)["account_address"] = jsonRspObj.Decoded.Passport.ZkevmEthAddress - (*rspinfo)["email"] = jsonRspObj.Decoded.Email - }) -} - -func (this *jwtauth) internalMetaMaskJwtAuth(jwtToken string, rspinfo *map[string]interface{}) { - params := map[string]string{ - "c": "MetaMaskJwt", - "a": "verify", - } - jsonReqObj := &struct { - Data string `json:"data"` - }{ - Data: jwtToken, - } - jsonRspObj := &struct { - ErrCode interface{} `json:"errcode"` - ErrMsg string `json:"errmsg"` - Decoded struct { - Id string `json:"id"` - OpenId string `json:"openid"` - Plat int32 `json:"plat"` - Version int32 `json:"version"` - Email string `json:"email"` - } `json:"decoded"` - }{} - rspObj := &struct { - ErrCode interface{} `json:"errcode"` - ErrMsg string `json:"errmsg"` - }{} - paramsStr := q5.EncodeJson(jsonReqObj) - url := fmt.Sprintf("%s/webapp/index.php", mt.Table.Web3ServiceCluster.RandElement().GetUrl()) - f5.GetHttpCliMgr().SendGoStyleJsonRspPost( - url, - params, - jsonRspObj, - q5.HTTP_HEADER_JSON, - paramsStr, - func(rsp f5.HttpCliResponse) { - if rsp.GetErr() != nil || - !rsp.JsonParseOk() { - return - } - rspObj.ErrCode = q5.SafeToInt32(jsonRspObj.ErrCode) - rspObj.ErrMsg = jsonRspObj.ErrMsg - if q5.SafeToInt32(rspObj.ErrCode) != 0 { - - return - } - if jsonRspObj.Decoded.Plat != jccommon.BC_POLY_POLY_METAKASK { - f5.GetSysLog().Info("not support this platform:%s", rsp.GetRawData()) - return - } - openId := fmt.Sprintf("%d_2006_%s", - jccommon.BC_CHANNEL, - strings.ToLower(jsonRspObj.Decoded.OpenId)) - (*rspinfo)["open_id"] = openId - (*rspinfo)["account_address"] = strings.ToLower(jsonRspObj.Decoded.OpenId) - (*rspinfo)["email"] = strings.ToLower(jsonRspObj.Decoded.Email) - }) -} diff --git a/server/payserver/service/recharge.go b/server/payserver/service/recharge.go deleted file mode 100644 index 428f7da..0000000 --- a/server/payserver/service/recharge.go +++ /dev/null @@ -1,54 +0,0 @@ -package service - -import ( - "q5" - "f5" - "strings" - "main/constant" -) - -func AddRechargeOrder(orderId string, shortOrderId string, - netId int32, accountAddress string, passportAddress string, - currencyAddress string, currencyName string, itemId int32, itemNum int32, - price string, srcPrice int64, diamond int64, presentDiamond int64, email string) bool { - ok := false - nowTime := f5.GetApp().GetRealSeconds() - fields := [][]string{ - {"order_id", orderId}, - {"short_order_id", shortOrderId}, - {"net_id", q5.ToString(netId)}, - {"account_address", accountAddress}, - {"passport_address", passportAddress}, - {"currency_name", currencyName}, - {"currency_address", currencyAddress}, - {"item_id", q5.ToString(itemId)}, - {"item_num", q5.ToString(itemNum)}, - {"price", price}, - {"diamond", q5.ToString(diamond)}, - {"present_diamond", q5.ToString(presentDiamond)}, - {"return_contribution", q5.ToString(srcPrice * 1)}, - {"createtime", q5.ToString(nowTime)}, - {"modifytime", q5.ToString(nowTime)}, - } - if email != "" { - q5.AppendSlice(&fields, []string{"email", email}) - q5.AppendSlice(&fields, []string{"lower_case_email", strings.ToLower(email)}) - } - f5.GetGoStyleDb().UpsertEx( - constant.BCNFT_DB, - "t_recharge_order", - [][]string{ - {"short_order_id", shortOrderId}, - }, - [][]string{ - }, - fields, - func (err error, lastInsertId int64, rowsAffected int64) { - ok = err == nil - }, - func (ds* f5.DataSet) bool { - ok = false - return false - }) - return ok -} diff --git a/server/payserver/service/redis.go b/server/payserver/service/redis.go new file mode 100644 index 0000000..28be6c2 --- /dev/null +++ b/server/payserver/service/redis.go @@ -0,0 +1,79 @@ +package service + +import ( + "errors" + "main/constant" + "main/mt" + "q5" + "time" + + "github.com/gomodule/redigo/redis" +) + +type redisMap struct { + pools map[string]*redis.Pool +} + +func (rm *redisMap) init() { + rm.pools = map[string]*redis.Pool{} + rm.RegisterRedis(constant.LOGIN_REDIS, + mt.Table.LoginRedis.GetById(0).GetHost(), + mt.Table.LoginRedis.GetById(0).GetPort(), + mt.Table.LoginRedis.GetById(0).GetPasswd(), + mt.Table.LoginRedis.GetById(0).GetDatabase(), + mt.Table.LoginRedis.GetById(0).GetMaxOpenConns(), + mt.Table.LoginRedis.GetById(0).GetMaxIdleConns()) +} + +func (rm *redisMap) unInit() { + +} + +func (rm *redisMap) RegisterRedis( + name string, + host string, + port int32, + passwd string, + dataBase int32, + maxOpenConns int32, + maxIdleConns int32) { + pool := &redis.Pool{ + MaxIdle: int(maxIdleConns), + MaxActive: int(maxOpenConns), + Dial: func() (redis.Conn, error) { + address := host + ":" + q5.SafeToString(port) + rc, err := redis.Dial( + "tcp", + address, + redis.DialPassword(passwd), + redis.DialDatabase(int(dataBase))) + if err != nil { + return nil, err + } + return rc, nil + }, + IdleTimeout: time.Second, + Wait: true, + } + + rm.pools[name] = pool +} + +func (rm *redisMap) getConn(name string) redis.Conn { + pool, ret := rm.pools[name] + if !ret { + return nil + } + + return (*pool).Get() +} + +func (rm *redisMap) Get(name string, key string) (value string, err error) { + con := rm.getConn(name) + if con == nil { + return "", errors.New("") + } + defer con.Close() + + return redis.String(con.Do("get", key)) +} diff --git a/server/payserver/service/servicemgr.go b/server/payserver/service/servicemgr.go index eb9394a..abdda4f 100644 --- a/server/payserver/service/servicemgr.go +++ b/server/payserver/service/servicemgr.go @@ -4,13 +4,11 @@ type serviceMgr struct { } func (this *serviceMgr) Init() { - Contribution.init() - User.init() - GameSwitches.init() + Wxpay.init() + Redis.init() } func (this *serviceMgr) UnInit() { - Contribution.unInit() - User.unInit() - GameSwitches.unInit() + Wxpay.unInit() + Redis.unInit() } diff --git a/server/payserver/service/shopcart.go b/server/payserver/service/shopcart.go deleted file mode 100644 index 8d0eabf..0000000 --- a/server/payserver/service/shopcart.go +++ /dev/null @@ -1,28 +0,0 @@ -package service - -import ( - "q5" - "f5" - "main/constant" - "main/common" -) - -func GetShopCartByOpenId(openId string) *common.ShopCart { - cartDb := common.NewShopCart() - f5.GetGoStyleDb().OrmSelectOne( - constant.BCNFT_DB, - "t_shopcart", - [][]string{ - {"open_id", openId}, - }, - func (err error, ds* f5.DataSet) { - if err != nil { - return - } - if ds.Next() { - if q5.DecodeJson(ds.GetByName("data"), cartDb) == nil { - } - } - }) - return cartDb -} diff --git a/server/payserver/service/user.go b/server/payserver/service/user.go deleted file mode 100644 index e4eec34..0000000 --- a/server/payserver/service/user.go +++ /dev/null @@ -1,43 +0,0 @@ -package service - -import ( - //"f5" - //"main/constant" - //"q5" -) - -//"strings" - -type user struct { -} - -func (this *user) init() { -} - -func (this *user) unInit() { -} - -func (this *user) InBlackList(userIdentity string) (bool, error) { - return false, nil - /* - if userIdentity == "" { - return true, nil - } - - var queryerr error - blocked := false - f5.GetGoStyleDb().RawQuery( - constant.CONF_DB, - "SELECT * FROM t_blockplayer WHERE 1=1 AND account_id = ?", - []string{userIdentity}, - func(err error, ds *f5.DataSet) { - if err != nil { - queryerr = err - return - } - - blocked = ds.Next() && q5.SafeToInt32(ds.GetByName("blocked")) != 0 && q5.SafeToInt32(ds.GetByName("deleted")) == 0 - }) - return blocked, queryerr - */ -} diff --git a/server/payserver/service/wxpay.go b/server/payserver/service/wxpay.go new file mode 100644 index 0000000..9e32a69 --- /dev/null +++ b/server/payserver/service/wxpay.go @@ -0,0 +1,259 @@ +package service + +import ( + "crypto/hmac" + "crypto/sha256" + "encoding/hex" + "encoding/json" + "errors" + "f5" + "main/constant" + "main/mt" + "q5" + "strings" +) + +type wxpay struct { + gamesGoods q5.ConcurrentMap[int64, map[int64]int64] +} + +type WxQuery struct { + AccessToken string `json:"access_token"` + Signature string `json:"signature"` + SigMethod string `json:"sig_method"` + PaySig string `json:"pay_sig"` +} + +type WxBalanceRsp struct { + ErrCode int32 `json:"errcode"` + ErrMsg string `json:"errmsg"` + Balance int64 `json:"balance"` + GiftBalance int64 `json:"present_balance"` + SumSave int64 `json:"sum_save"` + SumGift int64 `json:"sum_present"` + SumBalance int64 `json:"sum_balance"` + SumCost int64 `json:"sum_cost"` + FirstSave bool `json:"first_save"` +} + +type WxPayRsp struct { + ErrCode int32 `json:"errcode"` + ErrMsg string `json:"errmsg"` + BillNo string `json:"bill_no"` + Balance int64 `json:"balance"` + UsedGift int64 `json:"used_present_amount"` +} + +func (wp *wxpay) init() { + wp.gamesGoods = q5.ConcurrentMap[int64, map[int64]int64]{} + mt.Table.Wxconfig.Traverse(func(w *mt.Wxconfig) bool { + filename := "../res/gamegoods/" + q5.SafeToString(w.GetGameid()) + ".json" + str, err := f5.ReadJsonFile(filename) + if err != nil { + return true + } + data := []map[string]interface{}{} + if json.Unmarshal([]byte(str), &data) != nil { + f5.GetSysLog().Error("parse [%s] error.", filename) + } else { + gamegoods := map[int64]int64{} + for _, data := range data { + gamegoods[q5.SafeToInt64(data["id"])] = q5.SafeToInt64(data["count"]) + } + wp.gamesGoods.Store(w.GetGameid(), gamegoods) + } + return true + }) +} + +func (wp *wxpay) unInit() { +} + +func (wp *wxpay) GetGoodsCount(gameid int64, goodsid int64) (count int64, err error) { + goods, ok := wp.gamesGoods.Load(gameid) + if !ok { + return 0, errors.New("no game") + } + + count, ok = (*goods)[goodsid] + if !ok { + return 0, errors.New("no goods") + } + + return count, nil +} + +func (wp *wxpay) QueryBalance(openid string, gameid int64, userip string, sessionkey string) (balance int64, wxerrcode int32, err error) { + cfg := mt.Table.Wxconfig.GetById(gameid) + postbody := struct { + OpenId string `json:"openid"` + OfferId string `json:"offer_id"` + Ts int64 `json:"ts"` + ZoneId string `json:"zone_id"` + Env int32 `json:"env"` + UserIp string `json:"user_ip"` + }{ + OpenId: openid, + OfferId: cfg.GetOfferid(), + Ts: f5.GetApp().GetRealSeconds(), + ZoneId: cfg.GetZoneid(), + UserIp: userip, + } + + if !f5.IsOnlineEnv() { + postbody.Env = 1 + } + + poststr := q5.EncodeJson(postbody) + + queryuri := "/wxa/game/getbalance" + query := WxQuery{ + AccessToken: "", + Signature: wp.genSHA256Signature(poststr, sessionkey), + SigMethod: "hmac_sha256", + PaySig: wp.genSHA256Signature(queryuri+"&"+poststr, cfg.GetAppkey()), + } + + params := map[string]string{} + data, _ := json.Marshal(query) + json.Unmarshal(data, ¶ms) + + sendRequest := false + urls := mt.Table.Config.GetWxUrl() + for _, urlheader := range urls { + url := urlheader + queryuri + f5.GetHttpCliMgr().SendGoStylePost( + url, + params, + "Content-Type: application/json", + poststr, + func(rsp f5.HttpCliResponse) { + if rsp.GetErr() != nil { + + } + + sendRequest = true + rspJson := WxBalanceRsp{} + f5.GetSysLog().Debug("wx balance rsp:%s", rsp.GetRawData()) + err = q5.DecodeJson(rsp.GetRawData(), &rspJson) + if err != nil { + return + } + + wxerrcode = rspJson.ErrCode + switch rspJson.ErrCode { + case constant.WX_ERRCODE_OK: + balance = rspJson.Balance + case constant.WX_ERRCODE_BUSY: + sendRequest = false + case constant.WX_ERRCODE_SIGERR: + fallthrough + case constant.WX_ERRCODE_PAYSIGERR: + fallthrough + case constant.WX_ERRCODE_PARAMERR: + f5.GetSysLog().Info("err msg:%s", rspJson.ErrMsg) + } + + }) + if sendRequest { + break + } + } + + return balance, wxerrcode, err +} + +func (wp *wxpay) QueryPay(openid string, gameid int64, userip string, sessionkey string, amount int32, billno string) (wxerrcode int32) { + cfg := mt.Table.Wxconfig.GetById(gameid) + postbody := struct { + OpenId string `json:"openid"` + OfferId string `json:"offer_id"` + Ts int64 `json:"ts"` + ZoneId string `json:"zone_id"` + Env int32 `json:"env"` + UserIp string `json:"user_ip"` + Amount int32 `json:"amount"` + BillNo string `json:"bill_no"` + }{ + OpenId: openid, + OfferId: cfg.GetOfferid(), + Ts: f5.GetApp().GetRealSeconds(), + ZoneId: cfg.GetZoneid(), + UserIp: userip, + Amount: amount, + BillNo: billno, + } + + if !f5.IsOnlineEnv() { + postbody.Env = 1 + } + + poststr := q5.EncodeJson(postbody) + + queryuri := "/wxa/game/pay" + query := WxQuery{ + AccessToken: "", + Signature: wp.genSHA256Signature(poststr, sessionkey), + SigMethod: "hmac_sha256", + PaySig: wp.genSHA256Signature(queryuri+"&"+poststr, cfg.GetAppkey()), + } + + params := map[string]string{} + data, _ := json.Marshal(query) + json.Unmarshal(data, ¶ms) + + sendRequest := false + urls := mt.Table.Config.GetWxUrl() + for _, urlheader := range urls { + url := urlheader + queryuri + f5.GetHttpCliMgr().SendGoStylePost( + url, + params, + "Content-Type: application/json", + poststr, + func(rsp f5.HttpCliResponse) { + if rsp.GetErr() != nil { + + } + + sendRequest = true + rspJson := WxPayRsp{} + f5.GetSysLog().Debug("wx pay rsp:%s", rsp.GetRawData()) + err := q5.DecodeJson(rsp.GetRawData(), &rspJson) + if err != nil { + return + } + + wxerrcode = rspJson.ErrCode + switch rspJson.ErrCode { + case constant.WX_ERRCODE_OK: + case constant.WX_ERRCODE_BUSY: + sendRequest = false + case constant.WX_ERRCODE_SIGERR: + fallthrough + case constant.WX_ERRCODE_PAYSIGERR: + fallthrough + case constant.WX_ERRCODE_SAMEBILLNO: + fallthrough + case constant.WX_ERRCODE_NOENOUGH: + fallthrough + case constant.WX_ERRCODE_SESSIONERR: + fallthrough + case constant.WX_ERRCODE_PARAMERR: + f5.GetSysLog().Info("err msg:%s", rspJson.ErrMsg) + } + + }) + if sendRequest { + break + } + } + + return wxerrcode +} + +func (wp *wxpay) genSHA256Signature(str string, key string) string { + mac := hmac.New(sha256.New, []byte(key)) + _, _ = mac.Write([]byte(str)) + return strings.ToLower(hex.EncodeToString(mac.Sum(nil))) +}