Created
March 12, 2016 02:22
-
-
Save rmkane/5f0cf10606cf0099bde0 to your computer and use it in GitHub Desktop.
[Python] CS:GO Configuration Parser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
"""ConfigParser.py: Parses a Valve configuration file. | |
The configuration file for the CS:GO game items is read line-by-line | |
and written to an output file. The missing colons and commas are added | |
to their appropriate places. The output file passed JSLint validation. | |
""" | |
from argparse import ArgumentParser | |
from shlex import split | |
__author__ = "Mr. Polywhirl" | |
__copyright__ = "Copyright 2016, Stack Overflow" | |
__credits__ = [] | |
__license__ = "GPLv3" | |
__version__ = "1.0.0" | |
__maintainer__ = "Mr. Polywhirl" | |
__email__ = "http://stackoverflow.com/users/1762224" | |
__status__ = "Production" | |
FILE_NAME = 'C:/Program Files (x86)/Steam/steamapps/common/\ | |
Counter-Strike Global Offensive/csgo/scripts/items/items_game.txt' | |
def parseConfig(in_filename, out_filename): | |
output_file = open(out_filename, 'w') | |
indent_ch = '\t' | |
curr_level = 1 | |
output_file.write('{\n') | |
with open(FILE_NAME, 'r') as f: | |
for line in f.readlines(): | |
if line.strip().startswith('//'): | |
continue | |
values = ['"' + v + '"' for v in split(line)] | |
level = line.find('"') + 1 | |
indent = indent_ch * level | |
if level < 1: | |
continue | |
if level != curr_level: | |
delta = curr_level - level | |
curr_level = level | |
if delta > 0: | |
for i in range(delta, 0, -1): | |
output_file.write('\n' + (indent_ch * (level + i - 1)) + '}') | |
if i == 1: | |
output_file.write(',') | |
output_file.write('\n') | |
elif level == curr_level and level > 1: | |
output_file.write(',\n') | |
if len(values) == 1: | |
output_file.write(indent + values[0] + ' : {\n') | |
else: | |
output_file.write(indent + ' : '.join(values)) | |
for i in range(curr_level, 0, -1): | |
output_file.write('\n' + (indent_ch * (level + i - 1)) + '}') | |
output_file.close() | |
if __name__ == '__main__': | |
parser = ArgumentParser() | |
parser.add_argument('dest', help="File where the parsed JSON will be written to.") | |
args = parser.parse_args() | |
parseConfig(FILE_NAME, args.dest) |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"items_game" : { | |
"game_info" : { | |
"first_valid_class" : "2", | |
"last_valid_class" : "3", | |
"first_valid_item_slot" : "0", | |
"last_valid_item_slot" : "54", | |
"num_item_presets" : "4" | |
}, | |
"rarities" : { | |
"default" : { | |
"value" : "0", | |
"loc_key" : "Rarity_Default", | |
"loc_key_weapon" : "Rarity_Default_Weapon", | |
"color" : "desc_default", | |
"drop_sound" : "EndMatch.ItemRevealRarityCommon" | |
}, | |
"common" : { | |
"value" : "1", | |
"loc_key" : "Rarity_Common", | |
"loc_key_weapon" : "Rarity_Common_Weapon", | |
"color" : "desc_common", | |
"weight" : "10000000", | |
"next_rarity" : "uncommon", | |
"drop_sound" : "EndMatch.ItemRevealRarityCommon" | |
}, | |
"uncommon" : { | |
"value" : "2", | |
"loc_key" : "Rarity_Uncommon", | |
"loc_key_weapon" : "Rarity_Uncommon_Weapon", | |
"color" : "desc_uncommon", | |
"weight" : "2000000", | |
"next_rarity" : "rare", | |
"drop_sound" : "EndMatch.ItemRevealRarityUncommon" | |
}, | |
"rare" : { | |
"value" : "3", | |
"loc_key" : "Rarity_Rare", | |
"loc_key_weapon" : "Rarity_Rare_Weapon", | |
"color" : "desc_rare", | |
"weight" : "400000", | |
"next_rarity" : "mythical", | |
"drop_sound" : "EndMatch.ItemRevealRarityRare" | |
}, | |
"mythical" : { | |
"value" : "4", | |
"loc_key" : "Rarity_Mythical", | |
"loc_key_weapon" : "Rarity_Mythical_Weapon", | |
"color" : "desc_mythical", | |
"weight" : "80000", | |
"drop_sound" : "EndMatch.ItemRevealRarityMythical" | |
}, | |
"legendary" : { | |
"value" : "5", | |
"loc_key" : "Rarity_Legendary", | |
"loc_key_weapon" : "Rarity_Legendary_Weapon", | |
"color" : "desc_legendary", | |
"drop_sound" : "EndMatch.ItemRevealRarityLegendary" | |
}, | |
"ancient" : { | |
"value" : "6", | |
"loc_key" : "Rarity_Ancient", | |
"loc_key_weapon" : "Rarity_Ancient_Weapon", | |
"color" : "desc_ancient", | |
"drop_sound" : "EndMatch.ItemRevealRarityLegendary" | |
}, | |
"immortal" : { | |
"value" : "7", | |
"loc_key" : "Rarity_Contraband", | |
"loc_key_weapon" : "Rarity_Contraband_Weapon", | |
"color" : "desc_immortal", | |
"drop_sound" : "EndMatch.ItemRevealRarityLegendary" | |
}, | |
"unusual" : { | |
"value" : "99", | |
"loc_key" : "Unusual", | |
"loc_key_weapon" : "Rarity_Unusual", | |
"color" : "desc_unusual" | |
} | |
}, | |
"qualities" : { | |
"normal" : { | |
"value" : "0", | |
"weight" : "1", | |
"hexColor" : "#B2B2B2" | |
}, | |
"genuine" : { | |
"value" : "1", | |
"weight" : "180", | |
"hexColor" : "#4D7455" | |
}, | |
"vintage" : { | |
"value" : "2", | |
"weight" : "40", | |
"hexColor" : "#476291" | |
}, | |
"unusual" : { | |
"value" : "3", | |
"weight" : "100", | |
"hexColor" : "#8650AC" | |
}, | |
"unique" : { | |
"value" : "4", | |
"weight" : "10", | |
"hexColor" : "#D2D2D2" | |
}, | |
"community" : { | |
"value" : "5", | |
"weight" : "200", | |
"hexColor" : "#70B04A" | |
}, | |
"developer" : { | |
"value" : "6", | |
"weight" : "400", | |
"hexColor" : "#A50F79" | |
}, | |
"selfmade" : { | |
"value" : "7", | |
"weight" : "300", | |
"hexColor" : "#70B04A" | |
}, | |
"customized" : { | |
"value" : "8", | |
"weight" : "0", | |
"hexColor" : "#00FF00" | |
}, | |
"strange" : { | |
"value" : "9", | |
"weight" : "150", | |
"hexColor" : "#CF6A32" | |
}, | |
"completed" : { | |
"value" : "10", | |
"weight" : "0", | |
"hexColor" : "#8650AC" | |
}, | |
"haunted" : { | |
"value" : "11", | |
"weight" : "0", | |
"hexColor" : "#8650AC" | |
}, | |
"tournament" : { | |
"value" : "12", | |
"weight" : "50", | |
"hexColor" : "#FFD700" | |
} | |
}, | |
"colors" : { | |
"desc_level" : { | |
"color_name" : "ItemAttribLevel", | |
"hex_color" : "#756b5e" | |
}, | |
"desc_attrib_neutral" : { | |
"color_name" : "ItemAttribNeutral", | |
"hex_color" : "#b2b5b8" | |
}, | |
"desc_attrib_positive" : { | |
"color_name" : "ItemAttribPositive", | |
"hex_color" : "#99ccff" | |
}, | |
"desc_attrib_negative" : { | |
"color_name" : "ItemAttribNegative", | |
"hex_color" : "#ff4040" | |
}, | |
"desc_itemset_name" : { | |
"color_name" : "ItemSetName", | |
"hex_color" : "#9da1a9" | |
}, | |
"desc_itemset_equipped" : { | |
"color_name" : "ItemSetItemEquipped", | |
"hex_color" : "#9da1a9" | |
}, | |
"desc_itemset_missing" : { | |
"color_name" : "ItemSetItemMissing", | |
"hex_color" : "#6c7075" | |
}, | |
"desc_bundle" : { | |
"color_name" : "ItemBundleItem", | |
"hex_color" : "#95af0c" | |
}, | |
"desc_limited_use" : { | |
"color_name" : "ItemLimitedUse", | |
"hex_color" : "#00a000" | |
}, | |
"desc_flags" : { | |
"color_name" : "ItemFlags", | |
"hex_color" : "#756b5e" | |
}, | |
"desc_default" : { | |
"color_name" : "ItemRarityDefault", | |
"hex_color" : "#6a6156" | |
}, | |
"desc_common" : { | |
"color_name" : "ItemRarityCommon", | |
"hex_color" : "#b0c3d9" | |
}, | |
"desc_uncommon" : { | |
"color_name" : "ItemRarityUncommon", | |
"hex_color" : "#5e98d9" | |
}, | |
"desc_rare" : { | |
"color_name" : "ItemRarityRare", | |
"hex_color" : "#4b69ff" | |
}, | |
"desc_mythical" : { | |
"color_name" : "ItemRarityMythical", | |
"hex_color" : "#8847ff" | |
}, | |
"desc_legendary" : { | |
"color_name" : "ItemRarityLegendary", | |
"hex_color" : "#d32ce6" | |
}, | |
"desc_ancient" : { | |
"color_name" : "ItemRarityAncient", | |
"hex_color" : "#eb4b4b" | |
}, | |
"desc_immortal" : { | |
"color_name" : "ItemRarityImmortal", | |
"hex_color" : "#e4ae39" | |
}, | |
"desc_strange" : { | |
"color_name" : "Strange", | |
"hex_color" : "#CF6A32" | |
}, | |
"desc_unusual" : { | |
"color_name" : "Unusual", | |
"hex_color" : "#ffd700" | |
} | |
}, | |
"player_loadout_slots" : { | |
"0" : "LOADOUT_POSITION_MELEE", | |
"1" : "LOADOUT_POSITION_C4", | |
"2" : "LOADOUT_POSITION_SECONDARY0", | |
"3" : "LOADOUT_POSITION_SECONDARY1", | |
"4" : "LOADOUT_POSITION_SECONDARY2", | |
"5" : "LOADOUT_POSITION_SECONDARY3", | |
"6" : "LOADOUT_POSITION_SECONDARY4", | |
"7" : "LOADOUT_POSITION_SECONDARY5", | |
"8" : "LOADOUT_POSITION_SMG0", | |
"9" : "LOADOUT_POSITION_SMG1", | |
"10" : "LOADOUT_POSITION_SMG2", | |
"11" : "LOADOUT_POSITION_SMG3", | |
"12" : "LOADOUT_POSITION_SMG4", | |
"13" : "LOADOUT_POSITION_SMG5", | |
"14" : "LOADOUT_POSITION_RIFLE0", | |
"15" : "LOADOUT_POSITION_RIFLE1", | |
"16" : "LOADOUT_POSITION_RIFLE2", | |
"17" : "LOADOUT_POSITION_RIFLE3", | |
"18" : "LOADOUT_POSITION_RIFLE4", | |
"19" : "LOADOUT_POSITION_RIFLE5", | |
"20" : "LOADOUT_POSITION_HEAVY0", | |
"21" : "LOADOUT_POSITION_HEAVY1", | |
"22" : "LOADOUT_POSITION_HEAVY2", | |
"23" : "LOADOUT_POSITION_HEAVY3", | |
"24" : "LOADOUT_POSITION_HEAVY4", | |
"25" : "LOADOUT_POSITION_HEAVY5", | |
"26" : "LOADOUT_POSITION_GRENADE0", | |
"27" : "LOADOUT_POSITION_GRENADE1", | |
"28" : "LOADOUT_POSITION_GRENADE2", | |
"29" : "LOADOUT_POSITION_GRENADE3", | |
"30" : "LOADOUT_POSITION_GRENADE4", | |
"31" : "LOADOUT_POSITION_GRENADE5", | |
"32" : "LOADOUT_POSITION_EQUIPMENT0", | |
"33" : "LOADOUT_POSITION_EQUIPMENT1", | |
"34" : "LOADOUT_POSITION_EQUIPMENT2", | |
"35" : "LOADOUT_POSITION_EQUIPMENT3", | |
"36" : "LOADOUT_POSITION_EQUIPMENT4", | |
"37" : "LOADOUT_POSITION_EQUIPMENT5", | |
"38" : "LOADOUT_POSITION_SPACER1", | |
"39" : "LOADOUT_POSITION_SPACER2", | |
"40" : "LOADOUT_POSITION_SPACER3", | |
"41" : "LOADOUT_POSITION_SPACER4", | |
"42" : "LOADOUT_POSITION_SPACER5", | |
"43" : "LOADOUT_POSITION_SPACER6", | |
"44" : "LOADOUT_POSITION_MISC0", | |
"45" : "LOADOUT_POSITION_MISC1", | |
"46" : "LOADOUT_POSITION_MISC2", | |
"47" : "LOADOUT_POSITION_MISC3", | |
"48" : "LOADOUT_POSITION_MISC4", | |
"49" : "LOADOUT_POSITION_MISC5", | |
"50" : "LOADOUT_POSITION_MISC6", | |
"51" : "LOADOUT_POSITION_MISC7", | |
"52" : "LOADOUT_POSITION_MISC8", | |
"53" : "LOADOUT_POSITION_MISC9", | |
"54" : "LOADOUT_POSITION_SPACER7", | |
"55" : "LOADOUT_POSITION_FLAIR0" | |
}, | |
"alternate_icons2" : { | |
"weapon_icons" : { | |
"65604" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_ddpat_urb_light" | |
}, | |
"65605" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_ddpat_urb_medium" | |
}, | |
"65606" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_ddpat_urb_heavy" | |
}, | |
"65684" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aa_flames_light" | |
}, | |
"65685" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aa_flames_medium" | |
}, | |
"65686" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aa_flames_heavy" | |
}, | |
"65696" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_so_night_light" | |
}, | |
"65697" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_so_night_medium" | |
}, | |
"65698" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_so_night_heavy" | |
}, | |
"65780" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aa_vertigo_light" | |
}, | |
"65781" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aa_vertigo_medium" | |
}, | |
"65782" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aa_vertigo_heavy" | |
}, | |
"65896" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_mottled_sand_light" | |
}, | |
"65897" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_mottled_sand_medium" | |
}, | |
"65898" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_mottled_sand_heavy" | |
}, | |
"66276" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_scales_bravo_light" | |
}, | |
"66277" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_scales_bravo_medium" | |
}, | |
"66278" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_scales_bravo_heavy" | |
}, | |
"66460" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_ddpatdense_peacock_light" | |
}, | |
"66461" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_ddpatdense_peacock_medium" | |
}, | |
"66462" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_ddpatdense_peacock_heavy" | |
}, | |
"66464" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_webs_darker_light" | |
}, | |
"66465" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_webs_darker_medium" | |
}, | |
"66466" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_webs_darker_heavy" | |
}, | |
"66484" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_varicamo_urban_light" | |
}, | |
"66485" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_varicamo_urban_medium" | |
}, | |
"66486" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_hy_varicamo_urban_heavy" | |
}, | |
"66628" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_engraved_deagle_light" | |
}, | |
"66629" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_engraved_deagle_medium" | |
}, | |
"66630" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_engraved_deagle_heavy" | |
}, | |
"66720" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_crystallized_dark_light" | |
}, | |
"66721" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_crystallized_dark_medium" | |
}, | |
"66722" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_crystallized_dark_heavy" | |
}, | |
"66848" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_handcannon_light" | |
}, | |
"66849" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_handcannon_medium" | |
}, | |
"66850" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_handcannon_heavy" | |
}, | |
"66924" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_pilot_deagle_light" | |
}, | |
"66925" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_pilot_deagle_medium" | |
}, | |
"66926" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_pilot_deagle_heavy" | |
}, | |
"66940" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_cu_deagle_aureus_light" | |
}, | |
"66941" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_cu_deagle_aureus_medium" | |
}, | |
"66942" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_cu_deagle_aureus_heavy" | |
}, | |
"67124" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_deagle_naga_light" | |
}, | |
"67125" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_deagle_naga_medium" | |
}, | |
"67126" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_deagle_naga_heavy" | |
}, | |
"67236" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_bronze_sparkle_light" | |
}, | |
"67237" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_bronze_sparkle_medium" | |
}, | |
"67238" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_bronze_sparkle_heavy" | |
}, | |
"67408" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_seastorm_light" | |
}, | |
"67409" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_seastorm_medium" | |
}, | |
"67410" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_seastorm_heavy" | |
}, | |
"67412" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_seastorm_blood_light" | |
}, | |
"67413" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_seastorm_blood_medium" | |
}, | |
"67414" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_seastorm_blood_heavy" | |
}, | |
"67416" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_seastorm_shojo_light" | |
}, | |
"67417" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_seastorm_shojo_medium" | |
}, | |
"67418" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_am_seastorm_shojo_heavy" | |
}, | |
"67572" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_deagle_corinthian_light" | |
}, | |
"67573" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_deagle_corinthian_medium" | |
}, | |
"67574" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_deagle_corinthian_heavy" | |
}, | |
"67644" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_deserteagle_kumichodragon_light" | |
}, | |
"67645" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_deserteagle_kumichodragon_medium" | |
}, | |
"67646" : { | |
"icon_path" : "econ/default_generated/weapon_deagle_aq_deserteagle_kumichodragon_heavy" | |
}, | |
"131184" : { | |
"icon_path" : "econ/default_generated/weapon_elite_an_navy_light" | |
}, | |
"131185" : { | |
"icon_path" : "econ/default_generated/weapon_elite_an_navy_medium" | |
}, | |
"131186" : { | |
"icon_path" : "econ/default_generated/weapon_elite_an_navy_heavy" | |
}, | |
"131244" : { | |
"icon_path" : "econ/default_generated/weapon_elite_aq_forced_light" | |
}, | |
"131245" : { | |
"icon_path" : "econ/default_generated/weapon_elite_aq_forced_medium" | |
}, | |
"131246" : { | |
"icon_path" : "econ/default_generated/weapon_elite_aq_forced_heavy" | |
}, | |
"131256" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_pmc_light" | |
}, | |
"131257" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_pmc_medium" | |
}, | |
"131258" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_pmc_heavy" | |
}, | |
"131260" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_space_marine_light" | |
}, | |
"131261" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_space_marine_medium" | |
}, | |
"131262" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_space_marine_heavy" | |
}, | |
"131684" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_tangerine_light" | |
}, | |
"131685" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_tangerine_medium" | |
}, | |
"131686" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_tangerine_heavy" | |
}, | |
"131832" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_season_elites_bravo_light" | |
}, | |
"131833" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_season_elites_bravo_medium" | |
}, | |
"131834" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_season_elites_bravo_heavy" | |
}, | |
"131952" : { | |
"icon_path" : "econ/default_generated/weapon_elite_am_ossify_red_light" | |
}, | |
"131953" : { | |
"icon_path" : "econ/default_generated/weapon_elite_am_ossify_red_medium" | |
}, | |
"131954" : { | |
"icon_path" : "econ/default_generated/weapon_elite_am_ossify_red_heavy" | |
}, | |
"132068" : { | |
"icon_path" : "econ/default_generated/weapon_elite_am_crystallized_blue_light" | |
}, | |
"132069" : { | |
"icon_path" : "econ/default_generated/weapon_elite_am_crystallized_blue_medium" | |
}, | |
"132070" : { | |
"icon_path" : "econ/default_generated/weapon_elite_am_crystallized_blue_heavy" | |
}, | |
"132116" : { | |
"icon_path" : "econ/default_generated/weapon_elite_hy_marina_sunrise_light" | |
}, | |
"132117" : { | |
"icon_path" : "econ/default_generated/weapon_elite_hy_marina_sunrise_medium" | |
}, | |
"132118" : { | |
"icon_path" : "econ/default_generated/weapon_elite_hy_marina_sunrise_heavy" | |
}, | |
"132176" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_panther_light" | |
}, | |
"132177" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_panther_medium" | |
}, | |
"132178" : { | |
"icon_path" : "econ/default_generated/weapon_elite_so_panther_heavy" | |
}, | |
"132300" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_retribution_light" | |
}, | |
"132301" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_retribution_medium" | |
}, | |
"132302" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_retribution_heavy" | |
}, | |
"132392" : { | |
"icon_path" : "econ/default_generated/weapon_elite_hy_vines_light" | |
}, | |
"132393" : { | |
"icon_path" : "econ/default_generated/weapon_elite_hy_vines_medium" | |
}, | |
"132394" : { | |
"icon_path" : "econ/default_generated/weapon_elite_hy_vines_heavy" | |
}, | |
"132656" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_elites_urbanstorm_light" | |
}, | |
"132657" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_elites_urbanstorm_medium" | |
}, | |
"132658" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_elites_urbanstorm_heavy" | |
}, | |
"132860" : { | |
"icon_path" : "econ/default_generated/weapon_elite_gs_mother_of_pearl_elite_light" | |
}, | |
"132861" : { | |
"icon_path" : "econ/default_generated/weapon_elite_gs_mother_of_pearl_elite_medium" | |
}, | |
"132862" : { | |
"icon_path" : "econ/default_generated/weapon_elite_gs_mother_of_pearl_elite_heavy" | |
}, | |
"132872" : { | |
"icon_path" : "econ/default_generated/weapon_elite_hy_zodiac1_light" | |
}, | |
"132873" : { | |
"icon_path" : "econ/default_generated/weapon_elite_hy_zodiac1_medium" | |
}, | |
"132874" : { | |
"icon_path" : "econ/default_generated/weapon_elite_hy_zodiac1_heavy" | |
}, | |
"133036" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_dualberretta_dragons_light" | |
}, | |
"133037" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_dualberretta_dragons_medium" | |
}, | |
"133038" : { | |
"icon_path" : "econ/default_generated/weapon_elite_cu_dualberretta_dragons_heavy" | |
}, | |
"133184" : { | |
"icon_path" : "econ/default_generated/weapon_elite_aq_dualberettas_cartel_light" | |
}, | |
"133185" : { | |
"icon_path" : "econ/default_generated/weapon_elite_aq_dualberettas_cartel_medium" | |
}, | |
"133186" : { | |
"icon_path" : "econ/default_generated/weapon_elite_aq_dualberettas_cartel_heavy" | |
}, | |
"196620" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_red_light" | |
}, | |
"196621" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_red_medium" | |
}, | |
"196622" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_red_heavy" | |
}, | |
"196784" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_aq_oiled_light" | |
}, | |
"196785" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_aq_oiled_medium" | |
}, | |
"196786" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_aq_oiled_heavy" | |
}, | |
"196792" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_pmc_light" | |
}, | |
"196793" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_pmc_medium" | |
}, | |
"196794" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_pmc_heavy" | |
}, | |
"196920" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_forest_night_light" | |
}, | |
"196921" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_forest_night_medium" | |
}, | |
"196922" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_forest_night_heavy" | |
}, | |
"197172" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_sp_tape_orange_light" | |
}, | |
"197173" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_sp_tape_orange_medium" | |
}, | |
"197174" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_sp_tape_orange_heavy" | |
}, | |
"197212" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_jungle_light" | |
}, | |
"197213" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_jungle_medium" | |
}, | |
"197214" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_jungle_heavy" | |
}, | |
"197448" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_an_gunmetal_bravo_light" | |
}, | |
"197449" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_an_gunmetal_bravo_medium" | |
}, | |
"197450" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_an_gunmetal_bravo_heavy" | |
}, | |
"197500" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_flowers_light" | |
}, | |
"197501" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_flowers_medium" | |
}, | |
"197502" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_flowers_heavy" | |
}, | |
"197616" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_am_crystallized_silver_light" | |
}, | |
"197617" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_am_crystallized_silver_medium" | |
}, | |
"197618" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_am_crystallized_silver_heavy" | |
}, | |
"197624" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_orange_accents_light" | |
}, | |
"197625" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_orange_accents_medium" | |
}, | |
"197626" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_orange_accents_heavy" | |
}, | |
"197668" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_kami_light" | |
}, | |
"197669" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_kami_medium" | |
}, | |
"197670" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_kami_heavy" | |
}, | |
"197704" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_am_copper_flecks_light" | |
}, | |
"197705" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_am_copper_flecks_medium" | |
}, | |
"197706" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_am_copper_flecks_heavy" | |
}, | |
"198016" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_aq_57_feathers_light" | |
}, | |
"198017" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_aq_57_feathers_medium" | |
}, | |
"198018" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_aq_57_feathers_heavy" | |
}, | |
"198116" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_grey_nuclear_orange_five_seven_light" | |
}, | |
"198117" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_grey_nuclear_orange_five_seven_medium" | |
}, | |
"198118" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_so_grey_nuclear_orange_five_seven_heavy" | |
}, | |
"198156" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_urban_hazard_light" | |
}, | |
"198157" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_urban_hazard_medium" | |
}, | |
"198158" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_urban_hazard_heavy" | |
}, | |
"198316" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_banana_light" | |
}, | |
"198317" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_banana_medium" | |
}, | |
"198318" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_banana_heavy" | |
}, | |
"198464" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_kimono_diamonds_light" | |
}, | |
"198465" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_kimono_diamonds_medium" | |
}, | |
"198466" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_hy_kimono_diamonds_heavy" | |
}, | |
"198648" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_retrobution_light" | |
}, | |
"198649" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_retrobution_medium" | |
}, | |
"198650" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_retrobution_heavy" | |
}, | |
"198728" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_augmented_light" | |
}, | |
"198729" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_augmented_medium" | |
}, | |
"198730" : { | |
"icon_path" : "econ/default_generated/weapon_fiveseven_cu_fiveseven_augmented_heavy" | |
}, | |
"262152" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_olive_light" | |
}, | |
"262153" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_olive_medium" | |
}, | |
"262154" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_olive_heavy" | |
}, | |
"262156" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_red_light" | |
}, | |
"262157" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_red_medium" | |
}, | |
"262158" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_red_heavy" | |
}, | |
"262296" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aa_fade_light" | |
}, | |
"262297" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aa_fade_medium" | |
}, | |
"262298" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aa_fade_heavy" | |
}, | |
"262304" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_night_light" | |
}, | |
"262305" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_night_medium" | |
}, | |
"262306" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_night_heavy" | |
}, | |
"262336" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_dragon_glock_light" | |
}, | |
"262337" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_dragon_glock_medium" | |
}, | |
"262338" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_dragon_glock_heavy" | |
}, | |
"262780" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aq_brass_light" | |
}, | |
"262781" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aq_brass_medium" | |
}, | |
"262782" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aq_brass_heavy" | |
}, | |
"262976" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_sand_bravo_light" | |
}, | |
"262977" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_sand_bravo_medium" | |
}, | |
"262978" : { | |
"icon_path" : "econ/default_generated/weapon_glock_so_sand_bravo_heavy" | |
}, | |
"263064" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_ddpatdense_silver_light" | |
}, | |
"263065" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_ddpatdense_silver_medium" | |
}, | |
"263066" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_ddpatdense_silver_heavy" | |
}, | |
"263256" : { | |
"icon_path" : "econ/default_generated/weapon_glock_hy_craquelure_light" | |
}, | |
"263257" : { | |
"icon_path" : "econ/default_generated/weapon_glock_hy_craquelure_medium" | |
}, | |
"263258" : { | |
"icon_path" : "econ/default_generated/weapon_glock_hy_craquelure_heavy" | |
}, | |
"263316" : { | |
"icon_path" : "econ/default_generated/weapon_glock_hy_nerodia_light" | |
}, | |
"263317" : { | |
"icon_path" : "econ/default_generated/weapon_glock_hy_nerodia_medium" | |
}, | |
"263318" : { | |
"icon_path" : "econ/default_generated/weapon_glock_hy_nerodia_heavy" | |
}, | |
"263556" : { | |
"icon_path" : "econ/default_generated/weapon_glock_cu_glock-liquescent_light" | |
}, | |
"263557" : { | |
"icon_path" : "econ/default_generated/weapon_glock_cu_glock-liquescent_medium" | |
}, | |
"263558" : { | |
"icon_path" : "econ/default_generated/weapon_glock_cu_glock-liquescent_heavy" | |
}, | |
"263612" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_nuclear_pattern1_glock_light" | |
}, | |
"263613" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_nuclear_pattern1_glock_medium" | |
}, | |
"263614" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_nuclear_pattern1_glock_heavy" | |
}, | |
"263668" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aq_glock_coiled_light" | |
}, | |
"263669" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aq_glock_coiled_medium" | |
}, | |
"263670" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aq_glock_coiled_heavy" | |
}, | |
"263740" : { | |
"icon_path" : "econ/default_generated/weapon_glock_cu_glock_deathtoll_light" | |
}, | |
"263741" : { | |
"icon_path" : "econ/default_generated/weapon_glock_cu_glock_deathtoll_medium" | |
}, | |
"263742" : { | |
"icon_path" : "econ/default_generated/weapon_glock_cu_glock_deathtoll_heavy" | |
}, | |
"263892" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_aqua_flecks_light" | |
}, | |
"263893" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_aqua_flecks_medium" | |
}, | |
"263894" : { | |
"icon_path" : "econ/default_generated/weapon_glock_am_aqua_flecks_heavy" | |
}, | |
"264060" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aq_glock18_flames_blue_light" | |
}, | |
"264061" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aq_glock18_flames_blue_medium" | |
}, | |
"264062" : { | |
"icon_path" : "econ/default_generated/weapon_glock_aq_glock18_flames_blue_heavy" | |
}, | |
"264124" : { | |
"icon_path" : "econ/default_generated/weapon_glock_gs_glock18_wrathys_light" | |
}, | |
"264125" : { | |
"icon_path" : "econ/default_generated/weapon_glock_gs_glock18_wrathys_medium" | |
}, | |
"264126" : { | |
"icon_path" : "econ/default_generated/weapon_glock_gs_glock18_wrathys_heavy" | |
}, | |
"264272" : { | |
"icon_path" : "econ/default_generated/weapon_glock_gs_glock18_award_light" | |
}, | |
"264273" : { | |
"icon_path" : "econ/default_generated/weapon_glock_gs_glock18_award_medium" | |
}, | |
"264274" : { | |
"icon_path" : "econ/default_generated/weapon_glock_gs_glock18_award_heavy" | |
}, | |
"458808" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_hy_ak47lam_light" | |
}, | |
"458809" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_hy_ak47lam_medium" | |
}, | |
"458810" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_hy_ak47lam_heavy" | |
}, | |
"458928" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_aq_oiled_light" | |
}, | |
"458929" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_aq_oiled_medium" | |
}, | |
"458930" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_aq_oiled_heavy" | |
}, | |
"459040" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_sp_mesh_tan_light" | |
}, | |
"459041" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_sp_mesh_tan_medium" | |
}, | |
"459042" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_sp_mesh_tan_heavy" | |
}, | |
"459240" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_sp_spray_jungle_light" | |
}, | |
"459241" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_sp_spray_jungle_medium" | |
}, | |
"459242" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_sp_spray_jungle_heavy" | |
}, | |
"459432" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_sp_zebracam_light" | |
}, | |
"459433" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_sp_zebracam_medium" | |
}, | |
"459434" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_sp_zebracam_heavy" | |
}, | |
"459440" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_hy_ak47lam_bw_light" | |
}, | |
"459441" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_hy_ak47lam_bw_medium" | |
}, | |
"459442" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_hy_ak47lam_bw_heavy" | |
}, | |
"459472" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_fireserpent_ak47_bravo_light" | |
}, | |
"459473" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_fireserpent_ak47_bravo_medium" | |
}, | |
"459474" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_fireserpent_ak47_bravo_heavy" | |
}, | |
"459656" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_hy_ak47lam_blue_light" | |
}, | |
"459657" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_hy_ak47lam_blue_medium" | |
}, | |
"459658" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_hy_ak47lam_blue_heavy" | |
}, | |
"459880" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_cobra_light" | |
}, | |
"459881" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_cobra_medium" | |
}, | |
"459882" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_cobra_heavy" | |
}, | |
"459952" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_pinstripe_ak47_light" | |
}, | |
"459953" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_pinstripe_ak47_medium" | |
}, | |
"459954" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_pinstripe_ak47_heavy" | |
}, | |
"459960" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_rubber_light" | |
}, | |
"459961" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_rubber_medium" | |
}, | |
"459962" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_rubber_heavy" | |
}, | |
"460016" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_panther_ak47_light" | |
}, | |
"460017" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_panther_ak47_medium" | |
}, | |
"460018" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_panther_ak47_heavy" | |
}, | |
"460112" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_well_traveled_ak47_light" | |
}, | |
"460113" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_well_traveled_ak47_medium" | |
}, | |
"460114" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_well_traveled_ak47_heavy" | |
}, | |
"460116" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_green_leather_ak47_light" | |
}, | |
"460117" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_green_leather_ak47_medium" | |
}, | |
"460118" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_green_leather_ak47_heavy" | |
}, | |
"460272" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_tribute_ak47_light" | |
}, | |
"460273" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_tribute_ak47_medium" | |
}, | |
"460274" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_tribute_ak47_heavy" | |
}, | |
"460328" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_aq_ak47_cartel_light" | |
}, | |
"460329" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_aq_ak47_cartel_medium" | |
}, | |
"460330" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_aq_ak47_cartel_heavy" | |
}, | |
"460440" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_mastery_light" | |
}, | |
"460441" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_mastery_medium" | |
}, | |
"460442" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_mastery_heavy" | |
}, | |
"460576" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_am_bamboo_jungle_light" | |
}, | |
"460577" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_am_bamboo_jungle_medium" | |
}, | |
"460578" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_am_bamboo_jungle_heavy" | |
}, | |
"460648" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_courage_alt_light" | |
}, | |
"460649" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_courage_alt_medium" | |
}, | |
"460650" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_courage_alt_heavy" | |
}, | |
"460712" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_winter_sport_light" | |
}, | |
"460713" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_winter_sport_medium" | |
}, | |
"460714" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_winter_sport_heavy" | |
}, | |
"460776" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_point_disarray_light" | |
}, | |
"460777" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_point_disarray_medium" | |
}, | |
"460778" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_cu_ak47_point_disarray_heavy" | |
}, | |
"460848" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_gs_ak47_supercharged_light" | |
}, | |
"460849" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_gs_ak47_supercharged_medium" | |
}, | |
"460850" : { | |
"icon_path" : "econ/default_generated/weapon_ak47_gs_ak47_supercharged_heavy" | |
}, | |
"524324" : { | |
"icon_path" : "econ/default_generated/weapon_aug_hy_tiger_light" | |
}, | |
"524325" : { | |
"icon_path" : "econ/default_generated/weapon_aug_hy_tiger_medium" | |
}, | |
"524326" : { | |
"icon_path" : "econ/default_generated/weapon_aug_hy_tiger_heavy" | |
}, | |
"524328" : { | |
"icon_path" : "econ/default_generated/weapon_aug_hy_copperhead_light" | |
}, | |
"524329" : { | |
"icon_path" : "econ/default_generated/weapon_aug_hy_copperhead_medium" | |
}, | |
"524330" : { | |
"icon_path" : "econ/default_generated/weapon_aug_hy_copperhead_heavy" | |
}, | |
"524420" : { | |
"icon_path" : "econ/default_generated/weapon_aug_an_red_light" | |
}, | |
"524421" : { | |
"icon_path" : "econ/default_generated/weapon_aug_an_red_medium" | |
}, | |
"524422" : { | |
"icon_path" : "econ/default_generated/weapon_aug_an_red_heavy" | |
}, | |
"524472" : { | |
"icon_path" : "econ/default_generated/weapon_aug_so_pmc_light" | |
}, | |
"524473" : { | |
"icon_path" : "econ/default_generated/weapon_aug_so_pmc_medium" | |
}, | |
"524474" : { | |
"icon_path" : "econ/default_generated/weapon_aug_so_pmc_heavy" | |
}, | |
"524476" : { | |
"icon_path" : "econ/default_generated/weapon_aug_so_space_marine_light" | |
}, | |
"524477" : { | |
"icon_path" : "econ/default_generated/weapon_aug_so_space_marine_medium" | |
}, | |
"524478" : { | |
"icon_path" : "econ/default_generated/weapon_aug_so_space_marine_heavy" | |
}, | |
"524580" : { | |
"icon_path" : "econ/default_generated/weapon_aug_hy_feathers_aug_light" | |
}, | |
"524581" : { | |
"icon_path" : "econ/default_generated/weapon_aug_hy_feathers_aug_medium" | |
}, | |
"524582" : { | |
"icon_path" : "econ/default_generated/weapon_aug_hy_feathers_aug_heavy" | |
}, | |
"524688" : { | |
"icon_path" : "econ/default_generated/weapon_aug_so_stormfront_light" | |
}, | |
"524689" : { | |
"icon_path" : "econ/default_generated/weapon_aug_so_stormfront_medium" | |
}, | |
"524690" : { | |
"icon_path" : "econ/default_generated/weapon_aug_so_stormfront_heavy" | |
}, | |
"524728" : { | |
"icon_path" : "econ/default_generated/weapon_aug_sp_mesh_forest_fire_light" | |
}, | |
"524729" : { | |
"icon_path" : "econ/default_generated/weapon_aug_sp_mesh_forest_fire_medium" | |
}, | |
"524730" : { | |
"icon_path" : "econ/default_generated/weapon_aug_sp_mesh_forest_fire_heavy" | |
}, | |
"525076" : { | |
"icon_path" : "econ/default_generated/weapon_aug_an_navy_bravo_light" | |
}, | |
"525077" : { | |
"icon_path" : "econ/default_generated/weapon_aug_an_navy_bravo_medium" | |
}, | |
"525078" : { | |
"icon_path" : "econ/default_generated/weapon_aug_an_navy_bravo_heavy" | |
}, | |
"525408" : { | |
"icon_path" : "econ/default_generated/weapon_aug_cu_aug_chameleonaire_light" | |
}, | |
"525409" : { | |
"icon_path" : "econ/default_generated/weapon_aug_cu_aug_chameleonaire_medium" | |
}, | |
"525410" : { | |
"icon_path" : "econ/default_generated/weapon_aug_cu_aug_chameleonaire_heavy" | |
}, | |
"525508" : { | |
"icon_path" : "econ/default_generated/weapon_aug_cu_aug_progressiv_light" | |
}, | |
"525509" : { | |
"icon_path" : "econ/default_generated/weapon_aug_cu_aug_progressiv_medium" | |
}, | |
"525510" : { | |
"icon_path" : "econ/default_generated/weapon_aug_cu_aug_progressiv_heavy" | |
}, | |
"525788" : { | |
"icon_path" : "econ/default_generated/weapon_aug_sp_nukestripe_orange_aug_light" | |
}, | |
"525789" : { | |
"icon_path" : "econ/default_generated/weapon_aug_sp_nukestripe_orange_aug_medium" | |
}, | |
"525790" : { | |
"icon_path" : "econ/default_generated/weapon_aug_sp_nukestripe_orange_aug_heavy" | |
}, | |
"526064" : { | |
"icon_path" : "econ/default_generated/weapon_aug_sp_labyrinth3_light" | |
}, | |
"526065" : { | |
"icon_path" : "econ/default_generated/weapon_aug_sp_labyrinth3_medium" | |
}, | |
"526066" : { | |
"icon_path" : "econ/default_generated/weapon_aug_sp_labyrinth3_heavy" | |
}, | |
"526108" : { | |
"icon_path" : "econ/default_generated/weapon_aug_cu_anime_aug_light" | |
}, | |
"526109" : { | |
"icon_path" : "econ/default_generated/weapon_aug_cu_anime_aug_medium" | |
}, | |
"526110" : { | |
"icon_path" : "econ/default_generated/weapon_aug_cu_anime_aug_heavy" | |
}, | |
"526316" : { | |
"icon_path" : "econ/default_generated/weapon_aug_am_aug_jumble_light" | |
}, | |
"526317" : { | |
"icon_path" : "econ/default_generated/weapon_aug_am_aug_jumble_medium" | |
}, | |
"526318" : { | |
"icon_path" : "econ/default_generated/weapon_aug_am_aug_jumble_heavy" | |
}, | |
"589944" : { | |
"icon_path" : "econ/default_generated/weapon_awp_sp_snake_light" | |
}, | |
"589945" : { | |
"icon_path" : "econ/default_generated/weapon_awp_sp_snake_medium" | |
}, | |
"589946" : { | |
"icon_path" : "econ/default_generated/weapon_awp_sp_snake_heavy" | |
}, | |
"590028" : { | |
"icon_path" : "econ/default_generated/weapon_awp_am_lightning_awp_light" | |
}, | |
"590029" : { | |
"icon_path" : "econ/default_generated/weapon_awp_am_lightning_awp_medium" | |
}, | |
"590030" : { | |
"icon_path" : "econ/default_generated/weapon_awp_am_lightning_awp_heavy" | |
}, | |
"590112" : { | |
"icon_path" : "econ/default_generated/weapon_awp_sp_mesh_tan_light" | |
}, | |
"590113" : { | |
"icon_path" : "econ/default_generated/weapon_awp_sp_mesh_tan_medium" | |
}, | |
"590114" : { | |
"icon_path" : "econ/default_generated/weapon_awp_sp_mesh_tan_heavy" | |
}, | |
"590160" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_ddpat_pink_light" | |
}, | |
"590161" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_ddpat_pink_medium" | |
}, | |
"590162" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_ddpat_pink_heavy" | |
}, | |
"590520" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_blam_simple_light" | |
}, | |
"590521" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_blam_simple_medium" | |
}, | |
"590522" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_blam_simple_heavy" | |
}, | |
"590548" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_favela_awp_light" | |
}, | |
"590549" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_favela_awp_medium" | |
}, | |
"590550" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_favela_awp_heavy" | |
}, | |
"590672" : { | |
"icon_path" : "econ/default_generated/weapon_awp_am_crumple_bravo_light" | |
}, | |
"590673" : { | |
"icon_path" : "econ/default_generated/weapon_awp_am_crumple_bravo_medium" | |
}, | |
"590674" : { | |
"icon_path" : "econ/default_generated/weapon_awp_am_crumple_bravo_heavy" | |
}, | |
"590732" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_hive_light" | |
}, | |
"590733" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_hive_medium" | |
}, | |
"590734" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_hive_heavy" | |
}, | |
"590828" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_snakeskin_light" | |
}, | |
"590829" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_snakeskin_medium" | |
}, | |
"590830" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_snakeskin_heavy" | |
}, | |
"590860" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_cobra_light" | |
}, | |
"590861" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_cobra_medium" | |
}, | |
"590862" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_cobra_heavy" | |
}, | |
"590940" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_asimov_light" | |
}, | |
"590941" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_asimov_medium" | |
}, | |
"590942" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_asimov_heavy" | |
}, | |
"591200" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_medieval_dragon_awp_light" | |
}, | |
"591201" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_medieval_dragon_awp_medium" | |
}, | |
"591202" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_medieval_dragon_awp_heavy" | |
}, | |
"591404" : { | |
"icon_path" : "econ/default_generated/weapon_awp_am_awp_glory_light" | |
}, | |
"591405" : { | |
"icon_path" : "econ/default_generated/weapon_awp_am_awp_glory_medium" | |
}, | |
"591406" : { | |
"icon_path" : "econ/default_generated/weapon_awp_am_awp_glory_heavy" | |
}, | |
"591520" : { | |
"icon_path" : "econ/default_generated/weapon_awp_aq_awp_twine_light" | |
}, | |
"591521" : { | |
"icon_path" : "econ/default_generated/weapon_awp_aq_awp_twine_medium" | |
}, | |
"591522" : { | |
"icon_path" : "econ/default_generated/weapon_awp_aq_awp_twine_heavy" | |
}, | |
"591608" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_medusa_awp_light" | |
}, | |
"591609" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_medusa_awp_medium" | |
}, | |
"591610" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_medusa_awp_heavy" | |
}, | |
"591628" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_zodiac2_light" | |
}, | |
"591629" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_zodiac2_medium" | |
}, | |
"591630" : { | |
"icon_path" : "econ/default_generated/weapon_awp_hy_zodiac2_heavy" | |
}, | |
"591724" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_hyper_beast_light" | |
}, | |
"591725" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_hyper_beast_medium" | |
}, | |
"591726" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_hyper_beast_heavy" | |
}, | |
"591924" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_mastery_light" | |
}, | |
"591925" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_mastery_medium" | |
}, | |
"591926" : { | |
"icon_path" : "econ/default_generated/weapon_awp_cu_awp_mastery_heavy" | |
}, | |
"655448" : { | |
"icon_path" : "econ/default_generated/weapon_famas_sp_spray_light" | |
}, | |
"655449" : { | |
"icon_path" : "econ/default_generated/weapon_famas_sp_spray_medium" | |
}, | |
"655450" : { | |
"icon_path" : "econ/default_generated/weapon_famas_sp_spray_heavy" | |
}, | |
"655548" : { | |
"icon_path" : "econ/default_generated/weapon_famas_so_space_marine_light" | |
}, | |
"655549" : { | |
"icon_path" : "econ/default_generated/weapon_famas_so_space_marine_medium" | |
}, | |
"655550" : { | |
"icon_path" : "econ/default_generated/weapon_famas_so_space_marine_heavy" | |
}, | |
"655728" : { | |
"icon_path" : "econ/default_generated/weapon_famas_hy_reef_light" | |
}, | |
"655729" : { | |
"icon_path" : "econ/default_generated/weapon_famas_hy_reef_medium" | |
}, | |
"655730" : { | |
"icon_path" : "econ/default_generated/weapon_famas_hy_reef_heavy" | |
}, | |
"655976" : { | |
"icon_path" : "econ/default_generated/weapon_famas_cu_broken_path_famas_light" | |
}, | |
"655977" : { | |
"icon_path" : "econ/default_generated/weapon_famas_cu_broken_path_famas_medium" | |
}, | |
"655978" : { | |
"icon_path" : "econ/default_generated/weapon_famas_cu_broken_path_famas_heavy" | |
}, | |
"656072" : { | |
"icon_path" : "econ/default_generated/weapon_famas_hy_doomkitty_light" | |
}, | |
"656073" : { | |
"icon_path" : "econ/default_generated/weapon_famas_hy_doomkitty_medium" | |
}, | |
"656074" : { | |
"icon_path" : "econ/default_generated/weapon_famas_hy_doomkitty_heavy" | |
}, | |
"656136" : { | |
"icon_path" : "econ/default_generated/weapon_famas_sp_spitfire_famas_bravo_light" | |
}, | |
"656137" : { | |
"icon_path" : "econ/default_generated/weapon_famas_sp_spitfire_famas_bravo_medium" | |
}, | |
"656138" : { | |
"icon_path" : "econ/default_generated/weapon_famas_sp_spitfire_famas_bravo_heavy" | |
}, | |
"656232" : { | |
"icon_path" : "econ/default_generated/weapon_famas_hy_bluehex_light" | |
}, | |
"656233" : { | |
"icon_path" : "econ/default_generated/weapon_famas_hy_bluehex_medium" | |
}, | |
"656234" : { | |
"icon_path" : "econ/default_generated/weapon_famas_hy_bluehex_heavy" | |
}, | |
"656336" : { | |
"icon_path" : "econ/default_generated/weapon_famas_sp_mesh_hot_and_cold_light" | |
}, | |
"656337" : { | |
"icon_path" : "econ/default_generated/weapon_famas_sp_mesh_hot_and_cold_medium" | |
}, | |
"656338" : { | |
"icon_path" : "econ/default_generated/weapon_famas_sp_mesh_hot_and_cold_heavy" | |
}, | |
"656400" : { | |
"icon_path" : "econ/default_generated/weapon_famas_cu_famas_pulse_light" | |
}, | |
"656401" : { | |
"icon_path" : "econ/default_generated/weapon_famas_cu_famas_pulse_medium" | |
}, | |
"656402" : { | |
"icon_path" : "econ/default_generated/weapon_famas_cu_famas_pulse_heavy" | |
}, | |
"656512" : { | |
"icon_path" : "econ/default_generated/weapon_famas_an_famas_sgt_light" | |
}, | |
"656513" : { | |
"icon_path" : "econ/default_generated/weapon_famas_an_famas_sgt_medium" | |
}, | |
"656514" : { | |
"icon_path" : "econ/default_generated/weapon_famas_an_famas_sgt_heavy" | |
}, | |
"656844" : { | |
"icon_path" : "econ/default_generated/weapon_famas_am_nuclear_skulls2_famas_light" | |
}, | |
"656845" : { | |
"icon_path" : "econ/default_generated/weapon_famas_am_nuclear_skulls2_famas_medium" | |
}, | |
"656846" : { | |
"icon_path" : "econ/default_generated/weapon_famas_am_nuclear_skulls2_famas_heavy" | |
}, | |
"657076" : { | |
"icon_path" : "econ/default_generated/weapon_famas_aq_famas_jinn_light" | |
}, | |
"657077" : { | |
"icon_path" : "econ/default_generated/weapon_famas_aq_famas_jinn_medium" | |
}, | |
"657078" : { | |
"icon_path" : "econ/default_generated/weapon_famas_aq_famas_jinn_heavy" | |
}, | |
"657268" : { | |
"icon_path" : "econ/default_generated/weapon_famas_am_famas_dots_light" | |
}, | |
"657269" : { | |
"icon_path" : "econ/default_generated/weapon_famas_am_famas_dots_medium" | |
}, | |
"657270" : { | |
"icon_path" : "econ/default_generated/weapon_famas_am_famas_dots_heavy" | |
}, | |
"657328" : { | |
"icon_path" : "econ/default_generated/weapon_famas_cu_famas_lenta_light" | |
}, | |
"657329" : { | |
"icon_path" : "econ/default_generated/weapon_famas_cu_famas_lenta_medium" | |
}, | |
"657330" : { | |
"icon_path" : "econ/default_generated/weapon_famas_cu_famas_lenta_heavy" | |
}, | |
"657476" : { | |
"icon_path" : "econ/default_generated/weapon_famas_aq_famas_contour_light" | |
}, | |
"657477" : { | |
"icon_path" : "econ/default_generated/weapon_famas_aq_famas_contour_medium" | |
}, | |
"657478" : { | |
"icon_path" : "econ/default_generated/weapon_famas_aq_famas_contour_heavy" | |
}, | |
"720920" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_arctic_light" | |
}, | |
"720921" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_arctic_medium" | |
}, | |
"720922" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_arctic_heavy" | |
}, | |
"720928" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_desert_light" | |
}, | |
"720929" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_desert_medium" | |
}, | |
"720930" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_desert_heavy" | |
}, | |
"721080" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_so_pmc_light" | |
}, | |
"721081" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_so_pmc_medium" | |
}, | |
"721082" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_so_pmc_heavy" | |
}, | |
"721184" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_sp_mesh_tan_light" | |
}, | |
"721185" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_sp_mesh_tan_medium" | |
}, | |
"721186" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_sp_mesh_tan_heavy" | |
}, | |
"721192" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_arctic_contrast_light" | |
}, | |
"721193" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_arctic_contrast_medium" | |
}, | |
"721194" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_arctic_contrast_heavy" | |
}, | |
"721484" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_sp_tape_short_jungle_light" | |
}, | |
"721485" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_sp_tape_short_jungle_medium" | |
}, | |
"721486" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_sp_tape_short_jungle_heavy" | |
}, | |
"721676" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_bluepolygon_bravo_light" | |
}, | |
"721677" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_bluepolygon_bravo_medium" | |
}, | |
"721678" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_bluepolygon_bravo_heavy" | |
}, | |
"721812" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_sp_zebracam_blue_light" | |
}, | |
"721813" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_sp_zebracam_blue_medium" | |
}, | |
"721814" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_sp_zebracam_blue_heavy" | |
}, | |
"721836" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_varicamo_light" | |
}, | |
"721837" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_varicamo_medium" | |
}, | |
"721838" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_varicamo_heavy" | |
}, | |
"722072" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_so_green_light" | |
}, | |
"722073" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_so_green_medium" | |
}, | |
"722074" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_so_green_heavy" | |
}, | |
"722424" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_am_g3sg1_murky_light" | |
}, | |
"722425" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_am_g3sg1_murky_medium" | |
}, | |
"722426" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_am_g3sg1_murky_heavy" | |
}, | |
"722648" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_cu_chronos_g3sg1_light" | |
}, | |
"722649" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_cu_chronos_g3sg1_medium" | |
}, | |
"722650" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_cu_chronos_g3sg1_heavy" | |
}, | |
"722756" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_kimono_diamonds_orange_light" | |
}, | |
"722757" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_kimono_diamonds_orange_medium" | |
}, | |
"722758" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_hy_kimono_diamonds_orange_heavy" | |
}, | |
"722868" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_gs_g3sg1_flux_purple_light" | |
}, | |
"722869" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_gs_g3sg1_flux_purple_medium" | |
}, | |
"722870" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_gs_g3sg1_flux_purple_heavy" | |
}, | |
"722940" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_cu_g3sg1_executioner_light" | |
}, | |
"722941" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_cu_g3sg1_executioner_medium" | |
}, | |
"722942" : { | |
"icon_path" : "econ/default_generated/weapon_g3sg1_cu_g3sg1_executioner_heavy" | |
}, | |
"852272" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_forest_winter_light" | |
}, | |
"852273" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_forest_winter_medium" | |
}, | |
"852274" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_forest_winter_heavy" | |
}, | |
"852300" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_ddpat_orange_light" | |
}, | |
"852301" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_ddpat_orange_medium" | |
}, | |
"852302" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_ddpat_orange_heavy" | |
}, | |
"852444" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_sp_spray_desert_sage_light" | |
}, | |
"852445" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_sp_spray_desert_sage_medium" | |
}, | |
"852446" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_sp_spray_desert_sage_heavy" | |
}, | |
"852736" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_crumple_bravo_light" | |
}, | |
"852737" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_crumple_bravo_medium" | |
}, | |
"852738" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_crumple_bravo_heavy" | |
}, | |
"852832" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_an_titanium30v_light" | |
}, | |
"852833" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_an_titanium30v_medium" | |
}, | |
"852834" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_an_titanium30v_heavy" | |
}, | |
"852908" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_varicamo_light" | |
}, | |
"852909" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_varicamo_medium" | |
}, | |
"852910" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_varicamo_heavy" | |
}, | |
"852916" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_varicamo_urban_light" | |
}, | |
"852917" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_varicamo_urban_medium" | |
}, | |
"852918" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_varicamo_urban_heavy" | |
}, | |
"852932" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_sp_mesh_slashes_light" | |
}, | |
"852933" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_sp_mesh_slashes_medium" | |
}, | |
"852934" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_sp_mesh_slashes_heavy" | |
}, | |
"853024" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_sandstorm_light" | |
}, | |
"853025" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_sandstorm_medium" | |
}, | |
"853026" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_sandstorm_heavy" | |
}, | |
"853156" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_so_orca_light" | |
}, | |
"853157" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_so_orca_medium" | |
}, | |
"853158" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_so_orca_heavy" | |
}, | |
"853200" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_galil_kami_light" | |
}, | |
"853201" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_galil_kami_medium" | |
}, | |
"853202" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_hy_galil_kami_heavy" | |
}, | |
"853484" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_cerbrus_galil_light" | |
}, | |
"853485" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_cerbrus_galil_medium" | |
}, | |
"853486" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_cerbrus_galil_heavy" | |
}, | |
"853560" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_galil_abrasion_light" | |
}, | |
"853561" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_galil_abrasion_medium" | |
}, | |
"853562" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_galil_abrasion_heavy" | |
}, | |
"853680" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_galil_eco_light" | |
}, | |
"853681" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_galil_eco_medium" | |
}, | |
"853682" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_galil_eco_heavy" | |
}, | |
"853808" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_am_geometric_steps_light" | |
}, | |
"853809" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_am_geometric_steps_medium" | |
}, | |
"853810" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_am_geometric_steps_heavy" | |
}, | |
"853880" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_galilar_particles_light" | |
}, | |
"853881" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_galilar_particles_medium" | |
}, | |
"853882" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_cu_galilar_particles_heavy" | |
}, | |
"853944" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_gs_galil_nightwing_light" | |
}, | |
"853945" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_gs_galil_nightwing_medium" | |
}, | |
"853946" : { | |
"icon_path" : "econ/default_generated/weapon_galilar_gs_galil_nightwing_heavy" | |
}, | |
"917592" : { | |
"icon_path" : "econ/default_generated/weapon_m249_sp_spray_light" | |
}, | |
"917593" : { | |
"icon_path" : "econ/default_generated/weapon_m249_sp_spray_medium" | |
}, | |
"917594" : { | |
"icon_path" : "econ/default_generated/weapon_m249_sp_spray_heavy" | |
}, | |
"917804" : { | |
"icon_path" : "econ/default_generated/weapon_m249_hy_blizzard_light" | |
}, | |
"917805" : { | |
"icon_path" : "econ/default_generated/weapon_m249_hy_blizzard_medium" | |
}, | |
"917806" : { | |
"icon_path" : "econ/default_generated/weapon_m249_hy_blizzard_heavy" | |
}, | |
"918312" : { | |
"icon_path" : "econ/default_generated/weapon_m249_hy_ddpat_jungle_bravo_light" | |
}, | |
"918313" : { | |
"icon_path" : "econ/default_generated/weapon_m249_hy_ddpat_jungle_bravo_medium" | |
}, | |
"918314" : { | |
"icon_path" : "econ/default_generated/weapon_m249_hy_ddpat_jungle_bravo_heavy" | |
}, | |
"918476" : { | |
"icon_path" : "econ/default_generated/weapon_m249_sp_mesh_python_light" | |
}, | |
"918477" : { | |
"icon_path" : "econ/default_generated/weapon_m249_sp_mesh_python_medium" | |
}, | |
"918478" : { | |
"icon_path" : "econ/default_generated/weapon_m249_sp_mesh_python_heavy" | |
}, | |
"918568" : { | |
"icon_path" : "econ/default_generated/weapon_m249_aq_obsidian_light" | |
}, | |
"918569" : { | |
"icon_path" : "econ/default_generated/weapon_m249_aq_obsidian_medium" | |
}, | |
"918570" : { | |
"icon_path" : "econ/default_generated/weapon_m249_aq_obsidian_heavy" | |
}, | |
"919108" : { | |
"icon_path" : "econ/default_generated/weapon_m249_cu_m249_sektor_light" | |
}, | |
"919109" : { | |
"icon_path" : "econ/default_generated/weapon_m249_cu_m249_sektor_medium" | |
}, | |
"919110" : { | |
"icon_path" : "econ/default_generated/weapon_m249_cu_m249_sektor_heavy" | |
}, | |
"919312" : { | |
"icon_path" : "econ/default_generated/weapon_m249_hy_zodiac3_light" | |
}, | |
"919313" : { | |
"icon_path" : "econ/default_generated/weapon_m249_hy_zodiac3_medium" | |
}, | |
"919314" : { | |
"icon_path" : "econ/default_generated/weapon_m249_hy_zodiac3_heavy" | |
}, | |
"919392" : { | |
"icon_path" : "econ/default_generated/weapon_m249_so_keycolors_light" | |
}, | |
"919393" : { | |
"icon_path" : "econ/default_generated/weapon_m249_so_keycolors_medium" | |
}, | |
"919394" : { | |
"icon_path" : "econ/default_generated/weapon_m249_so_keycolors_heavy" | |
}, | |
"919488" : { | |
"icon_path" : "econ/default_generated/weapon_m249_gs_m249_nebula_crusader_light" | |
}, | |
"919489" : { | |
"icon_path" : "econ/default_generated/weapon_m249_gs_m249_nebula_crusader_medium" | |
}, | |
"919490" : { | |
"icon_path" : "econ/default_generated/weapon_m249_gs_m249_nebula_crusader_heavy" | |
}, | |
"1048608" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_desert_light" | |
}, | |
"1048609" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_desert_medium" | |
}, | |
"1048610" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_desert_heavy" | |
}, | |
"1048640" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_v_tiger_light" | |
}, | |
"1048641" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_v_tiger_medium" | |
}, | |
"1048642" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_v_tiger_heavy" | |
}, | |
"1048644" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_ddpat_urb_light" | |
}, | |
"1048645" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_ddpat_urb_medium" | |
}, | |
"1048646" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_ddpat_urb_heavy" | |
}, | |
"1048980" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_so_tornado_light" | |
}, | |
"1048981" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_so_tornado_medium" | |
}, | |
"1048982" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_so_tornado_heavy" | |
}, | |
"1049196" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_bullet_rain_m4a1_light" | |
}, | |
"1049197" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_bullet_rain_m4a1_medium" | |
}, | |
"1049198" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_bullet_rain_m4a1_heavy" | |
}, | |
"1049232" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_hunter_modern_light" | |
}, | |
"1049233" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_hunter_modern_medium" | |
}, | |
"1049234" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_hy_hunter_modern_heavy" | |
}, | |
"1049244" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_sp_nukestripe_orange_light" | |
}, | |
"1049245" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_sp_nukestripe_orange_medium" | |
}, | |
"1049246" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_sp_nukestripe_orange_heavy" | |
}, | |
"1049280" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_sp_zebracam_bw_light" | |
}, | |
"1049281" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_sp_zebracam_bw_medium" | |
}, | |
"1049282" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_sp_zebracam_bw_heavy" | |
}, | |
"1049324" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_sp_star_bravo_light" | |
}, | |
"1049325" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_sp_star_bravo_medium" | |
}, | |
"1049326" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_sp_star_bravo_heavy" | |
}, | |
"1049436" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_xray_m4_light" | |
}, | |
"1049437" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_xray_m4_medium" | |
}, | |
"1049438" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_xray_m4_heavy" | |
}, | |
"1049596" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4_asimov_light" | |
}, | |
"1049597" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4_asimov_medium" | |
}, | |
"1049598" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4_asimov_heavy" | |
}, | |
"1049812" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a1_howling_light" | |
}, | |
"1049813" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a1_howling_medium" | |
}, | |
"1049814" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a1_howling_heavy" | |
}, | |
"1049920" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_titanstorm_light" | |
}, | |
"1049921" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_titanstorm_medium" | |
}, | |
"1049922" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_titanstorm_heavy" | |
}, | |
"1050112" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a4_griffin_light" | |
}, | |
"1050113" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a4_griffin_medium" | |
}, | |
"1050114" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a4_griffin_heavy" | |
}, | |
"1050176" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a4_ancestral_light" | |
}, | |
"1050177" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a4_ancestral_medium" | |
}, | |
"1050178" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a4_ancestral_heavy" | |
}, | |
"1050372" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_poseidon_light" | |
}, | |
"1050373" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_poseidon_medium" | |
}, | |
"1050374" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_poseidon_heavy" | |
}, | |
"1050460" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_am_kimono_sunrise_light" | |
}, | |
"1050461" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_am_kimono_sunrise_medium" | |
}, | |
"1050462" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_am_kimono_sunrise_heavy" | |
}, | |
"1050496" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a4_evil_daimyo_light" | |
}, | |
"1050497" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a4_evil_daimyo_medium" | |
}, | |
"1050498" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_cu_m4a4_evil_daimyo_heavy" | |
}, | |
"1050624" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_gs_m4a4_royal_squire_light" | |
}, | |
"1050625" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_gs_m4a4_royal_squire_medium" | |
}, | |
"1050626" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_gs_m4a4_royal_squire_heavy" | |
}, | |
"1050708" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_gs_m4a4_pioneer_light" | |
}, | |
"1050709" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_gs_m4a4_pioneer_medium" | |
}, | |
"1050710" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_gs_m4a4_pioneer_heavy" | |
}, | |
"1114124" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_red_light" | |
}, | |
"1114125" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_red_medium" | |
}, | |
"1114126" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_red_heavy" | |
}, | |
"1114180" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_hy_ddpat_urb_light" | |
}, | |
"1114181" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_hy_ddpat_urb_medium" | |
}, | |
"1114182" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_hy_ddpat_urb_heavy" | |
}, | |
"1114240" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_an_silver_light" | |
}, | |
"1114241" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_an_silver_medium" | |
}, | |
"1114242" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_an_silver_heavy" | |
}, | |
"1114264" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_aa_fade_light" | |
}, | |
"1114265" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_aa_fade_medium" | |
}, | |
"1114266" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_aa_fade_heavy" | |
}, | |
"1114504" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_purple_light" | |
}, | |
"1114505" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_purple_medium" | |
}, | |
"1114506" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_purple_heavy" | |
}, | |
"1114516" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_tornado_light" | |
}, | |
"1114517" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_tornado_medium" | |
}, | |
"1114518" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_tornado_heavy" | |
}, | |
"1114740" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_sp_palm_light" | |
}, | |
"1114741" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_sp_palm_medium" | |
}, | |
"1114742" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_sp_palm_heavy" | |
}, | |
"1114864" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_aq_etched_mac10_bravo_light" | |
}, | |
"1114865" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_aq_etched_mac10_bravo_medium" | |
}, | |
"1114866" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_aq_etched_mac10_bravo_heavy" | |
}, | |
"1115096" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_aa_fade_metallic_light" | |
}, | |
"1115097" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_aa_fade_metallic_medium" | |
}, | |
"1115098" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_aa_fade_metallic_heavy" | |
}, | |
"1115248" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_redhot_light" | |
}, | |
"1115249" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_redhot_medium" | |
}, | |
"1115250" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_redhot_heavy" | |
}, | |
"1115352" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_decay_light" | |
}, | |
"1115353" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_decay_medium" | |
}, | |
"1115354" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_decay_heavy" | |
}, | |
"1115444" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_indigo_and_grey_light" | |
}, | |
"1115445" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_indigo_and_grey_medium" | |
}, | |
"1115446" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_so_indigo_and_grey_heavy" | |
}, | |
"1115460" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_korupt_light" | |
}, | |
"1115461" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_korupt_medium" | |
}, | |
"1115462" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_korupt_heavy" | |
}, | |
"1115484" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_luggage_mac10_light" | |
}, | |
"1115485" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_luggage_mac10_medium" | |
}, | |
"1115486" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_luggage_mac10_heavy" | |
}, | |
"1115600" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_am_nuclear_skulls3_mac10_light" | |
}, | |
"1115601" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_am_nuclear_skulls3_mac10_medium" | |
}, | |
"1115602" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_am_nuclear_skulls3_mac10_heavy" | |
}, | |
"1115720" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_am_mac10_malachite_light" | |
}, | |
"1115721" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_am_mac10_malachite_medium" | |
}, | |
"1115722" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_am_mac10_malachite_heavy" | |
}, | |
"1115844" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_neonrider_light" | |
}, | |
"1115845" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_neonrider_medium" | |
}, | |
"1115846" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_neonrider_heavy" | |
}, | |
"1116104" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_alekhya_duo_light" | |
}, | |
"1116105" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_alekhya_duo_medium" | |
}, | |
"1116106" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_cu_mac10_alekhya_duo_heavy" | |
}, | |
"1116248" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_am_mac10_electricity_light" | |
}, | |
"1116249" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_am_mac10_electricity_medium" | |
}, | |
"1116250" : { | |
"icon_path" : "econ/default_generated/weapon_mac10_am_mac10_electricity_heavy" | |
}, | |
"1245264" : { | |
"icon_path" : "econ/default_generated/weapon_p90_hy_zombie_light" | |
}, | |
"1245265" : { | |
"icon_path" : "econ/default_generated/weapon_p90_hy_zombie_medium" | |
}, | |
"1245266" : { | |
"icon_path" : "econ/default_generated/weapon_p90_hy_zombie_heavy" | |
}, | |
"1245452" : { | |
"icon_path" : "econ/default_generated/weapon_p90_am_slither_p90_light" | |
}, | |
"1245453" : { | |
"icon_path" : "econ/default_generated/weapon_p90_am_slither_p90_medium" | |
}, | |
"1245454" : { | |
"icon_path" : "econ/default_generated/weapon_p90_am_slither_p90_heavy" | |
}, | |
"1245584" : { | |
"icon_path" : "econ/default_generated/weapon_p90_so_stormfront_light" | |
}, | |
"1245585" : { | |
"icon_path" : "econ/default_generated/weapon_p90_so_stormfront_medium" | |
}, | |
"1245586" : { | |
"icon_path" : "econ/default_generated/weapon_p90_so_stormfront_heavy" | |
}, | |
"1245628" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_mesh_glacier_light" | |
}, | |
"1245629" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_mesh_glacier_medium" | |
}, | |
"1245630" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_mesh_glacier_heavy" | |
}, | |
"1245680" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_spray_sand_light" | |
}, | |
"1245681" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_spray_sand_medium" | |
}, | |
"1245682" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_spray_sand_heavy" | |
}, | |
"1245808" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_catskulls_p90_light" | |
}, | |
"1245809" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_catskulls_p90_medium" | |
}, | |
"1245810" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_catskulls_p90_heavy" | |
}, | |
"1245860" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_nukestripe_maroon_light" | |
}, | |
"1245861" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_nukestripe_maroon_medium" | |
}, | |
"1245862" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_nukestripe_maroon_heavy" | |
}, | |
"1245884" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_dapple_light" | |
}, | |
"1245885" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_dapple_medium" | |
}, | |
"1245886" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_dapple_heavy" | |
}, | |
"1245912" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_dragon_p90_bravo_light" | |
}, | |
"1245913" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_dragon_p90_bravo_medium" | |
}, | |
"1245914" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_dragon_p90_bravo_heavy" | |
}, | |
"1246096" : { | |
"icon_path" : "econ/default_generated/weapon_p90_hy_modspots_light" | |
}, | |
"1246097" : { | |
"icon_path" : "econ/default_generated/weapon_p90_hy_modspots_medium" | |
}, | |
"1246098" : { | |
"icon_path" : "econ/default_generated/weapon_p90_hy_modspots_heavy" | |
}, | |
"1246120" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_twigs_light" | |
}, | |
"1246121" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_twigs_medium" | |
}, | |
"1246122" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_twigs_heavy" | |
}, | |
"1246160" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_mesh_hot_and_cold_light" | |
}, | |
"1246161" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_mesh_hot_and_cold_medium" | |
}, | |
"1246162" : { | |
"icon_path" : "econ/default_generated/weapon_p90_sp_mesh_hot_and_cold_heavy" | |
}, | |
"1246316" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_trigon_light" | |
}, | |
"1246317" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_trigon_medium" | |
}, | |
"1246318" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_trigon_heavy" | |
}, | |
"1246428" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_scorpius_light" | |
}, | |
"1246429" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_scorpius_medium" | |
}, | |
"1246430" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_scorpius_heavy" | |
}, | |
"1246524" : { | |
"icon_path" : "econ/default_generated/weapon_p90_an_royalbleed_light" | |
}, | |
"1246525" : { | |
"icon_path" : "econ/default_generated/weapon_p90_an_royalbleed_medium" | |
}, | |
"1246526" : { | |
"icon_path" : "econ/default_generated/weapon_p90_an_royalbleed_heavy" | |
}, | |
"1246552" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_brown_leather_p90_light" | |
}, | |
"1246553" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_brown_leather_p90_medium" | |
}, | |
"1246554" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_brown_leather_p90_heavy" | |
}, | |
"1246620" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90-asiimov_light" | |
}, | |
"1246621" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90-asiimov_medium" | |
}, | |
"1246622" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90-asiimov_heavy" | |
}, | |
"1247128" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_mastery_light" | |
}, | |
"1247129" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_mastery_medium" | |
}, | |
"1247130" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_mastery_heavy" | |
}, | |
"1247248" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_shapewood_light" | |
}, | |
"1247249" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_shapewood_medium" | |
}, | |
"1247250" : { | |
"icon_path" : "econ/default_generated/weapon_p90_cu_p90_shapewood_heavy" | |
}, | |
"1572924" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_hy_gelpen_light" | |
}, | |
"1572925" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_hy_gelpen_medium" | |
}, | |
"1572926" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_hy_gelpen_heavy" | |
}, | |
"1572932" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_hy_ddpat_urb_light" | |
}, | |
"1572933" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_hy_ddpat_urb_medium" | |
}, | |
"1572934" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_hy_ddpat_urb_heavy" | |
}, | |
"1573012" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_aa_flames_light" | |
}, | |
"1573013" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_aa_flames_medium" | |
}, | |
"1573014" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_aa_flames_heavy" | |
}, | |
"1573144" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_am_carbon_fiber_light" | |
}, | |
"1573145" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_am_carbon_fiber_medium" | |
}, | |
"1573146" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_am_carbon_fiber_heavy" | |
}, | |
"1573236" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_so_caramel_light" | |
}, | |
"1573237" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_so_caramel_medium" | |
}, | |
"1573238" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_so_caramel_heavy" | |
}, | |
"1573540" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_nukestripe_maroon_light" | |
}, | |
"1573541" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_nukestripe_maroon_medium" | |
}, | |
"1573542" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_nukestripe_maroon_heavy" | |
}, | |
"1573564" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_dapple_light" | |
}, | |
"1573565" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_dapple_medium" | |
}, | |
"1573566" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_dapple_heavy" | |
}, | |
"1573636" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_skull_diagram_bravo_light" | |
}, | |
"1573637" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_skull_diagram_bravo_medium" | |
}, | |
"1573638" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_skull_diagram_bravo_heavy" | |
}, | |
"1573988" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_cu_ump_corporal_light" | |
}, | |
"1573989" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_cu_ump_corporal_medium" | |
}, | |
"1573990" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_cu_ump_corporal_heavy" | |
}, | |
"1574196" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_so_indigo_and_grey_light" | |
}, | |
"1574197" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_so_indigo_and_grey_medium" | |
}, | |
"1574198" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_so_indigo_and_grey_heavy" | |
}, | |
"1574312" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_hy_lines_orange_light" | |
}, | |
"1574313" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_hy_lines_orange_medium" | |
}, | |
"1574314" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_hy_lines_orange_heavy" | |
}, | |
"1574432" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_ump45_d-visions_light" | |
}, | |
"1574433" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_ump45_d-visions_medium" | |
}, | |
"1574434" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_sp_ump45_d-visions_heavy" | |
}, | |
"1574608" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_am_ump_racer_light" | |
}, | |
"1574609" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_am_ump_racer_medium" | |
}, | |
"1574610" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_am_ump_racer_heavy" | |
}, | |
"1574628" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_cu_labyrinth_light" | |
}, | |
"1574629" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_cu_labyrinth_medium" | |
}, | |
"1574630" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_cu_labyrinth_heavy" | |
}, | |
"1574816" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_cu_ump45_uproar_light" | |
}, | |
"1574817" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_cu_ump45_uproar_medium" | |
}, | |
"1574818" : { | |
"icon_path" : "econ/default_generated/weapon_ump45_cu_ump45_uproar_heavy" | |
}, | |
"1638568" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_blued_light" | |
}, | |
"1638569" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_blued_medium" | |
}, | |
"1638570" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_blued_heavy" | |
}, | |
"1638780" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_so_grassland_light" | |
}, | |
"1638781" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_so_grassland_medium" | |
}, | |
"1638782" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_so_grassland_heavy" | |
}, | |
"1638784" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_so_moss_light" | |
}, | |
"1638785" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_so_moss_medium" | |
}, | |
"1638786" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_so_moss_heavy" | |
}, | |
"1638940" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_sp_tape_dots_urban_light" | |
}, | |
"1638941" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_sp_tape_dots_urban_medium" | |
}, | |
"1638942" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_sp_tape_dots_urban_heavy" | |
}, | |
"1639064" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_hunter_blaze_orange_light" | |
}, | |
"1639065" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_hunter_blaze_orange_medium" | |
}, | |
"1639066" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_hunter_blaze_orange_heavy" | |
}, | |
"1639076" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_sp_nukestripe_maroon_light" | |
}, | |
"1639077" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_sp_nukestripe_maroon_medium" | |
}, | |
"1639078" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_sp_nukestripe_maroon_heavy" | |
}, | |
"1639220" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_so_jungle_bravo_light" | |
}, | |
"1639221" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_so_jungle_bravo_medium" | |
}, | |
"1639222" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_so_jungle_bravo_heavy" | |
}, | |
"1639352" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_varicamo_blue_light" | |
}, | |
"1639353" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_varicamo_blue_medium" | |
}, | |
"1639354" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_varicamo_blue_heavy" | |
}, | |
"1639360" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_varicamo_desert_light" | |
}, | |
"1639361" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_varicamo_desert_medium" | |
}, | |
"1639362" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_varicamo_desert_heavy" | |
}, | |
"1639656" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_cu_xm1014_heaven_guard_light" | |
}, | |
"1639657" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_cu_xm1014_heaven_guard_medium" | |
}, | |
"1639658" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_cu_xm1014_heaven_guard_heavy" | |
}, | |
"1639680" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_snakeskin_red_light" | |
}, | |
"1639681" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_snakeskin_red_medium" | |
}, | |
"1639682" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_hy_snakeskin_red_heavy" | |
}, | |
"1639792" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_cu_leather_xm1014_light" | |
}, | |
"1639793" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_cu_leather_xm1014_medium" | |
}, | |
"1639794" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_cu_leather_xm1014_heavy" | |
}, | |
"1639880" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_am_nuclear_skulls1_xm1014_light" | |
}, | |
"1639881" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_am_nuclear_skulls1_xm1014_medium" | |
}, | |
"1639882" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_am_nuclear_skulls1_xm1014_heavy" | |
}, | |
"1639972" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_cu_xm1014_caritas_light" | |
}, | |
"1639973" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_cu_xm1014_caritas_medium" | |
}, | |
"1639974" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_cu_xm1014_caritas_heavy" | |
}, | |
"1640028" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_xm1014_sigla_light" | |
}, | |
"1640029" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_xm1014_sigla_medium" | |
}, | |
"1640030" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_xm1014_sigla_heavy" | |
}, | |
"1640420" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_xm1014_scumbria_light" | |
}, | |
"1640421" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_xm1014_scumbria_medium" | |
}, | |
"1640422" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_xm1014_scumbria_heavy" | |
}, | |
"1640484" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_xm1014_hot_rod_light" | |
}, | |
"1640485" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_xm1014_hot_rod_medium" | |
}, | |
"1640486" : { | |
"icon_path" : "econ/default_generated/weapon_xm1014_aq_xm1014_hot_rod_heavy" | |
}, | |
"1703988" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_splatter_light" | |
}, | |
"1703989" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_splatter_medium" | |
}, | |
"1703990" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_splatter_heavy" | |
}, | |
"1704036" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_leaves_light" | |
}, | |
"1704037" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_leaves_medium" | |
}, | |
"1704038" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_leaves_heavy" | |
}, | |
"1704216" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_am_carbon_fiber_light" | |
}, | |
"1704217" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_am_carbon_fiber_medium" | |
}, | |
"1704218" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_am_carbon_fiber_heavy" | |
}, | |
"1704528" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_tape_short_sand_light" | |
}, | |
"1704529" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_tape_short_sand_medium" | |
}, | |
"1704530" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_tape_short_sand_heavy" | |
}, | |
"1704532" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_tape_short_urban_light" | |
}, | |
"1704533" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_tape_short_urban_medium" | |
}, | |
"1704534" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_tape_short_urban_heavy" | |
}, | |
"1704572" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_aq_brass_light" | |
}, | |
"1704573" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_aq_brass_medium" | |
}, | |
"1704574" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_aq_brass_heavy" | |
}, | |
"1704592" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_hunter_modern_light" | |
}, | |
"1704593" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_hunter_modern_medium" | |
}, | |
"1704594" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_hunter_modern_heavy" | |
}, | |
"1704620" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_nukestripe_brown_light" | |
}, | |
"1704621" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_nukestripe_brown_medium" | |
}, | |
"1704622" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_sp_nukestripe_brown_heavy" | |
}, | |
"1704748" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_aq_steel_bravo_light" | |
}, | |
"1704749" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_aq_steel_bravo_medium" | |
}, | |
"1704750" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_aq_steel_bravo_heavy" | |
}, | |
"1704832" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_water_crest_light" | |
}, | |
"1704833" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_water_crest_medium" | |
}, | |
"1704834" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_water_crest_heavy" | |
}, | |
"1704880" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_varicamo_night_light" | |
}, | |
"1704881" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_varicamo_night_medium" | |
}, | |
"1704882" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_varicamo_night_heavy" | |
}, | |
"1705004" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_am_turqoise_halftone_light" | |
}, | |
"1705005" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_am_turqoise_halftone_medium" | |
}, | |
"1705006" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_am_turqoise_halftone_heavy" | |
}, | |
"1705160" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon_antique_light" | |
}, | |
"1705161" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon_antique_medium" | |
}, | |
"1705162" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon_antique_heavy" | |
}, | |
"1705332" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon-osiris_light" | |
}, | |
"1705333" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon-osiris_medium" | |
}, | |
"1705334" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon-osiris_heavy" | |
}, | |
"1705440" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_so_grey_nuclear_green_bizon_light" | |
}, | |
"1705441" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_so_grey_nuclear_green_bizon_medium" | |
}, | |
"1705442" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_so_grey_nuclear_green_bizon_heavy" | |
}, | |
"1705764" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_bamboo_jungle_ink_light" | |
}, | |
"1705765" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_bamboo_jungle_ink_medium" | |
}, | |
"1705766" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_hy_bamboo_jungle_ink_heavy" | |
}, | |
"1705968" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon_noxious_light" | |
}, | |
"1705969" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon_noxious_medium" | |
}, | |
"1705970" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon_noxious_heavy" | |
}, | |
"1706040" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon_citizen_light" | |
}, | |
"1706041" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon_citizen_medium" | |
}, | |
"1706042" : { | |
"icon_path" : "econ/default_generated/weapon_bizon_cu_bizon_citizen_heavy" | |
}, | |
"1769600" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_an_silver_light" | |
}, | |
"1769601" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_an_silver_medium" | |
}, | |
"1769602" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_an_silver_heavy" | |
}, | |
"1769608" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_am_urban_light" | |
}, | |
"1769609" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_am_urban_medium" | |
}, | |
"1769610" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_am_urban_heavy" | |
}, | |
"1769628" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_yellow_light" | |
}, | |
"1769629" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_yellow_medium" | |
}, | |
"1769630" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_yellow_heavy" | |
}, | |
"1769868" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_sand_light" | |
}, | |
"1769869" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_sand_medium" | |
}, | |
"1769870" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_sand_heavy" | |
}, | |
"1769872" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_stormfront_light" | |
}, | |
"1769873" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_stormfront_medium" | |
}, | |
"1769874" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_stormfront_heavy" | |
}, | |
"1770156" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_sp_nukestripe_brown_light" | |
}, | |
"1770157" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_sp_nukestripe_brown_medium" | |
}, | |
"1770158" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_sp_nukestripe_brown_heavy" | |
}, | |
"1770180" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_hy_icosahedron_light" | |
}, | |
"1770181" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_hy_icosahedron_medium" | |
}, | |
"1770182" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_hy_icosahedron_heavy" | |
}, | |
"1770264" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_sp_hazard_bravo_light" | |
}, | |
"1770265" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_sp_hazard_bravo_medium" | |
}, | |
"1770266" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_sp_hazard_bravo_heavy" | |
}, | |
"1770636" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_cu_mag7_heaven_light" | |
}, | |
"1770637" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_cu_mag7_heaven_medium" | |
}, | |
"1770638" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_cu_mag7_heaven_heavy" | |
}, | |
"1771012" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_sp_mag7_firebitten_light" | |
}, | |
"1771013" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_sp_mag7_firebitten_medium" | |
}, | |
"1771014" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_sp_mag7_firebitten_heavy" | |
}, | |
"1771196" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_cu_mag7_redhot_light" | |
}, | |
"1771197" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_cu_mag7_redhot_medium" | |
}, | |
"1771198" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_cu_mag7_redhot_heavy" | |
}, | |
"1771320" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_hy_geometric_steps_green_light" | |
}, | |
"1771321" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_hy_geometric_steps_green_medium" | |
}, | |
"1771322" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_hy_geometric_steps_green_heavy" | |
}, | |
"1771364" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_aqua_light" | |
}, | |
"1771365" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_aqua_medium" | |
}, | |
"1771366" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_so_aqua_heavy" | |
}, | |
"1771468" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_cu_mag7_myrcene_light" | |
}, | |
"1771469" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_cu_mag7_myrcene_medium" | |
}, | |
"1771470" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_cu_mag7_myrcene_heavy" | |
}, | |
"1771612" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_gs_mag7_praetorian_light" | |
}, | |
"1771613" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_gs_mag7_praetorian_medium" | |
}, | |
"1771614" : { | |
"icon_path" : "econ/default_generated/weapon_mag7_gs_mag7_praetorian_heavy" | |
}, | |
"1835120" : { | |
"icon_path" : "econ/default_generated/weapon_negev_an_navy_light" | |
}, | |
"1835121" : { | |
"icon_path" : "econ/default_generated/weapon_negev_an_navy_medium" | |
}, | |
"1835122" : { | |
"icon_path" : "econ/default_generated/weapon_negev_an_navy_heavy" | |
}, | |
"1835812" : { | |
"icon_path" : "econ/default_generated/weapon_negev_sp_palm_bravo_light" | |
}, | |
"1835813" : { | |
"icon_path" : "econ/default_generated/weapon_negev_sp_palm_bravo_medium" | |
}, | |
"1835814" : { | |
"icon_path" : "econ/default_generated/weapon_negev_sp_palm_bravo_heavy" | |
}, | |
"1835968" : { | |
"icon_path" : "econ/default_generated/weapon_negev_hy_varicamo_desert_light" | |
}, | |
"1835969" : { | |
"icon_path" : "econ/default_generated/weapon_negev_hy_varicamo_desert_medium" | |
}, | |
"1835970" : { | |
"icon_path" : "econ/default_generated/weapon_negev_hy_varicamo_desert_heavy" | |
}, | |
"1836148" : { | |
"icon_path" : "econ/default_generated/weapon_negev_sp_negev_turq_terrain_light" | |
}, | |
"1836149" : { | |
"icon_path" : "econ/default_generated/weapon_negev_sp_negev_turq_terrain_medium" | |
}, | |
"1836150" : { | |
"icon_path" : "econ/default_generated/weapon_negev_sp_negev_turq_terrain_heavy" | |
}, | |
"1836200" : { | |
"icon_path" : "econ/default_generated/weapon_negev_am_army_shine_light" | |
}, | |
"1836201" : { | |
"icon_path" : "econ/default_generated/weapon_negev_am_army_shine_medium" | |
}, | |
"1836202" : { | |
"icon_path" : "econ/default_generated/weapon_negev_am_army_shine_heavy" | |
}, | |
"1836276" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_bratatat_negev_light" | |
}, | |
"1836277" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_bratatat_negev_medium" | |
}, | |
"1836278" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_bratatat_negev_heavy" | |
}, | |
"1836428" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_negev_titanstorm_light" | |
}, | |
"1836429" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_negev_titanstorm_medium" | |
}, | |
"1836430" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_negev_titanstorm_heavy" | |
}, | |
"1836484" : { | |
"icon_path" : "econ/default_generated/weapon_negev_sp_nuclear_pattern3_negev_light" | |
}, | |
"1836485" : { | |
"icon_path" : "econ/default_generated/weapon_negev_sp_nuclear_pattern3_negev_medium" | |
}, | |
"1836486" : { | |
"icon_path" : "econ/default_generated/weapon_negev_sp_nuclear_pattern3_negev_heavy" | |
}, | |
"1836736" : { | |
"icon_path" : "econ/default_generated/weapon_negev_am_negev_glory_light" | |
}, | |
"1836737" : { | |
"icon_path" : "econ/default_generated/weapon_negev_am_negev_glory_medium" | |
}, | |
"1836738" : { | |
"icon_path" : "econ/default_generated/weapon_negev_am_negev_glory_heavy" | |
}, | |
"1836940" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_negev_annihilator_light" | |
}, | |
"1836941" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_negev_annihilator_medium" | |
}, | |
"1836942" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_negev_annihilator_heavy" | |
}, | |
"1837064" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_negev_impact_light" | |
}, | |
"1837065" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_negev_impact_medium" | |
}, | |
"1837066" : { | |
"icon_path" : "econ/default_generated/weapon_negev_cu_negev_impact_heavy" | |
}, | |
"1900564" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_ddpat_light" | |
}, | |
"1900565" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_ddpat_medium" | |
}, | |
"1900566" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_ddpat_heavy" | |
}, | |
"1900664" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_sp_snake_light" | |
}, | |
"1900665" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_sp_snake_medium" | |
}, | |
"1900666" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_sp_snake_heavy" | |
}, | |
"1900708" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aq_copper_light" | |
}, | |
"1900709" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aq_copper_medium" | |
}, | |
"1900710" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aq_copper_heavy" | |
}, | |
"1900876" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_ddpat_orange_light" | |
}, | |
"1900877" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_ddpat_orange_medium" | |
}, | |
"1900878" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_ddpat_orange_heavy" | |
}, | |
"1901020" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_sp_spray_desert_sage_light" | |
}, | |
"1901021" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_sp_spray_desert_sage_medium" | |
}, | |
"1901022" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_sp_spray_desert_sage_heavy" | |
}, | |
"1901228" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_sp_nukestripe_brown_light" | |
}, | |
"1901229" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_sp_nukestripe_brown_medium" | |
}, | |
"1901230" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_sp_nukestripe_brown_heavy" | |
}, | |
"1901360" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_ali_tile_bravo_light" | |
}, | |
"1901361" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_ali_tile_bravo_medium" | |
}, | |
"1901362" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_ali_tile_bravo_heavy" | |
}, | |
"1901528" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aa_fade_metallic_light" | |
}, | |
"1901529" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aa_fade_metallic_medium" | |
}, | |
"1901530" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aa_fade_metallic_heavy" | |
}, | |
"1901544" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_varicamo_red_light" | |
}, | |
"1901545" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_varicamo_red_medium" | |
}, | |
"1901546" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_varicamo_red_heavy" | |
}, | |
"1901568" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_sawedoff_octopump_light" | |
}, | |
"1901569" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_sawedoff_octopump_medium" | |
}, | |
"1901570" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_sawedoff_octopump_heavy" | |
}, | |
"1901836" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aq_steel_light" | |
}, | |
"1901837" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aq_steel_medium" | |
}, | |
"1901838" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aq_steel_heavy" | |
}, | |
"1901924" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_green_leather_sawedoff_light" | |
}, | |
"1901925" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_green_leather_sawedoff_medium" | |
}, | |
"1901926" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_green_leather_sawedoff_heavy" | |
}, | |
"1902104" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aq_sawedoff_blackgold_light" | |
}, | |
"1902105" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aq_sawedoff_blackgold_medium" | |
}, | |
"1902106" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_aq_sawedoff_blackgold_heavy" | |
}, | |
"1902164" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_sawedoff_deva_light" | |
}, | |
"1902165" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_sawedoff_deva_medium" | |
}, | |
"1902166" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_sawedoff_deva_heavy" | |
}, | |
"1902280" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_sawedoff_origami_light" | |
}, | |
"1902281" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_sawedoff_origami_medium" | |
}, | |
"1902282" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_cu_sawedoff_origami_heavy" | |
}, | |
"1902376" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_bamboo_jungle_black_light" | |
}, | |
"1902377" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_bamboo_jungle_black_medium" | |
}, | |
"1902378" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_hy_bamboo_jungle_black_heavy" | |
}, | |
"1902612" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_gs_sawedoff_necromancer_light" | |
}, | |
"1902613" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_gs_sawedoff_necromancer_medium" | |
}, | |
"1902614" : { | |
"icon_path" : "econ/default_generated/weapon_sawedoff_gs_sawedoff_necromancer_heavy" | |
}, | |
"1966088" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_so_olive_light" | |
}, | |
"1966089" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_so_olive_medium" | |
}, | |
"1966090" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_so_olive_heavy" | |
}, | |
"1966148" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_ddpat_urb_light" | |
}, | |
"1966149" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_ddpat_urb_medium" | |
}, | |
"1966150" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_ddpat_urb_heavy" | |
}, | |
"1966224" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_am_ossify_light" | |
}, | |
"1966225" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_am_ossify_medium" | |
}, | |
"1966226" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_am_ossify_heavy" | |
}, | |
"1966716" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_aq_brass_light" | |
}, | |
"1966717" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_aq_brass_medium" | |
}, | |
"1966718" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_aq_brass_heavy" | |
}, | |
"1966796" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_sp_nukestripe_green_tec9_light" | |
}, | |
"1966797" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_sp_nukestripe_green_tec9_medium" | |
}, | |
"1966798" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_sp_nukestripe_green_tec9_heavy" | |
}, | |
"1966904" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_so_tornado_bravo_light" | |
}, | |
"1966905" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_so_tornado_bravo_medium" | |
}, | |
"1966906" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_so_tornado_bravo_heavy" | |
}, | |
"1966944" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_an_titanium30v_light" | |
}, | |
"1966945" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_an_titanium30v_medium" | |
}, | |
"1966946" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_an_titanium30v_heavy" | |
}, | |
"1967020" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_varicamo_light" | |
}, | |
"1967021" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_varicamo_medium" | |
}, | |
"1967022" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_varicamo_heavy" | |
}, | |
"1967048" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_sp_mesh_army_light" | |
}, | |
"1967049" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_sp_mesh_army_medium" | |
}, | |
"1967050" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_sp_mesh_army_heavy" | |
}, | |
"1967072" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_am_crystallized_light" | |
}, | |
"1967073" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_am_crystallized_medium" | |
}, | |
"1967074" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_am_crystallized_heavy" | |
}, | |
"1967168" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_am_fluted_tec9_light" | |
}, | |
"1967169" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_am_fluted_tec9_medium" | |
}, | |
"1967170" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_am_fluted_tec9_heavy" | |
}, | |
"1967236" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_cu_tec9_sandstorm_light" | |
}, | |
"1967237" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_cu_tec9_sandstorm_medium" | |
}, | |
"1967238" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_cu_tec9_sandstorm_heavy" | |
}, | |
"1967292" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_cu_tec9_asiimov_light" | |
}, | |
"1967293" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_cu_tec9_asiimov_medium" | |
}, | |
"1967294" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_cu_tec9_asiimov_heavy" | |
}, | |
"1967576" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_nuclear_skulls5_tec9_light" | |
}, | |
"1967577" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_nuclear_skulls5_tec9_medium" | |
}, | |
"1967578" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_nuclear_skulls5_tec9_heavy" | |
}, | |
"1967836" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_hades_light" | |
}, | |
"1967837" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_hades_medium" | |
}, | |
"1967838" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_hades_heavy" | |
}, | |
"1967916" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_bamboo_jungle_light" | |
}, | |
"1967917" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_bamboo_jungle_medium" | |
}, | |
"1967918" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_bamboo_jungle_heavy" | |
}, | |
"1967932" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_geometric_steps_yellow_light" | |
}, | |
"1967933" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_geometric_steps_yellow_medium" | |
}, | |
"1967934" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_hy_geometric_steps_yellow_heavy" | |
}, | |
"1968160" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_cu_tec9_avalanche_light" | |
}, | |
"1968161" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_cu_tec9_avalanche_medium" | |
}, | |
"1968162" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_cu_tec9_avalanche_heavy" | |
}, | |
"1968236" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_gs_tec9_jambiya_light" | |
}, | |
"1968237" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_gs_tec9_jambiya_medium" | |
}, | |
"1968238" : { | |
"icon_path" : "econ/default_generated/weapon_tec9_gs_tec9_jambiya_heavy" | |
}, | |
"2097236" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_hy_granite_light" | |
}, | |
"2097237" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_hy_granite_medium" | |
}, | |
"2097238" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_hy_granite_heavy" | |
}, | |
"2097280" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_an_silver_light" | |
}, | |
"2097281" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_an_silver_medium" | |
}, | |
"2097282" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_an_silver_heavy" | |
}, | |
"2097436" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_scorpion_p2000_light" | |
}, | |
"2097437" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_scorpion_p2000_medium" | |
}, | |
"2097438" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_scorpion_p2000_heavy" | |
}, | |
"2097532" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_so_grassland_light" | |
}, | |
"2097533" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_so_grassland_medium" | |
}, | |
"2097534" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_so_grassland_heavy" | |
}, | |
"2097568" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_sp_leaves_grassland_light" | |
}, | |
"2097569" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_sp_leaves_grassland_medium" | |
}, | |
"2097570" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_sp_leaves_grassland_heavy" | |
}, | |
"2097888" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_favela_p2000_light" | |
}, | |
"2097889" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_favela_p2000_medium" | |
}, | |
"2097890" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_favela_p2000_heavy" | |
}, | |
"2097996" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_ossify_blue_p2000_bravo_light" | |
}, | |
"2097997" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_ossify_blue_p2000_bravo_medium" | |
}, | |
"2097998" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_ossify_blue_p2000_bravo_heavy" | |
}, | |
"2098136" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_aa_fade_metallic_light" | |
}, | |
"2098137" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_aa_fade_metallic_medium" | |
}, | |
"2098138" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_aa_fade_metallic_heavy" | |
}, | |
"2098252" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_hy_poly_camo_light" | |
}, | |
"2098253" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_hy_poly_camo_medium" | |
}, | |
"2098254" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_hy_poly_camo_heavy" | |
}, | |
"2098460" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_chainmail_light" | |
}, | |
"2098461" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_chainmail_medium" | |
}, | |
"2098462" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_chainmail_heavy" | |
}, | |
"2098504" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_p2000_pulse_light" | |
}, | |
"2098505" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_p2000_pulse_medium" | |
}, | |
"2098506" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_p2000_pulse_heavy" | |
}, | |
"2098536" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_luggage_p2000_light" | |
}, | |
"2098537" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_luggage_p2000_medium" | |
}, | |
"2098538" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_luggage_p2000_heavy" | |
}, | |
"2098580" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_p2000_ivory_light" | |
}, | |
"2098581" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_p2000_ivory_medium" | |
}, | |
"2098582" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_p2000_ivory_heavy" | |
}, | |
"2098708" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_p2000_fire_elemental_light" | |
}, | |
"2098709" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_p2000_fire_elemental_medium" | |
}, | |
"2098710" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_cu_p2000_fire_elemental_heavy" | |
}, | |
"2098924" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_sp_labyrinth2_light" | |
}, | |
"2098925" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_sp_labyrinth2_medium" | |
}, | |
"2098926" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_sp_labyrinth2_heavy" | |
}, | |
"2099092" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_aq_p2000_boom_light" | |
}, | |
"2099093" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_aq_p2000_boom_medium" | |
}, | |
"2099094" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_aq_p2000_boom_heavy" | |
}, | |
"2099212" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_p2000_imperial_red_light" | |
}, | |
"2099213" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_p2000_imperial_red_medium" | |
}, | |
"2099214" : { | |
"icon_path" : "econ/default_generated/weapon_hkp2000_am_p2000_imperial_red_heavy" | |
}, | |
"2162708" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_ddpat_light" | |
}, | |
"2162709" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_ddpat_medium" | |
}, | |
"2162710" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_ddpat_heavy" | |
}, | |
"2162732" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_skulls_light" | |
}, | |
"2162733" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_skulls_medium" | |
}, | |
"2162734" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_skulls_heavy" | |
}, | |
"2162748" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_gelpen_light" | |
}, | |
"2162749" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_gelpen_medium" | |
}, | |
"2162750" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_gelpen_heavy" | |
}, | |
"2162800" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_an_navy_light" | |
}, | |
"2162801" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_an_navy_medium" | |
}, | |
"2162802" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_an_navy_heavy" | |
}, | |
"2163096" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_so_whiteout_light" | |
}, | |
"2163097" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_so_whiteout_medium" | |
}, | |
"2163098" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_so_whiteout_heavy" | |
}, | |
"2163252" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_tape_orange_light" | |
}, | |
"2163253" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_tape_orange_medium" | |
}, | |
"2163254" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_tape_orange_heavy" | |
}, | |
"2163524" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_so_olive_bravo_light" | |
}, | |
"2163525" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_so_olive_bravo_medium" | |
}, | |
"2163526" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_so_olive_bravo_heavy" | |
}, | |
"2163540" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_am_ossify_blue_light" | |
}, | |
"2163541" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_am_ossify_blue_medium" | |
}, | |
"2163542" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_am_ossify_blue_heavy" | |
}, | |
"2163668" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_spray_army_light" | |
}, | |
"2163669" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_spray_army_medium" | |
}, | |
"2163670" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_spray_army_heavy" | |
}, | |
"2163688" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_varicamo_red_light" | |
}, | |
"2163689" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_varicamo_red_medium" | |
}, | |
"2163690" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_varicamo_red_heavy" | |
}, | |
"2164104" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_cu_mp7-commander_light" | |
}, | |
"2164105" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_cu_mp7-commander_medium" | |
}, | |
"2164106" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_cu_mp7-commander_heavy" | |
}, | |
"2164148" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_plaid1_light" | |
}, | |
"2164149" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_plaid1_medium" | |
}, | |
"2164150" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_hy_plaid1_heavy" | |
}, | |
"2164380" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_aq_mp7_ultramodern_light" | |
}, | |
"2164381" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_aq_mp7_ultramodern_medium" | |
}, | |
"2164382" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_aq_mp7_ultramodern_heavy" | |
}, | |
"2164456" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_labyrinth_light" | |
}, | |
"2164457" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_labyrinth_medium" | |
}, | |
"2164458" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_labyrinth_heavy" | |
}, | |
"2164612" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_cu_mp7_nemsis_light" | |
}, | |
"2164613" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_cu_mp7_nemsis_medium" | |
}, | |
"2164614" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_cu_mp7_nemsis_heavy" | |
}, | |
"2164688" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_cu_mp7_classified_light" | |
}, | |
"2164689" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_cu_mp7_classified_medium" | |
}, | |
"2164690" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_cu_mp7_classified_heavy" | |
}, | |
"2164832" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_mp7_impire_light" | |
}, | |
"2164833" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_mp7_impire_medium" | |
}, | |
"2164834" : { | |
"icon_path" : "econ/default_generated/weapon_mp7_sp_mp7_impire_heavy" | |
}, | |
"2228356" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_an_red_light" | |
}, | |
"2228357" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_an_red_medium" | |
}, | |
"2228358" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_an_red_heavy" | |
}, | |
"2228380" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_so_yellow_light" | |
}, | |
"2228381" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_so_yellow_medium" | |
}, | |
"2228382" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_so_yellow_heavy" | |
}, | |
"2228468" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_aa_vertigo_light" | |
}, | |
"2228469" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_aa_vertigo_medium" | |
}, | |
"2228470" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_aa_vertigo_heavy" | |
}, | |
"2228624" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_so_stormfront_light" | |
}, | |
"2228625" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_so_stormfront_medium" | |
}, | |
"2228626" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_so_stormfront_heavy" | |
}, | |
"2228788" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_sp_tape_orange_light" | |
}, | |
"2228789" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_sp_tape_orange_medium" | |
}, | |
"2228790" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_sp_tape_orange_heavy" | |
}, | |
"2228816" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_sp_tape_short_sand_light" | |
}, | |
"2228817" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_sp_tape_short_sand_medium" | |
}, | |
"2228818" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_sp_tape_short_sand_heavy" | |
}, | |
"2229020" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_sp_tape_dots_bravo_light" | |
}, | |
"2229021" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_sp_tape_dots_bravo_medium" | |
}, | |
"2229022" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_sp_tape_dots_bravo_heavy" | |
}, | |
"2229272" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_am_thorny_rose_mp9_light" | |
}, | |
"2229273" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_am_thorny_rose_mp9_medium" | |
}, | |
"2229274" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_am_thorny_rose_mp9_heavy" | |
}, | |
"2229540" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_am_metal_inlay_light" | |
}, | |
"2229541" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_am_metal_inlay_medium" | |
}, | |
"2229542" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_am_metal_inlay_heavy" | |
}, | |
"2229688" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_hy_plaid2_light" | |
}, | |
"2229689" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_hy_plaid2_medium" | |
}, | |
"2229690" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_hy_plaid2_heavy" | |
}, | |
"2229696" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_hy_nuclear_pattern2_mp9_light" | |
}, | |
"2229697" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_hy_nuclear_pattern2_mp9_medium" | |
}, | |
"2229698" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_hy_nuclear_pattern2_mp9_heavy" | |
}, | |
"2229768" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_cu_mp9_chevron_light" | |
}, | |
"2229769" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_cu_mp9_chevron_medium" | |
}, | |
"2229770" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_cu_mp9_chevron_heavy" | |
}, | |
"2229836" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_cu_mp9_deadly_poison_light" | |
}, | |
"2229837" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_cu_mp9_deadly_poison_medium" | |
}, | |
"2229838" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_cu_mp9_deadly_poison_heavy" | |
}, | |
"2230016" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_aa_pandora_light" | |
}, | |
"2230017" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_aa_pandora_medium" | |
}, | |
"2230018" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_aa_pandora_heavy" | |
}, | |
"2230152" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_am_mp9_nitrogen_light" | |
}, | |
"2230153" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_am_mp9_nitrogen_medium" | |
}, | |
"2230154" : { | |
"icon_path" : "econ/default_generated/weapon_mp9_am_mp9_nitrogen_heavy" | |
}, | |
"2293772" : { | |
"icon_path" : "econ/default_generated/weapon_nova_so_red_light" | |
}, | |
"2293773" : { | |
"icon_path" : "econ/default_generated/weapon_nova_so_red_medium" | |
}, | |
"2293774" : { | |
"icon_path" : "econ/default_generated/weapon_nova_so_red_heavy" | |
}, | |
"2293860" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_leaves_light" | |
}, | |
"2293861" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_leaves_medium" | |
}, | |
"2293862" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_leaves_heavy" | |
}, | |
"2294008" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_spring_nova_light" | |
}, | |
"2294009" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_spring_nova_medium" | |
}, | |
"2294010" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_spring_nova_heavy" | |
}, | |
"2294156" : { | |
"icon_path" : "econ/default_generated/weapon_nova_so_sand_light" | |
}, | |
"2294157" : { | |
"icon_path" : "econ/default_generated/weapon_nova_so_sand_medium" | |
}, | |
"2294158" : { | |
"icon_path" : "econ/default_generated/weapon_nova_so_sand_heavy" | |
}, | |
"2294188" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_mesh_arctic_contrast_light" | |
}, | |
"2294189" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_mesh_arctic_contrast_medium" | |
}, | |
"2294190" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_mesh_arctic_contrast_heavy" | |
}, | |
"2294392" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_walnut_nova_light" | |
}, | |
"2294393" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_walnut_nova_medium" | |
}, | |
"2294394" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_walnut_nova_heavy" | |
}, | |
"2294416" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_hunter_modern_light" | |
}, | |
"2294417" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_hunter_modern_medium" | |
}, | |
"2294418" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_hunter_modern_heavy" | |
}, | |
"2294424" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_hunter_blaze_orange_light" | |
}, | |
"2294425" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_hunter_blaze_orange_medium" | |
}, | |
"2294426" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_hunter_blaze_orange_heavy" | |
}, | |
"2294440" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_zebracam_light" | |
}, | |
"2294441" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_zebracam_medium" | |
}, | |
"2294442" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_zebracam_heavy" | |
}, | |
"2294524" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_seaside_bravo_light" | |
}, | |
"2294525" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_seaside_bravo_medium" | |
}, | |
"2294526" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_seaside_bravo_heavy" | |
}, | |
"2294616" : { | |
"icon_path" : "econ/default_generated/weapon_nova_am_crumple_light" | |
}, | |
"2294617" : { | |
"icon_path" : "econ/default_generated/weapon_nova_am_crumple_medium" | |
}, | |
"2294618" : { | |
"icon_path" : "econ/default_generated/weapon_nova_am_crumple_heavy" | |
}, | |
"2294660" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_camo_wood_blue_light" | |
}, | |
"2294661" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_camo_wood_blue_medium" | |
}, | |
"2294662" : { | |
"icon_path" : "econ/default_generated/weapon_nova_sp_camo_wood_blue_heavy" | |
}, | |
"2294812" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_skull_nova_light" | |
}, | |
"2294813" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_skull_nova_medium" | |
}, | |
"2294814" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_skull_nova_heavy" | |
}, | |
"2294904" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_antique_light" | |
}, | |
"2294905" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_antique_medium" | |
}, | |
"2294906" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_antique_heavy" | |
}, | |
"2294936" : { | |
"icon_path" : "econ/default_generated/weapon_nova_so_green_light" | |
}, | |
"2294937" : { | |
"icon_path" : "econ/default_generated/weapon_nova_so_green_medium" | |
}, | |
"2294938" : { | |
"icon_path" : "econ/default_generated/weapon_nova_so_green_heavy" | |
}, | |
"2294956" : { | |
"icon_path" : "econ/default_generated/weapon_nova_am_oval_hex_light" | |
}, | |
"2294957" : { | |
"icon_path" : "econ/default_generated/weapon_nova_am_oval_hex_medium" | |
}, | |
"2294958" : { | |
"icon_path" : "econ/default_generated/weapon_nova_am_oval_hex_heavy" | |
}, | |
"2295184" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_koi_light" | |
}, | |
"2295185" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_koi_medium" | |
}, | |
"2295186" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_koi_heavy" | |
}, | |
"2295560" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_zodiac1_light" | |
}, | |
"2295561" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_zodiac1_medium" | |
}, | |
"2295562" : { | |
"icon_path" : "econ/default_generated/weapon_nova_hy_zodiac1_heavy" | |
}, | |
"2295696" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_ranger_light" | |
}, | |
"2295697" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_ranger_medium" | |
}, | |
"2295698" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_ranger_heavy" | |
}, | |
"2295908" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_hyperbeast_light" | |
}, | |
"2295909" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_hyperbeast_medium" | |
}, | |
"2295910" : { | |
"icon_path" : "econ/default_generated/weapon_nova_cu_nova_hyperbeast_heavy" | |
}, | |
"2359356" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_gelpen_light" | |
}, | |
"2359357" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_gelpen_medium" | |
}, | |
"2359358" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_gelpen_heavy" | |
}, | |
"2359404" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_tape_light" | |
}, | |
"2359405" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_tape_medium" | |
}, | |
"2359406" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_tape_heavy" | |
}, | |
"2359432" : { | |
"icon_path" : "econ/default_generated/weapon_p250_am_urban_light" | |
}, | |
"2359433" : { | |
"icon_path" : "econ/default_generated/weapon_p250_am_urban_medium" | |
}, | |
"2359434" : { | |
"icon_path" : "econ/default_generated/weapon_p250_am_urban_heavy" | |
}, | |
"2359604" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_forest_boreal_light" | |
}, | |
"2359605" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_forest_boreal_medium" | |
}, | |
"2359606" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_forest_boreal_heavy" | |
}, | |
"2359692" : { | |
"icon_path" : "econ/default_generated/weapon_p250_so_sand_light" | |
}, | |
"2359693" : { | |
"icon_path" : "econ/default_generated/weapon_p250_so_sand_medium" | |
}, | |
"2359694" : { | |
"icon_path" : "econ/default_generated/weapon_p250_so_sand_heavy" | |
}, | |
"2359704" : { | |
"icon_path" : "econ/default_generated/weapon_p250_so_whiteout_light" | |
}, | |
"2359705" : { | |
"icon_path" : "econ/default_generated/weapon_p250_so_whiteout_medium" | |
}, | |
"2359706" : { | |
"icon_path" : "econ/default_generated/weapon_p250_so_whiteout_heavy" | |
}, | |
"2359944" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_splash_p250_light" | |
}, | |
"2359945" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_splash_p250_medium" | |
}, | |
"2359946" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_splash_p250_heavy" | |
}, | |
"2359952" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_hunter_modern_light" | |
}, | |
"2359953" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_hunter_modern_medium" | |
}, | |
"2359954" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_hunter_modern_heavy" | |
}, | |
"2359968" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_nukestripe_green_light" | |
}, | |
"2359969" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_nukestripe_green_medium" | |
}, | |
"2359970" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_nukestripe_green_heavy" | |
}, | |
"2360124" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_crumple_dark_bravo_light" | |
}, | |
"2360125" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_crumple_dark_bravo_medium" | |
}, | |
"2360126" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_crumple_dark_bravo_heavy" | |
}, | |
"2360172" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_redhex_light" | |
}, | |
"2360173" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_redhex_medium" | |
}, | |
"2360174" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_redhex_heavy" | |
}, | |
"2360216" : { | |
"icon_path" : "econ/default_generated/weapon_p250_am_ddpatdense_silver_light" | |
}, | |
"2360217" : { | |
"icon_path" : "econ/default_generated/weapon_p250_am_ddpatdense_silver_medium" | |
}, | |
"2360218" : { | |
"icon_path" : "econ/default_generated/weapon_p250_am_ddpatdense_silver_heavy" | |
}, | |
"2360328" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_p250_refined_light" | |
}, | |
"2360329" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_p250_refined_medium" | |
}, | |
"2360330" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_p250_refined_heavy" | |
}, | |
"2360380" : { | |
"icon_path" : "econ/default_generated/weapon_p250_am_p250_beaded_paint_light" | |
}, | |
"2360381" : { | |
"icon_path" : "econ/default_generated/weapon_p250_am_p250_beaded_paint_medium" | |
}, | |
"2360382" : { | |
"icon_path" : "econ/default_generated/weapon_p250_am_p250_beaded_paint_heavy" | |
}, | |
"2360476" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_money_light" | |
}, | |
"2360477" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_money_medium" | |
}, | |
"2360478" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_money_heavy" | |
}, | |
"2360728" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_bittersweet_light" | |
}, | |
"2360729" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_bittersweet_medium" | |
}, | |
"2360730" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_bittersweet_heavy" | |
}, | |
"2360788" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_nuclear_skulls4_p250_light" | |
}, | |
"2360789" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_nuclear_skulls4_p250_medium" | |
}, | |
"2360790" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_nuclear_skulls4_p250_heavy" | |
}, | |
"2360848" : { | |
"icon_path" : "econ/default_generated/weapon_p250_aq_p250_cartel_light" | |
}, | |
"2360849" : { | |
"icon_path" : "econ/default_generated/weapon_p250_aq_p250_cartel_medium" | |
}, | |
"2360850" : { | |
"icon_path" : "econ/default_generated/weapon_p250_aq_p250_cartel_heavy" | |
}, | |
"2360912" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_p250_mandala_light" | |
}, | |
"2360913" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_p250_mandala_medium" | |
}, | |
"2360914" : { | |
"icon_path" : "econ/default_generated/weapon_p250_cu_p250_mandala_heavy" | |
}, | |
"2361000" : { | |
"icon_path" : "econ/default_generated/weapon_p250_aq_p250_contour_light" | |
}, | |
"2361001" : { | |
"icon_path" : "econ/default_generated/weapon_p250_aq_p250_contour_medium" | |
}, | |
"2361002" : { | |
"icon_path" : "econ/default_generated/weapon_p250_aq_p250_contour_heavy" | |
}, | |
"2361160" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_kimono_diamonds_red_light" | |
}, | |
"2361161" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_kimono_diamonds_red_medium" | |
}, | |
"2361162" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_kimono_diamonds_red_heavy" | |
}, | |
"2361164" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_kimono_diamonds_light" | |
}, | |
"2361165" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_kimono_diamonds_medium" | |
}, | |
"2361166" : { | |
"icon_path" : "econ/default_generated/weapon_p250_sp_kimono_diamonds_heavy" | |
}, | |
"2361300" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_p250_crackshot_light" | |
}, | |
"2361301" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_p250_crackshot_medium" | |
}, | |
"2361302" : { | |
"icon_path" : "econ/default_generated/weapon_p250_hy_p250_crackshot_heavy" | |
}, | |
"2490552" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_so_pmc_light" | |
}, | |
"2490553" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_so_pmc_medium" | |
}, | |
"2490554" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_so_pmc_heavy" | |
}, | |
"2490648" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_am_carbon_fiber_light" | |
}, | |
"2490649" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_am_carbon_fiber_medium" | |
}, | |
"2490650" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_am_carbon_fiber_heavy" | |
}, | |
"2490768" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_so_stormfront_light" | |
}, | |
"2490769" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_so_stormfront_medium" | |
}, | |
"2490770" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_so_stormfront_heavy" | |
}, | |
"2490832" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_sp_mesh_sand_light" | |
}, | |
"2490833" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_sp_mesh_sand_medium" | |
}, | |
"2490834" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_sp_mesh_sand_heavy" | |
}, | |
"2490996" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_sp_palm_light" | |
}, | |
"2490997" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_sp_palm_medium" | |
}, | |
"2490998" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_sp_palm_heavy" | |
}, | |
"2491028" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_hy_hunter_blaze_pink_light" | |
}, | |
"2491029" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_hy_hunter_blaze_pink_medium" | |
}, | |
"2491030" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_hy_hunter_blaze_pink_heavy" | |
}, | |
"2491152" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_an_emerald_bravo_light" | |
}, | |
"2491153" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_an_emerald_bravo_medium" | |
}, | |
"2491154" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_an_emerald_bravo_heavy" | |
}, | |
"2491296" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_hy_webs_darker_light" | |
}, | |
"2491297" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_hy_webs_darker_medium" | |
}, | |
"2491298" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_hy_webs_darker_heavy" | |
}, | |
"2491560" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_am_army_shine_light" | |
}, | |
"2491561" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_am_army_shine_medium" | |
}, | |
"2491562" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_am_army_shine_heavy" | |
}, | |
"2491616" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_cu_scar_cyrex_light" | |
}, | |
"2491617" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_cu_scar_cyrex_medium" | |
}, | |
"2491618" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_cu_scar_cyrex_heavy" | |
}, | |
"2491932" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_cu_scar20_intervention_light" | |
}, | |
"2491933" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_cu_scar20_intervention_medium" | |
}, | |
"2491934" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_cu_scar20_intervention_heavy" | |
}, | |
"2491992" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_aq_scar20_leak_light" | |
}, | |
"2491993" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_aq_scar20_leak_medium" | |
}, | |
"2491994" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_aq_scar20_leak_heavy" | |
}, | |
"2492376" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_gs_scar20_peacemaker03_light" | |
}, | |
"2492377" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_gs_scar20_peacemaker03_medium" | |
}, | |
"2492378" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_gs_scar20_peacemaker03_heavy" | |
}, | |
"2492440" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_hy_scar20_jungler_light" | |
}, | |
"2492441" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_hy_scar20_jungler_medium" | |
}, | |
"2492442" : { | |
"icon_path" : "econ/default_generated/weapon_scar20_hy_scar20_jungler_heavy" | |
}, | |
"2556016" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_an_navy_light" | |
}, | |
"2556017" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_an_navy_medium" | |
}, | |
"2556018" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_an_navy_heavy" | |
}, | |
"2556060" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_so_yellow_light" | |
}, | |
"2556061" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_so_yellow_medium" | |
}, | |
"2556062" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_so_yellow_heavy" | |
}, | |
"2556296" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_so_purple_light" | |
}, | |
"2556297" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_so_purple_medium" | |
}, | |
"2556298" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_so_purple_heavy" | |
}, | |
"2556308" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_so_tornado_light" | |
}, | |
"2556309" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_so_tornado_medium" | |
}, | |
"2556310" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_so_tornado_heavy" | |
}, | |
"2556448" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_tape_dots_waves_light" | |
}, | |
"2556449" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_tape_dots_waves_medium" | |
}, | |
"2556450" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_tape_dots_waves_heavy" | |
}, | |
"2556648" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_spray_waves_bravo_light" | |
}, | |
"2556649" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_spray_waves_bravo_medium" | |
}, | |
"2556650" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_spray_waves_bravo_heavy" | |
}, | |
"2556876" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_mesh_python_light" | |
}, | |
"2556877" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_mesh_python_medium" | |
}, | |
"2556878" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_mesh_python_heavy" | |
}, | |
"2556892" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_aq_damascus_sg553_light" | |
}, | |
"2556893" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_aq_damascus_sg553_medium" | |
}, | |
"2556894" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_aq_damascus_sg553_heavy" | |
}, | |
"2557052" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_cu_sg553_pulse_light" | |
}, | |
"2557053" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_cu_sg553_pulse_medium" | |
}, | |
"2557054" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_cu_sg553_pulse_heavy" | |
}, | |
"2557096" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_am_army_shine_light" | |
}, | |
"2557097" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_am_army_shine_medium" | |
}, | |
"2557098" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_am_army_shine_heavy" | |
}, | |
"2557356" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_cu_luggage_sg553_light" | |
}, | |
"2557357" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_cu_luggage_sg553_medium" | |
}, | |
"2557358" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_cu_luggage_sg553_heavy" | |
}, | |
"2557416" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_nukestripe_maroon_sg553_light" | |
}, | |
"2557417" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_nukestripe_maroon_sg553_medium" | |
}, | |
"2557418" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_sp_nukestripe_maroon_sg553_heavy" | |
}, | |
"2557852" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_cu_sg553_cyrex_light" | |
}, | |
"2557853" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_cu_sg553_cyrex_medium" | |
}, | |
"2557854" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_cu_sg553_cyrex_heavy" | |
}, | |
"2557980" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_gs_sg553_tiger_moth_light" | |
}, | |
"2557981" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_gs_sg553_tiger_moth_medium" | |
}, | |
"2557982" : { | |
"icon_path" : "econ/default_generated/weapon_sg556_gs_sg553_tiger_moth_heavy" | |
}, | |
"2621544" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_sp_short_tape_light" | |
}, | |
"2621545" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_sp_short_tape_medium" | |
}, | |
"2621546" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_sp_short_tape_heavy" | |
}, | |
"2621680" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_am_zebra_dark_light" | |
}, | |
"2621681" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_am_zebra_dark_medium" | |
}, | |
"2621682" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_am_zebra_dark_heavy" | |
}, | |
"2621824" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_so_moss_light" | |
}, | |
"2621825" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_so_moss_medium" | |
}, | |
"2621826" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_so_moss_heavy" | |
}, | |
"2621836" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_so_sand_light" | |
}, | |
"2621837" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_so_sand_medium" | |
}, | |
"2621838" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_so_sand_heavy" | |
}, | |
"2622240" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_hy_mayan_dreams_bravo_light" | |
}, | |
"2622241" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_hy_mayan_dreams_bravo_medium" | |
}, | |
"2622242" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_hy_mayan_dreams_bravo_heavy" | |
}, | |
"2622328" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_shark_light" | |
}, | |
"2622329" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_shark_medium" | |
}, | |
"2622330" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_shark_heavy" | |
}, | |
"2622372" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_sp_palm_shadow_light" | |
}, | |
"2622373" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_sp_palm_shadow_medium" | |
}, | |
"2622374" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_sp_palm_shadow_heavy" | |
}, | |
"2622452" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_aa_fade_grassland_light" | |
}, | |
"2622453" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_aa_fade_grassland_medium" | |
}, | |
"2622454" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_aa_fade_grassland_heavy" | |
}, | |
"2622656" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_ssg08_immortal_light" | |
}, | |
"2622657" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_ssg08_immortal_medium" | |
}, | |
"2622658" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_ssg08_immortal_heavy" | |
}, | |
"2622716" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_hy_ssg08_marker_light" | |
}, | |
"2622717" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_hy_ssg08_marker_medium" | |
}, | |
"2622718" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_hy_ssg08_marker_heavy" | |
}, | |
"2622884" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_aq_leviathan_light" | |
}, | |
"2622885" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_aq_leviathan_medium" | |
}, | |
"2622886" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_aq_leviathan_heavy" | |
}, | |
"2623452" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_ssg08_technicality_light" | |
}, | |
"2623453" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_ssg08_technicality_medium" | |
}, | |
"2623454" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_ssg08_technicality_heavy" | |
}, | |
"2623592" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_ssg08_necropos_light" | |
}, | |
"2623593" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_ssg08_necropos_medium" | |
}, | |
"2623594" : { | |
"icon_path" : "econ/default_generated/weapon_ssg08_cu_ssg08_necropos_heavy" | |
}, | |
"3932400" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_am_zebra_dark_light" | |
}, | |
"3932401" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_am_zebra_dark_medium" | |
}, | |
"3932402" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_am_zebra_dark_heavy" | |
}, | |
"3932468" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_forest_boreal_light" | |
}, | |
"3932469" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_forest_boreal_medium" | |
}, | |
"3932470" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_forest_boreal_heavy" | |
}, | |
"3932916" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_ocean_bravo_light" | |
}, | |
"3932917" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_ocean_bravo_medium" | |
}, | |
"3932918" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_ocean_bravo_heavy" | |
}, | |
"3933028" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_redtiger_light" | |
}, | |
"3933029" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_redtiger_medium" | |
}, | |
"3933030" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_redtiger_heavy" | |
}, | |
"3933100" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_varicamo_light" | |
}, | |
"3933101" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_varicamo_medium" | |
}, | |
"3933102" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_varicamo_heavy" | |
}, | |
"3933176" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_so_orange_accents_light" | |
}, | |
"3933177" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_so_orange_accents_medium" | |
}, | |
"3933178" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_so_orange_accents_heavy" | |
}, | |
"3933188" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_elegant_light" | |
}, | |
"3933189" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_elegant_medium" | |
}, | |
"3933190" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_elegant_heavy" | |
}, | |
"3933364" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_am_m4a1-s_alloy_orange_light" | |
}, | |
"3933365" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_am_m4a1-s_alloy_orange_medium" | |
}, | |
"3933366" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_am_m4a1-s_alloy_orange_heavy" | |
}, | |
"3933444" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_silence_light" | |
}, | |
"3933445" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_silence_medium" | |
}, | |
"3933446" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1-s_silence_heavy" | |
}, | |
"3933464" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_am_metals_light" | |
}, | |
"3933465" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_am_metals_medium" | |
}, | |
"3933466" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_am_metals_heavy" | |
}, | |
"3933600" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_cyrex_light" | |
}, | |
"3933601" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_cyrex_medium" | |
}, | |
"3933602" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1s_cyrex_heavy" | |
}, | |
"3933692" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_aq_m4a1s_basilisk_light" | |
}, | |
"3933693" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_aq_m4a1s_basilisk_medium" | |
}, | |
"3933694" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_aq_m4a1s_basilisk_heavy" | |
}, | |
"3933880" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_hyper_beast_light" | |
}, | |
"3933881" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_hyper_beast_medium" | |
}, | |
"3933882" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_cu_m4a1_hyper_beast_heavy" | |
}, | |
"3933920" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_icarus_light" | |
}, | |
"3933921" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_icarus_medium" | |
}, | |
"3933922" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_hy_icarus_heavy" | |
}, | |
"3933940" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_an_red_m4a1s_light" | |
}, | |
"3933941" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_an_red_m4a1s_medium" | |
}, | |
"3933942" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_an_red_m4a1s_heavy" | |
}, | |
"3934148" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_snakebite_gold_light" | |
}, | |
"3934149" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_snakebite_gold_medium" | |
}, | |
"3934150" : { | |
"icon_path" : "econ/default_generated/weapon_m4a1_silencer_gs_m4a1s_snakebite_gold_heavy" | |
}, | |
"3997796" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_sp_leaves_light" | |
}, | |
"3997797" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_sp_leaves_medium" | |
}, | |
"3997798" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_sp_leaves_heavy" | |
}, | |
"3997936" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_am_zebra_dark_light" | |
}, | |
"3997937" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_am_zebra_dark_medium" | |
}, | |
"3997938" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_am_zebra_dark_heavy" | |
}, | |
"3998428" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_siege_bravo_light" | |
}, | |
"3998429" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_siege_bravo_medium" | |
}, | |
"3998430" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_siege_bravo_heavy" | |
}, | |
"3998564" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_redtiger_light" | |
}, | |
"3998565" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_redtiger_medium" | |
}, | |
"3998566" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_redtiger_heavy" | |
}, | |
"3998580" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_am_electric_red_light" | |
}, | |
"3998581" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_am_electric_red_medium" | |
}, | |
"3998582" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_am_electric_red_heavy" | |
}, | |
"3998640" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_varicamo_night_light" | |
}, | |
"3998641" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_varicamo_night_medium" | |
}, | |
"3998642" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_varicamo_night_heavy" | |
}, | |
"3998804" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_aq_usp_stainless_light" | |
}, | |
"3998805" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_aq_usp_stainless_medium" | |
}, | |
"3998806" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_aq_usp_stainless_heavy" | |
}, | |
"3998856" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_elegant_light" | |
}, | |
"3998857" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_elegant_medium" | |
}, | |
"3998858" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_elegant_heavy" | |
}, | |
"3998948" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_spitfire_light" | |
}, | |
"3998949" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_spitfire_medium" | |
}, | |
"3998950" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_spitfire_heavy" | |
}, | |
"3998968" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_sandpapered_light" | |
}, | |
"3998969" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_sandpapered_medium" | |
}, | |
"3998970" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_sandpapered_heavy" | |
}, | |
"3999024" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_indigo_usp_light" | |
}, | |
"3999025" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_indigo_usp_medium" | |
}, | |
"3999026" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_hy_indigo_usp_heavy" | |
}, | |
"3999052" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_kaiman_light" | |
}, | |
"3999053" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_kaiman_medium" | |
}, | |
"3999054" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_kaiman_heavy" | |
}, | |
"3999152" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_luggage_usp-s_light" | |
}, | |
"3999153" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_luggage_usp-s_medium" | |
}, | |
"3999154" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_luggage_usp-s_heavy" | |
}, | |
"3999512" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_so_khaki_green_light" | |
}, | |
"3999513" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_so_khaki_green_medium" | |
}, | |
"3999514" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_so_khaki_green_heavy" | |
}, | |
"3999652" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_progressiv_light" | |
}, | |
"3999653" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_progressiv_medium" | |
}, | |
"3999654" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_progressiv_heavy" | |
}, | |
"3999712" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_kill_confirmed_light" | |
}, | |
"3999713" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_kill_confirmed_medium" | |
}, | |
"3999714" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_cu_usp_kill_confirmed_heavy" | |
}, | |
"3999856" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_gs_usp_voltage_light" | |
}, | |
"3999857" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_gs_usp_voltage_medium" | |
}, | |
"3999858" : { | |
"icon_path" : "econ/default_generated/weapon_usp_silencer_gs_usp_voltage_heavy" | |
}, | |
"4128816" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_hy_webs_light" | |
}, | |
"4128817" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_hy_webs_medium" | |
}, | |
"4128818" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_hy_webs_heavy" | |
}, | |
"4129640" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_hy_bluehex_light" | |
}, | |
"4129641" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_hy_bluehex_medium" | |
}, | |
"4129642" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_hy_bluehex_heavy" | |
}, | |
"4129840" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_diamond_plate_light" | |
}, | |
"4129841" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_diamond_plate_medium" | |
}, | |
"4129842" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_diamond_plate_heavy" | |
}, | |
"4129844" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_fuschia_light" | |
}, | |
"4129845" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_fuschia_medium" | |
}, | |
"4129846" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_fuschia_heavy" | |
}, | |
"4129848" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_aq_etched_cz75_light" | |
}, | |
"4129849" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_aq_etched_cz75_medium" | |
}, | |
"4129850" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_aq_etched_cz75_heavy" | |
}, | |
"4129956" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_so_orca_light" | |
}, | |
"4129957" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_so_orca_medium" | |
}, | |
"4129958" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_so_orca_heavy" | |
}, | |
"4129960" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_army_shine_light" | |
}, | |
"4129961" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_army_shine_medium" | |
}, | |
"4129962" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_army_shine_heavy" | |
}, | |
"4130028" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_nitrogen_light" | |
}, | |
"4130029" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_nitrogen_medium" | |
}, | |
"4130030" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_nitrogen_heavy" | |
}, | |
"4130056" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_so_orange_accents2_light" | |
}, | |
"4130057" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_so_orange_accents2_medium" | |
}, | |
"4130058" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_so_orange_accents2_heavy" | |
}, | |
"4130068" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_royal_light" | |
}, | |
"4130069" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_royal_medium" | |
}, | |
"4130070" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_royal_heavy" | |
}, | |
"4130104" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_gyrate_light" | |
}, | |
"4130105" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_gyrate_medium" | |
}, | |
"4130106" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_am_gyrate_heavy" | |
}, | |
"4130168" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_cu_c75a-tiger_light" | |
}, | |
"4130169" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_cu_c75a-tiger_medium" | |
}, | |
"4130170" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_cu_c75a-tiger_heavy" | |
}, | |
"4130232" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_hy_plaid2_light" | |
}, | |
"4130233" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_hy_plaid2_medium" | |
}, | |
"4130234" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_hy_plaid2_heavy" | |
}, | |
"4130508" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_cu_cz75_precision_light" | |
}, | |
"4130509" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_cu_cz75_precision_medium" | |
}, | |
"4130510" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_cu_cz75_precision_heavy" | |
}, | |
"4130580" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_an_emerald_light" | |
}, | |
"4130581" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_an_emerald_medium" | |
}, | |
"4130582" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_an_emerald_heavy" | |
}, | |
"4130672" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_cu_cz75a_chastizer_light" | |
}, | |
"4130673" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_cu_cz75a_chastizer_medium" | |
}, | |
"4130674" : { | |
"icon_path" : "econ/default_generated/weapon_cz75a_cu_cz75a_chastizer_heavy" | |
}, | |
"4194352" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_hy_webs_light" | |
}, | |
"4194353" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_hy_webs_medium" | |
}, | |
"4194354" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_hy_webs_heavy" | |
}, | |
"4194412" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_sp_tape_light" | |
}, | |
"4194413" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_sp_tape_medium" | |
}, | |
"4194414" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_sp_tape_heavy" | |
}, | |
"4196392" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_aa_fade_revolver_light" | |
}, | |
"4196393" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_aa_fade_revolver_medium" | |
}, | |
"4196394" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_aa_fade_revolver_heavy" | |
}, | |
"4196396" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_aa_fade_metallic_revolver_light" | |
}, | |
"4196397" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_aa_fade_metallic_revolver_medium" | |
}, | |
"4196398" : { | |
"icon_path" : "econ/default_generated/weapon_revolver_aa_fade_metallic_revolver_heavy" | |
}, | |
"32768020" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_hy_ddpat_light" | |
}, | |
"32768021" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_hy_ddpat_medium" | |
}, | |
"32768022" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_hy_ddpat_heavy" | |
}, | |
"32768048" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_hy_webs_light" | |
}, | |
"32768049" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_hy_webs_medium" | |
}, | |
"32768050" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_hy_webs_heavy" | |
}, | |
"32768152" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aa_fade_light" | |
}, | |
"32768153" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aa_fade_medium" | |
}, | |
"32768154" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aa_fade_heavy" | |
}, | |
"32768160" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_so_night_light" | |
}, | |
"32768161" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_so_night_medium" | |
}, | |
"32768162" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_so_night_heavy" | |
}, | |
"32768168" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_blued_light" | |
}, | |
"32768169" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_blued_medium" | |
}, | |
"32768170" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_blued_heavy" | |
}, | |
"32768172" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_forced_light" | |
}, | |
"32768173" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_forced_medium" | |
}, | |
"32768174" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_forced_heavy" | |
}, | |
"32768176" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_oiled_light" | |
}, | |
"32768177" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_oiled_medium" | |
}, | |
"32768178" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_oiled_heavy" | |
}, | |
"32768236" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_zebra_light" | |
}, | |
"32768237" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_zebra_medium" | |
}, | |
"32768238" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_zebra_heavy" | |
}, | |
"32768288" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_sp_mesh_tan_light" | |
}, | |
"32768289" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_sp_mesh_tan_medium" | |
}, | |
"32768290" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_sp_mesh_tan_heavy" | |
}, | |
"32768308" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_hy_forest_boreal_light" | |
}, | |
"32768309" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_hy_forest_boreal_medium" | |
}, | |
"32768310" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_hy_forest_boreal_heavy" | |
}, | |
"32768392" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_so_purple_light" | |
}, | |
"32768393" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_so_purple_medium" | |
}, | |
"32768394" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_so_purple_heavy" | |
}, | |
"32768572" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_sp_tape_urban_light" | |
}, | |
"32768573" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_sp_tape_urban_medium" | |
}, | |
"32768574" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_sp_tape_urban_heavy" | |
}, | |
"32768700" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_sp_dapple_light" | |
}, | |
"32768701" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_sp_dapple_medium" | |
}, | |
"32768702" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_sp_dapple_heavy" | |
}, | |
"32769636" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_an_tiger_orange_light" | |
}, | |
"32769637" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_an_tiger_orange_medium" | |
}, | |
"32769638" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_an_tiger_orange_heavy" | |
}, | |
"32769640" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_damascus_light" | |
}, | |
"32769641" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_damascus_medium" | |
}, | |
"32769642" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_damascus_heavy" | |
}, | |
"32769652" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_marble_fade_light" | |
}, | |
"32769653" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_marble_fade_medium" | |
}, | |
"32769654" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_marble_fade_heavy" | |
}, | |
"32769656" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_steel_knife_light" | |
}, | |
"32769657" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_steel_knife_medium" | |
}, | |
"32769658" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_aq_steel_knife_heavy" | |
}, | |
"32769660" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_ruby_marbleized_light" | |
}, | |
"32769661" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_ruby_marbleized_medium" | |
}, | |
"32769662" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_ruby_marbleized_heavy" | |
}, | |
"32769664" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_sapphire_marbleized_light" | |
}, | |
"32769665" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_sapphire_marbleized_medium" | |
}, | |
"32769666" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_sapphire_marbleized_heavy" | |
}, | |
"32769668" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_blackpearl_marbleized_light" | |
}, | |
"32769669" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_blackpearl_marbleized_medium" | |
}, | |
"32769670" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_blackpearl_marbleized_heavy" | |
}, | |
"32769672" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase1_light" | |
}, | |
"32769673" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase1_medium" | |
}, | |
"32769674" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase1_heavy" | |
}, | |
"32769676" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase2_light" | |
}, | |
"32769677" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase2_medium" | |
}, | |
"32769678" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase2_heavy" | |
}, | |
"32769680" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase3_light" | |
}, | |
"32769681" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase3_medium" | |
}, | |
"32769682" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase3_heavy" | |
}, | |
"32769684" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase4_light" | |
}, | |
"32769685" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase4_medium" | |
}, | |
"32769686" : { | |
"icon_path" : "econ/default_generated/weapon_bayonet_am_doppler_phase4_heavy" | |
}, | |
"33095700" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_hy_ddpat_light" | |
}, | |
"33095701" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_hy_ddpat_medium" | |
}, | |
"33095702" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_hy_ddpat_heavy" | |
}, | |
"33095728" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_hy_webs_light" | |
}, | |
"33095729" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_hy_webs_medium" | |
}, | |
"33095730" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_hy_webs_heavy" | |
}, | |
"33095832" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aa_fade_light" | |
}, | |
"33095833" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aa_fade_medium" | |
}, | |
"33095834" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aa_fade_heavy" | |
}, | |
"33095840" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_so_night_light" | |
}, | |
"33095841" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_so_night_medium" | |
}, | |
"33095842" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_so_night_heavy" | |
}, | |
"33095848" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_blued_light" | |
}, | |
"33095849" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_blued_medium" | |
}, | |
"33095850" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_blued_heavy" | |
}, | |
"33095852" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_forced_light" | |
}, | |
"33095853" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_forced_medium" | |
}, | |
"33095854" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_forced_heavy" | |
}, | |
"33095856" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_oiled_light" | |
}, | |
"33095857" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_oiled_medium" | |
}, | |
"33095858" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_oiled_heavy" | |
}, | |
"33095916" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_zebra_light" | |
}, | |
"33095917" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_zebra_medium" | |
}, | |
"33095918" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_zebra_heavy" | |
}, | |
"33095968" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_sp_mesh_tan_light" | |
}, | |
"33095969" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_sp_mesh_tan_medium" | |
}, | |
"33095970" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_sp_mesh_tan_heavy" | |
}, | |
"33095988" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_hy_forest_boreal_light" | |
}, | |
"33095989" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_hy_forest_boreal_medium" | |
}, | |
"33095990" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_hy_forest_boreal_heavy" | |
}, | |
"33096072" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_so_purple_light" | |
}, | |
"33096073" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_so_purple_medium" | |
}, | |
"33096074" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_so_purple_heavy" | |
}, | |
"33096252" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_sp_tape_urban_light" | |
}, | |
"33096253" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_sp_tape_urban_medium" | |
}, | |
"33096254" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_sp_tape_urban_heavy" | |
}, | |
"33096380" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_sp_dapple_light" | |
}, | |
"33096381" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_sp_dapple_medium" | |
}, | |
"33096382" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_sp_dapple_heavy" | |
}, | |
"33097316" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_an_tiger_orange_light" | |
}, | |
"33097317" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_an_tiger_orange_medium" | |
}, | |
"33097318" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_an_tiger_orange_heavy" | |
}, | |
"33097320" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_damascus_light" | |
}, | |
"33097321" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_damascus_medium" | |
}, | |
"33097322" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_damascus_heavy" | |
}, | |
"33097332" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_marble_fade_light" | |
}, | |
"33097333" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_marble_fade_medium" | |
}, | |
"33097334" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_marble_fade_heavy" | |
}, | |
"33097336" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_steel_knife_light" | |
}, | |
"33097337" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_steel_knife_medium" | |
}, | |
"33097338" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_aq_steel_knife_heavy" | |
}, | |
"33097340" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_ruby_marbleized_light" | |
}, | |
"33097341" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_ruby_marbleized_medium" | |
}, | |
"33097342" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_ruby_marbleized_heavy" | |
}, | |
"33097344" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_sapphire_marbleized_light" | |
}, | |
"33097345" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_sapphire_marbleized_medium" | |
}, | |
"33097346" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_sapphire_marbleized_heavy" | |
}, | |
"33097348" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_blackpearl_marbleized_light" | |
}, | |
"33097349" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_blackpearl_marbleized_medium" | |
}, | |
"33097350" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_blackpearl_marbleized_heavy" | |
}, | |
"33097352" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase1_light" | |
}, | |
"33097353" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase1_medium" | |
}, | |
"33097354" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase1_heavy" | |
}, | |
"33097356" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase2_light" | |
}, | |
"33097357" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase2_medium" | |
}, | |
"33097358" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase2_heavy" | |
}, | |
"33097360" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase3_light" | |
}, | |
"33097361" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase3_medium" | |
}, | |
"33097362" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase3_heavy" | |
}, | |
"33097364" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase4_light" | |
}, | |
"33097365" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase4_medium" | |
}, | |
"33097366" : { | |
"icon_path" : "econ/default_generated/weapon_knife_flip_am_doppler_phase4_heavy" | |
}, | |
"33161236" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_hy_ddpat_light" | |
}, | |
"33161237" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_hy_ddpat_medium" | |
}, | |
"33161238" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_hy_ddpat_heavy" | |
}, | |
"33161264" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_hy_webs_light" | |
}, | |
"33161265" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_hy_webs_medium" | |
}, | |
"33161266" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_hy_webs_heavy" | |
}, | |
"33161368" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aa_fade_light" | |
}, | |
"33161369" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aa_fade_medium" | |
}, | |
"33161370" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aa_fade_heavy" | |
}, | |
"33161376" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_so_night_light" | |
}, | |
"33161377" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_so_night_medium" | |
}, | |
"33161378" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_so_night_heavy" | |
}, | |
"33161384" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_blued_light" | |
}, | |
"33161385" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_blued_medium" | |
}, | |
"33161386" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_blued_heavy" | |
}, | |
"33161388" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_forced_light" | |
}, | |
"33161389" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_forced_medium" | |
}, | |
"33161390" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_forced_heavy" | |
}, | |
"33161392" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_oiled_light" | |
}, | |
"33161393" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_oiled_medium" | |
}, | |
"33161394" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_oiled_heavy" | |
}, | |
"33161452" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_zebra_light" | |
}, | |
"33161453" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_zebra_medium" | |
}, | |
"33161454" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_zebra_heavy" | |
}, | |
"33161504" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_sp_mesh_tan_light" | |
}, | |
"33161505" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_sp_mesh_tan_medium" | |
}, | |
"33161506" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_sp_mesh_tan_heavy" | |
}, | |
"33161524" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_hy_forest_boreal_light" | |
}, | |
"33161525" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_hy_forest_boreal_medium" | |
}, | |
"33161526" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_hy_forest_boreal_heavy" | |
}, | |
"33161608" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_so_purple_light" | |
}, | |
"33161609" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_so_purple_medium" | |
}, | |
"33161610" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_so_purple_heavy" | |
}, | |
"33161788" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_sp_tape_urban_light" | |
}, | |
"33161789" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_sp_tape_urban_medium" | |
}, | |
"33161790" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_sp_tape_urban_heavy" | |
}, | |
"33161916" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_sp_dapple_light" | |
}, | |
"33161917" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_sp_dapple_medium" | |
}, | |
"33161918" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_sp_dapple_heavy" | |
}, | |
"33162852" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_an_tiger_orange_light" | |
}, | |
"33162853" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_an_tiger_orange_medium" | |
}, | |
"33162854" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_an_tiger_orange_heavy" | |
}, | |
"33162856" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_damascus_light" | |
}, | |
"33162857" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_damascus_medium" | |
}, | |
"33162858" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_damascus_heavy" | |
}, | |
"33162868" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_marble_fade_light" | |
}, | |
"33162869" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_marble_fade_medium" | |
}, | |
"33162870" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_marble_fade_heavy" | |
}, | |
"33162872" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_steel_knife_light" | |
}, | |
"33162873" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_steel_knife_medium" | |
}, | |
"33162874" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_aq_steel_knife_heavy" | |
}, | |
"33162876" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_ruby_marbleized_light" | |
}, | |
"33162877" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_ruby_marbleized_medium" | |
}, | |
"33162878" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_ruby_marbleized_heavy" | |
}, | |
"33162880" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_sapphire_marbleized_light" | |
}, | |
"33162881" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_sapphire_marbleized_medium" | |
}, | |
"33162882" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_sapphire_marbleized_heavy" | |
}, | |
"33162884" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_blackpearl_marbleized_light" | |
}, | |
"33162885" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_blackpearl_marbleized_medium" | |
}, | |
"33162886" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_blackpearl_marbleized_heavy" | |
}, | |
"33162888" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase1_light" | |
}, | |
"33162889" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase1_medium" | |
}, | |
"33162890" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase1_heavy" | |
}, | |
"33162892" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase2_light" | |
}, | |
"33162893" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase2_medium" | |
}, | |
"33162894" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase2_heavy" | |
}, | |
"33162896" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase3_light" | |
}, | |
"33162897" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase3_medium" | |
}, | |
"33162898" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase3_heavy" | |
}, | |
"33162900" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase4_light" | |
}, | |
"33162901" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase4_medium" | |
}, | |
"33162902" : { | |
"icon_path" : "econ/default_generated/weapon_knife_gut_am_doppler_phase4_heavy" | |
}, | |
"33226772" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_hy_ddpat_light" | |
}, | |
"33226773" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_hy_ddpat_medium" | |
}, | |
"33226774" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_hy_ddpat_heavy" | |
}, | |
"33226800" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_hy_webs_light" | |
}, | |
"33226801" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_hy_webs_medium" | |
}, | |
"33226802" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_hy_webs_heavy" | |
}, | |
"33226904" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aa_fade_light" | |
}, | |
"33226905" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aa_fade_medium" | |
}, | |
"33226906" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aa_fade_heavy" | |
}, | |
"33226912" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_so_night_light" | |
}, | |
"33226913" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_so_night_medium" | |
}, | |
"33226914" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_so_night_heavy" | |
}, | |
"33226920" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_blued_light" | |
}, | |
"33226921" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_blued_medium" | |
}, | |
"33226922" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_blued_heavy" | |
}, | |
"33226924" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_forced_light" | |
}, | |
"33226925" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_forced_medium" | |
}, | |
"33226926" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_forced_heavy" | |
}, | |
"33226928" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_oiled_light" | |
}, | |
"33226929" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_oiled_medium" | |
}, | |
"33226930" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_oiled_heavy" | |
}, | |
"33226988" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_zebra_light" | |
}, | |
"33226989" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_zebra_medium" | |
}, | |
"33226990" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_zebra_heavy" | |
}, | |
"33227040" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_sp_mesh_tan_light" | |
}, | |
"33227041" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_sp_mesh_tan_medium" | |
}, | |
"33227042" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_sp_mesh_tan_heavy" | |
}, | |
"33227060" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_hy_forest_boreal_light" | |
}, | |
"33227061" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_hy_forest_boreal_medium" | |
}, | |
"33227062" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_hy_forest_boreal_heavy" | |
}, | |
"33227144" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_so_purple_light" | |
}, | |
"33227145" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_so_purple_medium" | |
}, | |
"33227146" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_so_purple_heavy" | |
}, | |
"33227324" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_sp_tape_urban_light" | |
}, | |
"33227325" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_sp_tape_urban_medium" | |
}, | |
"33227326" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_sp_tape_urban_heavy" | |
}, | |
"33227452" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_sp_dapple_light" | |
}, | |
"33227453" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_sp_dapple_medium" | |
}, | |
"33227454" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_sp_dapple_heavy" | |
}, | |
"33228388" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_an_tiger_orange_light" | |
}, | |
"33228389" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_an_tiger_orange_medium" | |
}, | |
"33228390" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_an_tiger_orange_heavy" | |
}, | |
"33228392" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_damascus_light" | |
}, | |
"33228393" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_damascus_medium" | |
}, | |
"33228394" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_damascus_heavy" | |
}, | |
"33228404" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_marble_fade_light" | |
}, | |
"33228405" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_marble_fade_medium" | |
}, | |
"33228406" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_marble_fade_heavy" | |
}, | |
"33228408" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_steel_knife_light" | |
}, | |
"33228409" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_steel_knife_medium" | |
}, | |
"33228410" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_aq_steel_knife_heavy" | |
}, | |
"33228412" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_ruby_marbleized_light" | |
}, | |
"33228413" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_ruby_marbleized_medium" | |
}, | |
"33228414" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_ruby_marbleized_heavy" | |
}, | |
"33228416" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_sapphire_marbleized_light" | |
}, | |
"33228417" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_sapphire_marbleized_medium" | |
}, | |
"33228418" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_sapphire_marbleized_heavy" | |
}, | |
"33228420" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_blackpearl_marbleized_light" | |
}, | |
"33228421" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_blackpearl_marbleized_medium" | |
}, | |
"33228422" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_blackpearl_marbleized_heavy" | |
}, | |
"33228424" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase1_light" | |
}, | |
"33228425" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase1_medium" | |
}, | |
"33228426" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase1_heavy" | |
}, | |
"33228428" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase2_light" | |
}, | |
"33228429" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase2_medium" | |
}, | |
"33228430" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase2_heavy" | |
}, | |
"33228432" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase3_light" | |
}, | |
"33228433" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase3_medium" | |
}, | |
"33228434" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase3_heavy" | |
}, | |
"33228436" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase4_light" | |
}, | |
"33228437" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase4_medium" | |
}, | |
"33228438" : { | |
"icon_path" : "econ/default_generated/weapon_knife_karambit_am_doppler_phase4_heavy" | |
}, | |
"33292308" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_hy_ddpat_light" | |
}, | |
"33292309" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_hy_ddpat_medium" | |
}, | |
"33292310" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_hy_ddpat_heavy" | |
}, | |
"33292336" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_hy_webs_light" | |
}, | |
"33292337" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_hy_webs_medium" | |
}, | |
"33292338" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_hy_webs_heavy" | |
}, | |
"33292440" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aa_fade_light" | |
}, | |
"33292441" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aa_fade_medium" | |
}, | |
"33292442" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aa_fade_heavy" | |
}, | |
"33292448" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_so_night_light" | |
}, | |
"33292449" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_so_night_medium" | |
}, | |
"33292450" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_so_night_heavy" | |
}, | |
"33292456" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_blued_light" | |
}, | |
"33292457" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_blued_medium" | |
}, | |
"33292458" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_blued_heavy" | |
}, | |
"33292460" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_forced_light" | |
}, | |
"33292461" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_forced_medium" | |
}, | |
"33292462" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_forced_heavy" | |
}, | |
"33292464" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_oiled_light" | |
}, | |
"33292465" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_oiled_medium" | |
}, | |
"33292466" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_oiled_heavy" | |
}, | |
"33292524" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_zebra_light" | |
}, | |
"33292525" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_zebra_medium" | |
}, | |
"33292526" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_zebra_heavy" | |
}, | |
"33292576" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_sp_mesh_tan_light" | |
}, | |
"33292577" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_sp_mesh_tan_medium" | |
}, | |
"33292578" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_sp_mesh_tan_heavy" | |
}, | |
"33292596" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_hy_forest_boreal_light" | |
}, | |
"33292597" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_hy_forest_boreal_medium" | |
}, | |
"33292598" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_hy_forest_boreal_heavy" | |
}, | |
"33292680" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_so_purple_light" | |
}, | |
"33292681" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_so_purple_medium" | |
}, | |
"33292682" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_so_purple_heavy" | |
}, | |
"33292860" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_sp_tape_urban_light" | |
}, | |
"33292861" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_sp_tape_urban_medium" | |
}, | |
"33292862" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_sp_tape_urban_heavy" | |
}, | |
"33292988" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_sp_dapple_light" | |
}, | |
"33292989" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_sp_dapple_medium" | |
}, | |
"33292990" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_sp_dapple_heavy" | |
}, | |
"33293924" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_an_tiger_orange_light" | |
}, | |
"33293925" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_an_tiger_orange_medium" | |
}, | |
"33293926" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_an_tiger_orange_heavy" | |
}, | |
"33293932" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_damascus_90_light" | |
}, | |
"33293933" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_damascus_90_medium" | |
}, | |
"33293934" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_damascus_90_heavy" | |
}, | |
"33293940" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_marble_fade_light" | |
}, | |
"33293941" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_marble_fade_medium" | |
}, | |
"33293942" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_marble_fade_heavy" | |
}, | |
"33293944" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_steel_knife_light" | |
}, | |
"33293945" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_steel_knife_medium" | |
}, | |
"33293946" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_aq_steel_knife_heavy" | |
}, | |
"33293948" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_ruby_marbleized_light" | |
}, | |
"33293949" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_ruby_marbleized_medium" | |
}, | |
"33293950" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_ruby_marbleized_heavy" | |
}, | |
"33293952" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_sapphire_marbleized_light" | |
}, | |
"33293953" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_sapphire_marbleized_medium" | |
}, | |
"33293954" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_sapphire_marbleized_heavy" | |
}, | |
"33293956" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_blackpearl_marbleized_light" | |
}, | |
"33293957" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_blackpearl_marbleized_medium" | |
}, | |
"33293958" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_blackpearl_marbleized_heavy" | |
}, | |
"33293960" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase1_light" | |
}, | |
"33293961" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase1_medium" | |
}, | |
"33293962" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase1_heavy" | |
}, | |
"33293964" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase2_light" | |
}, | |
"33293965" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase2_medium" | |
}, | |
"33293966" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase2_heavy" | |
}, | |
"33293968" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase3_light" | |
}, | |
"33293969" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase3_medium" | |
}, | |
"33293970" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase3_heavy" | |
}, | |
"33293972" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase4_light" | |
}, | |
"33293973" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase4_medium" | |
}, | |
"33293974" : { | |
"icon_path" : "econ/default_generated/weapon_knife_m9_bayonet_am_doppler_phase4_heavy" | |
}, | |
"33357844" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_hy_ddpat_light" | |
}, | |
"33357845" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_hy_ddpat_medium" | |
}, | |
"33357846" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_hy_ddpat_heavy" | |
}, | |
"33357872" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_hy_webs_light" | |
}, | |
"33357873" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_hy_webs_medium" | |
}, | |
"33357874" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_hy_webs_heavy" | |
}, | |
"33357976" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aa_fade_light" | |
}, | |
"33357977" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aa_fade_medium" | |
}, | |
"33357978" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aa_fade_heavy" | |
}, | |
"33357984" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_so_night_light" | |
}, | |
"33357985" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_so_night_medium" | |
}, | |
"33357986" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_so_night_heavy" | |
}, | |
"33357992" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aq_blued_light" | |
}, | |
"33357993" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aq_blued_medium" | |
}, | |
"33357994" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aq_blued_heavy" | |
}, | |
"33357996" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aq_forced_light" | |
}, | |
"33357997" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aq_forced_medium" | |
}, | |
"33357998" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aq_forced_heavy" | |
}, | |
"33358000" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aq_oiled_light" | |
}, | |
"33358001" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aq_oiled_medium" | |
}, | |
"33358002" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_aq_oiled_heavy" | |
}, | |
"33358060" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_am_zebra_light" | |
}, | |
"33358061" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_am_zebra_medium" | |
}, | |
"33358062" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_am_zebra_heavy" | |
}, | |
"33358112" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_sp_mesh_tan_light" | |
}, | |
"33358113" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_sp_mesh_tan_medium" | |
}, | |
"33358114" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_sp_mesh_tan_heavy" | |
}, | |
"33358132" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_hy_forest_boreal_light" | |
}, | |
"33358133" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_hy_forest_boreal_medium" | |
}, | |
"33358134" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_hy_forest_boreal_heavy" | |
}, | |
"33358396" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_sp_tape_urban_light" | |
}, | |
"33358397" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_sp_tape_urban_medium" | |
}, | |
"33358398" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_sp_tape_urban_heavy" | |
}, | |
"33358524" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_sp_dapple_light" | |
}, | |
"33358525" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_sp_dapple_medium" | |
}, | |
"33358526" : { | |
"icon_path" : "econ/default_generated/weapon_knife_tactical_sp_dapple_heavy" | |
}, | |
"33554452" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_hy_ddpat_light" | |
}, | |
"33554453" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_hy_ddpat_medium" | |
}, | |
"33554454" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_hy_ddpat_heavy" | |
}, | |
"33554480" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_hy_webs_light" | |
}, | |
"33554481" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_hy_webs_medium" | |
}, | |
"33554482" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_hy_webs_heavy" | |
}, | |
"33554584" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aa_fade_light" | |
}, | |
"33554585" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aa_fade_medium" | |
}, | |
"33554586" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aa_fade_heavy" | |
}, | |
"33554592" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_so_night_light" | |
}, | |
"33554593" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_so_night_medium" | |
}, | |
"33554594" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_so_night_heavy" | |
}, | |
"33554600" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aq_blued_light" | |
}, | |
"33554601" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aq_blued_medium" | |
}, | |
"33554602" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aq_blued_heavy" | |
}, | |
"33554604" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aq_forced_light" | |
}, | |
"33554605" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aq_forced_medium" | |
}, | |
"33554606" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aq_forced_heavy" | |
}, | |
"33554608" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aq_oiled_light" | |
}, | |
"33554609" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aq_oiled_medium" | |
}, | |
"33554610" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_aq_oiled_heavy" | |
}, | |
"33554668" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_am_zebra_light" | |
}, | |
"33554669" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_am_zebra_medium" | |
}, | |
"33554670" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_am_zebra_heavy" | |
}, | |
"33554720" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_sp_mesh_tan_light" | |
}, | |
"33554721" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_sp_mesh_tan_medium" | |
}, | |
"33554722" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_sp_mesh_tan_heavy" | |
}, | |
"33554740" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_hy_forest_boreal_light" | |
}, | |
"33554741" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_hy_forest_boreal_medium" | |
}, | |
"33554742" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_hy_forest_boreal_heavy" | |
}, | |
"33555004" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_sp_tape_urban_light" | |
}, | |
"33555005" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_sp_tape_urban_medium" | |
}, | |
"33555006" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_sp_tape_urban_heavy" | |
}, | |
"33555132" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_sp_dapple_light" | |
}, | |
"33555133" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_sp_dapple_medium" | |
}, | |
"33555134" : { | |
"icon_path" : "econ/default_generated/weapon_knife_falchion_sp_dapple_heavy" | |
}, | |
"33685524" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_hy_ddpat_light" | |
}, | |
"33685525" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_hy_ddpat_medium" | |
}, | |
"33685526" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_hy_ddpat_heavy" | |
}, | |
"33685552" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_hy_webs_light" | |
}, | |
"33685553" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_hy_webs_medium" | |
}, | |
"33685554" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_hy_webs_heavy" | |
}, | |
"33685656" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aa_fade_light" | |
}, | |
"33685657" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aa_fade_medium" | |
}, | |
"33685658" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aa_fade_heavy" | |
}, | |
"33685664" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_so_night_light" | |
}, | |
"33685665" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_so_night_medium" | |
}, | |
"33685666" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_so_night_heavy" | |
}, | |
"33685672" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aq_blued_light" | |
}, | |
"33685673" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aq_blued_medium" | |
}, | |
"33685674" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aq_blued_heavy" | |
}, | |
"33685676" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aq_forced_light" | |
}, | |
"33685677" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aq_forced_medium" | |
}, | |
"33685678" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aq_forced_heavy" | |
}, | |
"33685680" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aq_oiled_light" | |
}, | |
"33685681" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aq_oiled_medium" | |
}, | |
"33685682" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_aq_oiled_heavy" | |
}, | |
"33685740" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_am_zebra_light" | |
}, | |
"33685741" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_am_zebra_medium" | |
}, | |
"33685742" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_am_zebra_heavy" | |
}, | |
"33685792" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_sp_mesh_tan_light" | |
}, | |
"33685793" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_sp_mesh_tan_medium" | |
}, | |
"33685794" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_sp_mesh_tan_heavy" | |
}, | |
"33685812" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_hy_forest_boreal_light" | |
}, | |
"33685813" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_hy_forest_boreal_medium" | |
}, | |
"33685814" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_hy_forest_boreal_heavy" | |
}, | |
"33686076" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_sp_tape_urban_light" | |
}, | |
"33686077" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_sp_tape_urban_medium" | |
}, | |
"33686078" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_sp_tape_urban_heavy" | |
}, | |
"33686204" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_sp_dapple_light" | |
}, | |
"33686205" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_sp_dapple_medium" | |
}, | |
"33686206" : { | |
"icon_path" : "econ/default_generated/weapon_knife_survival_bowie_sp_dapple_heavy" | |
}, | |
"33751060" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_hy_ddpat_light" | |
}, | |
"33751061" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_hy_ddpat_medium" | |
}, | |
"33751062" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_hy_ddpat_heavy" | |
}, | |
"33751088" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_hy_webs_light" | |
}, | |
"33751089" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_hy_webs_medium" | |
}, | |
"33751090" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_hy_webs_heavy" | |
}, | |
"33751192" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aa_fade_light" | |
}, | |
"33751193" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aa_fade_medium" | |
}, | |
"33751194" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aa_fade_heavy" | |
}, | |
"33751200" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_so_night_light" | |
}, | |
"33751201" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_so_night_medium" | |
}, | |
"33751202" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_so_night_heavy" | |
}, | |
"33751208" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aq_blued_light" | |
}, | |
"33751209" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aq_blued_medium" | |
}, | |
"33751210" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aq_blued_heavy" | |
}, | |
"33751212" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aq_forced_light" | |
}, | |
"33751213" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aq_forced_medium" | |
}, | |
"33751214" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aq_forced_heavy" | |
}, | |
"33751216" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aq_oiled_light" | |
}, | |
"33751217" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aq_oiled_medium" | |
}, | |
"33751218" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_aq_oiled_heavy" | |
}, | |
"33751276" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_am_zebra_light" | |
}, | |
"33751277" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_am_zebra_medium" | |
}, | |
"33751278" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_am_zebra_heavy" | |
}, | |
"33751328" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_sp_mesh_tan_light" | |
}, | |
"33751329" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_sp_mesh_tan_medium" | |
}, | |
"33751330" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_sp_mesh_tan_heavy" | |
}, | |
"33751348" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_hy_forest_boreal_light" | |
}, | |
"33751349" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_hy_forest_boreal_medium" | |
}, | |
"33751350" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_hy_forest_boreal_heavy" | |
}, | |
"33751612" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_sp_tape_urban_light" | |
}, | |
"33751613" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_sp_tape_urban_medium" | |
}, | |
"33751614" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_sp_tape_urban_heavy" | |
}, | |
"33751740" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_sp_dapple_light" | |
}, | |
"33751741" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_sp_dapple_medium" | |
}, | |
"33751742" : { | |
"icon_path" : "econ/default_generated/weapon_knife_butterfly_sp_dapple_heavy" | |
}, | |
"33816596" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_hy_ddpat_light" | |
}, | |
"33816597" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_hy_ddpat_medium" | |
}, | |
"33816598" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_hy_ddpat_heavy" | |
}, | |
"33816624" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_hy_webs_light" | |
}, | |
"33816625" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_hy_webs_medium" | |
}, | |
"33816626" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_hy_webs_heavy" | |
}, | |
"33816728" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aa_fade_light" | |
}, | |
"33816729" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aa_fade_medium" | |
}, | |
"33816730" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aa_fade_heavy" | |
}, | |
"33816736" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_so_night_light" | |
}, | |
"33816737" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_so_night_medium" | |
}, | |
"33816738" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_so_night_heavy" | |
}, | |
"33816744" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aq_blued_light" | |
}, | |
"33816745" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aq_blued_medium" | |
}, | |
"33816746" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aq_blued_heavy" | |
}, | |
"33816748" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aq_forced_light" | |
}, | |
"33816749" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aq_forced_medium" | |
}, | |
"33816750" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aq_forced_heavy" | |
}, | |
"33816752" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aq_oiled_light" | |
}, | |
"33816753" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aq_oiled_medium" | |
}, | |
"33816754" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_aq_oiled_heavy" | |
}, | |
"33816812" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_am_zebra_light" | |
}, | |
"33816813" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_am_zebra_medium" | |
}, | |
"33816814" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_am_zebra_heavy" | |
}, | |
"33816864" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_sp_mesh_tan_light" | |
}, | |
"33816865" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_sp_mesh_tan_medium" | |
}, | |
"33816866" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_sp_mesh_tan_heavy" | |
}, | |
"33816884" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_hy_forest_boreal_light" | |
}, | |
"33816885" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_hy_forest_boreal_medium" | |
}, | |
"33816886" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_hy_forest_boreal_heavy" | |
}, | |
"33817148" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_sp_tape_urban_light" | |
}, | |
"33817149" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_sp_tape_urban_medium" | |
}, | |
"33817150" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_sp_tape_urban_heavy" | |
}, | |
"33817276" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_sp_dapple_light" | |
}, | |
"33817277" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_sp_dapple_medium" | |
}, | |
"33817278" : { | |
"icon_path" : "econ/default_generated/weapon_knife_push_sp_dapple_heavy" | |
} | |
} | |
}, | |
"prefabs" : { | |
"quest_prefab" : { | |
"name" : "quest_item", | |
"item_class" : "collectible_item", | |
"item_type_name" : "#CSGO_Type_Quest", | |
"item_name" : "#CSGO_Type_Quest", | |
"item_description" : "#CSGO_Quest_Desc", | |
"icon_default_image" : "materials/icons/inventory_icon_quest.vtf", | |
"image_inventory" : "econ/tools/mission", | |
"item_quality" : "unique", | |
"item_rarity" : "common", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"image_inventory_size_w" : "128", | |
"image_inventory_size_h" : "82", | |
"mouse_pressed_sound" : "ui/item_paper_pickup.wav", | |
"drop_sound" : "ui/item_paper_pickup.wav", | |
"capabilities" : { | |
"can_delete" : "1" | |
} | |
}, | |
"musickit_prefab" : { | |
"item_class" : "collectible_item", | |
"item_type_name" : "#CSGO_Type_MusicKit", | |
"item_name" : "#CSGO_Type_MusicKit", | |
"item_description" : "#CSGO_MusicKit_Desc", | |
"item_slot" : "musickit", | |
"item_sub_position" : "musickit", | |
"item_rarity" : "rare", | |
"item_quality" : "unique", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"image_inventory_size_w" : "128", | |
"image_inventory_size_h" : "82", | |
"mouse_pressed_sound" : "ui/item_paper_pickup.wav", | |
"drop_sound" : "ui/item_paper_pickup.wav", | |
"used_by_classes" : { | |
"noteam" : "1" | |
}, | |
"capabilities" : { | |
"can_stattrack_swap" : "1" | |
} | |
}, | |
"bundle_base" : { | |
"item_class" : "bundle", | |
"item_type_name" : "#CSGO_Type_StoreBundle", | |
"image_inventory_size_w" : "128", | |
"image_inventory_size_h" : "82", | |
"item_quality" : "unique", | |
"min_ilevel" : "50", | |
"max_ilevel" : "50", | |
"mouse_pressed_sound" : "ui/item_paper_pickup.wav", | |
"drop_sound" : "ui/item_paper_pickup.wav" | |
}, | |
"weapon_case_base" : { | |
"item_class" : "supply_crate", | |
"item_type_name" : "#CSGO_Type_WeaponCase", | |
"item_name" : "#CSGO_WeaponCase_Standard", | |
"image_inventory" : "econ/weapon_cases/weapon_case_generic", | |
"item_quality" : "unique", | |
"item_rarity" : "common", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"image_inventory_size_w" : "128", | |
"image_inventory_size_h" : "82", | |
"mouse_pressed_sound" : "physics/plastic/plastic_box_impact_soft1.wav", | |
"drop_sound" : "physics/plastic/plastic_box_impact_hard1.wav", | |
"tool" : { | |
"type" : "supply_crate", | |
"usage_capabilities" : { | |
"usable_out_of_game" : "1" | |
} | |
}, | |
"capabilities" : { | |
"decodable" : "1" | |
}, | |
"image_unusual_item" : "econ/weapon_cases/default_rare_item", | |
"loot_list_rare_item_name" : "#Exceedingly_Rare_Item", | |
"loot_list_rare_item_footer" : "#Econ_Revolving_Loot_List_Rare_Item" | |
}, | |
"weapon_case" : { | |
"prefab" : "weapon_case_base", | |
"associated_item" : "1203", | |
"capabilities" : { | |
"can_delete" : "1" | |
} | |
}, | |
"csgo_tool" : { | |
"item_class" : "tool", | |
"craft_class" : "tool", | |
"craft_material_type" : "tool", | |
"item_type_name" : "#CSGO_Type_Tool", | |
"item_quality" : "unique", | |
"item_rarity" : "common", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"image_inventory_size_w" : "128", | |
"image_inventory_size_h" : "82", | |
"mouse_pressed_sound" : "weapons/c4/c4_disarm.wav", | |
"drop_sound" : "weapons/c4/c4_disarm.wav" | |
}, | |
"weapon_case_key" : { | |
"prefab" : "csgo_tool", | |
"item_name" : "#CSGO_Tool_WeaponCase_Key", | |
"item_type_name" : "#CSGO_Tool_WeaponCase_KeyTag", | |
"item_description" : "#CSGO_Tool_WeaponCase_Key_Desc", | |
"image_inventory" : "econ/tools/weapon_case_key", | |
"mouse_pressed_sound" : "doors/door_lock_1.wav", | |
"drop_sound" : "doors/handle_pushbar_locked1.wav", | |
"tool" : { | |
"type" : "decoder_ring", | |
"use_string" : "#UnlockUse", | |
"usage_capabilities" : { | |
"decodable" : "1", | |
"usable_out_of_game" : "1" | |
} | |
} | |
}, | |
"recipe" : { | |
"prefab" : "csgo_tool", | |
"item_type_name" : "#CSGO_Type_recipe", | |
"image_inventory" : "econ/tools/crafting_contract", | |
"tool" : { | |
"type" : "recipe", | |
"usage_capabilities" : { | |
"recipe" : "1", | |
"usable_out_of_game" : "1" | |
} | |
} | |
}, | |
"collectible" : { | |
"item_class" : "collectible_item", | |
"craft_class" : "collectable", | |
"craft_material_type" : "tool", | |
"item_type_name" : "#CSGO_Type_Collectible", | |
"item_quality" : "unique", | |
"item_rarity" : "ancient", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"image_inventory_size_w" : "128", | |
"image_inventory_size_h" : "82", | |
"mouse_pressed_sound" : "physics/meta/chain_impact_hard1.wav", | |
"drop_sound" : "physics/meta/chain_impact_hard1.wav", | |
"item_slot" : "flair0", | |
"item_sub_position" : "flair0", | |
"used_by_classes" : { | |
"noteam" : "1" | |
} | |
}, | |
"collectible_untradable" : { | |
"prefab" : "collectible", | |
"attributes" : { | |
"cannot trade" : "1" | |
} | |
}, | |
"operation_coin" : { | |
"prefab" : "collectible_untradable", | |
"item_type" : "operation_coin" | |
}, | |
"prestige_coin" : { | |
"prefab" : "collectible_untradable", | |
"item_type" : "prestige_coin" | |
}, | |
"attendance_pin" : { | |
"prefab" : "collectible_untradable", | |
"item_quality" : "genuine" | |
}, | |
"season1_coin" : { | |
"prefab" : "operation_coin", | |
"attributes" : { | |
"season access" : "0", | |
"minutes played" : { | |
"attribute_class" : "minutes_played", | |
"value" : "1", | |
"force_gc_to_generate" : "1" | |
} | |
} | |
}, | |
"season2_coin" : { | |
"prefab" : "operation_coin", | |
"attributes" : { | |
"season access" : "1", | |
"minutes played" : { | |
"attribute_class" : "minutes_played", | |
"value" : "1", | |
"force_gc_to_generate" : "1" | |
}, | |
"match wins" : { | |
"attribute_class" : "match_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive minutes played" : { | |
"attribute_class" : "competitive_minutes_played", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive wins" : { | |
"attribute_class" : "competitive_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive kills" : { | |
"attribute_class" : "competitive_kills", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 3k" : { | |
"attribute_class" : "competitive_3k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 4k" : { | |
"attribute_class" : "competitive_4k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 5k" : { | |
"attribute_class" : "competitive_5k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive hsp" : { | |
"attribute_class" : "competitive_hsp", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive mvps" : { | |
"attribute_class" : "competitive_mvps", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
} | |
} | |
}, | |
"season3_coin" : { | |
"prefab" : "operation_coin", | |
"attributes" : { | |
"season access" : "2", | |
"minutes played" : { | |
"attribute_class" : "minutes_played", | |
"value" : "1", | |
"force_gc_to_generate" : "1" | |
}, | |
"match wins" : { | |
"attribute_class" : "match_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive minutes played" : { | |
"attribute_class" : "competitive_minutes_played", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive wins" : { | |
"attribute_class" : "competitive_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive kills" : { | |
"attribute_class" : "competitive_kills", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 3k" : { | |
"attribute_class" : "competitive_3k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 4k" : { | |
"attribute_class" : "competitive_4k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 5k" : { | |
"attribute_class" : "competitive_5k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive hsp" : { | |
"attribute_class" : "competitive_hsp", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive mvps" : { | |
"attribute_class" : "competitive_mvps", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
} | |
} | |
}, | |
"season4_coin" : { | |
"prefab" : "operation_coin", | |
"attributes" : { | |
"season access" : "3", | |
"minutes played" : { | |
"attribute_class" : "minutes_played", | |
"value" : "1" | |
}, | |
"operation minutes played" : { | |
"attribute_class" : "operation_minutes_played", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation wins" : { | |
"attribute_class" : "operation_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation kills" : { | |
"attribute_class" : "operation_kills", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 3k" : { | |
"attribute_class" : "operation_3k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 4k" : { | |
"attribute_class" : "operation_4k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 5k" : { | |
"attribute_class" : "operation_5k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation hsp" : { | |
"attribute_class" : "operation_hsp", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation mvps" : { | |
"attribute_class" : "operation_mvps", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive minutes played" : { | |
"attribute_class" : "competitive_minutes_played", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive wins" : { | |
"attribute_class" : "competitive_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive kills" : { | |
"attribute_class" : "competitive_kills", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 3k" : { | |
"attribute_class" : "competitive_3k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 4k" : { | |
"attribute_class" : "competitive_4k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 5k" : { | |
"attribute_class" : "competitive_5k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive hsp" : { | |
"attribute_class" : "competitive_hsp", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive mvps" : { | |
"attribute_class" : "competitive_mvps", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"quests complete" : { | |
"attribute_class" : "quests_complete", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
} | |
} | |
}, | |
"season5_coin" : { | |
"prefab" : "operation_coin", | |
"attributes" : { | |
"season access" : "4", | |
"minutes played" : { | |
"attribute_class" : "minutes_played", | |
"value" : "1" | |
}, | |
"operation minutes played" : { | |
"attribute_class" : "operation_minutes_played", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation wins" : { | |
"attribute_class" : "operation_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation kills" : { | |
"attribute_class" : "operation_kills", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 3k" : { | |
"attribute_class" : "operation_3k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 4k" : { | |
"attribute_class" : "operation_4k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 5k" : { | |
"attribute_class" : "operation_5k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation hsp" : { | |
"attribute_class" : "operation_hsp", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation mvps" : { | |
"attribute_class" : "operation_mvps", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive minutes played" : { | |
"attribute_class" : "competitive_minutes_played", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive wins" : { | |
"attribute_class" : "competitive_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive kills" : { | |
"attribute_class" : "competitive_kills", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 3k" : { | |
"attribute_class" : "competitive_3k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 4k" : { | |
"attribute_class" : "competitive_4k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 5k" : { | |
"attribute_class" : "competitive_5k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive hsp" : { | |
"attribute_class" : "competitive_hsp", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive mvps" : { | |
"attribute_class" : "competitive_mvps", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"quests complete" : { | |
"attribute_class" : "quests_complete", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation points" : { | |
"attribute_class" : "operation_points", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
} | |
} | |
}, | |
"season6_coin" : { | |
"prefab" : "operation_coin", | |
"attributes" : { | |
"season access" : "5", | |
"minutes played" : { | |
"attribute_class" : "minutes_played", | |
"value" : "1" | |
}, | |
"operation minutes played" : { | |
"attribute_class" : "operation_minutes_played", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation wins" : { | |
"attribute_class" : "operation_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation kills" : { | |
"attribute_class" : "operation_kills", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 3k" : { | |
"attribute_class" : "operation_3k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 4k" : { | |
"attribute_class" : "operation_4k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 5k" : { | |
"attribute_class" : "operation_5k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation hsp" : { | |
"attribute_class" : "operation_hsp", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation mvps" : { | |
"attribute_class" : "operation_mvps", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive minutes played" : { | |
"attribute_class" : "competitive_minutes_played", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive wins" : { | |
"attribute_class" : "competitive_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive kills" : { | |
"attribute_class" : "competitive_kills", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 3k" : { | |
"attribute_class" : "competitive_3k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 4k" : { | |
"attribute_class" : "competitive_4k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 5k" : { | |
"attribute_class" : "competitive_5k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive hsp" : { | |
"attribute_class" : "competitive_hsp", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive mvps" : { | |
"attribute_class" : "competitive_mvps", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"quests complete" : { | |
"attribute_class" : "quests_complete", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation points" : { | |
"attribute_class" : "operation_points", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"quest id" : { | |
"attribute_class" : "quest_id", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"campaign 5 completion bitfield" : { | |
"attribute_class" : "campaign_completion_bitfield", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"campaign 5 last completed quest" : { | |
"attribute_class" : "campaign_last_completed_quest", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"campaign 6 completion bitfield" : { | |
"attribute_class" : "campaign_completion_bitfield", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"campaign 6 last completed quest" : { | |
"attribute_class" : "campaign_last_completed_quest", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
} | |
} | |
}, | |
"season7_coin" : { | |
"prefab" : "operation_coin", | |
"attributes" : { | |
"season access" : "6", | |
"minutes played" : { | |
"attribute_class" : "minutes_played", | |
"value" : "1" | |
}, | |
"operation minutes played" : { | |
"attribute_class" : "operation_minutes_played", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation wins" : { | |
"attribute_class" : "operation_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation kills" : { | |
"attribute_class" : "operation_kills", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 3k" : { | |
"attribute_class" : "operation_3k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 4k" : { | |
"attribute_class" : "operation_4k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation 5k" : { | |
"attribute_class" : "operation_5k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation hsp" : { | |
"attribute_class" : "operation_hsp", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation mvps" : { | |
"attribute_class" : "operation_mvps", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive minutes played" : { | |
"attribute_class" : "competitive_minutes_played", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive wins" : { | |
"attribute_class" : "competitive_wins", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive kills" : { | |
"attribute_class" : "competitive_kills", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 3k" : { | |
"attribute_class" : "competitive_3k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 4k" : { | |
"attribute_class" : "competitive_4k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive 5k" : { | |
"attribute_class" : "competitive_5k", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive hsp" : { | |
"attribute_class" : "competitive_hsp", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"competitive mvps" : { | |
"attribute_class" : "competitive_mvps", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"quests complete" : { | |
"attribute_class" : "quests_complete", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"operation points" : { | |
"attribute_class" : "operation_points", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"quest id" : { | |
"attribute_class" : "quest_id", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"campaign 7 completion bitfield" : { | |
"attribute_class" : "campaign_completion_bitfield", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"campaign 7 last completed quest" : { | |
"attribute_class" : "campaign_last_completed_quest", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"campaign 8 completion bitfield" : { | |
"attribute_class" : "campaign_completion_bitfield", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
}, | |
"campaign 8 last completed quest" : { | |
"attribute_class" : "campaign_last_completed_quest", | |
"value" : "0", | |
"force_gc_to_generate" : "1" | |
} | |
} | |
}, | |
"map_token" : { | |
"prefab" : "collectible", | |
"item_class" : "map_token", | |
"armory_desc" : "maptoken" | |
}, | |
"steam_badge" : { | |
"prefab" : "collectible_untradable" | |
}, | |
"flair_pin" : { | |
"prefab" : "collectible" | |
}, | |
"weapon_base" : { | |
"craft_class" : "weapon", | |
"craft_material_type" : "weapon", | |
"item_quality" : "unique", | |
"item_rarity" : "common", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"image_inventory_size_w" : "128", | |
"image_inventory_size_h" : "82", | |
"mouse_pressed_sound" : "weapons/m4a1/m4a1_clipout.wav", | |
"drop_sound" : "weapons/m4a1/m4a1_clipint.wav", | |
"inventory_image_data" : { | |
"camera_angles" : "2.0 -130.0 0.0", | |
"camera_offset" : "0.0 1.0 -2.0", | |
"camera_fov" : "35.000000", | |
"override_default_light" : "1", | |
"spot_light_key" : { | |
"position" : "-120 120 180", | |
"color" : "2 2.1 2.3", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"spot_light_rim" : { | |
"position" : "10.0 -90.0 -60.0", | |
"color" : "3 5 5", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.040000", | |
"outer_cone" : "0.500000" | |
} | |
} | |
}, | |
"equipment" : { | |
"prefab" : "weapon_base", | |
"item_type_name" : "#CSGO_Type_Equipment", | |
"item_slot" : "equipment", | |
"visuals" : { | |
"weapon_type" : "Equipment" | |
} | |
}, | |
"grenade" : { | |
"prefab" : "weapon_base", | |
"item_type_name" : "#CSGO_Type_Grenade", | |
"item_slot" : "grenade", | |
"mouse_pressed_sound" : "weapons/hegrenade/he_draw.wav", | |
"drop_sound" : "weapons/hegrenade/pinpull.wav", | |
"visuals" : { | |
"weapon_type" : "Grenade" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "0.0 -130.0 -10.0", | |
"camera_offset" : "0.0 0.0 -1.5" | |
} | |
}, | |
"c4" : { | |
"prefab" : "weapon_base", | |
"capabilities" : { | |
"nameable" : "1" | |
}, | |
"item_class" : "weapon_c4", | |
"item_type_name" : "#CSGO_Type_C4", | |
"item_slot" : "c4", | |
"item_name" : "#SFUI_WPNHUD_C4", | |
"item_description" : "#CSGO_Item_Desc_C4", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_c4.vtf", | |
"model_player" : "models/weapons/v_ied.mdl", | |
"model_world" : "models/weapons/w_ied.mdl", | |
"mouse_pressed_sound" : "weapons/c4/c4_draw.wav", | |
"drop_sound" : "weapons/c4/c4_plant.wav", | |
"visuals" : { | |
"weapon_type" : "C4" | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1" | |
} | |
}, | |
"melee" : { | |
"prefab" : "weapon_base", | |
"capabilities" : { | |
"nameable" : "1", | |
"can_stattrack_swap" : "1" | |
}, | |
"item_class" : "weapon_knife", | |
"item_type_name" : "#CSGO_Type_Knife", | |
"item_slot" : "melee", | |
"item_sub_position" : "melee", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_knife.vtf", | |
"mouse_pressed_sound" : "weapons/knife/knife_deploy1.wav", | |
"drop_sound" : "weapons/knife/knife_hit1.wav", | |
"attributes" : { | |
"stattrak model" : "models/weapons/stattrack_cut.mdl" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "30.0 -90.0 25.0", | |
"camera_offset" : "7.0 2.0 -1.5", | |
"spot_light_key" : { | |
"position" : "-60 90 60", | |
"color" : "1.5 1.55 1.6", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"spot_light_rim" : { | |
"position" : "0 -30 -120", | |
"color" : "3 5 5", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.040000", | |
"outer_cone" : "0.500000" | |
}, | |
"point_light_accent" : { | |
"position" : "15 7 4", | |
"color" : "0.5 0.5 0.5" | |
} | |
}, | |
"visuals" : { | |
"weapon_type" : "Knife" | |
}, | |
"attributes" : { | |
"flinch velocity modifier large" : "0.300000", | |
"flinch velocity modifier small" : "0.300000" | |
} | |
}, | |
"melee_unusual" : { | |
"prefab" : "melee", | |
"capabilities" : { | |
"paintable" : "1" | |
}, | |
"item_rarity" : "ancient" | |
}, | |
"secondary" : { | |
"prefab" : "weapon_base", | |
"capabilities" : { | |
"nameable" : "1", | |
"paintable" : "1", | |
"can_sticker" : "1", | |
"can_stattrack_swap" : "1" | |
}, | |
"item_type_name" : "#CSGO_Type_Pistol", | |
"item_slot" : "secondary", | |
"mouse_pressed_sound" : "weapons/DEagle/de_clipout.wav", | |
"drop_sound" : "weapons/DEagle/de_clipin.wav", | |
"attributes" : { | |
"stattrak model" : "models/weapons/stattrack.mdl" | |
}, | |
"visuals" : { | |
"weapon_type" : "Pistol" | |
}, | |
"attributes" : { | |
"flinch velocity modifier large" : "0.560000", | |
"flinch velocity modifier small" : "0.050000" | |
} | |
}, | |
"primary" : { | |
"prefab" : "weapon_base", | |
"capabilities" : { | |
"nameable" : "1", | |
"paintable" : "1", | |
"can_sticker" : "1", | |
"can_stattrack_swap" : "1" | |
}, | |
"attributes" : { | |
"stattrak model" : "models/weapons/stattrack.mdl" | |
} | |
}, | |
"smg" : { | |
"prefab" : "primary", | |
"item_type_name" : "#CSGO_Type_SMG", | |
"item_slot" : "smg", | |
"mouse_pressed_sound" : "weapons/p90/p90_clipout.wav", | |
"drop_sound" : "weapons/p90/p90_clipin.wav", | |
"visuals" : { | |
"weapon_type" : "SubMachinegun" | |
}, | |
"attributes" : { | |
"flinch velocity modifier large" : "0.530000", | |
"flinch velocity modifier small" : "0.300000" | |
} | |
}, | |
"rifle" : { | |
"prefab" : "primary", | |
"item_type_name" : "#CSGO_Type_Rifle", | |
"item_slot" : "rifle", | |
"mouse_pressed_sound" : "weapons/m4a1/m4a1_clipout.wav", | |
"drop_sound" : "weapons/m4a1/m4a1_clipin.wav", | |
"visuals" : { | |
"weapon_type" : "Rifle" | |
}, | |
"attributes" : { | |
"flinch velocity modifier large" : "0.440000", | |
"flinch velocity modifier small" : "0.100000" | |
} | |
}, | |
"sniper_rifle" : { | |
"prefab" : "primary", | |
"item_type_name" : "#CSGO_Type_SniperRifle", | |
"item_slot" : "rifle", | |
"mouse_pressed_sound" : "weapons/awp/awp_clipout.wav", | |
"drop_sound" : "weapons/awp/awp_clipin.wav", | |
"visuals" : { | |
"weapon_type" : "SniperRifle" | |
}, | |
"attributes" : { | |
"flinch velocity modifier large" : "0.390000", | |
"flinch velocity modifier small" : "0.500000" | |
} | |
}, | |
"shotgun" : { | |
"prefab" : "primary", | |
"item_type_name" : "#CSGO_Type_Shotgun", | |
"item_slot" : "heavy", | |
"mouse_pressed_sound" : "weapons/sawedoff/sawedoff_draw.wav", | |
"drop_sound" : "weapons/sawedoff/sawedoff_pump.wav", | |
"visuals" : { | |
"weapon_type" : "Shotgun" | |
}, | |
"attributes" : { | |
"flinch velocity modifier large" : "0.350000", | |
"flinch velocity modifier small" : "0.100000" | |
} | |
}, | |
"machinegun" : { | |
"prefab" : "primary", | |
"item_type_name" : "#CSGO_Type_Machinegun", | |
"item_slot" : "heavy", | |
"mouse_pressed_sound" : "weapons/m249/m249_boxout.wav", | |
"drop_sound" : "weapons/m249/m249_boxin.wav", | |
"visuals" : { | |
"weapon_type" : "Machinegun" | |
}, | |
"attributes" : { | |
"flinch velocity modifier large" : "0.400000", | |
"flinch velocity modifier small" : "0.220000" | |
} | |
}, | |
"weapon_deagle_prefab" : { | |
"prefab" : "secondary", | |
"item_class" : "weapon_deagle", | |
"item_name" : "#SFUI_WPNHUD_DesertEagle", | |
"item_description" : "#CSGO_Item_Desc_DesertEagle", | |
"item_rarity" : "uncommon", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_deagle", | |
"model_player" : "models/weapons/v_pist_deagle.mdl", | |
"model_world" : "models/weapons/w_pist_deagle.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_deagle.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_deagle_decal_a.mdl", | |
"worldmodel_decal_pos" : "2.53443 -3.22857 -1.90564" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_deagle_decal_b.mdl", | |
"worldmodel_decal_pos" : "2.53443 -0.989865 -1.12229" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_deagle_decal_c.mdl", | |
"worldmodel_decal_pos" : "2.53443 -0.955564 1.77999" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_deagle/pist_deagle_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_deagle_decal_d.mdl", | |
"worldmodel_decal_pos" : "2.53443 -0.929928 4.8028" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_pist_deagle_mag.mdl", | |
"primary reserve ammo max" : "35" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-2.0 -130.0 0.0", | |
"camera_offset" : "4.0 1.0 -1.3", | |
"point_light_accent" : { | |
"position" : "-8 50 -8", | |
"color" : "0.3 0.3 0.3" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "pist_deagle", | |
"ViewmodelDim" : "1024", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "1", | |
"WeaponLength" : "11.360100", | |
"UVScale" : "0.300000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_pistolSpin01" | |
} | |
}, | |
"weapon_elite_prefab" : { | |
"prefab" : "secondary", | |
"item_class" : "weapon_elite", | |
"item_name" : "#SFUI_WPNHUD_Elites", | |
"item_description" : "#CSGO_Item_Desc_Elites", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_elite", | |
"model_player" : "models/weapons/v_pist_elite.mdl", | |
"model_world" : "models/weapons/w_pist_elite.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_elite.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_elite/pist_elite_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_elite_decal_a.mdl", | |
"worldmodel_decal_pos" : "2.00 1.50 3.30" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_elite/pist_elite_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_elite_decal_b.mdl", | |
"worldmodel_decal_pos" : "2.00 2.80 5.40" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_elite/pist_elite_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_elite_decal_c.mdl", | |
"worldmodel_decal_pos" : "4.0 2.80 -3.40", | |
"worldmodel_decal_end" : "4.0 -2.80 -2.40", | |
"worldmodel_decal_bone" : "ValveBiped.Bip01_L_Hand" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_elite/pist_elite_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_elite_decal_d.mdl", | |
"worldmodel_decal_pos" : "7.5 2.80 -3.40", | |
"worldmodel_decal_end" : "7.5 -2.80 -2.40", | |
"worldmodel_decal_bone" : "ValveBiped.Bip01_L_Hand" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"icon display model" : "models/weapons/w_pist_elite_icon.mdl", | |
"buymenu display model" : "models/weapons/w_pist_elite_buymenu.mdl", | |
"primary reserve ammo max" : "120", | |
"magazine model" : "models/weapons/w_pist_elite_mag.mdl" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "0.0 -90.0 0.0", | |
"camera_offset" : "2.0 0.5 -2.0", | |
"point_light_accent" : { | |
"position" : "0 20 20", | |
"color" : "1 1 1" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "pist_elite", | |
"OrigMat" : "m9a1", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "1", | |
"WeaponLength" : "10.408200", | |
"UVScale" : "0.282000" | |
} | |
} | |
}, | |
"weapon_fiveseven_prefab" : { | |
"prefab" : "secondary", | |
"item_class" : "weapon_fiveseven", | |
"item_name" : "#SFUI_WPNHUD_FiveSeven", | |
"item_description" : "#CSGO_Item_Desc_FiveSeven", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_fiveseven", | |
"model_player" : "models/weapons/v_pist_fiveseven.mdl", | |
"model_world" : "models/weapons/w_pist_fiveseven.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_fiveseven.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_fiveseven_decal_a.mdl", | |
"worldmodel_decal_pos" : "3.99388 -1.26199 -1.90926" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_fiveseven_decal_b.mdl", | |
"worldmodel_decal_pos" : "3.99388 -1.15953 0.562159" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_fiveseven_decal_c.mdl", | |
"worldmodel_decal_pos" : "3.99388 -1.15953 3.3738" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_fiveseven/pist_fiveseven_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_fiveseven_decal_d.mdl", | |
"worldmodel_decal_pos" : "3.99388 -3.97353 -2.19972" | |
} | |
}, | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_pist_fiveseven_mag.mdl", | |
"primary reserve ammo max" : "100" | |
}, | |
"inventory_image_data" : { | |
"camera_offset" : "1.0 1.0 -1.3", | |
"camera_fov" : "55.000000", | |
"point_light_accent" : { | |
"position" : "40 30 10", | |
"color" : "1 1 1" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "pist_fiveseven", | |
"OrigMat" : "fiveseven", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "8.093060", | |
"UVScale" : "0.264000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_pistolSpin01" | |
} | |
}, | |
"weapon_glock_prefab" : { | |
"prefab" : "secondary", | |
"item_class" : "weapon_glock", | |
"item_name" : "#SFUI_WPNHUD_Glock18", | |
"item_description" : "#CSGO_Item_Desc_Glock18", | |
"item_rarity" : "uncommon", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_glock", | |
"model_player" : "models/weapons/v_pist_glock18.mdl", | |
"model_world" : "models/weapons/w_pist_glock18.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_glock.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_glock18_decal_a.mdl", | |
"worldmodel_decal_pos" : "1.74152 -1.1069 -2.00371" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_glock18_decal_b.mdl", | |
"worldmodel_decal_pos" : "1.74152 -0.997365 -0.0349085" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_glock18_decal_c.mdl", | |
"worldmodel_decal_pos" : "1.74152 -0.997365 2.59865" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_glock18/pist_glock18_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_glock18_decal_d.mdl", | |
"worldmodel_decal_pos" : "1.74152 -3.20111 -2.18992" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1" | |
}, | |
"inventory_image_data" : { | |
"camera_offset" : "2.0 0.7 -1.0", | |
"point_light_accent" : { | |
"position" : "-15 20 -15", | |
"color" : "0.3 0.3 0.3" | |
} | |
}, | |
"attributes" : { | |
"uid model" : "models/weapons/uid_small.mdl", | |
"has burst mode" : "1", | |
"cycletime when in burst mode" : "0.500000", | |
"time between burst shots" : "0.050000", | |
"primary reserve ammo max" : "120", | |
"magazine model" : "models/weapons/w_pist_glock18_mag.mdl" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "pist_glock18", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "1", | |
"WeaponLength" : "7.976940", | |
"UVScale" : "0.446000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_pistolSpin01" | |
} | |
}, | |
"weapon_hkp2000_prefab" : { | |
"prefab" : "secondary", | |
"item_class" : "weapon_hkp2000", | |
"item_name" : "#SFUI_WPNHUD_HKP2000", | |
"item_description" : "#CSGO_Item_Desc_HKP2000", | |
"item_rarity" : "uncommon", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_hkp2000", | |
"model_player" : "models/weapons/v_pist_hkp2000.mdl", | |
"model_world" : "models/weapons/w_pist_hkp2000.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_hkp2000.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_hkp2000_decal_a.mdl", | |
"worldmodel_decal_pos" : "2.80535 -1.33829 -1.86912" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_hkp2000_decal_b.mdl", | |
"worldmodel_decal_pos" : "2.80535 -1.07812 0.305017" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_hkp2000_decal_c.mdl", | |
"worldmodel_decal_pos" : "2.80535 -1.01071 2.49434" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_hkp2000/pist_hkp2000_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_hkp2000_decal_d.mdl", | |
"worldmodel_decal_pos" : "2.80535 -3.52435 -2.21698" | |
} | |
}, | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_pist_hkp2000_mag.mdl", | |
"uid model" : "models/weapons/uid_small.mdl", | |
"primary reserve ammo max" : "52" | |
}, | |
"inventory_image_data" : { | |
"camera_offset" : "1.4 1.0 -1.0", | |
"spot_light_key" : { | |
"position" : "-100 120 90", | |
"color" : "1.5 1.55 1.6", | |
"lookat" : "-30.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"spot_light_rim" : { | |
"position" : "0 -80 -120", | |
"color" : "3 5 5", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.040000", | |
"outer_cone" : "0.500000" | |
}, | |
"point_light_accent" : { | |
"position" : "-15 20 -15", | |
"color" : "0.3 0.3 0.3" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "pist_hkp2000", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "7.553070", | |
"UVScale" : "0.288000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_pistolSpin01" | |
} | |
}, | |
"weapon_p250_prefab" : { | |
"prefab" : "secondary", | |
"item_class" : "weapon_p250", | |
"item_name" : "#SFUI_WPNHUD_P250", | |
"item_description" : "#CSGO_Item_Desc_P250", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_p250", | |
"model_player" : "models/weapons/v_pist_p250.mdl", | |
"model_world" : "models/weapons/w_pist_p250.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_p250.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_p250/pist_p250_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_p250_decal_a.mdl", | |
"worldmodel_decal_pos" : "4.15176 -1.13887 -1.69286" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_p250/pist_p250_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_p250_decal_b.mdl", | |
"worldmodel_decal_pos" : "4.15176 -1.13887 0.526864" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_p250/pist_p250_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_p250_decal_c.mdl", | |
"worldmodel_decal_pos" : "4.15176 -1.00962 2.95341" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_p250/pist_p250_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_p250_decal_d.mdl", | |
"worldmodel_decal_pos" : "4.15176 -3.54077 -2.10545" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_pist_p250_mag.mdl", | |
"primary reserve ammo max" : "26" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-1.2 -130.0 0.0", | |
"camera_offset" : "1.4 1.0 -1.0", | |
"point_light_accent" : { | |
"position" : "40 30 10", | |
"color" : "0.25 0.25 0.25" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "pist_p250", | |
"OrigMat" : "p250", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "7.966500", | |
"UVScale" : "0.371000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_pistolSpin01" | |
} | |
}, | |
"weapon_cz75a_prefab" : { | |
"prefab" : "weapon_p250_prefab", | |
"item_name" : "#SFUI_WPNHUD_CZ75", | |
"item_description" : "#CSGO_Item_Desc_cz75a", | |
"model_player" : "models/weapons/v_pist_cz_75.mdl", | |
"model_world" : "models/weapons/w_pist_cz_75.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_cz75a.vtf", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_cz75a", | |
"attributes" : { | |
"damage" : "33", | |
"is full auto" : "1", | |
"in game price" : "500", | |
"cycletime" : "0.100000", | |
"recoil angle" : "0", | |
"recoil angle variance" : "180", | |
"recoil magnitude" : "27", | |
"recoil magnitude variance" : "12", | |
"spread" : "3", | |
"primary clip size" : "12", | |
"magazine model" : "models/weapons/w_pist_cz_75_mag.mdl", | |
"inaccuracy stand" : "10.430000", | |
"inaccuracy fire" : "25.000000", | |
"inaccuracy crouch" : "7.600000", | |
"kill award" : "100", | |
"primary reserve ammo max" : "12" | |
}, | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_cz_75_decal_a.mdl", | |
"worldmodel_decal_pos" : "4.48833 -0.638561 1.82505" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_cz_75_decal_b.mdl", | |
"worldmodel_decal_pos" : "4.48833 -0.670694 -0.409493" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_cz_75_decal_c.mdl", | |
"worldmodel_decal_pos" : "4.48833 -1.2847 -2.19901" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_cz_75/pist_cz_75_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_cz_75_decal_d.mdl", | |
"worldmodel_decal_pos" : "4.48833 -3.99455 -3.27462" | |
} | |
}, | |
"inventory_image_data" : { | |
"spot_light_key" : { | |
"position" : "-180 120 120", | |
"color" : "3.5 3.6 3.8", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "pist_cz_75", | |
"OrigMat" : "pist_cz_75", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "10.787000", | |
"UVScale" : "0.400000" | |
} | |
}, | |
"visuals" : { | |
"sound_single_shot" : "Weapon_CZ75A.Single", | |
"primary_ammo" : "BULLET_PLAYER_357SIG_MIN" | |
} | |
}, | |
"weapon_tec9_prefab" : { | |
"prefab" : "secondary", | |
"item_class" : "weapon_tec9", | |
"item_name" : "#SFUI_WPNHUD_Tec9", | |
"item_description" : "#CSGO_Item_Desc_Tec9", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_tec9", | |
"model_player" : "models/weapons/v_pist_tec9.mdl", | |
"model_world" : "models/weapons/w_pist_tec9.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_tec9.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_tec9_decal_a.mdl", | |
"worldmodel_decal_pos" : "3.56948 -1.2587 -1.39832" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_tec9_decal_b.mdl", | |
"worldmodel_decal_pos" : "3.56948 -1.2587 1.8176" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_tec9_decal_c.mdl", | |
"worldmodel_decal_pos" : "3.56948 -1.44876 4.78239" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_tec9/pist_tec9_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_tec9_decal_d.mdl", | |
"worldmodel_decal_pos" : "-1.37183 -1.05785 -4.82885", | |
"worldmodel_decal_end" : "-1.37183 -1.05785 0.557401" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "0.0 -125.0 0.0", | |
"camera_offset" : "1.0 1.0 -1.6", | |
"camera_fov" : "50.000000", | |
"spot_light_key" : { | |
"position" : "-120 120 120", | |
"color" : "1.5 1.55 1.6", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"spot_light_rim" : { | |
"position" : "60 -80 -120", | |
"color" : "3 5 5", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.040000", | |
"outer_cone" : "0.500000" | |
}, | |
"point_light_accent" : { | |
"position" : "0 2 30", | |
"color" : "6 6 6" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "pist_tec9", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "13.340000", | |
"UVScale" : "0.427000" | |
} | |
}, | |
"attributes" : { | |
"primary reserve ammo max" : "120", | |
"magazine model" : "models/weapons/w_pist_tec9_mag.mdl" | |
} | |
}, | |
"weapon_bizon_prefab" : { | |
"prefab" : "smg", | |
"item_class" : "weapon_bizon", | |
"item_name" : "#SFUI_WPNHUD_Bizon", | |
"item_description" : "#CSGO_Item_Desc_Bizon", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_bizon", | |
"model_player" : "models/weapons/v_smg_bizon.mdl", | |
"model_world" : "models/weapons/w_smg_bizon.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_bizon.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_bizon_decal_a.mdl", | |
"worldmodel_decal_pos" : "4.72935 -0.869963 -1.26802" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_bizon_decal_b.mdl", | |
"worldmodel_decal_pos" : "4.72935 -0.9665 2.12768" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_bizon_decal_c.mdl", | |
"worldmodel_decal_pos" : "4.72935 -0.549397 5.92998" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_bizon/smg_bizon_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_bizon_decal_d.mdl", | |
"worldmodel_decal_pos" : "4.72935 -3.19411 7.76426" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"primary reserve ammo max" : "120", | |
"magazine model" : "models/weapons/w_smg_bizon_mag.mdl" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-4.0 -130.0 0.0", | |
"camera_offset" : "16.0 3.0 -2.0", | |
"point_light_accent" : { | |
"position" : "0 20 10", | |
"color" : "0.7 0.7 0.7" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "smg_bizon", | |
"OrigMat" : "bizon", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "29.743700", | |
"UVScale" : "0.596000" | |
} | |
} | |
}, | |
"weapon_mac10_prefab" : { | |
"prefab" : "smg", | |
"item_class" : "weapon_mac10", | |
"item_name" : "#SFUI_WPNHUD_MAC10", | |
"item_description" : "#CSGO_Item_Desc_Mac10", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_mac10", | |
"model_player" : "models/weapons/v_smg_mac10.mdl", | |
"model_world" : "models/weapons/w_smg_mac10.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_mac10.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mac10_decal_a.mdl", | |
"worldmodel_decal_pos" : "3.83975 -0.466896 -3.83529" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mac10_decal_b.mdl", | |
"worldmodel_decal_pos" : "3.83975 -3.5075 -1.68665" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mac10_decal_c.mdl", | |
"worldmodel_decal_pos" : "3.83975 -0.740954 -1.11418" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mac10/smg_mac10_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mac10_decal_d.mdl", | |
"worldmodel_decal_pos" : "3.83975 -0.942943 3.0487" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_smg_mac10_mag.mdl", | |
"primary reserve ammo max" : "100" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-3.0 -125.0 -3.0", | |
"camera_offset" : "3.0 0.5 -2.0", | |
"point_light_accent" : { | |
"position" : "50 10 20", | |
"color" : "2.5 2.5 2.5" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "smg_mac10", | |
"OrigMat" : "smg_mac10_1", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "12.834300", | |
"UVScale" : "0.495000" | |
} | |
} | |
}, | |
"weapon_mp7_prefab" : { | |
"prefab" : "smg", | |
"item_class" : "weapon_mp7", | |
"item_name" : "#SFUI_WPNHUD_MP7", | |
"item_description" : "#CSGO_Item_Desc_MP7", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_mp7", | |
"model_player" : "models/weapons/v_smg_mp7.mdl", | |
"model_world" : "models/weapons/w_smg_mp7.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_mp7.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mp7_decal_a.mdl", | |
"worldmodel_decal_pos" : "3.91874 -1.18899 -5.60001" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mp7_decal_b.mdl", | |
"worldmodel_decal_pos" : "3.91874 -1.48012 -2.12288" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mp7_decal_c.mdl", | |
"worldmodel_decal_pos" : "3.91874 -5.15067 -2.52061" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mp7/smg_mp7_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mp7_decal_d.mdl", | |
"worldmodel_decal_pos" : "3.91874 -2.58889 -7.63391" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_smg_mp7_mag.mdl", | |
"primary reserve ammo max" : "120" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "0.0 -135.0 0.0", | |
"camera_offset" : "7.0 1.0 -1.7", | |
"point_light_accent" : { | |
"position" : "40 30 10", | |
"color" : "1 1 1" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "smg_mp7", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "15.676800", | |
"UVScale" : "0.446000" | |
} | |
} | |
}, | |
"weapon_mp9_prefab" : { | |
"prefab" : "smg", | |
"item_class" : "weapon_mp9", | |
"item_name" : "#SFUI_WPNHUD_MP9", | |
"item_description" : "#CSGO_Item_Desc_MP9", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_mp9", | |
"model_player" : "models/weapons/v_smg_mp9.mdl", | |
"model_world" : "models/weapons/w_smg_mp9.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_mp9.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mp9_decal_a.mdl", | |
"worldmodel_decal_pos" : "2.72058 -1.42886 -4.87973" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mp9_decal_b.mdl", | |
"worldmodel_decal_pos" : "2.72058 -2.22002 -1.71083" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mp9_decal_c.mdl", | |
"worldmodel_decal_pos" : "2.72058 -1.62016 2.65378" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_mp9/smg_mp9_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_mp9_decal_d.mdl", | |
"worldmodel_decal_pos" : "2.72058 -5.68715 -2.01963" | |
} | |
}, | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_smg_mp9_mag.mdl", | |
"primary reserve ammo max" : "120" | |
}, | |
"inventory_image_data" : { | |
"camera_offset" : "10.0 3.0 -1.7", | |
"camera_fov" : "45", | |
"spot_light_key" : { | |
"position" : "-120 120 120", | |
"color" : "2 2.1 2.3", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"point_light_accent" : { | |
"position" : "30 30 20", | |
"color" : "0.25 0.25 0.25" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "smg_mp9", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "22.126101", | |
"UVScale" : "0.485000" | |
} | |
} | |
}, | |
"weapon_p90_prefab" : { | |
"prefab" : "smg", | |
"item_class" : "weapon_p90", | |
"item_name" : "#SFUI_WPNHUD_P90", | |
"item_description" : "#CSGO_Item_Desc_P90", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_p90", | |
"model_player" : "models/weapons/v_smg_p90.mdl", | |
"model_world" : "models/weapons/w_smg_p90.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_p90.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_p90/smg_p90_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_p90_decal_a.mdl", | |
"worldmodel_decal_pos" : "5.69832 -1.70705 -7.82337" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_p90/smg_p90_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_p90_decal_b.mdl", | |
"worldmodel_decal_pos" : "5.69832 -2.37658 -0.608743" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_p90/smg_p90_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_p90_decal_c.mdl", | |
"worldmodel_decal_pos" : "5.69832 -1.53075 3.86454" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_p90/smg_p90_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_p90_decal_d.mdl", | |
"worldmodel_decal_pos" : "5.69832 -2.26662 -11.4784" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_smg_p90_mag.mdl", | |
"primary reserve ammo max" : "100" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-3.0 -125.0 0.0", | |
"camera_offset" : "9.0 1.6 -2.7", | |
"spot_light_key" : { | |
"position" : "-120 120 120", | |
"color" : "2 2.1 2.3", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"spot_light_rim" : { | |
"position" : "-90 -120 -75", | |
"color" : "3 5 5", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.040000", | |
"outer_cone" : "0.500000" | |
}, | |
"point_light_accent" : { | |
"position" : "120 40 120", | |
"color" : "0.25 0.25 0.25" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "smg_p90", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "19.637100", | |
"UVScale" : "0.537000" | |
} | |
} | |
}, | |
"weapon_ump45_prefab" : { | |
"prefab" : "smg", | |
"item_class" : "weapon_ump45", | |
"item_name" : "#SFUI_WPNHUD_UMP45", | |
"item_description" : "#CSGO_Item_Desc_UMP45", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_ump45", | |
"model_player" : "models/weapons/v_smg_ump45.mdl", | |
"model_world" : "models/weapons/w_smg_ump45.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_ump45.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_ump45_decal_a.mdl", | |
"worldmodel_decal_pos" : "5.50499 0.125392 -4.81061" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_ump45_decal_b.mdl", | |
"worldmodel_decal_pos" : "5.50499 -0.425925 -1.94732" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_ump45_decal_c.mdl", | |
"worldmodel_decal_pos" : "5.50499 -0.246568 1.68466" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/smg_ump45/smg_ump45_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/smg_ump45_decal_d.mdl", | |
"worldmodel_decal_pos" : "5.50499 0.0477725 5.71236" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_smg_ump45_mag.mdl", | |
"primary reserve ammo max" : "100" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-4.0 -130.0 0.0", | |
"camera_offset" : "16.0 2.5 -2.0", | |
"point_light_accent" : { | |
"position" : "40 30 10", | |
"color" : "0.25 0.25 0.25" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "smg_ump45", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "29.215599", | |
"UVScale" : "0.882000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_rife01" | |
} | |
}, | |
"weapon_ak47_prefab" : { | |
"prefab" : "rifle", | |
"item_class" : "weapon_ak47", | |
"item_name" : "#SFUI_WPNHUD_AK47", | |
"item_description" : "#CSGO_Item_Desc_AK47", | |
"item_rarity" : "uncommon", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_ak47", | |
"model_player" : "models/weapons/v_rif_ak47.mdl", | |
"model_world" : "models/weapons/w_rif_ak47.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_ak47.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_ak47_decal_a.mdl", | |
"worldmodel_decal_pos" : "6.43516 -1.26887 -0.743033" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_ak47_decal_b.mdl", | |
"worldmodel_decal_pos" : "6.43516 -1.47404 3.01389" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_ak47_decal_c.mdl", | |
"worldmodel_decal_pos" : "6.43516 -1.34147 7.33494" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_ak47/rif_ak47_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_ak47_decal_d.mdl", | |
"worldmodel_decal_pos" : "6.43516 -1.31489 11.8284" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_rif_ak47_mag.mdl", | |
"primary reserve ammo max" : "90" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-2.0 -135.0 0.0", | |
"camera_offset" : "18.0 3.7 -2.5" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "rif_ak47", | |
"OrigMat" : "ak47", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "37.746201", | |
"UVScale" : "0.549000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_rife01" | |
} | |
}, | |
"weapon_aug_prefab" : { | |
"prefab" : "rifle", | |
"item_class" : "weapon_aug", | |
"item_name" : "#SFUI_WPNHUD_Aug", | |
"item_description" : "#CSGO_Item_Desc_Aug", | |
"item_rarity" : "common", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_aug", | |
"model_player" : "models/weapons/v_rif_aug.mdl", | |
"model_world" : "models/weapons/w_rif_aug.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_aug.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_aug/rif_aug_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_aug_decal_a.mdl", | |
"worldmodel_decal_pos" : "5.94244 -0.866151 -12.1983" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_aug/rif_aug_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_aug_decal_b.mdl", | |
"worldmodel_decal_pos" : "5.94244 -0.651087 -7.01863" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_aug/rif_aug_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_aug_decal_c.mdl", | |
"worldmodel_decal_pos" : "5.94244 -0.537151 -1.69533" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_aug/rif_aug_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_aug_decal_d.mdl", | |
"worldmodel_decal_pos" : "5.94244 0.0485253 2.80582" | |
} | |
}, | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_rif_aug_mag.mdl", | |
"aimsight capable" : "1", | |
"aimsight speed up" : "10.000000", | |
"aimsight speed down" : "8.000000", | |
"aimsight looseness" : "0.030000", | |
"aimsight eye pos" : "-1.56 -3.6 -0.07", | |
"aimsight pivot angle" : "0.78 -0.1 -0.03", | |
"aimsight fov" : "45", | |
"aimsight pivot forward" : "10", | |
"aimsight lens mask" : "models/weapons/v_rif_aug_scopelensmask.mdl", | |
"primary reserve ammo max" : "90" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-4.0 -130.0 0.0", | |
"camera_offset" : "19.0 3.4 -3.2", | |
"spot_light_rim" : { | |
"position" : "0 -80 -30", | |
"color" : "3 5 5", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.040000", | |
"outer_cone" : "0.500000" | |
}, | |
"point_light_accent" : { | |
"position" : "-10 30 -60", | |
"color" : "0.15 0.15 0.15" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "rif_aug", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "1", | |
"WeaponLength" : "31.066900", | |
"UVScale" : "0.763000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_rife01" | |
} | |
}, | |
"weapon_famas_prefab" : { | |
"prefab" : "rifle", | |
"item_class" : "weapon_famas", | |
"item_name" : "#SFUI_WPNHUD_Famas", | |
"item_description" : "#CSGO_Item_Desc_Famas", | |
"item_rarity" : "common", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_famas", | |
"model_player" : "models/weapons/v_rif_famas.mdl", | |
"model_world" : "models/weapons/w_rif_famas.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_famas.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_famas/rif_famas_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_famas_decal_a.mdl", | |
"worldmodel_decal_pos" : "5.62099 -1.58238 -7.33913" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_famas/rif_famas_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_famas_decal_b.mdl", | |
"worldmodel_decal_pos" : "5.62099 -1.06851 -3.05935" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_famas/rif_famas_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_famas_decal_c.mdl", | |
"worldmodel_decal_pos" : "5.62099 -1.41951 0.954913" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_famas/rif_famas_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_famas_decal_d.mdl", | |
"worldmodel_decal_pos" : "5.62099 -1.36689 4.66046" | |
} | |
}, | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_rif_famas_mag.mdl", | |
"primary reserve ammo max" : "90" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-3.0 -130.0 0.0", | |
"camera_offset" : "20.0 3.7 -3" | |
}, | |
"attributes" : { | |
"has burst mode" : "1", | |
"cycletime when in burst mode" : "0.550000", | |
"time between burst shots" : "0.075000" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "rif_famas", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "29.799999", | |
"UVScale" : "0.660000" | |
} | |
} | |
}, | |
"weapon_galilar_prefab" : { | |
"prefab" : "rifle", | |
"item_class" : "weapon_galilar", | |
"item_name" : "#SFUI_WPNHUD_GalilAR", | |
"item_description" : "#CSGO_Item_Desc_GalilAR", | |
"item_rarity" : "common", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_galilar", | |
"model_player" : "models/weapons/v_rif_galilar.mdl", | |
"model_world" : "models/weapons/w_rif_galilar.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_galilar.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_galilar_decal_a.mdl", | |
"worldmodel_decal_pos" : "4.56555 -1.10028 0.274424" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_galilar_decal_b.mdl", | |
"worldmodel_decal_pos" : "4.56555 -1.24267 3.98293" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_galilar_decal_c.mdl", | |
"worldmodel_decal_pos" : "4.56555 -0.371284 8.53896" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_galilar/rif_galilar_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_galilar_decal_d.mdl", | |
"worldmodel_decal_pos" : "4.56555 -2.11272 -8.68949" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_rif_galilar_mag.mdl", | |
"primary reserve ammo max" : "90" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-3.0 -130.0 0.0", | |
"camera_offset" : "18.0 3.8 -2.4" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "rif_galilar", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "32.973701", | |
"UVScale" : "0.750000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_rife01" | |
} | |
}, | |
"weapon_m4a1_prefab" : { | |
"prefab" : "rifle", | |
"item_class" : "weapon_m4a1", | |
"item_name" : "#SFUI_WPNHUD_M4A1", | |
"item_description" : "#CSGO_Item_Desc_M4A4", | |
"item_rarity" : "uncommon", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_m4a1", | |
"model_player" : "models/weapons/v_rif_m4a1.mdl", | |
"model_world" : "models/weapons/w_rif_m4a1.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_m4a1.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_m4a1_decal_a.mdl", | |
"worldmodel_decal_pos" : "4.68044 -1.48398 -1.69485" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_m4a1_decal_b.mdl", | |
"worldmodel_decal_pos" : "4.68044 -0.142594 1.60586" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_m4a1_decal_c.mdl", | |
"worldmodel_decal_pos" : "4.68044 -2.99986 3.05251" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_m4a1/rif_m4a1_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_m4a1_decal_d.mdl", | |
"worldmodel_decal_pos" : "4.68044 -0.615597 -10.4655" | |
} | |
}, | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_rif_m4a1_mag.mdl", | |
"primary reserve ammo max" : "90" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-2.0 -135.0 0.0", | |
"camera_offset" : "22.0 3.9 -3.0", | |
"point_light_accent" : { | |
"position" : "20 3 7", | |
"color" : "0.25 0.25 0.25" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "rif_m4a1", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "35.322601", | |
"UVScale" : "0.425000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_M4_s01" | |
} | |
}, | |
"weapon_sg556_prefab" : { | |
"prefab" : "rifle", | |
"item_class" : "weapon_sg556", | |
"item_name" : "#SFUI_WPNHUD_SG556", | |
"item_description" : "#CSGO_Item_Desc_SG553", | |
"item_rarity" : "common", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_sg556", | |
"model_player" : "models/weapons/v_rif_sg556.mdl", | |
"model_world" : "models/weapons/w_rif_sg556.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_sg556.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_sg556_decal_a.mdl", | |
"worldmodel_decal_pos" : "3.98088 -0.973739 -1.78859" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_sg556_decal_b.mdl", | |
"worldmodel_decal_pos" : "3.98088 -0.320671 1.4664" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_sg556_decal_c.mdl", | |
"worldmodel_decal_pos" : "3.98088 -1.23097 4.69249" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_sg556/rif_sg556_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_sg556_decal_d.mdl", | |
"worldmodel_decal_pos" : "3.98088 2.35159 2.18556" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_rif_sg556_mag.mdl", | |
"aimsight capable" : "1", | |
"aimsight speed up" : "10.000000", | |
"aimsight speed down" : "8.000000", | |
"aimsight looseness" : "0.030000", | |
"aimsight eye pos" : "0.72 -5.12 -1.33", | |
"aimsight pivot angle" : "0.52 0.04 0.72", | |
"aimsight fov" : "45", | |
"aimsight pivot forward" : "8", | |
"aimsight lens mask" : "models/weapons/v_rif_sg556_scopelensmask.mdl", | |
"primary reserve ammo max" : "90" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-12.0 -130.0 0.0", | |
"camera_offset" : "17.0 3.3 -3.4" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "rif_sg556", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "36.341801", | |
"UVScale" : "0.809000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_rife01" | |
} | |
}, | |
"weapon_awp_prefab" : { | |
"prefab" : "sniper_rifle", | |
"item_class" : "weapon_awp", | |
"item_name" : "#SFUI_WPNHUD_AWP", | |
"item_description" : "#CSGO_Item_Desc_AWP", | |
"item_rarity" : "uncommon", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_awp", | |
"model_player" : "models/weapons/v_snip_awp.mdl", | |
"model_world" : "models/weapons/w_snip_awp.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_awp.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_awp/snip_awp_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_awp_decal_a.mdl", | |
"worldmodel_decal_pos" : "6.59995 -3.74073 -8.22526" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_awp/snip_awp_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_awp_decal_b.mdl", | |
"worldmodel_decal_pos" : "6.59995 -2.05448 0.438974" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_awp/snip_awp_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_awp_decal_c.mdl", | |
"worldmodel_decal_pos" : "6.59995 -2.45321 5.47063" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_awp/snip_awp_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_awp_decal_d.mdl", | |
"worldmodel_decal_pos" : "6.59995 1.43277 9.50265" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-5.0 -140.0 0.0", | |
"camera_offset" : "25.0 0.6 -3.5", | |
"spot_light_key" : { | |
"position" : "-90 80 220", | |
"color" : "2 2.1 2.3", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"spot_light_rim" : { | |
"position" : "0 -130 -80", | |
"color" : "3 5 5", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.040000", | |
"outer_cone" : "0.500000" | |
}, | |
"point_light_accent" : { | |
"position" : "0 20 25", | |
"color" : "3 3 3" | |
} | |
}, | |
"attributes" : { | |
"unzoom after shot" : "1", | |
"primary reserve ammo max" : "30", | |
"icon display model" : "models/weapons/w_snip_awp_icon.mdl" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "snip_awp", | |
"OrigMat" : "awp", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "1", | |
"WeaponLength" : "53.803902", | |
"UVScale" : "1.029000" | |
} | |
} | |
}, | |
"weapon_g3sg1_prefab" : { | |
"prefab" : "sniper_rifle", | |
"item_class" : "weapon_g3sg1", | |
"item_name" : "#SFUI_WPNHUD_G3SG1", | |
"item_description" : "#CSGO_Item_Desc_G3SG1", | |
"item_rarity" : "common", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_g3sg1", | |
"model_player" : "models/weapons/v_snip_g3sg1.mdl", | |
"model_world" : "models/weapons/w_snip_g3sg1.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_g3sg1.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_g3sg1_decal_a.mdl", | |
"worldmodel_decal_pos" : "4.26159 -1.47014 -13.3375" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_g3sg1_decal_b.mdl", | |
"worldmodel_decal_pos" : "4.26159 -1.09835 -9.70334" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_g3sg1_decal_c.mdl", | |
"worldmodel_decal_pos" : "4.26159 -0.343464 -4.5291" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_g3sg1_decal_d.mdl", | |
"worldmodel_decal_pos" : "4.26159 3.07904 -5.97134" | |
}, | |
"4" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_g3sg1/snip_g3sg1_decal_e.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_g3sg1_decal_e.mdl", | |
"worldmodel_decal_pos" : "4.26159 -0.172825 7.0548" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_snip_g3sg1_mag.mdl", | |
"primary reserve ammo max" : "90" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-5.0 -140.0 0.0", | |
"camera_offset" : "28.0 2.7 -2.3" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "snip_g3sg1", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "1", | |
"WeaponLength" : "41.975601", | |
"UVScale" : "0.703000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_rife01" | |
} | |
}, | |
"weapon_scar20_prefab" : { | |
"prefab" : "sniper_rifle", | |
"item_class" : "weapon_scar20", | |
"item_name" : "#SFUI_WPNHUD_SCAR20", | |
"item_description" : "#CSGO_Item_Desc_SCAR20", | |
"item_rarity" : "common", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_scar20", | |
"model_player" : "models/weapons/v_snip_scar20.mdl", | |
"model_world" : "models/weapons/w_snip_scar20.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_scar20.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_scar20_decal_a.mdl", | |
"worldmodel_decal_pos" : "6.21142 -0.729553 -5.89217" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_scar20_decal_b.mdl", | |
"worldmodel_decal_pos" : "6.21142 -1.42952 -0.795702" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_scar20_decal_c.mdl", | |
"worldmodel_decal_pos" : "6.21142 -2.36369 3.14003" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_scar20/snip_scar20_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_scar20_decal_d.mdl", | |
"worldmodel_decal_pos" : "6.21142 0.828503 4.35461" | |
} | |
}, | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_snip_scar20_mag.mdl", | |
"primary reserve ammo max" : "90" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-5.0 -140.0 0.0", | |
"camera_offset" : "30.0 2.0 -3.0" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "snip_scar20", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "1", | |
"WeaponLength" : "44.051601", | |
"UVScale" : "0.840000" | |
} | |
} | |
}, | |
"weapon_ssg08_prefab" : { | |
"prefab" : "sniper_rifle", | |
"item_class" : "weapon_ssg08", | |
"item_name" : "#SFUI_WPNHUD_SSG08", | |
"item_description" : "#CSGO_Item_Desc_SSG08", | |
"item_rarity" : "common", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_ssg08", | |
"model_player" : "models/weapons/v_snip_ssg08.mdl", | |
"model_world" : "models/weapons/w_snip_ssg08.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_ssg08.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_ssg08_decal_a.mdl", | |
"worldmodel_decal_pos" : "8.63116 -2.90587 0.500683" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_ssg08_decal_b.mdl", | |
"worldmodel_decal_pos" : "8.63116 -2.62622 4.20457" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_ssg08_decal_c.mdl", | |
"worldmodel_decal_pos" : "8.63116 -4.04614 7.6089" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/snip_ssg08/snip_ssg08_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/snip_ssg08_decal_d.mdl", | |
"worldmodel_decal_pos" : "8.63116 -2.43748 11.1247" | |
} | |
}, | |
"used_by_classes" : { | |
"counter-terrorists" : "1", | |
"terrorists" : "1" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-5.0 -140.0 0.0", | |
"camera_offset" : "20.0 4.0 -2.4", | |
"spot_light_key" : { | |
"position" : "-120 120 120", | |
"color" : "2 2.1 2.3", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
} | |
}, | |
"attributes" : { | |
"unzoom after shot" : "1", | |
"primary reserve ammo max" : "90" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "snip_ssg08", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "1", | |
"WeaponLength" : "49.181999", | |
"UVScale" : "1.084000" | |
}, | |
"PaintableMaterial1" : { | |
"Name" : "snip_ssg08_scope", | |
"FolderName" : "snip_ssg08", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "13.859800", | |
"UVScale" : "0.424000" | |
} | |
} | |
}, | |
"weapon_mag7_prefab" : { | |
"prefab" : "shotgun", | |
"item_class" : "weapon_mag7", | |
"item_name" : "#SFUI_WPNHUD_Mag7", | |
"item_description" : "#CSGO_Item_Desc_Mag7", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_mag7", | |
"model_player" : "models/weapons/v_shot_mag7.mdl", | |
"model_world" : "models/weapons/w_shot_mag7.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_mag7.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_mag7_decal_a.mdl", | |
"worldmodel_decal_pos" : "3.00839 -0.899957 -3.85738" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_mag7_decal_b.mdl", | |
"worldmodel_decal_pos" : "3.00839 -1.55638 -1.16337" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_mag7_decal_c.mdl", | |
"worldmodel_decal_pos" : "3.00839 -0.992867 1.63766" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_mag7/shot_mag7_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_mag7_decal_d.mdl", | |
"worldmodel_decal_pos" : "3.00839 -0.953268 4.99879" | |
} | |
}, | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_shot_mag7_mag.mdl", | |
"primary reserve ammo max" : "32" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-3.0 -130.0 0.0", | |
"camera_offset" : "13.0 2.3 -1.7", | |
"spot_light_key" : { | |
"position" : "-120 120 120", | |
"color" : "2 2.1 2.3", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"point_light_accent" : { | |
"position" : "40 30 10", | |
"color" : "0.25 0.25 0.25" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "shot_mag7", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "26.356800", | |
"UVScale" : "0.612000" | |
} | |
} | |
}, | |
"weapon_nova_prefab" : { | |
"prefab" : "shotgun", | |
"item_class" : "weapon_nova", | |
"item_name" : "#SFUI_WPNHUD_Nova", | |
"item_description" : "#CSGO_Item_Desc_Nova", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_nova", | |
"model_player" : "models/weapons/v_shot_nova.mdl", | |
"model_world" : "models/weapons/w_shot_nova.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_nova.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_nova/shot_nova_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_nova_decal_a.mdl", | |
"worldmodel_decal_pos" : "-0.834116 1.96027 -2.80232", | |
"worldmodel_decal_end" : "-0.834116 -3.23734 2.3953" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_nova/shot_nova_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_nova_decal_b.mdl", | |
"worldmodel_decal_pos" : "2.84688 -0.472176 0.0710886" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_nova/shot_nova_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_nova_decal_c.mdl", | |
"worldmodel_decal_pos" : "2.84688 -0.174112 3.68293" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_nova/shot_nova_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_nova_decal_d.mdl", | |
"worldmodel_decal_pos" : "2.84688 -0.0459781 7.01211" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"primary reserve ammo max" : "32" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-5.0 -137.0 0.0", | |
"camera_offset" : "15.0 5.7 -2.5", | |
"camera_fov" : "45", | |
"spot_light_key" : { | |
"position" : "-190 120 80", | |
"color" : "3 3.15 3.45", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"spot_light_rim" : { | |
"position" : "0 -80 -110", | |
"color" : "3 5 5", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.040000", | |
"outer_cone" : "0.500000" | |
}, | |
"point_light_accent" : { | |
"position" : "90 0 0", | |
"color" : "6 6 6" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "shot_nova", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "39.695000", | |
"UVScale" : "0.744000" | |
} | |
} | |
}, | |
"weapon_sawedoff_prefab" : { | |
"prefab" : "shotgun", | |
"item_class" : "weapon_sawedoff", | |
"item_name" : "#SFUI_WPNHUD_Sawedoff", | |
"item_description" : "#CSGO_Item_Desc_SawedOff", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_sawedoff", | |
"model_player" : "models/weapons/v_shot_sawedoff.mdl", | |
"model_world" : "models/weapons/w_shot_sawedoff.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_sawedoff.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_sawedoff_decal_a.mdl", | |
"worldmodel_decal_pos" : "3.83262 -0.159466 0.515205" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_sawedoff_decal_b.mdl", | |
"worldmodel_decal_pos" : "3.83262 -0.578349 3.14057" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_sawedoff_decal_c.mdl", | |
"worldmodel_decal_pos" : "3.83262 0.148002 6.48249" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_sawedoff/shot_sawedoff_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_sawedoff_decal_d.mdl", | |
"worldmodel_decal_pos" : "3.83262 -0.00703843 13.8387" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1" | |
}, | |
"attributes" : { | |
"primary reserve ammo max" : "32" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-3.0 -130.0 0.0", | |
"camera_offset" : "11.0 2.6 -2.3", | |
"spot_light_rim" : { | |
"position" : "0 -80 -100", | |
"color" : "3 5 5", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.040000", | |
"outer_cone" : "0.500000" | |
}, | |
"point_light_accent" : { | |
"position" : "90 0 0", | |
"color" : "2 2 2" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "shot_sawedoff", | |
"OrigMat" : "shot_sawedoff_01", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "26.486500", | |
"UVScale" : "0.445000" | |
} | |
} | |
}, | |
"weapon_xm1014_prefab" : { | |
"prefab" : "shotgun", | |
"item_class" : "weapon_xm1014", | |
"item_name" : "#SFUI_WPNHUD_xm1014", | |
"item_description" : "#CSGO_Item_Desc_XM1014", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_xm1014", | |
"model_player" : "models/weapons/v_shot_xm1014.mdl", | |
"model_world" : "models/weapons/w_shot_xm1014.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_xm1014.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_xm1014_decal_a.mdl", | |
"worldmodel_decal_pos" : "4.07802 -2.0993 0.558244" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_xm1014_decal_b.mdl", | |
"worldmodel_decal_pos" : "4.07802 -1.42846 3.59596" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_xm1014_decal_c.mdl", | |
"worldmodel_decal_pos" : "4.07802 -1.42846 6.83013" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/shot_xm1014/shot_xm1014_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/shot_xm1014_decal_d.mdl", | |
"worldmodel_decal_pos" : "4.07802 -1.63849 10.201" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"primary reserve ammo max" : "32" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-4.0 -137.0 0.0", | |
"camera_offset" : "22.0 4.5 -2.5", | |
"spot_light_key" : { | |
"position" : "-190 120 80", | |
"color" : "3 3.15 3.45", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"spot_light_rim" : { | |
"position" : "0 -80 -110", | |
"color" : "3 5 5", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.040000", | |
"outer_cone" : "0.500000" | |
}, | |
"point_light_accent" : { | |
"position" : "90 0 0", | |
"color" : "6 6 6" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "shot_xm1014", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "37.179401", | |
"UVScale" : "0.540000" | |
} | |
} | |
}, | |
"weapon_m249_prefab" : { | |
"prefab" : "machinegun", | |
"item_class" : "weapon_m249", | |
"item_name" : "#SFUI_WPNHUD_M249", | |
"item_description" : "#CSGO_Item_Desc_M249", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_m249", | |
"model_player" : "models/weapons/v_mach_m249para.mdl", | |
"model_world" : "models/weapons/w_mach_m249.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_m249.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/mach_m249para_decal_a.mdl", | |
"worldmodel_decal_pos" : "2.54733 1.61972 -4.21781" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/mach_m249para_decal_b.mdl", | |
"worldmodel_decal_pos" : "2.54733 -0.737351 -1.1101" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/mach_m249para_decal_c.mdl", | |
"worldmodel_decal_pos" : "2.54733 0.422171 2.34458" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/mach_m249para/mach_m249para_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/mach_m249para_decal_d.mdl", | |
"worldmodel_decal_pos" : "1.39755 -2.96088 3.20752", | |
"worldmodel_decal_end" : "1.39755 -2.96088 12.263" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"primary reserve ammo max" : "200" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-12.0 -142.0 0.0", | |
"camera_offset" : "15.0 6.6 -2.0", | |
"point_light_accent" : { | |
"position" : "40 30 10", | |
"color" : "0.25 0.25 0.25" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "mach_m249para", | |
"OrigMat" : "m249", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "47.733200", | |
"UVScale" : "1.151000" | |
} | |
} | |
}, | |
"weapon_negev_prefab" : { | |
"prefab" : "machinegun", | |
"item_class" : "weapon_negev", | |
"item_name" : "#SFUI_WPNHUD_Negev", | |
"item_description" : "#CSGO_Item_Desc_Negev", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_negev", | |
"model_player" : "models/weapons/v_mach_negev.mdl", | |
"model_world" : "models/weapons/w_mach_negev.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_negev.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/mach_negev/mach_negev_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/mach_negev_decal_a.mdl", | |
"worldmodel_decal_pos" : "2.05443 0.308304 -3.33488" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/mach_negev/mach_negev_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/mach_negev_decal_b.mdl", | |
"worldmodel_decal_pos" : "2.05443 0.0774615 0.03991" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/mach_negev/mach_negev_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/mach_negev_decal_c.mdl", | |
"worldmodel_decal_pos" : "3.41455 -4.0248 5.52676" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/mach_negev/mach_negev_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/mach_negev_decal_d.mdl", | |
"worldmodel_decal_pos" : "1.92214 0.210319 9.16643" | |
} | |
}, | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"primary reserve ammo max" : "200" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-6.0 -146.0 0.0", | |
"camera_offset" : "24.0 5.4 -1.5", | |
"spot_light_key" : { | |
"position" : "-120 120 120", | |
"color" : "2 2.1 2.3", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"point_light_accent" : { | |
"position" : "40 30 30", | |
"color" : "0.5 0.5 0.5" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "mach_negev", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "42.354000", | |
"UVScale" : "0.740000" | |
} | |
} | |
}, | |
"weapon_decoy_prefab" : { | |
"prefab" : "grenade", | |
"item_class" : "weapon_decoy", | |
"item_name" : "#SFUI_WPNHUD_DECOY", | |
"item_description" : "#CSGO_Item_Desc_Decoy_Grenade", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_decoy", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_decoy.vtf", | |
"model_player" : "models/weapons/v_eq_decoy.mdl", | |
"model_world" : "models/weapons/w_eq_decoy.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
} | |
}, | |
"weapon_flashbang_prefab" : { | |
"prefab" : "grenade", | |
"item_class" : "weapon_flashbang", | |
"item_name" : "#SFUI_WPNHUD_FLASHBANG", | |
"item_description" : "#CSGO_Item_Desc_Flashbang", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_flashbang", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_flashbang.vtf", | |
"model_player" : "models/weapons/v_eq_flashbang.mdl", | |
"model_world" : "models/weapons/w_eq_flashbang.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
} | |
}, | |
"weapon_hegrenade_prefab" : { | |
"prefab" : "grenade", | |
"item_class" : "weapon_hegrenade", | |
"item_name" : "#SFUI_WPNHUD_HE_Grenade", | |
"item_description" : "#CSGO_Item_Desc_HE_Grenade", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_hegrenade", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_hegrenade.vtf", | |
"model_player" : "models/weapons/v_eq_fraggrenade.mdl", | |
"model_world" : "models/weapons/w_eq_fraggrenade.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
} | |
}, | |
"weapon_incgrenade_prefab" : { | |
"prefab" : "grenade", | |
"item_class" : "weapon_incgrenade", | |
"item_name" : "#SFUI_WPNHUD_IncGrenade", | |
"item_description" : "#CSGO_Item_Desc_Incindiary_Grenade", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_incgrenade", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_incgrenade.vtf", | |
"model_player" : "models/weapons/v_eq_incendiarygrenade.mdl", | |
"model_world" : "models/weapons/w_eq_incendiarygrenade.mdl", | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
} | |
}, | |
"weapon_molotov_prefab" : { | |
"prefab" : "grenade", | |
"item_class" : "weapon_molotov", | |
"item_name" : "#SFUI_WPNHUD_MOLOTOV", | |
"item_description" : "#CSGO_Item_Desc_Molotov", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_molotov", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_molotov.vtf", | |
"model_player" : "models/weapons/v_eq_molotov.mdl", | |
"model_world" : "models/weapons/w_eq_molotov.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1" | |
} | |
}, | |
"weapon_smokegrenade_prefab" : { | |
"prefab" : "grenade", | |
"item_class" : "weapon_smokegrenade", | |
"item_name" : "#SFUI_WPNHUD_Smoke_Grenade", | |
"item_description" : "#CSGO_Item_Desc_Smoke_Grenade", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_smokegrenade", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_smokegrenade.vtf", | |
"model_player" : "models/weapons/v_eq_smokegrenade.mdl", | |
"model_world" : "models/weapons/w_eq_smokegrenade.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
} | |
}, | |
"weapon_m4a1_silencer_prefab" : { | |
"prefab" : "rifle", | |
"item_class" : "weapon_m4a1", | |
"item_name" : "#SFUI_WPNHUD_M4_SILENCER", | |
"item_description" : "#CSGO_Item_Desc_m4a1_silencer", | |
"item_rarity" : "uncommon", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_m4a1_silencer", | |
"model_player" : "models/weapons/v_rif_m4a1_s.mdl", | |
"model_world" : "models/weapons/w_rif_m4a1_s.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_m4a1_silencer.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_m4a1_s_decal_a.mdl", | |
"worldmodel_decal_pos" : "5.84555 -0.430558 -2.30653" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_m4a1_s_decal_b.mdl", | |
"worldmodel_decal_pos" : "5.84555 -3.0645 3.20751" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_m4a1_s_decal_c.mdl", | |
"worldmodel_decal_pos" : "5.84555 -1.2629 0.385118" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/rif_m4a1_s/rif_m4a1_s_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/rif_m4a1_s_decal_d.mdl", | |
"worldmodel_decal_pos" : "5.84555 0.245251 7.90765" | |
} | |
}, | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "2.0 -135.0 0.0", | |
"camera_offset" : "13.0 5.1 -4.0" | |
}, | |
"attributes" : { | |
"icon display model" : "models/weapons/w_rif_m4a1_s_icon.mdl", | |
"magazine model" : "models/weapons/w_rif_m4a1_s_mag.mdl", | |
"primary reserve ammo max" : "40", | |
"is full auto" : "1", | |
"time between burst shots" : "0.090000", | |
"has silencer" : "1", | |
"in game price" : "3100", | |
"primary clip size" : "20", | |
"heat per shot" : "0.350000", | |
"addon scale" : "0.900000", | |
"tracer frequency" : "3", | |
"tracer frequency alt" : "0", | |
"max player speed" : "225", | |
"max player speed alt" : "225", | |
"crosshair min distance" : "4", | |
"crosshair delta distance" : "3", | |
"penetration" : "2", | |
"damage" : "33", | |
"range" : "8192", | |
"range modifier" : "0.990000", | |
"bullets" : "1", | |
"cycletime" : "0.100000", | |
"time to idle" : "1.500000", | |
"idle interval" : "60", | |
"flinch velocity modifier large" : "0.400000", | |
"flinch velocity modifier small" : "0.400000", | |
"spread" : "0.600000", | |
"inaccuracy crouch" : "3.680000", | |
"inaccuracy stand" : "4.900000", | |
"inaccuracy jump" : "0.656000", | |
"inaccuracy land" : "0.197000", | |
"inaccuracy ladder" : "110.994003", | |
"inaccuracy fire" : "12.000000", | |
"inaccuracy move" : "92.879997", | |
"spread alt" : "0.500000", | |
"inaccuracy crouch alt" : "3.680000", | |
"inaccuracy stand alt" : "4.900000", | |
"inaccuracy jump alt" : "0.656000", | |
"inaccuracy land alt" : "0.197000", | |
"inaccuracy ladder alt" : "113.671997", | |
"inaccuracy fire alt" : "7.000000", | |
"inaccuracy move alt" : "122.000000", | |
"recovery time crouch" : "0.302625", | |
"recovery time stand" : "0.423676", | |
"recoil seed" : "38965", | |
"recoil angle" : "0", | |
"recoil angle alt" : "0", | |
"recoil angle variance" : "65", | |
"recoil angle variance alt" : "65", | |
"recoil magnitude" : "25", | |
"recoil magnitude variance" : "3", | |
"recoil magnitude alt" : "21", | |
"recoil magnitude variance alt" : "0" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "rif_m4a1_s", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "47.460999", | |
"UVScale" : "0.916700" | |
} | |
}, | |
"visuals" : { | |
"primary_ammo" : "BULLET_PLAYER_556MM_SMALL", | |
"weapon_type" : "Rifle", | |
"addon_location" : "primary_rifle", | |
"eject_brass_effect" : "weapon_shell_casing_rifle", | |
"tracer_effect" : "weapon_tracers_assrifle", | |
"muzzle_flash_effect_1st_person" : "weapon_muzzle_flash_assaultrifle", | |
"muzzle_flash_effect_1st_person_alt" : "weapon_muzzle_flash_assaultrifle_silenced", | |
"muzzle_flash_effect_3rd_person" : "weapon_muzzle_flash_assaultrifle", | |
"muzzle_flash_effect_3rd_person_alt" : "weapon_muzzle_flash_assaultrifle_silenced", | |
"heat_effect" : "weapon_muzzle_smoke", | |
"player_animation_extension" : "m4_s", | |
"taunt_sequence" : "taunt_M4_s01", | |
"sound_single_shot" : "Weapon_M4A1.SilencedSingle", | |
"sound_special1" : "Weapon_M4A1.Silenced" | |
} | |
}, | |
"weapon_usp_silencer_prefab" : { | |
"prefab" : "secondary", | |
"item_class" : "weapon_hkp2000", | |
"item_name" : "#SFUI_WPNHUD_USP_SILENCER", | |
"item_description" : "#CSGO_Item_Desc_usp_silencer", | |
"item_rarity" : "uncommon", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_usp_silencer", | |
"model_player" : "models/weapons/v_pist_223.mdl", | |
"model_world" : "models/weapons/w_pist_223.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_usp_silencer.vtf", | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_223/pist_223_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_223_decal_a.mdl", | |
"worldmodel_decal_pos" : "3.91123 -3.83728 -2.80839" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_223/pist_223_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_223_decal_b.mdl", | |
"worldmodel_decal_pos" : "3.91123 -0.668155 -2.19396" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_223/pist_223_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_223_decal_c.mdl", | |
"worldmodel_decal_pos" : "3.91123 -0.53261 0.751452" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_223/pist_223_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_223_decal_d.mdl", | |
"worldmodel_decal_pos" : "3.91123 -0.617352 3.43111" | |
} | |
}, | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "-1.0 -125.0 0.0", | |
"camera_offset" : "12.0 1.5 -1.8", | |
"camera_fov" : "30.000000" | |
}, | |
"attributes" : { | |
"magazine model" : "models/weapons/w_pist_223_mag.mdl", | |
"has silencer" : "1", | |
"spread" : "2.500000", | |
"spread alt" : "1.500000", | |
"inaccuracy fire" : "71.000000", | |
"inaccuracy fire alt" : "52.000000", | |
"inaccuracy move" : "13.870000", | |
"recoil magnitude" : "29", | |
"recoil magnitude alt" : "23", | |
"tracer frequency" : "1", | |
"tracer frequency alt" : "0", | |
"primary clip size" : "12", | |
"primary reserve ammo max" : "24" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "pist_223", | |
"FolderName" : "pist_223", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "18.016001", | |
"UVScale" : "0.516000" | |
} | |
}, | |
"visuals" : { | |
"taunt_sequence" : "taunt_pistolSpin01", | |
"sound_single_shot" : "Weapon_USP.Single", | |
"sound_special1" : "Weapon_USP.SilencedShot", | |
"primary_ammo" : "BULLET_PLAYER_357SIG_SMALL" | |
} | |
}, | |
"weapon_revolver_prefab" : { | |
"prefab" : "secondary", | |
"item_class" : "weapon_deagle", | |
"item_name" : "#SFUI_WPNHUD_REVOLVER", | |
"item_description" : "#CSGO_Item_Desc_Revolver", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_revolver", | |
"item_rarity" : "common", | |
"model_player" : "models/weapons/v_pist_revolver.mdl", | |
"model_world" : "models/weapons/w_pist_revolver.mdl", | |
"model_dropped" : "models/weapons/w_pist_revolver_dropped.mdl", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_revolver.vtf", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"stickers" : { | |
"0" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_a.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_revolver_decal_a.mdl", | |
"worldmodel_decal_pos" : "2.53443 -3.22857 -1.90564" | |
}, | |
"1" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_b.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_revolver_decal_b.mdl", | |
"worldmodel_decal_pos" : "2.53443 -0.989865 -1.12229" | |
}, | |
"2" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_c.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_revolver_decal_c.mdl", | |
"worldmodel_decal_pos" : "2.53443 -0.955564 1.77999" | |
}, | |
"3" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_d.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_revolver_decal_d.mdl", | |
"worldmodel_decal_pos" : "2.53443 -0.929928 4.8028" | |
}, | |
"4" : { | |
"viewmodel_material" : "materials/models/weapons/customization/pist_revolver/pist_revolver_decal_e.vmt", | |
"viewmodel_geometry" : "models/weapons/stickers/v_models/pist_revolver_decal_e.mdl", | |
"worldmodel_decal_pos" : "2.53443 -0.955564 1.77999", | |
"worldmodel_decal_end" : "2.53443 -0.955564 -1.77999" | |
} | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "0.0 -130.0 0.0", | |
"camera_offset" : "5.0 1.2 -1.2" | |
}, | |
"attributes" : { | |
"icon display model" : "models/weapons/w_pist_revolver_icon.mdl", | |
"is revolver" : "1", | |
"is full auto" : "1", | |
"in game price" : "850", | |
"primary clip size" : "8", | |
"primary reserve ammo max" : "8", | |
"crosshair min distance" : "4", | |
"crosshair delta distance" : "3", | |
"penetration" : "2", | |
"damage" : "86", | |
"range modifier" : "0.940000", | |
"bullets" : "1", | |
"time to idle" : "1.500000", | |
"idle interval" : "60", | |
"flinch velocity modifier large" : "0.400000", | |
"flinch velocity modifier small" : "0.400000", | |
"spread" : "0.520000", | |
"inaccuracy crouch" : "1.000000", | |
"inaccuracy stand" : "2.000000", | |
"inaccuracy jump" : "0.240000", | |
"inaccuracy land" : "0.130000", | |
"inaccuracy ladder" : "12.000000", | |
"inaccuracy fire" : "50.000000", | |
"inaccuracy move" : "6.500000", | |
"max player speed" : "180", | |
"cycletime" : "0.500000", | |
"spread alt" : "68.000000", | |
"inaccuracy crouch alt" : "5.000000", | |
"inaccuracy stand alt" : "12.000000", | |
"inaccuracy jump alt" : "0.320000", | |
"inaccuracy land alt" : "0.150000", | |
"inaccuracy ladder alt" : "35.000000", | |
"inaccuracy fire alt" : "55.000000", | |
"inaccuracy move alt" : "36.000000", | |
"max player speed alt" : "220", | |
"cycletime alt" : "0.400000", | |
"recovery time crouch" : "0.700000", | |
"recovery time stand" : "0.900000", | |
"recoil seed" : "12345", | |
"recoil angle" : "0", | |
"recoil angle variance" : "40", | |
"recoil magnitude" : "20", | |
"recoil magnitude variance" : "0", | |
"recoil angle alt" : "3", | |
"recoil angle variance alt" : "50", | |
"recoil magnitude alt" : "45", | |
"recoil magnitude variance alt" : "6" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "pist_revolver", | |
"FolderName" : "pist_revolver", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "12.182200", | |
"UVScale" : "0.500000" | |
} | |
}, | |
"visuals" : { | |
"sound_single_shot" : "Weapon_Revolver.Single", | |
"muzzle_flash_effect_1st_person" : "weapon_muzzle_flash_assaultrifle", | |
"muzzle_flash_effect_3rd_person" : "weapon_muzzle_flash_assaultrifle", | |
"heat_effect" : "weapon_muzzle_smoke" | |
} | |
}, | |
"coupon_prefab" : { | |
"prefab" : "weapon_case_base", | |
"item_name" : "#CSGO_Tool_Coupon", | |
"item_description" : "#CSGO_Tool_Coupon", | |
"image_inventory" : "econ/coupon/offer", | |
"item_type" : "coupon", | |
"tool" : { | |
"usage_capabilities" : { | |
"usable_out_of_game" : "1" | |
} | |
}, | |
"attributes" : { | |
"cannot trade" : "1", | |
"expiration date" : { | |
"attribute_class" : "expiration_date", | |
"force_gc_to_generate" : "1", | |
"use_custom_logic" : "expiration_period_days_from_now", | |
"value" : "2" | |
} | |
} | |
}, | |
"coupon_enfu_capsule_prefab" : { | |
"prefab" : "coupon_prefab" | |
}, | |
"coupon_pinups_capsule_prefab" : { | |
"prefab" : "coupon_prefab" | |
}, | |
"coupon_slid3_capsule_prefab" : { | |
"prefab" : "coupon_prefab" | |
}, | |
"coupon_team_roles_capsule_prefab" : { | |
"prefab" : "coupon_prefab" | |
}, | |
"dhw14_sticker_capsule_prefab" : { | |
"first_sale_date" : "2014/11/20", | |
"prefab" : "weapon_case_base", | |
"item_type" : "self_opening_purchase", | |
"attributes" : { | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
} | |
}, | |
"eslkatowice2015_sticker_capsule_prefab" : { | |
"first_sale_date" : "2015/2/27", | |
"prefab" : "weapon_case_base", | |
"item_type" : "self_opening_purchase", | |
"attributes" : { | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
} | |
}, | |
"eslcologne2015_sticker_capsule_prefab" : { | |
"first_sale_date" : "2015/8/10", | |
"prefab" : "weapon_case_base", | |
"item_type" : "self_opening_purchase", | |
"attributes" : { | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
} | |
}, | |
"cluj2015_sticker_capsule_prefab" : { | |
"first_sale_date" : "2015/10/20", | |
"prefab" : "weapon_case_base", | |
"item_type" : "self_opening_purchase", | |
"attributes" : { | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
} | |
}, | |
"campaign_prefab" : { | |
"image_inventory" : "econ/tools/campaign", | |
"attributes" : { | |
"cannot trade" : "1", | |
"campaign completion bitfield" : { | |
"attribute_class" : "campaign_completion_bitfield", | |
"force_gc_to_generate" : "1", | |
"value" : "0" | |
} | |
}, | |
"capabilities" : { | |
"can_delete" : "0" | |
}, | |
"item_class" : "collectible_item", | |
"item_type" : "campaign", | |
"item_type_name" : "#campaign", | |
"icon_default_image" : "materials/icons/inventory_icon_campaign.vtf", | |
"image_inventory" : "backpack/crafting/campaign", | |
"item_quality" : "unique", | |
"item_rarity" : "common", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"image_inventory_size_w" : "128", | |
"image_inventory_size_h" : "82", | |
"mouse_pressed_sound" : "ui/item_paper_pickup.wav", | |
"drop_sound" : "ui/item_paper_pickup.wav" | |
} | |
}, | |
"items" : { | |
"default" : { | |
"name" : "default", | |
"item_class" : "weapon_knife", | |
"hidden" : "1", | |
"item_name" : "#SFUI_WPNHUD_Knife", | |
"item_slot" : "melee", | |
"item_quality" : "unique", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1" | |
}, | |
"1" : { | |
"name" : "weapon_deagle", | |
"prefab" : "weapon_deagle_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "secondary4" | |
}, | |
"2" : { | |
"name" : "weapon_elite", | |
"prefab" : "weapon_elite_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "secondary1" | |
}, | |
"3" : { | |
"name" : "weapon_fiveseven", | |
"prefab" : "weapon_fiveseven_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "secondary3", | |
"item_shares_equip_slot" : "1" | |
}, | |
"4" : { | |
"name" : "weapon_glock", | |
"prefab" : "weapon_glock_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "secondary0" | |
}, | |
"7" : { | |
"name" : "weapon_ak47", | |
"prefab" : "weapon_ak47_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "rifle1" | |
}, | |
"8" : { | |
"name" : "weapon_aug", | |
"prefab" : "weapon_aug_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "rifle3" | |
}, | |
"9" : { | |
"name" : "weapon_awp", | |
"prefab" : "weapon_awp_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "rifle4" | |
}, | |
"10" : { | |
"name" : "weapon_famas", | |
"prefab" : "weapon_famas_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "rifle0" | |
}, | |
"11" : { | |
"name" : "weapon_g3sg1", | |
"prefab" : "weapon_g3sg1_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "rifle5" | |
}, | |
"13" : { | |
"name" : "weapon_galilar", | |
"prefab" : "weapon_galilar_prefab", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_quality" : "normal", | |
"item_sub_position" : "rifle0" | |
}, | |
"14" : { | |
"name" : "weapon_m249", | |
"prefab" : "weapon_m249_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "heavy3" | |
}, | |
"16" : { | |
"name" : "weapon_m4a1", | |
"prefab" : "weapon_m4a1_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "rifle1", | |
"item_shares_equip_slot" : "1" | |
}, | |
"17" : { | |
"name" : "weapon_mac10", | |
"prefab" : "weapon_mac10_prefab", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_quality" : "normal", | |
"item_sub_position" : "smg0" | |
}, | |
"19" : { | |
"name" : "weapon_p90", | |
"prefab" : "weapon_p90_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "smg3" | |
}, | |
"24" : { | |
"name" : "weapon_ump45", | |
"prefab" : "weapon_ump45_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "smg2" | |
}, | |
"25" : { | |
"name" : "weapon_xm1014", | |
"prefab" : "weapon_xm1014_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "heavy1" | |
}, | |
"26" : { | |
"name" : "weapon_bizon", | |
"prefab" : "weapon_bizon_prefab", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_quality" : "normal", | |
"item_sub_position" : "smg4" | |
}, | |
"27" : { | |
"name" : "weapon_mag7", | |
"prefab" : "weapon_mag7_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "heavy2" | |
}, | |
"28" : { | |
"name" : "weapon_negev", | |
"prefab" : "weapon_negev_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "heavy4" | |
}, | |
"29" : { | |
"name" : "weapon_sawedoff", | |
"prefab" : "weapon_sawedoff_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "heavy2" | |
}, | |
"30" : { | |
"name" : "weapon_tec9", | |
"prefab" : "weapon_tec9_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "secondary3", | |
"item_shares_equip_slot" : "1" | |
}, | |
"31" : { | |
"name" : "weapon_taser", | |
"prefab" : "equipment", | |
"item_class" : "weapon_taser", | |
"item_name" : "#SFUI_WPNHUD_Taser", | |
"item_description" : "#CSGO_Item_Desc_Taser", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "equipment2", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_taser", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_taser.vtf", | |
"model_player" : "models/weapons/v_eq_taser.mdl", | |
"model_world" : "models/weapons/w_eq_taser.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
} | |
}, | |
"32" : { | |
"name" : "weapon_hkp2000", | |
"prefab" : "weapon_hkp2000_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "secondary0" | |
}, | |
"33" : { | |
"name" : "weapon_mp7", | |
"prefab" : "weapon_mp7_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "smg1" | |
}, | |
"34" : { | |
"name" : "weapon_mp9", | |
"prefab" : "weapon_mp9_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "smg0" | |
}, | |
"35" : { | |
"name" : "weapon_nova", | |
"prefab" : "weapon_nova_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "heavy0" | |
}, | |
"36" : { | |
"name" : "weapon_p250", | |
"prefab" : "weapon_p250_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "secondary2" | |
}, | |
"38" : { | |
"name" : "weapon_scar20", | |
"prefab" : "weapon_scar20_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "rifle5" | |
}, | |
"39" : { | |
"name" : "weapon_sg556", | |
"prefab" : "weapon_sg556_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "rifle3" | |
}, | |
"40" : { | |
"name" : "weapon_ssg08", | |
"prefab" : "weapon_ssg08_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "rifle2" | |
}, | |
"42" : { | |
"name" : "weapon_knife", | |
"prefab" : "melee", | |
"item_name" : "#SFUI_WPNHUD_Knife", | |
"item_description" : "#CSGO_Item_desc_Knife", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "melee", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_knife", | |
"model_player" : "models/weapons/v_knife_default_ct.mdl", | |
"model_world" : "models/weapons/w_knife_default_ct.mdl", | |
"used_by_classes" : { | |
"counter-terrorists" : "1" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "0.0 -70.0 25.0", | |
"camera_offset" : "5.0 0 -2.5" | |
}, | |
"attributes" : { | |
"icon display model" : "models/weapons/w_knife_default_ct.mdl", | |
"pedestal display model" : "models/weapons/v_knife_default_ct_inspect.mdl" | |
} | |
}, | |
"43" : { | |
"name" : "weapon_flashbang", | |
"prefab" : "weapon_flashbang_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "grenade2" | |
}, | |
"44" : { | |
"name" : "weapon_hegrenade", | |
"prefab" : "weapon_hegrenade_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "grenade3" | |
}, | |
"45" : { | |
"name" : "weapon_smokegrenade", | |
"prefab" : "weapon_smokegrenade_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "grenade4" | |
}, | |
"46" : { | |
"name" : "weapon_molotov", | |
"prefab" : "weapon_molotov_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "grenade0" | |
}, | |
"47" : { | |
"name" : "weapon_decoy", | |
"prefab" : "weapon_decoy_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "grenade1" | |
}, | |
"48" : { | |
"name" : "weapon_incgrenade", | |
"prefab" : "weapon_incgrenade_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "grenade0" | |
}, | |
"49" : { | |
"name" : "weapon_c4", | |
"prefab" : "c4", | |
"item_name" : "#SFUI_WPNHUD_C4", | |
"item_description" : "#CSGO_Item_Desc_C4", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "c4", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_c4", | |
"model_player" : "models/weapons/v_ied.mdl", | |
"model_world" : "models/weapons/w_ied.mdl", | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "c4", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "10.825500" | |
} | |
} | |
}, | |
"58" : { | |
"name" : "musickit_default", | |
"prefab" : "musickit_prefab", | |
"item_name" : "#CSGO_Type_MusicKit", | |
"item_description" : "#CSGO_MusicKit_Desc", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"attributes" : { | |
"music id" : "1" | |
} | |
}, | |
"59" : { | |
"name" : "weapon_knife_t", | |
"prefab" : "melee", | |
"item_name" : "#SFUI_WPNHUD_Knife_T", | |
"item_description" : "#CSGO_Item_desc_Knife_T", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"default_slot_item" : "1", | |
"item_sub_position" : "melee", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_knife_t", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_knife_t.vtf", | |
"model_player" : "models/weapons/v_knife_default_t.mdl", | |
"model_world" : "models/weapons/w_knife_default_t.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "0.0 -70.0 25.0", | |
"camera_offset" : "7.0 0 -2" | |
}, | |
"attributes" : { | |
"icon display model" : "models/weapons/w_knife_default_t.mdl", | |
"pedestal display model" : "models/weapons/v_knife_default_t_inspect.mdl" | |
} | |
}, | |
"60" : { | |
"name" : "weapon_m4a1_silencer", | |
"prefab" : "weapon_m4a1_silencer_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"item_sub_position" : "rifle1", | |
"item_shares_equip_slot" : "1" | |
}, | |
"61" : { | |
"name" : "weapon_usp_silencer", | |
"prefab" : "weapon_usp_silencer_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"item_sub_position" : "secondary0" | |
}, | |
"62" : { | |
"name" : "Recipe Trade Up", | |
"prefab" : "recipe", | |
"baseitem" : "1", | |
"item_name" : "#CSGO_Recipe_TradeUp", | |
"item_description" : "#CSGO_Recipe_TradeUp_Desc", | |
"attributes" : { | |
"recipe filter" : "-3", | |
"preferred sort" : "1" | |
} | |
}, | |
"63" : { | |
"name" : "weapon_cz75a", | |
"prefab" : "weapon_cz75a_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"item_sub_position" : "secondary3", | |
"item_shares_equip_slot" : "1" | |
}, | |
"64" : { | |
"name" : "weapon_revolver", | |
"prefab" : "weapon_revolver_prefab", | |
"item_quality" : "normal", | |
"baseitem" : "1", | |
"item_sub_position" : "secondary4", | |
"item_shares_equip_slot" : "1" | |
}, | |
"500" : { | |
"name" : "weapon_bayonet", | |
"prefab" : "melee_unusual", | |
"item_name" : "#SFUI_WPNHUD_KnifeBayonet", | |
"item_description" : "#CSGO_Item_Desc_Knife_Bayonet", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_bayonet", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_bayonet.vtf", | |
"model_player" : "models/weapons/v_knife_bayonet.mdl", | |
"model_world" : "models/weapons/w_knife_bayonet.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"pedestal display model" : "models/weapons/v_knife_bayonet_inspect.mdl" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "knife_bayonet", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "14.518000", | |
"UVScale" : "0.505000" | |
} | |
} | |
}, | |
"505" : { | |
"name" : "weapon_knife_flip", | |
"prefab" : "melee_unusual", | |
"item_name" : "#SFUI_WPNHUD_KnifeFlip", | |
"item_description" : "#CSGO_Item_Desc_Knife_Flip", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_knife_flip", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_knife_flip.vtf", | |
"model_player" : "models/weapons/v_knife_flip.mdl", | |
"model_world" : "models/weapons/w_knife_flip.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"pedestal display model" : "models/weapons/v_knife_flip_inspect.mdl" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "30.0 -95.0 29.0", | |
"camera_offset" : "9.0 1.0 -1.5" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "knife_flip", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "12.900000", | |
"UVScale" : "0.411000" | |
} | |
} | |
}, | |
"506" : { | |
"name" : "weapon_knife_gut", | |
"prefab" : "melee_unusual", | |
"item_name" : "#SFUI_WPNHUD_KnifeGut", | |
"item_description" : "#CSGO_Item_Desc_Knife_Gut", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_knife_gut", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_knife_gut.vtf", | |
"model_player" : "models/weapons/v_knife_gut.mdl", | |
"model_world" : "models/weapons/w_knife_gut.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"pedestal display model" : "models/weapons/v_knife_gut_inspect.mdl" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "30.0 -95.0 23.0", | |
"camera_offset" : "10.0 1.2 -2" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "knife_gut", | |
"OrigMat" : "knife_gut", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "14.610000", | |
"UVScale" : "0.733000" | |
} | |
} | |
}, | |
"507" : { | |
"name" : "weapon_knife_karambit", | |
"prefab" : "melee_unusual", | |
"item_name" : "#SFUI_WPNHUD_KnifeKaram", | |
"item_description" : "#CSGO_Item_Desc_Knife_Karam", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_knife_karambit", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_knife_karambit.vtf", | |
"model_player" : "models/weapons/v_knife_karam.mdl", | |
"model_world" : "models/weapons/w_knife_karam.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"pedestal display model" : "models/weapons/v_knife_karam_inspect.mdl" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "30.0 -95.0 -5.0", | |
"camera_offset" : "10.0 1.5 -3.2" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "knife_karam", | |
"OrigMat" : "karam", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "9.813000", | |
"UVScale" : "0.438000" | |
} | |
} | |
}, | |
"508" : { | |
"name" : "weapon_knife_m9_bayonet", | |
"prefab" : "melee_unusual", | |
"item_name" : "#SFUI_WPNHUD_KnifeM9", | |
"item_description" : "#CSGO_Item_Desc_KnifeM9", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_knife_m9_bayonet", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_knife_m9_bayonet.vtf", | |
"model_player" : "models/weapons/v_knife_m9_bay.mdl", | |
"model_world" : "models/weapons/w_knife_m9_bay.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"pedestal display model" : "models/weapons/v_knife_m9_bay_inspect.mdl" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "30.0 -95.0 29.0", | |
"camera_offset" : "7.0 1.5 -1.5" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "knife_m9_bay", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "15.300000", | |
"UVScale" : "0.506000" | |
} | |
} | |
}, | |
"509" : { | |
"name" : "weapon_knife_tactical", | |
"prefab" : "melee_unusual", | |
"item_name" : "#SFUI_WPNHUD_KnifeTactical", | |
"item_description" : "#CSGO_Item_Desc_KnifeTactical", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_knife_tactical", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_knife_tactical.vtf", | |
"model_player" : "models/weapons/v_knife_tactical.mdl", | |
"model_world" : "models/weapons/w_knife_tactical.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"pedestal display model" : "models/weapons/v_knife_tactical_inspect.mdl" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "30.0 -95.0 29.0", | |
"camera_offset" : "7.0 1.5 -1.5" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "knife_tactical", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "15.300000", | |
"UVScale" : "0.506000" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_3", | |
"tag_text" : "#CSGO_set_community_3", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"512" : { | |
"name" : "weapon_knife_falchion", | |
"prefab" : "melee_unusual", | |
"item_name" : "#SFUI_WPNHUD_knife_falchion_advanced", | |
"item_description" : "#CSGO_Item_Desc_knife_falchion_advanced", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_knife_falchion", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_knife_falchion.vtf", | |
"model_player" : "models/weapons/v_knife_falchion_advanced.mdl", | |
"model_world" : "models/weapons/w_knife_falchion_advanced.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"pedestal display model" : "models/weapons/v_knife_falchion_advanced_inspect.mdl" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "0 0 0", | |
"camera_offset" : "0 0 0" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "knife_falchion_advanced", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "12.570000", | |
"UVScale" : "0.360000" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_8", | |
"tag_text" : "#CSGO_set_community_8", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"514" : { | |
"name" : "weapon_knife_survival_bowie", | |
"prefab" : "melee_unusual", | |
"item_name" : "#SFUI_WPNHUD_knife_survival_bowie", | |
"item_description" : "#CSGO_Item_Desc_knife_survival_bowie", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_knife_survival_bowie", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_knife_survival_bowie.vtf", | |
"model_player" : "models/weapons/v_knife_survival_bowie.mdl", | |
"model_world" : "models/weapons/w_knife_survival_bowie.mdl", | |
"model_dropped" : "models/weapons/w_knife_survival_bowie_dropped.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"pedestal display model" : "models/weapons/v_knife_survival_bowie_inspect.mdl" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "30.0 -95.0 29.0", | |
"camera_offset" : "7.0 1.5 -1.5" | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "knife_survival_bowie", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "1", | |
"WeaponLength" : "18.434601", | |
"UVScale" : "0.461662" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_11", | |
"tag_text" : "#CSGO_set_community_11", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"515" : { | |
"name" : "weapon_knife_butterfly", | |
"prefab" : "melee_unusual", | |
"item_name" : "#SFUI_WPNHUD_Knife_Butterfly", | |
"item_description" : "#CSGO_Item_Desc_Knife_Butterfly", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_knife_butterfly", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_knife_butterfly.vtf", | |
"model_player" : "models/weapons/v_knife_butterfly.mdl", | |
"model_world" : "models/weapons/w_knife_butterfly.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"pedestal display model" : "models/weapons/v_knife_butterfly_inspect.mdl" | |
}, | |
"inventory_image_data" : { | |
"camera_angles" : "30.0 -95.0 29.0", | |
"camera_offset" : "9.0 1.5 -1.5", | |
"spot_light_key" : { | |
"position" : "-10 30 0", | |
"color" : "2.98 2.98 3", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "knife_butterfly", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "0", | |
"WeaponLength" : "15.300000", | |
"UVScale" : "0.506000" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_4", | |
"tag_text" : "#CSGO_set_community_4", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"516" : { | |
"name" : "weapon_knife_push", | |
"prefab" : "melee_unusual", | |
"item_name" : "#SFUI_WPNHUD_knife_push", | |
"item_description" : "#CSGO_Item_Desc_knife_push", | |
"image_inventory" : "econ/weapons/base_weapons/weapon_knife_push", | |
"icon_default_image" : "materials/icons/inventory_icon_weapon_knife_push.vtf", | |
"model_player" : "models/weapons/v_knife_push.mdl", | |
"model_world" : "models/weapons/w_knife_push.mdl", | |
"model_dropped" : "models/weapons/w_knife_push_dropped.mdl", | |
"used_by_classes" : { | |
"terrorists" : "1", | |
"counter-terrorists" : "1" | |
}, | |
"attributes" : { | |
"pedestal display model" : "models/weapons/v_knife_push_inspect.mdl", | |
"icon display model" : "models/weapons/w_knife_push_icon.mdl" | |
}, | |
"inventory_image_data" : { | |
"spot_light_key" : { | |
"position" : "0 -30 40", | |
"color" : "0.95 0.98 1", | |
"lookat" : "0.0 0.0 0.0", | |
"inner_cone" : "0.500000", | |
"outer_cone" : "1.000000" | |
}, | |
"point_light_accent" : { | |
"position" : "0 0 -50", | |
"color" : "1 1 1" | |
} | |
}, | |
"paint_data" : { | |
"PaintableMaterial0" : { | |
"Name" : "knife_push", | |
"ViewmodelDim" : "2048", | |
"WorldDim" : "512", | |
"BaseTextureOverride" : "1", | |
"WeaponLength" : "5.884990", | |
"UVScale" : "0.583642" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_9", | |
"tag_text" : "#CSGO_set_community_9", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"874" : { | |
"name" : "Five Year Service Coin", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_FiveYearService", | |
"item_description" : "#CSGO_CollectibleCoin_FiveYearService_Desc", | |
"image_inventory" : "econ/status_icons/5yearcoin", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/5_year_coin.mdl" | |
} | |
}, | |
"875" : { | |
"name" : "DreamHack SteelSeries 2013 CS:GO Champion", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_DH2013_Champion", | |
"item_description" : "#CSGO_CollectibleCoin_DH2013_Champion_Desc", | |
"image_inventory" : "econ/status_icons/dreamhack_2013_champion", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/dreamhack_trophy_champion.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "1" | |
} | |
} | |
}, | |
"876" : { | |
"name" : "DreamHack SteelSeries 2013 CS:GO Finalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_DH2013_Finalist", | |
"item_description" : "#CSGO_CollectibleCoin_DH2013_Finalist_Desc", | |
"image_inventory" : "econ/status_icons/dreamhack_2013_finalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/dreamhack_trophy_finalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "1" | |
} | |
} | |
}, | |
"877" : { | |
"name" : "DreamHack SteelSeries 2013 CS:GO Semifinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_DH2013_SemiFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_DH2013_SemiFinalist_Desc", | |
"image_inventory" : "econ/status_icons/dreamhack_2013_semifinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/dreamhack_trophy_semifinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "1" | |
} | |
} | |
}, | |
"878" : { | |
"name" : "DreamHack SteelSeries 2013 CS:GO Quarterfinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_DH2013_QuarterFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_DH2013_QuarterFinalist_Desc", | |
"image_inventory" : "econ/status_icons/dreamhack_2013_quarterfinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/dreamhack_trophy_quarterfinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "1" | |
} | |
} | |
}, | |
"879" : { | |
"name" : "EMS One Katowice 2014 CS:GO Champion", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Kat2014_Champion", | |
"item_description" : "#CSGO_CollectibleCoin_Kat2014_Champion_Desc", | |
"image_inventory" : "econ/status_icons/katowice_2014_champion", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/katowice_trophy_champion.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "3" | |
} | |
} | |
}, | |
"880" : { | |
"name" : "EMS One Katowice 2014 CS:GO Finalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Kat2014_Finalist", | |
"item_description" : "#CSGO_CollectibleCoin_Kat2014_Finalist_Desc", | |
"image_inventory" : "econ/status_icons/katowice_2014_finalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/katowice_trophy_finalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "3" | |
} | |
} | |
}, | |
"881" : { | |
"name" : "EMS One Katowice 2014 CS:GO Semifinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Kat2014_SemiFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_Kat2014_SemiFinalist_Desc", | |
"image_inventory" : "econ/status_icons/katowice_2014_semifinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/katowice_trophy_semifinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "3" | |
} | |
} | |
}, | |
"882" : { | |
"name" : "EMS One Katowice 2014 CS:GO Quarterfinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Kat2014_QuarterFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_Kat2014_QuarterFinalist_Desc", | |
"image_inventory" : "econ/status_icons/katowice_2014_quarterfinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/katowice_trophy_quarterfinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "3" | |
} | |
} | |
}, | |
"883" : { | |
"name" : "ESL One Cologne 2014 CS:GO Champion", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2014_Champion", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2014_Champion_Desc", | |
"image_inventory" : "econ/status_icons/cologne_trophy_champion", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cologne_trophy_champion.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
} | |
}, | |
"884" : { | |
"name" : "ESL One Cologne 2014 CS:GO Finalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2014_Finalist", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2014_Finalist_Desc", | |
"image_inventory" : "econ/status_icons/cologne_trophy_finalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cologne_trophy_finalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
} | |
}, | |
"885" : { | |
"name" : "ESL One Cologne 2014 CS:GO Semifinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2014_SemiFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2014_SemiFinalist_Desc", | |
"image_inventory" : "econ/status_icons/cologne_trophy_semifinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cologne_trophy_semifinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
} | |
}, | |
"886" : { | |
"name" : "ESL One Cologne 2014 CS:GO Quarterfinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2014_QuarterFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2014_QuarterFinalist_Desc", | |
"image_inventory" : "econ/status_icons/cologne_trophy_quarterfinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cologne_trophy_quarterfinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
} | |
}, | |
"887" : { | |
"name" : "ESL One Cologne 2014 Pick 'Em Challenge Bronze", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2014_PickEmBronze", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2014_PickEmBronze_Desc", | |
"image_inventory" : "econ/status_icons/cologne_prediction_bronze", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cologne_prediction_bronze.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
} | |
}, | |
"888" : { | |
"name" : "ESL One Cologne 2014 Pick 'Em Challenge Silver", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2014_PickEmSilver", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2014_PickEmSilver_Desc", | |
"image_inventory" : "econ/status_icons/cologne_prediction_silver", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cologne_prediction_silver.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
} | |
}, | |
"889" : { | |
"name" : "ESL One Cologne 2014 Pick 'Em Challenge Gold", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2014_PickEmGold", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2014_PickEmGold_Desc", | |
"image_inventory" : "econ/status_icons/cologne_prediction_gold", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cologne_prediction_gold.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
} | |
}, | |
"890" : { | |
"name" : "DreamHack Winter 2014 CS:GO Champion", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_DHW2014_Champion", | |
"item_description" : "#CSGO_CollectibleCoin_DHW2014_Champion_Desc", | |
"image_inventory" : "econ/status_icons/dhw_2014_champion", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/dhw_2014_champion.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
} | |
}, | |
"891" : { | |
"name" : "DreamHack Winter 2014 CS:GO Finalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_DHW2014_Finalist", | |
"item_description" : "#CSGO_CollectibleCoin_DHW2014_Finalist_Desc", | |
"image_inventory" : "econ/status_icons/dhw_2014_finalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/dhw_2014_finalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
} | |
}, | |
"892" : { | |
"name" : "DreamHack Winter 2014 CS:GO Semifinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_DHW2014_SemiFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_DHW2014_SemiFinalist_Desc", | |
"image_inventory" : "econ/status_icons/dhw_2014_semifinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/dhw_2014_semifinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
} | |
}, | |
"893" : { | |
"name" : "DreamHack Winter 2014 CS:GO Quarterfinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_DHW2014_QuarterFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_DHW2014_QuarterFinalist_Desc", | |
"image_inventory" : "econ/status_icons/dhw_2014_quarterfinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/dhw_2014_quarterfinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
} | |
}, | |
"894" : { | |
"name" : "DreamHack Winter 2014 Pick 'Em Challenge Bronze", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_DHW2014_PickEmBronze", | |
"item_description" : "#CSGO_CollectibleCoin_DHW2014_PickEmBronze_Desc", | |
"image_inventory" : "econ/status_icons/dhw14_prediction_bronze", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/dhw_2014_pickem_bronze.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
} | |
}, | |
"895" : { | |
"name" : "DreamHack Winter 2014 Pick 'Em Challenge Silver", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_DHW2014_PickEmSilver", | |
"item_description" : "#CSGO_CollectibleCoin_DHW2014_PickEmSilver_Desc", | |
"image_inventory" : "econ/status_icons/dhw14_prediction_silver", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/dhw_2014_pickem_silver.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
} | |
}, | |
"896" : { | |
"name" : "DreamHack Winter 2014 Pick 'Em Challenge Gold", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_DHW2014_PickEmGold", | |
"item_description" : "#CSGO_CollectibleCoin_DHW2014_PickEmGold_Desc", | |
"image_inventory" : "econ/status_icons/dhw14_prediction_gold", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/dhw_2014_pickem_gold.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
} | |
}, | |
"897" : { | |
"name" : "ESL One Katowice 2015 CS:GO Champion", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Kat2015_Champion", | |
"item_description" : "#CSGO_CollectibleCoin_Kat2015_Champion_Desc", | |
"image_inventory" : "econ/status_icons/kat_2015_champion", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/katowice2015_trophy_champion.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
} | |
}, | |
"898" : { | |
"name" : "ESL One Katowice 2015 CS:GO Finalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Kat2015_Finalist", | |
"item_description" : "#CSGO_CollectibleCoin_Kat2015_Finalist_Desc", | |
"image_inventory" : "econ/status_icons/kat_2015_finalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/katowice2015_trophy_finalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
} | |
}, | |
"899" : { | |
"name" : "ESL One Katowice 2015 CS:GO Semifinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Kat2015_SemiFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_Kat2015_SemiFinalist_Desc", | |
"image_inventory" : "econ/status_icons/kat_2015_semifinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/katowice2015_trophy_semifinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
} | |
}, | |
"900" : { | |
"name" : "ESL One Katowice 2015 CS:GO Quarterfinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Kat2015_QuarterFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_Kat2015_QuarterFinalist_Desc", | |
"image_inventory" : "econ/status_icons/kat_2015_quarterfinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/katowice2015_trophy_quarterfinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
} | |
}, | |
"901" : { | |
"name" : "ESL One Katowice 2015 Pick 'Em Challenge Bronze", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Kat2015_PickEmBronze", | |
"item_description" : "#CSGO_CollectibleCoin_Kat2015_PickEmBronze_Desc", | |
"image_inventory" : "econ/status_icons/kat_2015_prediction_bronze", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/kat_2015_pickem_bronze.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
} | |
}, | |
"902" : { | |
"name" : "ESL One Katowice 2015 Pick 'Em Challenge Silver", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Kat2015_PickEmSilver", | |
"item_description" : "#CSGO_CollectibleCoin_Kat2015_PickEmSilver_Desc", | |
"image_inventory" : "econ/status_icons/kat_2015_prediction_silver", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/kat_2015_pickem_silver.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
} | |
}, | |
"903" : { | |
"name" : "ESL One Katowice 2015 Pick 'Em Challenge Gold", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Kat2015_PickEmGold", | |
"item_description" : "#CSGO_CollectibleCoin_Kat2015_PickEmGold_Desc", | |
"image_inventory" : "econ/status_icons/kat_2015_prediction_gold", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/kat_2015_pickem_gold.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
} | |
}, | |
"904" : { | |
"name" : "ESL One Cologne 2015 CS:GO Champion", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2015_Champion", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2015_Champion_Desc", | |
"image_inventory" : "econ/status_icons/col_2015_champion", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/col2015_trophy_champion.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
} | |
}, | |
"905" : { | |
"name" : "ESL One Cologne 2015 CS:GO Finalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2015_Finalist", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2015_Finalist_Desc", | |
"image_inventory" : "econ/status_icons/col_2015_finalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/col2015_trophy_finalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
} | |
}, | |
"906" : { | |
"name" : "ESL One Cologne 2015 CS:GO Semifinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2015_SemiFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2015_SemiFinalist_Desc", | |
"image_inventory" : "econ/status_icons/col_2015_semifinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/col2015_trophy_semifinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
} | |
}, | |
"907" : { | |
"name" : "ESL One Cologne 2015 CS:GO Quarterfinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2015_QuarterFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2015_QuarterFinalist_Desc", | |
"image_inventory" : "econ/status_icons/col_2015_quarterfinalist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/col2015_trophy_quarterfinalist.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
} | |
}, | |
"908" : { | |
"name" : "ESL One Cologne 2015 Pick 'Em Challenge Bronze", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2015_PickEmBronze", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2015_PickEmBronze_Desc", | |
"image_inventory" : "econ/status_icons/col_2015_prediction_bronze", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cologne_pickem_2015_bronze.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
} | |
}, | |
"909" : { | |
"name" : "ESL One Cologne 2015 Pick 'Em Challenge Silver", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2015_PickEmSilver", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2015_PickEmSilver_Desc", | |
"image_inventory" : "econ/status_icons/col_2015_prediction_silver", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cologne_pickem_2015_silver.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
} | |
}, | |
"910" : { | |
"name" : "ESL One Cologne 2015 Pick 'Em Challenge Gold", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cologne2015_PickEmGold", | |
"item_description" : "#CSGO_CollectibleCoin_Cologne2015_PickEmGold_Desc", | |
"image_inventory" : "econ/status_icons/col_2015_prediction_gold", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cologne_pickem_2015_gold.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
} | |
}, | |
"911" : { | |
"name" : "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Bronze", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cluj2015_PickEmBronze", | |
"item_description" : "#CSGO_CollectibleCoin_Cluj2015_PickEmBronze_Desc", | |
"image_inventory" : "econ/status_icons/cluj_2015_prediction_bronze", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cluj_pickem_2015_bronze.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
} | |
}, | |
"912" : { | |
"name" : "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Silver", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cluj2015_PickEmSilver", | |
"item_description" : "#CSGO_CollectibleCoin_Cluj2015_PickEmSilver_Desc", | |
"image_inventory" : "econ/status_icons/cluj_2015_prediction_silver", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cluj_pickem_2015_silver.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
} | |
}, | |
"913" : { | |
"name" : "DreamHack Cluj-Napoca 2015 Pick 'Em Challenge Gold", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cluj2015_PickEmGold", | |
"item_description" : "#CSGO_CollectibleCoin_Cluj2015_PickEmGold_Desc", | |
"image_inventory" : "econ/status_icons/cluj_2015_prediction_gold", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cluj_pickem_2015_gold.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
} | |
}, | |
"914" : { | |
"name" : "DreamHack Cluj-Napoca 2015 Fantasy Team Bronze", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cluj2015_FantasyBronze", | |
"item_description" : "#CSGO_CollectibleCoin_Cluj2015_FantasyBronze_Desc", | |
"image_inventory" : "econ/status_icons/cluj_2015_fantasy_bronze", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cluj_fantasy_2015_bronze.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
} | |
}, | |
"915" : { | |
"name" : "DreamHack Cluj-Napoca 2015 Fantasy Team Silver", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cluj2015_FantasySilver", | |
"item_description" : "#CSGO_CollectibleCoin_Cluj2015_FantasySilver_Desc", | |
"image_inventory" : "econ/status_icons/cluj_2015_fantasy_silver", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cluj_fantasy_2015_silver.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
} | |
}, | |
"916" : { | |
"name" : "DreamHack Cluj-Napoca 2015 Fantasy Team Gold", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cluj2015_FantasyGold", | |
"item_description" : "#CSGO_CollectibleCoin_Cluj2015_FantasyGold_Desc", | |
"image_inventory" : "econ/status_icons/cluj_2015_fantasy_gold", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/cluj_fantasy_2015_gold.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
} | |
}, | |
"917" : { | |
"name" : "DreamHack Cluj-Napoca 2015 CS:GO Champion", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cluj2015_Champion", | |
"item_description" : "#CSGO_CollectibleCoin_Cluj2015_Champion_Desc", | |
"image_inventory" : "econ/status_icons/trophy_majors", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/trophy_majors.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
} | |
}, | |
"918" : { | |
"name" : "DreamHack Cluj-Napoca 2015 CS:GO Finalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cluj2015_Finalist", | |
"item_description" : "#CSGO_CollectibleCoin_Cluj2015_Finalist_Desc", | |
"image_inventory" : "econ/status_icons/trophy_majors_finalists", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/trophy_majors_finalists.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
} | |
}, | |
"919" : { | |
"name" : "DreamHack Cluj-Napoca 2015 CS:GO Semifinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cluj2015_SemiFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_Cluj2015_SemiFinalist_Desc", | |
"image_inventory" : "econ/status_icons/trophy_majors_finalists", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/trophy_majors_finalists.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
} | |
}, | |
"920" : { | |
"name" : "DreamHack Cluj-Napoca 2015 CS:GO Quarterfinalist", | |
"prefab" : "collectible_untradable", | |
"item_name" : "#CSGO_CollectibleCoin_Cluj2015_QuarterFinalist", | |
"item_description" : "#CSGO_CollectibleCoin_Cluj2015_QuarterFinalist_Desc", | |
"image_inventory" : "econ/status_icons/trophy_majors_finalists", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/trophy_majors_finalists.mdl", | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
} | |
}, | |
"1000" : { | |
"name" : "Community Season One Spring 2013", | |
"first_sale_date" : "2013/04/24", | |
"prefab" : "csgo_tool", | |
"item_type_name" : "#CSGO_Type_Ticket", | |
"item_name" : "#CSGO_Ticket_CommunitySeasonOneSpring2013", | |
"item_description" : "#CSGO_Ticket_CommunitySeasonOneSpring2013_Desc", | |
"image_inventory" : "econ/status_icons/community_support_pass", | |
"capabilities" : { | |
"usable_gc" : "1", | |
"usable_out_of_game" : "1" | |
}, | |
"tool" : { | |
"type" : "season_pass", | |
"use_string" : "#ConsumeItem" | |
}, | |
"attributes" : { | |
"season access" : "0" | |
} | |
}, | |
"1001" : { | |
"name" : "Community Season One Spring 2013 Coin 1", | |
"prefab" : "season1_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin1", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin1_Desc", | |
"image_inventory" : "econ/status_icons/community_support_pass_coin1", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/payback_bronze_01.mdl" | |
} | |
}, | |
"1002" : { | |
"name" : "Community Season One Spring 2013 Coin 2", | |
"prefab" : "season1_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin2", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin2_Desc", | |
"image_inventory" : "econ/status_icons/community_support_pass_coin2", | |
"min_ilevel" : "2", | |
"max_ilevel" : "2", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/payback_silver_01.mdl" | |
} | |
}, | |
"1003" : { | |
"name" : "Community Season One Spring 2013 Coin 3", | |
"prefab" : "season1_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin3", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonOneSpring2013_Coin3_Desc", | |
"image_inventory" : "econ/status_icons/community_support_pass_coin3", | |
"min_ilevel" : "3", | |
"max_ilevel" : "3", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/payback_gold_01.mdl" | |
} | |
}, | |
"1004" : { | |
"name" : "Map Token Museum", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenMuseum", | |
"item_description" : "#CSGO_Collectible_MapTokenMuseum_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_museum", | |
"map_name" : "#SFUI_Map_cs_museum", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_museum.mdl" | |
} | |
}, | |
"1005" : { | |
"name" : "Map Token Downtown", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenDowntown", | |
"item_description" : "#CSGO_Collectible_MapTokenDowntown_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_downtown", | |
"map_name" : "#SFUI_Map_cs_downtown", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_downtown.mdl" | |
} | |
}, | |
"1006" : { | |
"name" : "Map Token Thunder", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenThunder", | |
"item_description" : "#CSGO_Collectible_MapTokenThunder_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_thunder", | |
"map_name" : "#SFUI_Map_cs_thunder_go", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_thunder.mdl" | |
} | |
}, | |
"1007" : { | |
"name" : "Map Token Favela", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenFavela", | |
"item_description" : "#CSGO_Collectible_MapTokenFavela_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_favela", | |
"map_name" : "#SFUI_Map_de_favela", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_favela.mdl" | |
} | |
}, | |
"1008" : { | |
"name" : "Map Token Motel", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenMotel", | |
"item_description" : "#CSGO_Collectible_MapTokenMotel_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_motel", | |
"map_name" : "#SFUI_Map_cs_motel", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_motel.mdl" | |
} | |
}, | |
"1009" : { | |
"name" : "Map Token Seaside", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenSeaside", | |
"item_description" : "#CSGO_Collectible_MapTokenSeaside_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_seaside", | |
"map_name" : "#SFUI_Map_de_seaside", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_seaside.mdl" | |
} | |
}, | |
"1010" : { | |
"name" : "Map Token Library", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenLibrary", | |
"item_description" : "#CSGO_Collectible_MapTokenLibrary_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_library", | |
"map_name" : "#SFUI_Map_de_library", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_library.mdl" | |
} | |
}, | |
"1012" : { | |
"name" : "Community Season Two Autumn 2013", | |
"first_sale_date" : "2013/09/19", | |
"prefab" : "csgo_tool", | |
"item_type_name" : "#CSGO_Type_Ticket", | |
"item_name" : "#CSGO_Ticket_CommunitySeasonTwoAutumn2013", | |
"item_description" : "#CSGO_Ticket_CommunitySeasonTwoAutumn2013_Desc", | |
"image_inventory" : "econ/status_icons/operation_bravo_pass", | |
"capabilities" : { | |
"usable_gc" : "1", | |
"usable_out_of_game" : "1" | |
}, | |
"tool" : { | |
"type" : "season_pass", | |
"use_string" : "#ConsumeItem" | |
}, | |
"attributes" : { | |
"season access" : "1" | |
} | |
}, | |
"1013" : { | |
"name" : "Community Season Two Autumn 2013 Coin 1", | |
"prefab" : "season2_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin1", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin1_Desc", | |
"image_inventory" : "econ/status_icons/operation_bravo_bronze", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/bravo_bronze_01.mdl" | |
} | |
}, | |
"1014" : { | |
"name" : "Community Season Two Autumn 2013 Coin 2", | |
"prefab" : "season2_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin2", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin2_Desc", | |
"image_inventory" : "econ/status_icons/operation_bravo_silver", | |
"min_ilevel" : "2", | |
"max_ilevel" : "2", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/bravo_silver_01.mdl" | |
} | |
}, | |
"1015" : { | |
"name" : "Community Season Two Autumn 2013 Coin 3", | |
"prefab" : "season2_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin3", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonTwoAutumn2013_Coin3_Desc", | |
"image_inventory" : "econ/status_icons/operation_bravo_gold", | |
"min_ilevel" : "3", | |
"max_ilevel" : "3", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/bravo_gold_01.mdl" | |
} | |
}, | |
"1016" : { | |
"name" : "Map Token Agency", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenAgency", | |
"item_description" : "#CSGO_Collectible_MapTokenAgency_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_agency", | |
"map_name" : "#SFUI_Map_cs_agency", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_agency.mdl" | |
} | |
}, | |
"1017" : { | |
"name" : "Map Token Ali", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenAli", | |
"item_description" : "#CSGO_Collectible_MapTokenAli_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_ali", | |
"map_name" : "#SFUI_Map_de_ali", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_ali.mdl" | |
} | |
}, | |
"1018" : { | |
"name" : "Map Token Cache", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenCache", | |
"item_description" : "#CSGO_Collectible_MapTokenCache_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_cache", | |
"map_name" : "#SFUI_Map_de_cache", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_cache.mdl" | |
} | |
}, | |
"1019" : { | |
"name" : "Map Token Chinatown", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenChinatown", | |
"item_description" : "#CSGO_Collectible_MapTokenChinatown_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_chinatown", | |
"map_name" : "#SFUI_Map_de_chinatown", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_chinatown.mdl" | |
} | |
}, | |
"1020" : { | |
"name" : "Map Token Gwalior", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenGwalior", | |
"item_description" : "#CSGO_Collectible_MapTokenGwalior_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_gwalior", | |
"map_name" : "#SFUI_Map_de_gwalior", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_gwalior.mdl" | |
} | |
}, | |
"1021" : { | |
"name" : "Map Token Ruins", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenRuins", | |
"item_description" : "#CSGO_Collectible_MapTokenRuins_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_ruins", | |
"map_name" : "#SFUI_Map_de_ruins", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_ruins.mdl" | |
} | |
}, | |
"1022" : { | |
"name" : "Map Token Siege", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenSiege", | |
"item_description" : "#CSGO_Collectible_MapTokenSiege_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_siege", | |
"map_name" : "#SFUI_Map_cs_siege", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_siege.mdl" | |
} | |
}, | |
"1023" : { | |
"name" : "Community Season Three Spring 2014", | |
"first_sale_date" : "2014/03/20", | |
"prefab" : "csgo_tool", | |
"item_type_name" : "#CSGO_Type_Ticket", | |
"item_name" : "#CSGO_Ticket_CommunitySeasonThreeSpring2014", | |
"item_description" : "#CSGO_Ticket_CommunitySeasonThreeSpring2014_Desc", | |
"image_inventory" : "econ/status_icons/operation_phoenix_pass", | |
"capabilities" : { | |
"usable_gc" : "1", | |
"usable_out_of_game" : "1" | |
}, | |
"tool" : { | |
"type" : "season_pass", | |
"use_string" : "#ConsumeItem" | |
}, | |
"attributes" : { | |
"season access" : "2" | |
} | |
}, | |
"1024" : { | |
"name" : "Community Season Three Spring 2014 Coin 1", | |
"prefab" : "season3_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin1", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin1_Desc", | |
"image_inventory" : "econ/status_icons/operation_phoenix_bronze", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/phoenix_bronze_01.mdl" | |
} | |
}, | |
"1025" : { | |
"name" : "Community Season Three Spring 2014 Coin 2", | |
"prefab" : "season3_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin2", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin2_Desc", | |
"image_inventory" : "econ/status_icons/operation_phoenix_silver", | |
"min_ilevel" : "2", | |
"max_ilevel" : "2", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/phoenix_silver_01.mdl" | |
} | |
}, | |
"1026" : { | |
"name" : "Community Season Three Spring 2014 Coin 3", | |
"prefab" : "season3_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin3", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonThreeSpring2014_Coin3_Desc", | |
"image_inventory" : "econ/status_icons/operation_phoenix_gold", | |
"min_ilevel" : "3", | |
"max_ilevel" : "3", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/phoenix_gold_01.mdl" | |
} | |
}, | |
"1027" : { | |
"name" : "Community Season Four Summer 2014", | |
"first_sale_date" : "2014/07/01", | |
"prefab" : "csgo_tool", | |
"item_type_name" : "#CSGO_Type_Ticket", | |
"item_name" : "#CSGO_Ticket_CommunitySeasonFourSummer2014", | |
"item_description" : "#CSGO_Ticket_CommunitySeasonFourSummer2014_Desc", | |
"image_inventory" : "econ/status_icons/operation_breakout_pass", | |
"capabilities" : { | |
"usable_gc" : "1", | |
"usable_out_of_game" : "1" | |
}, | |
"tool" : { | |
"type" : "season_pass", | |
"use_string" : "#ConsumeItem" | |
}, | |
"attributes" : { | |
"season access" : "3" | |
} | |
}, | |
"1028" : { | |
"name" : "Community Season Four Summer 2014 Coin 1", | |
"prefab" : "season4_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin1", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin1_Desc", | |
"image_inventory" : "econ/status_icons/operation_breakout_bronze", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/breakout_bronze_01.mdl" | |
} | |
}, | |
"1029" : { | |
"name" : "Community Season Four Summer 2014 Coin 2", | |
"prefab" : "season4_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin2", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin2_Desc", | |
"image_inventory" : "econ/status_icons/operation_breakout_silver", | |
"min_ilevel" : "2", | |
"max_ilevel" : "2", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/breakout_silver_01.mdl" | |
} | |
}, | |
"1030" : { | |
"name" : "Community Season Four Summer 2014 Coin 3", | |
"prefab" : "season4_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin3", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonFourSummer2014_Coin3_Desc", | |
"image_inventory" : "econ/status_icons/operation_breakout_gold", | |
"min_ilevel" : "3", | |
"max_ilevel" : "3", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/breakout_gold_01.mdl" | |
} | |
}, | |
"1031" : { | |
"name" : "Map Token Castle", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenCastle", | |
"item_description" : "#CSGO_Collectible_MapTokenCastle_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_castle", | |
"map_name" : "#SFUI_Map_de_castle", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_castle.mdl" | |
} | |
}, | |
"1032" : { | |
"name" : "Map Token Black Gold", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenBlackGold", | |
"item_description" : "#CSGO_Collectible_MapTokenBlackGold_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_blackgold", | |
"map_name" : "#SFUI_Map_de_blackgold", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_blackgold.mdl" | |
} | |
}, | |
"1033" : { | |
"name" : "Map Token Rush", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenRush", | |
"item_description" : "#CSGO_Collectible_MapTokenRush_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_rush", | |
"map_name" : "#SFUI_Map_cs_rush", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_rush.mdl" | |
} | |
}, | |
"1034" : { | |
"name" : "Map Token Mist", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenMist", | |
"item_description" : "#CSGO_Collectible_MapTokenMist_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_mist", | |
"map_name" : "#SFUI_Map_de_mist", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_mist.mdl" | |
} | |
}, | |
"1035" : { | |
"name" : "Map Token Insertion", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenInsertion", | |
"item_description" : "#CSGO_Collectible_MapTokenInsertion_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_insertion", | |
"map_name" : "#SFUI_Map_cs_insertion", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_insertion.mdl" | |
} | |
}, | |
"1036" : { | |
"name" : "Map Token Overgrown", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenOvergrown", | |
"item_description" : "#CSGO_Collectible_MapTokenOvergrown_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_overgrown", | |
"map_name" : "#SFUI_Map_de_overgrown", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_overgrown.mdl" | |
} | |
}, | |
"1037" : { | |
"name" : "Map Token Marquis", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenMarquis", | |
"item_description" : "#CSGO_Collectible_MapTokenMarquis_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_marquis", | |
"map_name" : "#SFUI_Map_de_marquis", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_marquis.mdl" | |
} | |
}, | |
"1038" : { | |
"name" : "Map Token Workout", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenWorkout", | |
"item_description" : "#CSGO_Collectible_MapTokenWorkout_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_workout", | |
"map_name" : "#SFUI_Map_cs_workout", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_workout.mdl" | |
} | |
}, | |
"1039" : { | |
"name" : "Map Token Backalley", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenBackalley", | |
"item_description" : "#CSGO_Collectible_MapTokenBackalley_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_backalley", | |
"map_name" : "#SFUI_Map_cs_backalley", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_backalley.mdl" | |
} | |
}, | |
"1040" : { | |
"name" : "Map Token Season", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenSeason", | |
"item_description" : "#CSGO_Collectible_MapTokenSeason_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_season", | |
"map_name" : "#SFUI_Map_de_season", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_season.mdl" | |
} | |
}, | |
"1041" : { | |
"name" : "Map Token Bazaar", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenBazaar", | |
"item_description" : "#CSGO_Collectible_MapTokenBazaar_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_bazaar", | |
"map_name" : "#SFUI_Map_de_bazaar", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_bazaar.mdl" | |
} | |
}, | |
"1042" : { | |
"name" : "Map Token Facade", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenFacade", | |
"item_description" : "#CSGO_Collectible_MapTokenFacade_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_facade", | |
"map_name" : "#SFUI_Map_de_facade", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_facade.mdl" | |
} | |
}, | |
"1043" : { | |
"name" : "Map Token Log", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenLog", | |
"item_description" : "#CSGO_Collectible_MapTokenLog_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_log", | |
"map_name" : "#SFUI_Map_de_log", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_log.mdl" | |
} | |
}, | |
"1044" : { | |
"name" : "Map Token Rails", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenRails", | |
"item_description" : "#CSGO_Collectible_MapTokenRails_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_rails", | |
"map_name" : "#SFUI_Map_de_rails", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_rails.mdl" | |
} | |
}, | |
"1045" : { | |
"name" : "Map Token Resort", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenResort", | |
"item_description" : "#CSGO_Collectible_MapTokenResort_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_resort", | |
"map_name" : "#SFUI_Map_de_resort", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_resort.mdl" | |
} | |
}, | |
"1046" : { | |
"name" : "Map Token Zoo", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenZoo", | |
"item_description" : "#CSGO_Collectible_MapTokenZoo_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_zoo", | |
"map_name" : "#SFUI_Map_de_zoo", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_zoo.mdl" | |
} | |
}, | |
"1047" : { | |
"name" : "Map Token Santorini", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenSantorini", | |
"item_description" : "#CSGO_Collectible_MapTokenSantorini_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_santorini", | |
"map_name" : "#SFUI_Map_de_santorini", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_santorini.mdl" | |
} | |
}, | |
"1048" : { | |
"name" : "Map Token Coast", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenCoast", | |
"item_description" : "#CSGO_Collectible_MapTokenCoast_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_coast", | |
"map_name" : "#SFUI_Map_de_coast", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_coast.mdl" | |
} | |
}, | |
"1049" : { | |
"name" : "Map Token Mikla", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenMikla", | |
"item_description" : "#CSGO_Collectible_MapTokenMikla_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_mikla", | |
"map_name" : "#SFUI_Map_de_mikla", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_mikla.mdl" | |
} | |
}, | |
"1050" : { | |
"name" : "Map Token Royal", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenRoyal", | |
"item_description" : "#CSGO_Collectible_MapTokenRoyal_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_royal", | |
"map_name" : "#SFUI_Map_de_royal", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_royal.mdl" | |
} | |
}, | |
"1051" : { | |
"name" : "Map Token Empire", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenEmpire", | |
"item_description" : "#CSGO_Collectible_MapTokenEmpire_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_empire", | |
"map_name" : "#SFUI_Map_de_empire", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_empire.mdl" | |
} | |
}, | |
"1052" : { | |
"name" : "Map Token Tulip", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenTulip", | |
"item_description" : "#CSGO_Collectible_MapTokenTulip_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_tulip", | |
"map_name" : "#SFUI_Map_de_tulip", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_tulip.mdl" | |
} | |
}, | |
"1053" : { | |
"name" : "Map Token Cruise", | |
"prefab" : "map_token", | |
"item_name" : "#CSGO_Collectible_MapTokenCruise", | |
"item_description" : "#CSGO_Collectible_MapTokenCruise_Desc", | |
"image_inventory" : "econ/status_icons/maptoken_cruise", | |
"map_name" : "#SFUI_Map_cs_cruise", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/maptoken_cruise.mdl" | |
} | |
}, | |
"1200" : { | |
"name" : "Name Tag", | |
"first_sale_date" : "2013/08/28", | |
"prefab" : "valve csgo_tool", | |
"item_name" : "#CSGO_Tool_Name_Tag", | |
"item_type_name" : "#CSGO_Tool_Name_TagTag", | |
"item_description" : "#CSGO_Tool_Name_Tag_Desc", | |
"image_inventory" : "econ/tools/tag", | |
"tool" : { | |
"type" : "name", | |
"usage_capabilities" : { | |
"nameable" : "1" | |
} | |
} | |
}, | |
"1203" : { | |
"name" : "Weapon Case Key", | |
"first_sale_date" : "2013/09/20", | |
"prefab" : "valve weapon_case_key", | |
"image_inventory" : "econ/tools/weapon_case_key", | |
"tool" : { | |
"restriction" : "generic_valve_key" | |
} | |
}, | |
"1204" : { | |
"name" : "E-Sports Weapon Case Key 1", | |
"item_name" : "#CSGO_esports_crate_key_1", | |
"item_description" : "#CSGO_esports_crate_key_1_desc", | |
"first_sale_date" : "2014/07/09", | |
"prefab" : "valve weapon_case_key", | |
"image_inventory" : "econ/tools/weapon_case_key_special_1", | |
"tool" : { | |
"restriction" : "esports_crate_key" | |
} | |
}, | |
"1209" : { | |
"name" : "sticker", | |
"first_sale_date" : "2014/01/29", | |
"prefab" : "csgo_tool", | |
"item_name" : "#CSGO_Tool_Sticker", | |
"item_type_name" : "#CSGO_Tool_Sticker", | |
"item_description" : "#CSGO_Tool_Sticker_Desc", | |
"tool" : { | |
"type" : "sticker", | |
"usage_capabilities" : { | |
"can_sticker" : "1", | |
"usable_out_of_game" : "1" | |
} | |
} | |
}, | |
"1210" : { | |
"name" : "Gift - 1 Player", | |
"first_sale_date" : "2013/12/17", | |
"prefab" : "valve csgo_tool", | |
"item_name" : "#CSGO_Tool_Gift1Player", | |
"item_type_name" : "#CSGO_Tool_GiftTag", | |
"item_description" : "#CSGO_Tool_Gift1Player_Desc", | |
"image_inventory" : "econ/weapon_cases/gift1player", | |
"capabilities" : { | |
"usable_gc" : "1", | |
"usable_out_of_game" : "0" | |
}, | |
"tool" : { | |
"type" : "gift", | |
"usage" : { | |
"num_items" : "1", | |
"max_recipients" : "1", | |
"target_rule" : "only_other_players" | |
} | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "8" | |
} | |
} | |
}, | |
"1211" : { | |
"name" : "Gift - 9 Players", | |
"first_sale_date" : "2013/12/16", | |
"prefab" : "valve csgo_tool", | |
"item_name" : "#CSGO_Tool_Gift9Players", | |
"item_type_name" : "#CSGO_Tool_GiftTag", | |
"item_description" : "#CSGO_Tool_Gift9Players_Desc", | |
"image_inventory" : "econ/weapon_cases/gift9players", | |
"capabilities" : { | |
"usable_gc" : "1", | |
"usable_out_of_game" : "0" | |
}, | |
"tool" : { | |
"type" : "gift", | |
"usage" : { | |
"num_items" : "1", | |
"max_recipients" : "9", | |
"target_rule" : "only_other_players" | |
} | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "8" | |
} | |
} | |
}, | |
"1212" : { | |
"name" : "Sticker Crate Key", | |
"item_name" : "#CSGO_sticker_crate_key_1", | |
"item_description" : "#CSGO_sticker_crate_key_1_desc", | |
"first_sale_date" : "2014/01/29", | |
"prefab" : "valve weapon_case_key", | |
"image_inventory" : "econ/tools/sticker_crate_key", | |
"tool" : { | |
"restriction" : "sticker_crate_key" | |
} | |
}, | |
"1214" : { | |
"name" : "Community Case Key 1", | |
"item_name" : "#CSGO_community_crate_key_1", | |
"item_description" : "#CSGO_community_crate_key_1_desc", | |
"first_sale_date" : "2013/12/18", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_1", | |
"tool" : { | |
"restriction" : "community_case_1" | |
} | |
}, | |
"1215" : { | |
"name" : "Gift - 25 Spectators", | |
"first_sale_date" : "2013/12/16", | |
"prefab" : "valve csgo_tool", | |
"item_name" : "#CSGO_Tool_Gift25Spectators", | |
"item_type_name" : "#CSGO_Tool_GiftTag", | |
"item_description" : "#CSGO_Tool_Gift25Spectators_Desc", | |
"image_inventory" : "econ/weapon_cases/gift25spectators", | |
"capabilities" : { | |
"usable_gc" : "1", | |
"usable_out_of_game" : "0" | |
}, | |
"tool" : { | |
"type" : "gift", | |
"usage" : { | |
"num_items" : "1", | |
"max_recipients" : "25", | |
"target_rule" : "only_other_spectators" | |
} | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "8" | |
} | |
} | |
}, | |
"1303" : { | |
"name" : "Community Case Key 2", | |
"item_name" : "#CSGO_community_crate_key_2", | |
"item_description" : "#CSGO_community_crate_key_2_desc", | |
"first_sale_date" : "2014/2/19", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_2", | |
"tool" : { | |
"restriction" : "community_case_2" | |
} | |
}, | |
"1304" : { | |
"name" : "Community Sticker Capsule 1 Key May 2014", | |
"item_name" : "#CSGO_sticker_crate_key_community01", | |
"item_description" : "#CSGO_sticker_crate_key_community01_desc", | |
"first_sale_date" : "2014/04/30", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/sticker_crate_key_community01", | |
"tool" : { | |
"restriction" : "sticker_pack_community01_key" | |
} | |
}, | |
"1305" : { | |
"name" : "Community Case Key 3 May 2014", | |
"item_name" : "#CSGO_community_crate_key_3", | |
"item_description" : "#CSGO_community_crate_key_3_desc", | |
"first_sale_date" : "2014/4/30", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_3", | |
"tool" : { | |
"restriction" : "community_case_3" | |
} | |
}, | |
"1306" : { | |
"name" : "quest", | |
"item_name" : "#quest", | |
"item_description" : "#quest_desc", | |
"prefab" : "quest_prefab", | |
"attributes" : { | |
"cannot trade" : "1" | |
} | |
}, | |
"1307" : { | |
"name" : "Community Case Key 3 June 2014", | |
"item_name" : "#CSGO_community_crate_key_3", | |
"item_description" : "#CSGO_community_crate_key_3_desc", | |
"first_sale_date" : "2014/06/11", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_3", | |
"tool" : { | |
"restriction" : "community_case_3" | |
} | |
}, | |
"1308" : { | |
"name" : "Community Sticker Capsule 1 Key June 2014", | |
"item_name" : "#CSGO_sticker_crate_key_community01", | |
"item_description" : "#CSGO_sticker_crate_key_community01_desc", | |
"first_sale_date" : "2014/06/11", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/sticker_crate_key_community01", | |
"tool" : { | |
"restriction" : "sticker_pack_community01_key" | |
} | |
}, | |
"1309" : { | |
"name" : "Community Case Key 4 July 2014", | |
"item_name" : "#CSGO_community_crate_key_4", | |
"item_description" : "#CSGO_community_crate_key_4_desc", | |
"first_sale_date" : "2014/06/23", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_4", | |
"tool" : { | |
"restriction" : "community_case_4" | |
} | |
}, | |
"1310" : { | |
"name" : "Community Case Key 4 August 2014", | |
"item_name" : "#CSGO_community_crate_key_4", | |
"item_description" : "#CSGO_community_crate_key_4_desc", | |
"first_sale_date" : "2014/06/23", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_4", | |
"tool" : { | |
"restriction" : "community_case_4" | |
} | |
}, | |
"1311" : { | |
"name" : "Community Case Key September 4", | |
"item_name" : "#CSGO_community_crate_key_4", | |
"item_description" : "#CSGO_community_crate_key_4_desc", | |
"first_sale_date" : "2014/07/01", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_4", | |
"tool" : { | |
"restriction" : "community_case_4" | |
} | |
}, | |
"1313" : { | |
"name" : "Community Case Key 4", | |
"item_name" : "#CSGO_community_crate_key_4", | |
"item_description" : "#CSGO_community_crate_key_4_desc", | |
"first_sale_date" : "2014/06/23", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_4", | |
"tool" : { | |
"restriction" : "community_case_4" | |
} | |
}, | |
"1314" : { | |
"name" : "musickit", | |
"prefab" : "musickit_prefab" | |
}, | |
"1315" : { | |
"name" : "Community Season Five Summer 2014", | |
"first_sale_date" : "2014/10/29", | |
"prefab" : "csgo_tool", | |
"item_type_name" : "#CSGO_Type_Ticket", | |
"item_name" : "#CSGO_Ticket_CommunitySeasonFiveSummer2014", | |
"item_description" : "#CSGO_Ticket_CommunitySeasonFiveSummer2014_Desc", | |
"image_inventory" : "econ/status_icons/operation_vanguard_pass", | |
"capabilities" : { | |
"usable_gc" : "1", | |
"usable_out_of_game" : "1" | |
}, | |
"tool" : { | |
"type" : "season_pass", | |
"use_string" : "#ConsumeItem" | |
}, | |
"attributes" : { | |
"season access" : "4" | |
} | |
}, | |
"1316" : { | |
"name" : "Community Season Five Summer 2014 Coin 1", | |
"prefab" : "season5_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin1", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin1_Desc", | |
"image_inventory" : "econ/status_icons/operation_vanguard_bronze", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/vanguard_bronze.mdl", | |
"upgrade threshold" : "3" | |
} | |
}, | |
"1317" : { | |
"name" : "Community Season Five Summer 2014 Coin 2", | |
"prefab" : "season5_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin2", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin2_Desc", | |
"image_inventory" : "econ/status_icons/operation_vanguard_silver", | |
"min_ilevel" : "2", | |
"max_ilevel" : "2", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/vanguard_silver.mdl", | |
"upgrade threshold" : "4" | |
} | |
}, | |
"1318" : { | |
"name" : "Community Season Five Summer 2014 Coin 3", | |
"prefab" : "season5_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin3", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonFiveSummer2014_Coin3_Desc", | |
"image_inventory" : "econ/status_icons/operation_vanguard_gold", | |
"min_ilevel" : "3", | |
"max_ilevel" : "3", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/vanguard_gold.mdl" | |
} | |
}, | |
"1320" : { | |
"name" : "campaign magrheb", | |
"item_name" : "#csgo_campaign_maghreb", | |
"item_description" : "#csgo_campaign_maghreb_desc", | |
"prefab" : "valve campaign_prefab", | |
"attributes" : { | |
"campaign id" : "3" | |
} | |
}, | |
"1321" : { | |
"name" : "campaign eurasia", | |
"item_name" : "#csgo_campaign_eurasia", | |
"item_description" : "#csgo_campaign_eurasia_desc", | |
"prefab" : "valve campaign_prefab", | |
"attributes" : { | |
"campaign id" : "1" | |
} | |
}, | |
"1322" : { | |
"name" : "Community Case Key 5", | |
"item_name" : "#CSGO_community_crate_key_5", | |
"item_description" : "#CSGO_community_crate_key_5_desc", | |
"first_sale_date" : "2014/11/5", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_5", | |
"tool" : { | |
"restriction" : "community_case_5" | |
} | |
}, | |
"1323" : { | |
"name" : "Community Case Key 6", | |
"item_name" : "#CSGO_community_crate_key_6", | |
"item_description" : "#CSGO_community_crate_key_6_desc", | |
"first_sale_date" : "2015/1/8", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_6", | |
"tool" : { | |
"restriction" : "community_case_6" | |
} | |
}, | |
"1324" : { | |
"name" : "stattrak_swap_tool", | |
"first_sale_date" : "2015/3/30", | |
"prefab" : "csgo_tool", | |
"item_name" : "#CSGO_tool_stattrak_swap", | |
"item_description" : "#CSGO_tool_stattrak_swap_desc", | |
"image_inventory" : "econ/tools/stattrak_swap_tool", | |
"tool" : { | |
"type" : "stattrak_swap", | |
"usage_capabilities" : { | |
"can_stattrack_swap" : "1" | |
} | |
} | |
}, | |
"1325" : { | |
"name" : "Community Case Key 7", | |
"item_name" : "#CSGO_community_crate_key_7", | |
"item_description" : "#CSGO_community_crate_key_7_desc", | |
"first_sale_date" : "2015/4/15", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_7", | |
"tool" : { | |
"restriction" : "community_case_7" | |
} | |
}, | |
"1326" : { | |
"name" : "Community Season Six 2015", | |
"first_sale_date" : "2015/05/01", | |
"prefab" : "csgo_tool", | |
"item_type_name" : "#CSGO_Type_Ticket", | |
"item_name" : "#CSGO_Ticket_CommunitySeasonSix2015", | |
"item_description" : "#CSGO_Ticket_CommunitySeasonSix2015_Desc", | |
"image_inventory" : "econ/status_icons/operation_6_pass", | |
"capabilities" : { | |
"usable_gc" : "1", | |
"usable_out_of_game" : "1" | |
}, | |
"tool" : { | |
"type" : "season_pass", | |
"use_string" : "#ConsumeItem" | |
}, | |
"attributes" : { | |
"season access" : "5" | |
} | |
}, | |
"1327" : { | |
"name" : "Community Season Six 2015 Coin 1", | |
"prefab" : "season6_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonSix2015_Coin1", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonSix2015_Coin1_Desc", | |
"image_inventory" : "econ/status_icons/operation_6_bronze", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/bloodhound_bronze.mdl", | |
"upgrade threshold" : "9" | |
} | |
}, | |
"1328" : { | |
"name" : "Community Season Six 2015 Coin 2", | |
"prefab" : "season6_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonSix2015_Coin2", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonSix2015_Coin2_Desc", | |
"image_inventory" : "econ/status_icons/operation_6_silver", | |
"min_ilevel" : "2", | |
"max_ilevel" : "2", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/bloodhound_silver.mdl", | |
"upgrade threshold" : "14" | |
} | |
}, | |
"1329" : { | |
"name" : "Community Season Six 2015 Coin 3", | |
"prefab" : "season6_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonSix2015_Coin3", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonSix2015_Coin3_Desc", | |
"image_inventory" : "econ/status_icons/operation_6_gold", | |
"min_ilevel" : "3", | |
"max_ilevel" : "3", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/bloodhound_gold.mdl" | |
} | |
}, | |
"1330" : { | |
"name" : "Falchion Case Key", | |
"item_name" : "#CSGO_community_crate_key_8", | |
"item_description" : "#CSGO_community_crate_key_8_desc", | |
"first_sale_date" : "2015/5/19", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_8", | |
"tool" : { | |
"restriction" : "community_case_8" | |
} | |
}, | |
"1331" : { | |
"name" : "prestige coin 2015", | |
"prefab" : "prestige_coin", | |
"item_name" : "#CSGO_Collectible_GlobalGeneral2015", | |
"item_description" : "#CSGO_Collectible_Desc_GlobalGeneral2015", | |
"image_inventory" : "econ/status_icons/service_medal_2015", | |
"attributes" : { | |
"prestige year" : "2015", | |
"pedestal display model" : "models/inventory_items/service_medal_2015.mdl" | |
} | |
}, | |
"1332" : { | |
"name" : "prestige coin 2015 level 2", | |
"prefab" : "prestige_coin", | |
"item_name" : "#CSGO_Collectible_GlobalGeneral2015", | |
"item_description" : "#CSGO_Collectible_Desc_GlobalGeneral2015", | |
"image_inventory" : "econ/status_icons/service_medal_2015_2", | |
"attributes" : { | |
"prestige year" : "2015", | |
"pedestal display model" : "models/inventory_items/service_medal_2015_2.mdl" | |
} | |
}, | |
"1333" : { | |
"name" : "Community Case Key 9", | |
"item_name" : "#CSGO_community_crate_key_9", | |
"item_description" : "#CSGO_community_crate_key_9_desc", | |
"first_sale_date" : "2015/9/15", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_9", | |
"tool" : { | |
"restriction" : "community_case_9" | |
} | |
}, | |
"1334" : { | |
"name" : "crate_community_10 Key", | |
"item_name" : "#CSGO_crate_community_10_key", | |
"item_description" : "#CSGO_crate_community_10_key_desc", | |
"first_sale_date" : "2015-11-30", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_10", | |
"tool" : { | |
"restriction" : "crate_community_10" | |
} | |
}, | |
"1335" : { | |
"name" : "CommunitySeasonSeven2016", | |
"first_sale_date" : "2016/01/01", | |
"prefab" : "csgo_tool", | |
"item_name" : "#CSGO_Ticket_CommunitySeasonSeven2016", | |
"item_description" : "#CSGO_Ticket_CommunitySeasonSeven2016_Desc", | |
"image_inventory" : "econ/status_icons/operation_7_pass", | |
"capabilities" : { | |
"usable_gc" : "1", | |
"usable_out_of_game" : "1" | |
}, | |
"tool" : { | |
"type" : "season_pass", | |
"use_string" : "#ConsumeItem" | |
}, | |
"attributes" : { | |
"season access" : "6" | |
} | |
}, | |
"1336" : { | |
"name" : "CommunitySeasonSeven2016 Coin 1", | |
"prefab" : "season7_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonSeven2016_Coin1", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonSeven2016_Coin1_Desc", | |
"image_inventory" : "econ/status_icons/operation_7_bronze", | |
"min_ilevel" : "1", | |
"max_ilevel" : "1", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/operation_7_bronze.mdl", | |
"upgrade threshold" : "9" | |
} | |
}, | |
"1337" : { | |
"name" : "CommunitySeasonSeven2016 Coin 2", | |
"prefab" : "season7_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonSeven2016_Coin2", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonSeven2016_Coin2_Desc", | |
"image_inventory" : "econ/status_icons/operation_7_silver", | |
"min_ilevel" : "2", | |
"max_ilevel" : "2", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/operation_7_silver.mdl", | |
"upgrade threshold" : "14" | |
} | |
}, | |
"1338" : { | |
"name" : "CommunitySeasonSeven2016 Coin 3", | |
"prefab" : "season7_coin", | |
"item_name" : "#CSGO_Collectible_CommunitySeasonSeven2016_Coin3", | |
"item_description" : "#CSGO_Collectible_CommunitySeasonSeven2016_Coin3_Desc", | |
"image_inventory" : "econ/status_icons/operation_7_gold", | |
"min_ilevel" : "3", | |
"max_ilevel" : "3", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/operation_7_gold.mdl" | |
} | |
}, | |
"1339" : { | |
"name" : "prestige coin 2016", | |
"prefab" : "prestige_coin", | |
"item_name" : "#CSGO_Collectible_GlobalGeneral2016", | |
"item_description" : "#CSGO_Collectible_Desc_GlobalGeneral2016", | |
"image_inventory" : "econ/status_icons/service_medal_2016_lvl1", | |
"attributes" : { | |
"prestige year" : "2016", | |
"pedestal display model" : "models/inventory_items/service_medal_2016_lvl1.mdl" | |
} | |
}, | |
"1340" : { | |
"name" : "prestige coin 2016 level 2", | |
"prefab" : "prestige_coin", | |
"item_name" : "#CSGO_Collectible_GlobalGeneral2016", | |
"item_description" : "#CSGO_Collectible_Desc_GlobalGeneral2016", | |
"image_inventory" : "econ/status_icons/service_medal_2016_lvl2", | |
"attributes" : { | |
"prestige year" : "2016", | |
"pedestal display model" : "models/inventory_items/service_medal_2016_lvl2.mdl" | |
} | |
}, | |
"1341" : { | |
"name" : "prestige coin 2016 level 3", | |
"prefab" : "prestige_coin", | |
"item_name" : "#CSGO_Collectible_GlobalGeneral2016", | |
"item_description" : "#CSGO_Collectible_Desc_GlobalGeneral2016", | |
"image_inventory" : "econ/status_icons/service_medal_2016_lvl3", | |
"attributes" : { | |
"prestige year" : "2016", | |
"pedestal display model" : "models/inventory_items/service_medal_2016_lvl3.mdl" | |
} | |
}, | |
"1342" : { | |
"name" : "prestige coin 2016 level 4", | |
"prefab" : "prestige_coin", | |
"item_name" : "#CSGO_Collectible_GlobalGeneral2016", | |
"item_description" : "#CSGO_Collectible_Desc_GlobalGeneral2016", | |
"image_inventory" : "econ/status_icons/service_medal_2016_lvl4", | |
"attributes" : { | |
"prestige year" : "2016", | |
"pedestal display model" : "models/inventory_items/service_medal_2016_lvl4.mdl" | |
} | |
}, | |
"1343" : { | |
"name" : "prestige coin 2016 level 5", | |
"prefab" : "prestige_coin", | |
"item_name" : "#CSGO_Collectible_GlobalGeneral2016", | |
"item_description" : "#CSGO_Collectible_Desc_GlobalGeneral2016", | |
"image_inventory" : "econ/status_icons/service_medal_2016_lvl5", | |
"attributes" : { | |
"prestige year" : "2016", | |
"pedestal display model" : "models/inventory_items/service_medal_2016_lvl5.mdl" | |
} | |
}, | |
"1344" : { | |
"name" : "prestige coin 2016 level 6", | |
"prefab" : "prestige_coin", | |
"item_name" : "#CSGO_Collectible_GlobalGeneral2016", | |
"item_description" : "#CSGO_Collectible_Desc_GlobalGeneral2016", | |
"image_inventory" : "econ/status_icons/service_medal_2016_lvl6", | |
"attributes" : { | |
"prestige year" : "2016", | |
"pedestal display model" : "models/inventory_items/service_medal_2016_lvl6.mdl" | |
} | |
}, | |
"4001" : { | |
"item_name" : "#CSGO_crate_valve_1", | |
"name" : "crate_valve_1", | |
"image_inventory" : "econ/weapon_cases/crate_valve_1", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1203" : "1" | |
}, | |
"tool" : { | |
"restriction" : "generic_valve_key" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "1" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_weapons_i", | |
"tag_text" : "#CSGO_set_weapons_i", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4002" : { | |
"item_name" : "#CSGO_crate_esports_2013", | |
"item_description" : "#CSGO_crate_esports_2013_desc", | |
"name" : "crate_esports_2013", | |
"image_inventory" : "econ/weapon_cases/crate_esports_2013", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1204" : "1" | |
}, | |
"tool" : { | |
"restriction" : "esports_crate_key" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "2" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_esports", | |
"tag_text" : "#CSGO_set_esports", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4004" : { | |
"item_name" : "#CSGO_crate_valve_2", | |
"name" : "crate_valve_2", | |
"image_inventory" : "econ/weapon_cases/crate_valve_2", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1203" : "1" | |
}, | |
"tool" : { | |
"restriction" : "generic_valve_key" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "4" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_weapons_ii", | |
"tag_text" : "#CSGO_set_weapons_ii", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4003" : { | |
"item_name" : "#CSGO_crate_operation_ii", | |
"name" : "crate_operation_ii", | |
"image_inventory" : "econ/weapon_cases/crate_operation_ii", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1203" : "1" | |
}, | |
"tool" : { | |
"restriction" : "generic_valve_key" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "3" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_bravo_i", | |
"tag_text" : "#CSGO_set_bravo_i", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4005" : { | |
"item_name" : "#CSGO_crate_esports_2013_winter", | |
"item_description" : "#CSGO_crate_esports_2013_winter_desc", | |
"name" : "crate_esports_2013_winter", | |
"image_inventory" : "econ/weapon_cases/crate_esports_2013_14", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1204" : "1" | |
}, | |
"tool" : { | |
"restriction" : "esports_crate_key" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "5" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_esports_ii", | |
"tag_text" : "#CSGO_set_esports_ii", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4006" : { | |
"item_name" : "#CSGO_crate_dhw13_promo", | |
"name" : "crate_dhw13_promo", | |
"image_inventory" : "econ/weapon_cases/crate_dhw13_promo", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "6" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "1" | |
} | |
} | |
}, | |
"4007" : { | |
"item_name" : "#CSGO_crate_sticker_pack01", | |
"name" : "crate_sticker_pack01", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack01", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1212" : "1" | |
}, | |
"tool" : { | |
"restriction" : "sticker_crate_key" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "9" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack01", | |
"tag_text" : "#CSGO_crate_sticker_pack01", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4009" : { | |
"item_name" : "#CSGO_crate_community_1", | |
"name" : "crate_community_1", | |
"image_inventory" : "econ/weapon_cases/crate_community_1", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1214" : "1" | |
}, | |
"tool" : { | |
"restriction" : "community_case_1" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_1", | |
"tag_text" : "#CSGO_set_community_1", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4010" : { | |
"item_name" : "#CSGO_crate_valve_3", | |
"name" : "crate_valve_3", | |
"image_inventory" : "econ/weapon_cases/crate_valve_3", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1203" : "1" | |
}, | |
"tool" : { | |
"restriction" : "generic_valve_key" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "10" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_weapons_iii", | |
"tag_text" : "#CSGO_set_weapons_iii", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4011" : { | |
"item_name" : "#CSGO_crate_community_2", | |
"name" : "crate_community_2", | |
"image_inventory" : "econ/weapon_cases/crate_community_2", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1303" : "1" | |
}, | |
"tool" : { | |
"restriction" : "community_case_2" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "11" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_2", | |
"tag_text" : "#CSGO_set_community_2", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4012" : { | |
"item_name" : "#CSGO_crate_sticker_pack02", | |
"name" : "crate_sticker_pack02", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack02", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1212" : "1" | |
}, | |
"tool" : { | |
"restriction" : "sticker_crate_key" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "12" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack02", | |
"tag_text" : "#CSGO_crate_sticker_pack02", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4013" : { | |
"item_name" : "#CSGO_crate_ems14_promo", | |
"name" : "crate_ems14_promo", | |
"image_inventory" : "econ/weapon_cases/crate_ems14_promo", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "13" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "3" | |
} | |
} | |
}, | |
"4014" : { | |
"item_name" : "#CSGO_crate_sticker_pack_kat2014_01", | |
"name" : "crate_sticker_pack_kat2014_01", | |
"item_description" : "#CSGO_crate_sticker_pack_kat2014_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_kat2014_01", | |
"first_sale_date" : "2014/03/02", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "14" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "3" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_kat2014_01", | |
"tag_text" : "#CSGO_crate_sticker_pack_kat2014_01", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4015" : { | |
"item_name" : "#CSGO_crate_sticker_pack_kat2014_02", | |
"item_description" : "#CSGO_crate_sticker_pack_kat2014_desc", | |
"name" : "crate_sticker_pack_kat2014_02", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_kat2014_02", | |
"first_sale_date" : "2014/03/02", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "15" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "3" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_kat2014_02", | |
"tag_text" : "#CSGO_crate_sticker_pack_kat2014_02", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4016" : { | |
"item_name" : "#CSGO_crate_sticker_pack_community01", | |
"item_description" : "CSGO_crate_sticker_pack_community01_desc", | |
"name" : "crate_sticker_pack_community01", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_community01", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1308" : "1" | |
}, | |
"tool" : { | |
"restriction" : "sticker_pack_community01_key" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "16" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_community01", | |
"tag_text" : "#CSGO_crate_sticker_pack_community01", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4017" : { | |
"item_name" : "#CSGO_crate_community_3", | |
"name" : "crate_community_3", | |
"image_inventory" : "econ/weapon_cases/crate_community_3", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1307" : "1" | |
}, | |
"tool" : { | |
"restriction" : "community_case_3" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "17" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_3", | |
"tag_text" : "#CSGO_set_community_3", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
}, | |
"loot_list_rare_item_footer" : "#crate_community_3_unusual_lootlist", | |
"loot_list_rare_item_name" : "#crate_community_3_unusual_itemname", | |
"image_unusual_item" : "econ/weapon_cases/crate_community_3_rare_item" | |
}, | |
"4018" : { | |
"item_name" : "#CSGO_crate_community_4", | |
"name" : "crate_community_4", | |
"image_inventory" : "econ/weapon_cases/crate_community_4", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1313" : "1" | |
}, | |
"tool" : { | |
"restriction" : "community_case_4" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "18" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_4", | |
"tag_text" : "#CSGO_set_community_4", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
}, | |
"loot_list_rare_item_footer" : "#crate_community_4_unusual_lootlist", | |
"loot_list_rare_item_name" : "#crate_community_4_unusual_itemname", | |
"image_unusual_item" : "econ/weapon_cases/crate_community_4_rare_item" | |
}, | |
"4019" : { | |
"item_name" : "#CSGO_crate_esports_2014_summer", | |
"item_description" : "#CSGO_crate_esports_2014_summer_desc", | |
"name" : "crate_esports_2014_summer", | |
"image_inventory" : "econ/weapon_cases/crate_esports_2014_summer", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1204" : "1" | |
}, | |
"tool" : { | |
"restriction" : "esports_crate_key" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "19" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_esports_iii", | |
"tag_text" : "#CSGO_set_esports_2014_summer", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4020" : { | |
"item_name" : "#CSGO_crate_sticker_pack_cologne2014_01", | |
"name" : "crate_sticker_pack_cologne2014_01", | |
"item_description" : "#CSGO_crate_sticker_pack_cologne2014_desc01", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_cologne2014_01", | |
"first_sale_date" : "2014/08/01", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "20" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_cologne2014_01", | |
"tag_text" : "#CSGO_crate_sticker_pack_cologne2014_01", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4021" : { | |
"item_name" : "#CSGO_crate_sticker_pack_cologne2014_02", | |
"name" : "crate_sticker_pack_cologne2014_02", | |
"item_description" : "#CSGO_crate_sticker_pack_cologne2014_desc02", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_cologne2014_02", | |
"first_sale_date" : "2014/08/01", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "21" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_cologne2014_02", | |
"tag_text" : "#CSGO_crate_sticker_pack_cologne2014_02", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4022" : { | |
"item_name" : "#CSGO_crate_esl14_promo_de_dust2", | |
"name" : "crate_esl14_promo_de_dust2", | |
"image_inventory" : "econ/weapon_cases/crate_esl14_promo_de_dust2", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "22" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_dust_2", | |
"tag_text" : "#CSGO_set_dust_2", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4023" : { | |
"item_name" : "#CSGO_crate_esl14_promo_de_inferno", | |
"name" : "crate_esl14_promo_de_inferno", | |
"image_inventory" : "econ/weapon_cases/crate_esl14_promo_de_inferno", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "23" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_inferno", | |
"tag_text" : "#CSGO_set_inferno", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4024" : { | |
"item_name" : "#CSGO_crate_esl14_promo_de_mirage", | |
"name" : "crate_esl14_promo_de_mirage", | |
"image_inventory" : "econ/weapon_cases/crate_esl14_promo_de_mirage", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "24" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_mirage", | |
"tag_text" : "#CSGO_set_mirage", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4025" : { | |
"item_name" : "#CSGO_crate_esl14_promo_de_nuke", | |
"name" : "crate_esl14_promo_de_nuke", | |
"image_inventory" : "econ/weapon_cases/crate_esl14_promo_de_nuke", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "25" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_nuke", | |
"tag_text" : "#CSGO_set_nuke", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4026" : { | |
"item_name" : "#CSGO_crate_esl14_promo_de_cache", | |
"name" : "crate_esl14_promo_de_cache", | |
"image_inventory" : "econ/weapon_cases/crate_esl14_promo_de_cache", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "26" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_cache", | |
"tag_text" : "#CSGO_set_cache", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4027" : { | |
"item_name" : "#CSGO_crate_esl14_promo_de_cbble", | |
"name" : "crate_esl14_promo_de_cbble", | |
"image_inventory" : "econ/weapon_cases/crate_esl14_promo_de_cbble", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "27" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_cobblestone", | |
"tag_text" : "#CSGO_set_cobblestone", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4028" : { | |
"item_name" : "#CSGO_crate_esl14_promo_de_overpass", | |
"name" : "crate_esl14_promo_de_overpass", | |
"image_inventory" : "econ/weapon_cases/crate_esl14_promo_de_overpass", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "28" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "4" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_overpass", | |
"tag_text" : "#CSGO_set_overpass", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4029" : { | |
"item_name" : "#CSGO_crate_operation_vanguard", | |
"item_description" : "#CSGO_crate_operation_vanguard_desc", | |
"name" : "crate_operation_vanguard", | |
"image_inventory" : "econ/weapon_cases/crate_community_5", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1322" : "1" | |
}, | |
"tool" : { | |
"restriction" : "community_case_5" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "29" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_5", | |
"tag_text" : "#CSGO_set_community_5", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4030" : { | |
"item_name" : "#CSGO_crate_sticker_pack_dhw2014_01", | |
"name" : "crate_sticker_pack_dhw2014_01", | |
"item_description" : "#CSGO_crate_sticker_pack_dhw2014_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_dhw2014_01", | |
"first_sale_date" : "2014/11/20", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "30" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_dhw2014_01_collection", | |
"tag_text" : "#CSGO_crate_sticker_pack_dhw2014_01_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4031" : { | |
"item_name" : "#CSGO_crate_dhw14_promo_de_dust2", | |
"name" : "crate_dhw14_promo_de_dust2", | |
"image_inventory" : "econ/weapon_cases/crate_dhw14_promo_de_dust2", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "31" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_dust_2", | |
"tag_text" : "#CSGO_set_dust_2", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4032" : { | |
"item_name" : "#CSGO_crate_dhw14_promo_de_inferno", | |
"name" : "crate_dhw14_promo_de_inferno", | |
"image_inventory" : "econ/weapon_cases/crate_dhw14_promo_de_inferno", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "32" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_inferno", | |
"tag_text" : "#CSGO_set_inferno", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4033" : { | |
"item_name" : "#CSGO_crate_dhw14_promo_de_mirage", | |
"name" : "crate_dhw14_promo_de_mirage", | |
"image_inventory" : "econ/weapon_cases/crate_dhw14_promo_de_mirage", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "33" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_mirage", | |
"tag_text" : "#CSGO_set_mirage", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4034" : { | |
"item_name" : "#CSGO_crate_dhw14_promo_de_nuke", | |
"name" : "crate_dhw14_promo_de_nuke", | |
"image_inventory" : "econ/weapon_cases/crate_dhw14_promo_de_nuke", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "34" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_nuke", | |
"tag_text" : "#CSGO_set_nuke", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4035" : { | |
"item_name" : "#CSGO_crate_dhw14_promo_de_cache", | |
"name" : "crate_dhw14_promo_de_cache", | |
"image_inventory" : "econ/weapon_cases/crate_dhw14_promo_de_cache", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "35" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_cache", | |
"tag_text" : "#CSGO_set_cache", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4036" : { | |
"item_name" : "#CSGO_crate_dhw14_promo_de_cbble", | |
"name" : "crate_dhw14_promo_de_cbble", | |
"image_inventory" : "econ/weapon_cases/crate_dhw14_promo_de_cbble", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "36" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_cobblestone", | |
"tag_text" : "#CSGO_set_cobblestone", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4037" : { | |
"item_name" : "#CSGO_crate_dhw14_promo_de_overpass", | |
"name" : "crate_dhw14_promo_de_overpass", | |
"image_inventory" : "econ/weapon_cases/crate_dhw14_promo_de_overpass", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "37" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "5" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_overpass", | |
"tag_text" : "#CSGO_set_overpass", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4038" : { | |
"item_name" : "#StickerKit_dhw2014_fnatic", | |
"name" : "crate_sticker_pack_dhw2014_fnatic", | |
"item_description" : "#StickerKit_desc_dhw2014_fnatic", | |
"image_inventory" : "econ/stickers/dhw2014/fnatic", | |
"loot_list_name" : "dhw2014_fnatic_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4039" : { | |
"item_name" : "#StickerKit_dhw2014_cloud9", | |
"name" : "crate_sticker_pack_dhw2014_cloud9", | |
"item_description" : "#StickerKit_desc_dhw2014_cloud9", | |
"image_inventory" : "econ/stickers/dhw2014/cloud9", | |
"loot_list_name" : "dhw2014_cloud9_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4041" : { | |
"item_name" : "#StickerKit_dhw2014_ninjasinpyjamas", | |
"name" : "crate_sticker_pack_dhw2014_ninjasinpyjamas", | |
"item_description" : "#StickerKit_desc_dhw2014_ninjasinpyjamas", | |
"image_inventory" : "econ/stickers/dhw2014/ninjasinpyjamas", | |
"loot_list_name" : "dhw2014_ninjasinpyjamas_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4042" : { | |
"item_name" : "#StickerKit_dhw2014_virtuspro", | |
"name" : "crate_sticker_pack_dhw2014_virtuspro", | |
"item_description" : "#StickerKit_desc_dhw2014_virtuspro", | |
"image_inventory" : "econ/stickers/dhw2014/virtuspro", | |
"loot_list_name" : "dhw2014_virtuspro_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4043" : { | |
"item_name" : "#StickerKit_dhw2014_navi", | |
"name" : "crate_sticker_pack_dhw2014_navi", | |
"item_description" : "#StickerKit_desc_dhw2014_navi", | |
"image_inventory" : "econ/stickers/dhw2014/navi", | |
"loot_list_name" : "dhw2014_navi_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4045" : { | |
"item_name" : "#StickerKit_dhw2014_teamdignitas", | |
"name" : "crate_sticker_pack_dhw2014_dignitas", | |
"item_description" : "#StickerKit_desc_dhw2014_dignitas", | |
"image_inventory" : "econ/stickers/dhw2014/dignitas", | |
"loot_list_name" : "dhw2014_dignitas_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4046" : { | |
"item_name" : "#StickerKit_dhw2014_bravadogaming", | |
"name" : "crate_sticker_pack_dhw2014_bravadogaming", | |
"item_description" : "#StickerKit_desc_dhw2014_bravadogaming", | |
"image_inventory" : "econ/stickers/dhw2014/bravadogaming", | |
"loot_list_name" : "dhw2014_bravadogaming_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4047" : { | |
"item_name" : "#StickerKit_dhw2014_escgaming", | |
"name" : "crate_sticker_pack_dhw2014_escgaming", | |
"item_description" : "#StickerKit_desc_dhw2014_escgaming", | |
"image_inventory" : "econ/stickers/dhw2014/escgaming", | |
"loot_list_name" : "dhw2014_escgaming_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4048" : { | |
"item_name" : "#StickerKit_dhw2014_hellraisers", | |
"name" : "crate_sticker_pack_dhw2014_hellraisers", | |
"item_description" : "#StickerKit_desc_dhw2014_hellraisers", | |
"image_inventory" : "econ/stickers/dhw2014/hellraisers", | |
"loot_list_name" : "dhw2014_hellraisers_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4049" : { | |
"item_name" : "#StickerKit_dhw2014_myxmg", | |
"name" : "crate_sticker_pack_dhw2014_myxmg", | |
"item_description" : "#StickerKit_desc_dhw2014_myxmg", | |
"image_inventory" : "econ/stickers/dhw2014/myxmg", | |
"loot_list_name" : "dhw2014_myxmg_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4050" : { | |
"item_name" : "#StickerKit_dhw2014_ibuypower", | |
"name" : "crate_sticker_pack_dhw2014_ibuypower", | |
"item_description" : "#StickerKit_desc_dhw2014_ibuypower", | |
"image_inventory" : "econ/stickers/dhw2014/ibuypower", | |
"loot_list_name" : "dhw2014_ibuypower_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4051" : { | |
"item_name" : "#StickerKit_dhw2014_teamldlc", | |
"name" : "crate_sticker_pack_dhw2014_teamldlc", | |
"item_description" : "#StickerKit_desc_dhw2014_teamldlc", | |
"image_inventory" : "econ/stickers/dhw2014/teamldlc", | |
"loot_list_name" : "dhw2014_teamldlc_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4052" : { | |
"item_name" : "#StickerKit_dhw2014_pentasports", | |
"name" : "crate_sticker_pack_dhw2014_pentasports", | |
"item_description" : "#StickerKit_desc_dhw2014_pentasports", | |
"image_inventory" : "econ/stickers/dhw2014/pentasports", | |
"loot_list_name" : "dhw2014_pentasports_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4053" : { | |
"item_name" : "#StickerKit_dhw2014_planetkeydynamics", | |
"name" : "crate_sticker_pack_dhw2014_planetkeydynamics", | |
"item_description" : "#StickerKit_desc_dhw2014_planetkeydynamics", | |
"image_inventory" : "econ/stickers/dhw2014/planetkeydynamics", | |
"loot_list_name" : "dhw2014_planetkeydynamics_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4054" : { | |
"item_name" : "#StickerKit_dhw2014_dhw", | |
"name" : "crate_sticker_pack_dhw2014_dhw", | |
"item_description" : "#StickerKit_desc_dhw2014_dhw", | |
"image_inventory" : "econ/stickers/dhw2014/dreamhackwinter2014", | |
"loot_list_name" : "dhw2014_dhw_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4055" : { | |
"item_name" : "#StickerKit_dhw2014_3dmax", | |
"name" : "crate_sticker_pack_dhw2014_3dmax", | |
"item_description" : "#StickerKit_desc_dhw2014_3dmax", | |
"image_inventory" : "econ/stickers/dhw2014/3dmax", | |
"loot_list_name" : "dhw2014_3dmax_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4056" : { | |
"item_name" : "#StickerKit_dhw2014_copenhagenwolves", | |
"name" : "crate_sticker_pack_dhw2014_copenhagenwolves", | |
"item_description" : "#StickerKit_desc_dhw2014_copenhagenwolves", | |
"image_inventory" : "econ/stickers/dhw2014/copenhagenwolves", | |
"loot_list_name" : "dhw2014_copenhagenwolves_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4057" : { | |
"item_name" : "#StickerKit_dhw2014_datteam", | |
"name" : "crate_sticker_pack_dhw2014_datteam", | |
"item_description" : "#StickerKit_desc_dhw2014_datteam", | |
"image_inventory" : "econ/stickers/dhw2014/datteam", | |
"loot_list_name" : "dhw2014_datteam_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4058" : { | |
"item_name" : "#StickerKit_dhw2014_londonconspiracy", | |
"name" : "crate_sticker_pack_dhw2014_londonconspiracy", | |
"item_description" : "#StickerKit_desc_dhw2014_londonconspiracy", | |
"image_inventory" : "econ/stickers/dhw2014/londonconspiracy", | |
"loot_list_name" : "dhw2014_londonconspiracy_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4059" : { | |
"item_name" : "#StickerKit_dhw2014_mousesports", | |
"name" : "crate_sticker_pack_dhw2014_mousesports", | |
"item_description" : "#StickerKit_desc_dhw2014_mousesports", | |
"image_inventory" : "econ/stickers/dhw2014/mousesports", | |
"loot_list_name" : "dhw2014_mousesports_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4060" : { | |
"item_name" : "#StickerKit_dhw2014_flipsid3", | |
"name" : "crate_sticker_pack_dhw2014_flipsid3", | |
"item_description" : "#StickerKit_desc_dhw2014_flipsid3", | |
"image_inventory" : "econ/stickers/dhw2014/flipsid3", | |
"loot_list_name" : "dhw2014_flipsid3_rare", | |
"prefab" : "dhw14_sticker_capsule_prefab" | |
}, | |
"4061" : { | |
"item_name" : "#CSGO_crate_community_6", | |
"item_description" : "#CSGO_crate_community_6_desc", | |
"first_sale_date" : "2015/1/8", | |
"name" : "crate_community_6", | |
"image_inventory" : "econ/weapon_cases/crate_community_6", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1323" : "1" | |
}, | |
"tool" : { | |
"restriction" : "community_case_6" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "38" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_6", | |
"tag_text" : "#CSGO_set_community_6", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4062" : { | |
"item_name" : "#StickerKit_eslkatowice2015_3dmax", | |
"name" : "crate_sticker_pack_eslkatowice2015_3dmax", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_3dmax", | |
"image_inventory" : "econ/stickers/eslkatowice2015/3dmax", | |
"loot_list_name" : "eslkatowice2015_3dmax_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4063" : { | |
"item_name" : "#StickerKit_eslkatowice2015_cloud9", | |
"name" : "crate_sticker_pack_eslkatowice2015_cloud9", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_cloud9", | |
"image_inventory" : "econ/stickers/eslkatowice2015/cloud9", | |
"loot_list_name" : "eslkatowice2015_cloud9_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4064" : { | |
"item_name" : "#StickerKit_eslkatowice2015_counterlogic", | |
"name" : "crate_sticker_pack_eslkatowice2015_counterlogic", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_counterlogic", | |
"image_inventory" : "econ/stickers/eslkatowice2015/counterlogic", | |
"loot_list_name" : "eslkatowice2015_counterlogic_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4065" : { | |
"item_name" : "#StickerKit_eslkatowice2015_flipsid3", | |
"name" : "crate_sticker_pack_eslkatowice2015_flipsid3", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_flipsid3", | |
"image_inventory" : "econ/stickers/eslkatowice2015/flipsid3", | |
"loot_list_name" : "eslkatowice2015_flipsid3_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4066" : { | |
"item_name" : "#StickerKit_eslkatowice2015_fnatic", | |
"name" : "crate_sticker_pack_eslkatowice2015_fnatic", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_fnatic", | |
"image_inventory" : "econ/stickers/eslkatowice2015/fnatic", | |
"loot_list_name" : "eslkatowice2015_fnatic_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4067" : { | |
"item_name" : "#StickerKit_eslkatowice2015_hellraisers", | |
"name" : "crate_sticker_pack_eslkatowice2015_hellraisers", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_hellraisers", | |
"image_inventory" : "econ/stickers/eslkatowice2015/hellraisers", | |
"loot_list_name" : "eslkatowice2015_hellraisers_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4068" : { | |
"item_name" : "#StickerKit_eslkatowice2015_keyd", | |
"name" : "crate_sticker_pack_eslkatowice2015_keyd", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_keyd", | |
"image_inventory" : "econ/stickers/eslkatowice2015/keyd", | |
"loot_list_name" : "eslkatowice2015_keyd_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4069" : { | |
"item_name" : "#StickerKit_eslkatowice2015_lgb", | |
"name" : "crate_sticker_pack_eslkatowice2015_lgb", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_lgb", | |
"image_inventory" : "econ/stickers/eslkatowice2015/lgb", | |
"loot_list_name" : "eslkatowice2015_lgb_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4070" : { | |
"item_name" : "#StickerKit_eslkatowice2015_navi", | |
"name" : "crate_sticker_pack_eslkatowice2015_navi", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_navi", | |
"image_inventory" : "econ/stickers/eslkatowice2015/navi", | |
"loot_list_name" : "eslkatowice2015_navi_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4071" : { | |
"item_name" : "#StickerKit_eslkatowice2015_ninjasinpyjamas", | |
"name" : "crate_sticker_pack_eslkatowice2015_ninjasinpyjamas", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas", | |
"image_inventory" : "econ/stickers/eslkatowice2015/ninjasinpyjamas", | |
"loot_list_name" : "eslkatowice2015_ninjasinpyjamas_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4072" : { | |
"item_name" : "#StickerKit_eslkatowice2015_pentasports", | |
"name" : "crate_sticker_pack_eslkatowice2015_pentasports", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_pentasports", | |
"image_inventory" : "econ/stickers/eslkatowice2015/pentasports", | |
"loot_list_name" : "eslkatowice2015_pentasports_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4073" : { | |
"item_name" : "#StickerKit_eslkatowice2015_teamenvyus", | |
"name" : "crate_sticker_pack_eslkatowice2015_teamenvyus", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_teamenvyus", | |
"image_inventory" : "econ/stickers/eslkatowice2015/teamenvyus", | |
"loot_list_name" : "eslkatowice2015_teamenvyus_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4074" : { | |
"item_name" : "#StickerKit_eslkatowice2015_teamsolomid", | |
"name" : "crate_sticker_pack_eslkatowice2015_teamsolomid", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_teamsolomid", | |
"image_inventory" : "econ/stickers/eslkatowice2015/teamsolomid", | |
"loot_list_name" : "eslkatowice2015_teamsolomid_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4075" : { | |
"item_name" : "#StickerKit_eslkatowice2015_titan", | |
"name" : "crate_sticker_pack_eslkatowice2015_titan", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_titan", | |
"image_inventory" : "econ/stickers/eslkatowice2015/titan", | |
"loot_list_name" : "eslkatowice2015_titan_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4076" : { | |
"item_name" : "#StickerKit_eslkatowice2015_virtuspro", | |
"name" : "crate_sticker_pack_eslkatowice2015_virtuspro", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_virtuspro", | |
"image_inventory" : "econ/stickers/eslkatowice2015/virtuspro", | |
"loot_list_name" : "eslkatowice2015_virtuspro_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4077" : { | |
"item_name" : "#StickerKit_eslkatowice2015_voxeminor", | |
"name" : "crate_sticker_pack_eslkatowice2015_voxeminor", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_voxeminor", | |
"image_inventory" : "econ/stickers/eslkatowice2015/voxeminor", | |
"loot_list_name" : "eslkatowice2015_voxeminor_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4078" : { | |
"item_name" : "#StickerKit_eslkatowice2015_esl_a", | |
"name" : "crate_sticker_pack_eslkatowice2015_esl_a", | |
"item_description" : "#StickerKit_desc_eslkatowice2015_esl_a", | |
"image_inventory" : "econ/stickers/eslkatowice2015/esl_a", | |
"loot_list_name" : "eslkatowice2015_esl_a_rare", | |
"prefab" : "eslkatowice2015_sticker_capsule_prefab" | |
}, | |
"4079" : { | |
"item_name" : "#CSGO_crate_eslkatowice2015_promo_de_dust2", | |
"name" : "crate_eslkatowice2015_promo_de_dust2", | |
"image_inventory" : "econ/weapon_cases/crate_eslkatowice2015_promo_de_dust2", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "39" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_dust_2", | |
"tag_text" : "#CSGO_set_dust_2", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4080" : { | |
"item_name" : "#CSGO_crate_eslkatowice2015_promo_de_inferno", | |
"name" : "crate_eslkatowice2015_promo_de_inferno", | |
"image_inventory" : "econ/weapon_cases/crate_eslkatowice2015_promo_de_inferno", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "40" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_inferno", | |
"tag_text" : "#CSGO_set_inferno", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4081" : { | |
"item_name" : "#CSGO_crate_eslkatowice2015_promo_de_mirage", | |
"name" : "crate_eslkatowice2015_promo_de_mirage", | |
"image_inventory" : "econ/weapon_cases/crate_eslkatowice2015_promo_de_mirage", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "41" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_mirage", | |
"tag_text" : "#CSGO_set_mirage", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4082" : { | |
"item_name" : "#CSGO_crate_eslkatowice2015_promo_de_nuke", | |
"name" : "crate_eslkatowice2015_promo_de_nuke", | |
"image_inventory" : "econ/weapon_cases/crate_eslkatowice2015_promo_de_nuke", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "42" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_nuke", | |
"tag_text" : "#CSGO_set_nuke", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4083" : { | |
"item_name" : "#CSGO_crate_eslkatowice2015_promo_de_cache", | |
"name" : "crate_eslkatowice2015_promo_de_cache", | |
"image_inventory" : "econ/weapon_cases/crate_eslkatowice2015_promo_de_cache", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "43" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_cache", | |
"tag_text" : "#CSGO_set_cache", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4084" : { | |
"item_name" : "#CSGO_crate_eslkatowice2015_promo_de_cbble", | |
"name" : "crate_eslkatowice2015_promo_de_cbble", | |
"image_inventory" : "econ/weapon_cases/crate_eslkatowice2015_promo_de_cbble", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "44" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_cobblestone", | |
"tag_text" : "#CSGO_set_cobblestone", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4085" : { | |
"item_name" : "#CSGO_crate_eslkatowice2015_promo_de_overpass", | |
"name" : "crate_eslkatowice2015_promo_de_overpass", | |
"image_inventory" : "econ/weapon_cases/crate_eslkatowice2015_promo_de_overpass", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "45" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_overpass", | |
"tag_text" : "#CSGO_set_overpass", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4086" : { | |
"item_name" : "#CSGO_crate_sticker_pack_eslkatowice2015_01", | |
"name" : "crate_sticker_pack_eslkatowice2015_01", | |
"item_description" : "#CSGO_crate_sticker_pack_eslkatowice2015_desc01", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_eslkatowice2015_01", | |
"first_sale_date" : "2015/02/26", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "46" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_eslkatowice2015_01_collection", | |
"tag_text" : "#CSGO_crate_sticker_pack_eslkatowice2015_01_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4087" : { | |
"item_name" : "#CSGO_crate_sticker_pack_eslkatowice2015_02", | |
"name" : "crate_sticker_pack_eslkatowice2015_02", | |
"item_description" : "#CSGO_crate_sticker_pack_eslkatowice2015_desc02", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_eslkatowice2015_02", | |
"first_sale_date" : "2015/02/26", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "47" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "6" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_eslkatowice2015_02_collection", | |
"tag_text" : "#CSGO_crate_sticker_pack_eslkatowice2015_02_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4088" : { | |
"name" : "crate_stattrak_swap_tool", | |
"first_sale_date" : "2015/3/30", | |
"prefab" : "valve weapon_case_base", | |
"item_name" : "#CSGO_crate_tool_stattrak_swap", | |
"item_description" : "#CSGO_desc_crate_tool_stattrak_swap", | |
"item_type" : "self_opening_purchase", | |
"image_inventory" : "econ/weapon_cases/stattrak_swap_tool_bundle", | |
"loot_list_name" : "bundle_tool_stattrak_swap" | |
}, | |
"4089" : { | |
"item_name" : "#CSGO_crate_community_7", | |
"item_description" : "#CSGO_crate_community_7_desc", | |
"first_sale_date" : "2015/4/15", | |
"name" : "crate_community_7", | |
"image_inventory" : "econ/weapon_cases/crate_community_7", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1325" : "1" | |
}, | |
"tool" : { | |
"restriction" : "community_case_7" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "48" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_7", | |
"tag_text" : "#CSGO_set_community_7", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4090" : { | |
"item_name" : "#CSGO_crate_sticker_pack_enfu_capsule", | |
"name" : "crate_sticker_pack_enfu_capsule", | |
"item_description" : "#CSGO_crate_sticker_pack_enfu_capsule_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_enfu_capsule", | |
"first_sale_date" : "2015/04/22", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "49" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_enfu_capsule_lootlist", | |
"tag_text" : "#CSGO_crate_sticker_pack_enfu_capsule", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4091" : { | |
"item_name" : "#CSGO_crate_community_8", | |
"item_description" : "#CSGO_crate_community_8_desc", | |
"first_sale_date" : "2015/4/15", | |
"name" : "crate_community_8", | |
"image_inventory" : "econ/weapon_cases/crate_community_8", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1330" : "1" | |
}, | |
"tool" : { | |
"restriction" : "community_case_8" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "50" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_8", | |
"tag_text" : "#CSGO_set_community_8", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
}, | |
"loot_list_rare_item_footer" : "#crate_community_8_unusual_lootlist", | |
"loot_list_rare_item_name" : "#crate_community_8_unusual_itemname", | |
"image_unusual_item" : "econ/weapon_cases/crate_community_8_rare_item" | |
}, | |
"4092" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_fnatic", | |
"name" : "crate_sticker_pack_eslcologne2015_fnatic", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_fnatic", | |
"image_inventory" : "econ/stickers/cologne2015/fnatic", | |
"loot_list_name" : "eslcologne2015_rare_fnatic", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4093" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_virtuspro", | |
"name" : "crate_sticker_pack_eslcologne2015_virtuspro", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_virtuspro", | |
"image_inventory" : "econ/stickers/cologne2015/virtuspro", | |
"loot_list_name" : "eslcologne2015_rare_virtuspro", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4094" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_mousesports", | |
"name" : "crate_sticker_pack_eslcologne2015_mousesports", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_mousesports", | |
"image_inventory" : "econ/stickers/cologne2015/mousesports", | |
"loot_list_name" : "eslcologne2015_rare_mousesports", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4095" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_navi", | |
"name" : "crate_sticker_pack_eslcologne2015_navi", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_navi", | |
"image_inventory" : "econ/stickers/cologne2015/navi", | |
"loot_list_name" : "eslcologne2015_rare_navi", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4096" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_renegades", | |
"name" : "crate_sticker_pack_eslcologne2015_renegades", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_renegades", | |
"image_inventory" : "econ/stickers/cologne2015/renegades", | |
"loot_list_name" : "eslcologne2015_rare_renegades", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4097" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_kinguin", | |
"name" : "crate_sticker_pack_eslcologne2015_kinguin", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_kinguin", | |
"image_inventory" : "econ/stickers/cologne2015/kinguin", | |
"loot_list_name" : "eslcologne2015_rare_kinguin", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4098" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_ebettle", | |
"name" : "crate_sticker_pack_eslcologne2015_ebettle", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_ebettle", | |
"image_inventory" : "econ/stickers/cologne2015/ebettle", | |
"loot_list_name" : "eslcologne2015_rare_ebettle", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4099" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_cloud9", | |
"name" : "crate_sticker_pack_eslcologne2015_cloud9", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_cloud9", | |
"image_inventory" : "econ/stickers/cologne2015/cloud9", | |
"loot_list_name" : "eslcologne2015_rare_cloud9", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4100" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_ninjasinpyjamas", | |
"name" : "crate_sticker_pack_eslcologne2015_ninjasinpyjamas", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas", | |
"image_inventory" : "econ/stickers/cologne2015/ninjasinpyjamas", | |
"loot_list_name" : "eslcologne2015_rare_ninjasinpyjamas", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4101" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_envyus", | |
"name" : "crate_sticker_pack_eslcologne2015_envyus", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_envyus", | |
"image_inventory" : "econ/stickers/cologne2015/envyus", | |
"loot_list_name" : "eslcologne2015_rare_envyus", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4102" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_luminositygaming", | |
"name" : "crate_sticker_pack_eslcologne2015_luminositygaming", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_luminositygaming", | |
"image_inventory" : "econ/stickers/cologne2015/luminositygaming", | |
"loot_list_name" : "eslcologne2015_rare_luminositygaming", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4103" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_solomid", | |
"name" : "crate_sticker_pack_eslcologne2015_solomid", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_solomid", | |
"image_inventory" : "econ/stickers/cologne2015/solomid", | |
"loot_list_name" : "eslcologne2015_rare_solomid", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4104" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_teamimmunity", | |
"name" : "crate_sticker_pack_eslcologne2015_teamimmunity", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_teamimmunity", | |
"image_inventory" : "econ/stickers/cologne2015/teamimmunity", | |
"loot_list_name" : "eslcologne2015_rare_teamimmunity", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4105" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_flipside", | |
"name" : "crate_sticker_pack_eslcologne2015_flipside", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_flipside", | |
"image_inventory" : "econ/stickers/cologne2015/flipside", | |
"loot_list_name" : "eslcologne2015_rare_flipside", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4106" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_titan", | |
"name" : "crate_sticker_pack_eslcologne2015_titan", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_titan", | |
"image_inventory" : "econ/stickers/cologne2015/titan", | |
"loot_list_name" : "eslcologne2015_rare_titan", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4107" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_clg", | |
"name" : "crate_sticker_pack_eslcologne2015_clg", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_clg", | |
"image_inventory" : "econ/stickers/cologne2015/clg", | |
"loot_list_name" : "eslcologne2015_rare_clg", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4108" : { | |
"item_name" : "#StickerKit_eslcologne2015_team_esl", | |
"name" : "crate_sticker_pack_eslcologne2015_esl", | |
"item_description" : "#StickerKit_desc_eslcologne2015_team_esl", | |
"image_inventory" : "econ/stickers/cologne2015/esl", | |
"loot_list_name" : "eslcologne2015_rare_esl", | |
"prefab" : "eslcologne2015_sticker_capsule_prefab" | |
}, | |
"4109" : { | |
"item_name" : "#CSGO_crate_sticker_pack_eslcologne2015_legends", | |
"name" : "crate_sticker_pack_eslcologne2015_legends", | |
"item_description" : "#CSGO_crate_sticker_pack_eslcologne2015_legends_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_eslcologne2015_01", | |
"first_sale_date" : "2015/8/10", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "51" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_eslcologne2015_legends_collection", | |
"tag_text" : "#CSGO_crate_sticker_pack_eslcologne2015_legends_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4110" : { | |
"item_name" : "#CSGO_crate_sticker_pack_eslcologne2015_challengers", | |
"name" : "crate_sticker_pack_eslcologne2015_challengers", | |
"item_description" : "#CSGO_crate_sticker_pack_eslcologne2015_challengers_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_eslcologne2015_02", | |
"first_sale_date" : "2015/8/10", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "52" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_eslcologne2015_challengers_collection", | |
"tag_text" : "#CSGO_crate_sticker_pack_eslcologne2015_challengers_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4111" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_group_1", | |
"name" : "crate_signature_pack_eslcologne2015_group_1", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_group_1_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_1", | |
"first_sale_date" : "2015/8/10", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "53" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_signature_pack_eslcologne2015_group_players_collection", | |
"tag_text" : "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4112" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_group_2", | |
"name" : "crate_signature_pack_eslcologne2015_group_2", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_group_2_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_2", | |
"first_sale_date" : "2015/8/10", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "54" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_signature_pack_eslcologne2015_group_players_collection", | |
"tag_text" : "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4113" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_group_3", | |
"name" : "crate_signature_pack_eslcologne2015_group_3", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_group_3_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_3", | |
"first_sale_date" : "2015/8/10", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "55" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_signature_pack_eslcologne2015_group_players_collection", | |
"tag_text" : "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4114" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_group_4", | |
"name" : "crate_signature_pack_eslcologne2015_group_4", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_group_4_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_eslcologne2015_group_4", | |
"first_sale_date" : "2015/8/10", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "56" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_signature_pack_eslcologne2015_group_players_collection", | |
"tag_text" : "#CSGO_crate_signature_pack_eslcologne2015_group_players_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4115" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_fnatic", | |
"name" : "crate_signature_pack_eslcologne2015_fnatic", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_fnatic_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_fnatic", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "57" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "6" | |
} | |
} | |
}, | |
"4116" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_luminositygaming", | |
"name" : "crate_signature_pack_eslcologne2015_luminositygaming", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_luminositygaming_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_luminositygaming", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "58" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "57" | |
} | |
} | |
}, | |
"4117" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_navi", | |
"name" : "crate_signature_pack_eslcologne2015_navi", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_navi_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_navi", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "59" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "12" | |
} | |
} | |
}, | |
"4118" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_ninjasinpyjamas", | |
"name" : "crate_signature_pack_eslcologne2015_ninjasinpyjamas", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_ninjasinpyjamas_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_ninjasinpyjamas", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "60" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "1" | |
} | |
} | |
}, | |
"4119" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_envyus", | |
"name" : "crate_signature_pack_eslcologne2015_envyus", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_envyus_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_envyus", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "61" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "46" | |
} | |
} | |
}, | |
"4120" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_titan", | |
"name" : "crate_signature_pack_eslcologne2015_titan", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_titan_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_titan", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "62" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "27" | |
} | |
} | |
}, | |
"4121" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_solomid", | |
"name" : "crate_signature_pack_eslcologne2015_solomid", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_solomid_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_solomid", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "63" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "58" | |
} | |
} | |
}, | |
"4122" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_virtuspro", | |
"name" : "crate_signature_pack_eslcologne2015_virtuspro", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_virtuspro_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_virtuspro", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "64" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "31" | |
} | |
} | |
}, | |
"4123" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_mousesports", | |
"name" : "crate_signature_pack_eslcologne2015_mousesports", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_mousesports_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_mousesports", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "65" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "29" | |
} | |
} | |
}, | |
"4124" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_renegades", | |
"name" : "crate_signature_pack_eslcologne2015_renegades", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_renegades_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_renegades", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "66" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "53" | |
} | |
} | |
}, | |
"4125" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_teamimmunity", | |
"name" : "crate_signature_pack_eslcologne2015_teamimmunity", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_teamimmunity_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_teamimmunity", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "67" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "54" | |
} | |
} | |
}, | |
"4126" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_ebettle", | |
"name" : "crate_signature_pack_eslcologne2015_ebettle", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_ebettle_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_ebettle", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "68" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "56" | |
} | |
} | |
}, | |
"4127" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_kinguin", | |
"name" : "crate_signature_pack_eslcologne2015_kinguin", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_kinguin_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_kinguin", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "69" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "55" | |
} | |
} | |
}, | |
"4128" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_flipside", | |
"name" : "crate_signature_pack_eslcologne2015_flipside", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_flipside_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_flipside", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "70" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "43" | |
} | |
} | |
}, | |
"4129" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_clg", | |
"name" : "crate_signature_pack_eslcologne2015_clg", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_clg_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_clg", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "71" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "49" | |
} | |
} | |
}, | |
"4130" : { | |
"item_name" : "#CSGO_crate_signature_pack_eslcologne2015_cloud9", | |
"name" : "crate_signature_pack_eslcologne2015_cloud9", | |
"item_description" : "#CSGO_crate_signature_pack_eslcologne2015_cloud9_desc", | |
"image_inventory" : "econ/weapon_cases/cologne2015_cloud9", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/8/10", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "72" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "52" | |
} | |
} | |
}, | |
"4131" : { | |
"item_name" : "#CSGO_crate_eslcologne2015_promo_de_dust2", | |
"name" : "crate_eslcologne2015_promo_de_dust2", | |
"image_inventory" : "econ/weapon_cases/crate_eslcologne2015_promo_de_dust2", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "73" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_dust_2", | |
"tag_text" : "#CSGO_set_dust_2", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4132" : { | |
"item_name" : "#CSGO_crate_eslcologne2015_promo_de_mirage", | |
"name" : "crate_eslcologne2015_promo_de_mirage", | |
"image_inventory" : "econ/weapon_cases/crate_eslcologne2015_promo_de_mirage", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "74" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_mirage", | |
"tag_text" : "#CSGO_set_mirage", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4133" : { | |
"item_name" : "#CSGO_crate_eslcologne2015_promo_de_inferno", | |
"name" : "crate_eslcologne2015_promo_de_inferno", | |
"image_inventory" : "econ/weapon_cases/crate_eslcologne2015_promo_de_inferno", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "75" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_inferno", | |
"tag_text" : "#CSGO_set_inferno", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4134" : { | |
"item_name" : "#CSGO_crate_eslcologne2015_promo_de_cbble", | |
"name" : "crate_eslcologne2015_promo_de_cbble", | |
"image_inventory" : "econ/weapon_cases/crate_eslcologne2015_promo_de_cbble", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "76" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_cobblestone", | |
"tag_text" : "#CSGO_set_cobblestone", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4135" : { | |
"item_name" : "#CSGO_crate_eslcologne2015_promo_de_overpass", | |
"name" : "crate_eslcologne2015_promo_de_overpass", | |
"image_inventory" : "econ/weapon_cases/crate_eslcologne2015_promo_de_overpass", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "77" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_overpass", | |
"tag_text" : "#CSGO_set_overpass", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4136" : { | |
"item_name" : "#CSGO_crate_eslcologne2015_promo_de_cache", | |
"name" : "crate_eslcologne2015_promo_de_cache", | |
"image_inventory" : "econ/weapon_cases/crate_eslcologne2015_promo_de_cache", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "78" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_cache", | |
"tag_text" : "#CSGO_set_cache", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4137" : { | |
"item_name" : "#CSGO_crate_eslcologne2015_promo_de_train", | |
"name" : "crate_eslcologne2015_promo_de_train", | |
"image_inventory" : "econ/weapon_cases/crate_eslcologne2015_promo_de_train", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "79" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "7" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_train", | |
"tag_text" : "#CSGO_set_train", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4138" : { | |
"item_name" : "#CSGO_crate_community_9", | |
"item_description" : "#CSGO_crate_community_9_desc", | |
"first_sale_date" : "2015/9/15", | |
"name" : "crate_community_9", | |
"image_inventory" : "econ/weapon_cases/crate_community_9", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1333" : "1" | |
}, | |
"tool" : { | |
"restriction" : "community_case_9" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "80" | |
} | |
}, | |
"loot_list_rare_item_footer" : "#crate_community_9_unusual_lootlist", | |
"loot_list_rare_item_name" : "#crate_community_9_unusual_itemname", | |
"image_unusual_item" : "econ/weapon_cases/crate_community_9_rare_item" | |
}, | |
"4139" : { | |
"item_name" : "#StickerKit_cluj2015_team_nip", | |
"name" : "crate_sticker_pack_cluj2015_nip", | |
"item_description" : "#StickerKit_desc_cluj2015_team_nip", | |
"image_inventory" : "econ/stickers/cluj2015/nip", | |
"loot_list_name" : "cluj2015_rare_nip", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4140" : { | |
"item_name" : "#StickerKit_cluj2015_team_dig", | |
"name" : "crate_sticker_pack_cluj2015_dig", | |
"item_description" : "#StickerKit_desc_cluj2015_team_dig", | |
"image_inventory" : "econ/stickers/cluj2015/dig", | |
"loot_list_name" : "cluj2015_rare_dig", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4141" : { | |
"item_name" : "#StickerKit_cluj2015_team_clg", | |
"name" : "crate_sticker_pack_cluj2015_clg", | |
"item_description" : "#StickerKit_desc_cluj2015_team_clg", | |
"image_inventory" : "econ/stickers/cluj2015/clg", | |
"loot_list_name" : "cluj2015_rare_clg", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4142" : { | |
"item_name" : "#StickerKit_cluj2015_team_vex", | |
"name" : "crate_sticker_pack_cluj2015_vex", | |
"item_description" : "#StickerKit_desc_cluj2015_team_vex", | |
"image_inventory" : "econ/stickers/cluj2015/vex", | |
"loot_list_name" : "cluj2015_rare_vex", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4143" : { | |
"item_name" : "#StickerKit_cluj2015_team_flip", | |
"name" : "crate_sticker_pack_cluj2015_flip", | |
"item_description" : "#StickerKit_desc_cluj2015_team_flip", | |
"image_inventory" : "econ/stickers/cluj2015/flip", | |
"loot_list_name" : "cluj2015_rare_flip", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4144" : { | |
"item_name" : "#StickerKit_cluj2015_team_liq", | |
"name" : "crate_sticker_pack_cluj2015_liq", | |
"item_description" : "#StickerKit_desc_cluj2015_team_liq", | |
"image_inventory" : "econ/stickers/cluj2015/liq", | |
"loot_list_name" : "cluj2015_rare_liq", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4145" : { | |
"item_name" : "#StickerKit_cluj2015_team_mss", | |
"name" : "crate_sticker_pack_cluj2015_mss", | |
"item_description" : "#StickerKit_desc_cluj2015_team_mss", | |
"image_inventory" : "econ/stickers/cluj2015/mss", | |
"loot_list_name" : "cluj2015_rare_mss", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4146" : { | |
"item_name" : "#StickerKit_cluj2015_team_navi", | |
"name" : "crate_sticker_pack_cluj2015_navi", | |
"item_description" : "#StickerKit_desc_cluj2015_team_navi", | |
"image_inventory" : "econ/stickers/cluj2015/navi", | |
"loot_list_name" : "cluj2015_rare_navi", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4147" : { | |
"item_name" : "#StickerKit_cluj2015_team_vp", | |
"name" : "crate_sticker_pack_cluj2015_vp", | |
"item_description" : "#StickerKit_desc_cluj2015_team_vp", | |
"image_inventory" : "econ/stickers/cluj2015/vp", | |
"loot_list_name" : "cluj2015_rare_vp", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4148" : { | |
"item_name" : "#StickerKit_cluj2015_team_c9", | |
"name" : "crate_sticker_pack_cluj2015_c9", | |
"item_description" : "#StickerKit_desc_cluj2015_team_c9", | |
"image_inventory" : "econ/stickers/cluj2015/c9", | |
"loot_list_name" : "cluj2015_rare_c9", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4149" : { | |
"item_name" : "#StickerKit_cluj2015_team_g2", | |
"name" : "crate_sticker_pack_cluj2015_g2", | |
"item_description" : "#StickerKit_desc_cluj2015_team_g2", | |
"image_inventory" : "econ/stickers/cluj2015/g2", | |
"loot_list_name" : "cluj2015_rare_g2", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4150" : { | |
"item_name" : "#StickerKit_cluj2015_team_tit", | |
"name" : "crate_sticker_pack_cluj2015_tit", | |
"item_description" : "#StickerKit_desc_cluj2015_team_tit", | |
"image_inventory" : "econ/stickers/cluj2015/tit", | |
"loot_list_name" : "cluj2015_rare_tit", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4151" : { | |
"item_name" : "#StickerKit_cluj2015_team_tsolo", | |
"name" : "crate_sticker_pack_cluj2015_tsolo", | |
"item_description" : "#StickerKit_desc_cluj2015_team_tsolo", | |
"image_inventory" : "econ/stickers/cluj2015/tsolo", | |
"loot_list_name" : "cluj2015_rare_tsolo", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4152" : { | |
"item_name" : "#StickerKit_cluj2015_team_nv", | |
"name" : "crate_sticker_pack_cluj2015_nv", | |
"item_description" : "#StickerKit_desc_cluj2015_team_nv", | |
"image_inventory" : "econ/stickers/cluj2015/nv", | |
"loot_list_name" : "cluj2015_rare_nv", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4153" : { | |
"item_name" : "#StickerKit_cluj2015_team_fntc", | |
"name" : "crate_sticker_pack_cluj2015_fntc", | |
"item_description" : "#StickerKit_desc_cluj2015_team_fntc", | |
"image_inventory" : "econ/stickers/cluj2015/fntc", | |
"loot_list_name" : "cluj2015_rare_fntc", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4154" : { | |
"item_name" : "#StickerKit_cluj2015_team_lumi", | |
"name" : "crate_sticker_pack_cluj2015_lumi", | |
"item_description" : "#StickerKit_desc_cluj2015_team_lumi", | |
"image_inventory" : "econ/stickers/cluj2015/lumi", | |
"loot_list_name" : "cluj2015_rare_lumi", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4155" : { | |
"item_name" : "#StickerKit_cluj2015_team_dhc", | |
"name" : "crate_sticker_pack_cluj2015_dhc", | |
"item_description" : "#StickerKit_desc_cluj2015_team_dhc", | |
"image_inventory" : "econ/stickers/cluj2015/dhc", | |
"loot_list_name" : "cluj2015_rare_dhc", | |
"prefab" : "cluj2015_sticker_capsule_prefab" | |
}, | |
"4156" : { | |
"item_name" : "#CSGO_crate_sticker_pack_cluj2015_legends", | |
"name" : "crate_sticker_pack_cluj2015_legends", | |
"item_description" : "#CSGO_crate_sticker_pack_cluj2015_legends_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_cluj2015_01", | |
"first_sale_date" : "2015/10/20", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "81" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_cluj2015_legends_collection", | |
"tag_text" : "#CSGO_crate_sticker_pack_cluj2015_legends_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4157" : { | |
"item_name" : "#CSGO_crate_sticker_pack_cluj2015_challengers", | |
"name" : "crate_sticker_pack_cluj2015_challengers", | |
"item_description" : "#CSGO_crate_sticker_pack_cluj2015_challengers_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_cluj2015_02", | |
"first_sale_date" : "2015/10/20", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "82" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_cluj2015_challengers_collection", | |
"tag_text" : "#CSGO_crate_sticker_pack_cluj2015_challengers_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4158" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_group_1", | |
"name" : "crate_signature_pack_cluj2015_group_1", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_group_1_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_cluj2015_group_1", | |
"first_sale_date" : "2015/10/20", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "83" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_signature_pack_cluj2015_group_players_collection", | |
"tag_text" : "#CSGO_crate_signature_pack_cluj2015_group_players_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4159" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_group_2", | |
"name" : "crate_signature_pack_cluj2015_group_2", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_group_2_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_cluj2015_group_2", | |
"first_sale_date" : "2015/10/20", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "84" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_signature_pack_cluj2015_group_players_collection", | |
"tag_text" : "#CSGO_crate_signature_pack_cluj2015_group_players_tag", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4160" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_nip", | |
"name" : "crate_signature_pack_cluj2015_nip", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_nip_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_nip", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "85" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "1" | |
} | |
} | |
}, | |
"4161" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_dig", | |
"name" : "crate_signature_pack_cluj2015_dig", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_dig_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_dig", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "86" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "24" | |
} | |
} | |
}, | |
"4162" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_clg", | |
"name" : "crate_signature_pack_cluj2015_clg", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_clg_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_clg", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "87" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "49" | |
} | |
} | |
}, | |
"4163" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_vex", | |
"name" : "crate_signature_pack_cluj2015_vex", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_vex_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_vex", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "88" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "47" | |
} | |
} | |
}, | |
"4164" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_flip", | |
"name" : "crate_signature_pack_cluj2015_flip", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_flip_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_flip", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "89" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "43" | |
} | |
} | |
}, | |
"4165" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_liq", | |
"name" : "crate_signature_pack_cluj2015_liq", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_liq_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_liq", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "90" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "48" | |
} | |
} | |
}, | |
"4166" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_mss", | |
"name" : "crate_signature_pack_cluj2015_mss", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_mss_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_mss", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "91" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "29" | |
} | |
} | |
}, | |
"4167" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_navi", | |
"name" : "crate_signature_pack_cluj2015_navi", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_navi_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_navi", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "92" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "12" | |
} | |
} | |
}, | |
"4168" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_vp", | |
"name" : "crate_signature_pack_cluj2015_vp", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_vp_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_vp", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "93" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "31" | |
} | |
} | |
}, | |
"4169" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_c9", | |
"name" : "crate_signature_pack_cluj2015_c9", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_c9_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_c9", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "94" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "33" | |
} | |
} | |
}, | |
"4170" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_g2", | |
"name" : "crate_signature_pack_cluj2015_g2", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_g2_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_g2", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "95" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "59" | |
} | |
} | |
}, | |
"4171" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_tit", | |
"name" : "crate_signature_pack_cluj2015_tit", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_tit_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_tit", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "96" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "27" | |
} | |
} | |
}, | |
"4172" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_tsolo", | |
"name" : "crate_signature_pack_cluj2015_tsolo", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_tsolo_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_tsolo", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "97" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "58" | |
} | |
} | |
}, | |
"4173" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_nv", | |
"name" : "crate_signature_pack_cluj2015_nv", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_nv_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_nv", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "98" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "46" | |
} | |
} | |
}, | |
"4174" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_fntc", | |
"name" : "crate_signature_pack_cluj2015_fntc", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_fntc_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_fntc", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "99" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "6" | |
} | |
} | |
}, | |
"4175" : { | |
"item_name" : "#CSGO_crate_signature_pack_cluj2015_lumi", | |
"name" : "crate_signature_pack_cluj2015_lumi", | |
"item_description" : "#CSGO_crate_signature_pack_cluj2015_lumi_desc", | |
"image_inventory" : "econ/weapon_cases/cluj2015_lumi", | |
"prefab" : "weapon_case_base", | |
"first_sale_date" : "2015/10/20", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "100" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
}, | |
"tournament event team0 id" : { | |
"attribute_class" : "tournament_event_team_id", | |
"value" : "57" | |
} | |
} | |
}, | |
"4176" : { | |
"item_name" : "#CSGO_crate_cluj2015_promo_de_dust2", | |
"name" : "crate_cluj2015_promo_de_dust2", | |
"image_inventory" : "econ/weapon_cases/crate_cluj2015_promo_de_dust2", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "101" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_dust_2", | |
"tag_text" : "#CSGO_set_dust_2", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4177" : { | |
"item_name" : "#CSGO_crate_cluj2015_promo_de_mirage", | |
"name" : "crate_cluj2015_promo_de_mirage", | |
"image_inventory" : "econ/weapon_cases/crate_cluj2015_promo_de_mirage", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "102" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_mirage", | |
"tag_text" : "#CSGO_set_mirage", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4178" : { | |
"item_name" : "#CSGO_crate_cluj2015_promo_de_inferno", | |
"name" : "crate_cluj2015_promo_de_inferno", | |
"image_inventory" : "econ/weapon_cases/crate_cluj2015_promo_de_inferno", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "103" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_inferno", | |
"tag_text" : "#CSGO_set_inferno", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4179" : { | |
"item_name" : "#CSGO_crate_cluj2015_promo_de_cbble", | |
"name" : "crate_cluj2015_promo_de_cbble", | |
"image_inventory" : "econ/weapon_cases/crate_cluj2015_promo_de_cbble", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "104" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_cobblestone", | |
"tag_text" : "#CSGO_set_cobblestone", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4180" : { | |
"item_name" : "#CSGO_crate_cluj2015_promo_de_overpass", | |
"name" : "crate_cluj2015_promo_de_overpass", | |
"image_inventory" : "econ/weapon_cases/crate_cluj2015_promo_de_overpass", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "105" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_overpass", | |
"tag_text" : "#CSGO_set_overpass", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4181" : { | |
"item_name" : "#CSGO_crate_cluj2015_promo_de_cache", | |
"name" : "crate_cluj2015_promo_de_cache", | |
"image_inventory" : "econ/weapon_cases/crate_cluj2015_promo_de_cache", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "106" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_cache", | |
"tag_text" : "#CSGO_set_cache", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4182" : { | |
"item_name" : "#CSGO_crate_cluj2015_promo_de_train", | |
"name" : "crate_cluj2015_promo_de_train", | |
"image_inventory" : "econ/weapon_cases/crate_cluj2015_promo_de_train", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "107" | |
}, | |
"tournament event id" : { | |
"attribute_class" : "tournament_event_id", | |
"value" : "8" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_train", | |
"tag_text" : "#CSGO_set_train", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4183" : { | |
"item_name" : "#CSGO_crate_sticker_pack_pinups_capsule", | |
"name" : "crate_sticker_pack_pinups_capsule", | |
"item_description" : "#CSGO_crate_sticker_pack_pinups_capsule_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_pinups_capsule", | |
"first_sale_date" : "2015/12/01", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "108" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_pinups_capsule_lootlist", | |
"tag_text" : "#CSGO_crate_sticker_pack_pinups_capsule", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4184" : { | |
"item_name" : "#CSGO_crate_sticker_pack_slid3_capsule", | |
"name" : "crate_sticker_pack_slid3_capsule", | |
"item_description" : "#CSGO_crate_sticker_pack_slid3_capsule_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_slid3_capsule", | |
"first_sale_date" : "2015/12/01", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "109" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_slid3_capsule_lootlist", | |
"tag_text" : "#CSGO_crate_sticker_pack_slid3_capsule", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4185" : { | |
"item_name" : "#CSGO_crate_sticker_pack_team_roles_capsule", | |
"name" : "crate_sticker_pack_team_roles_capsule", | |
"item_description" : "#CSGO_crate_sticker_pack_team_roles_capsule_desc", | |
"image_inventory" : "econ/weapon_cases/crate_sticker_pack_team_roles_capsule", | |
"first_sale_date" : "2015/12/01", | |
"prefab" : "weapon_case_base", | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "110" | |
} | |
}, | |
"tags" : { | |
"StickerCapsule" : { | |
"tag_value" : "crate_sticker_pack_team_roles_capsule_lootlist", | |
"tag_text" : "#CSGO_crate_sticker_pack_team_roles_capsule", | |
"tag_group" : "StickerCapsule", | |
"tag_group_text" : "#SFUI_InvTooltip_StickerCapsuleTag" | |
} | |
} | |
}, | |
"4186" : { | |
"item_name" : "#CSGO_crate_community_10", | |
"item_description" : "#CSGO_crate_community_10_desc", | |
"name" : "crate_community_10", | |
"image_inventory" : "econ/weapon_cases/crate_community_10", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"1334" : "1" | |
}, | |
"tool" : { | |
"restriction" : "crate_community_10" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "111" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_10", | |
"tag_text" : "#CSGO_set_community_10", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
} | |
}, | |
"4187" : { | |
"item_name" : "#CSGO_crate_community_11", | |
"item_description" : "#CSGO_crate_community_11_desc", | |
"name" : "crate_community_11", | |
"image_inventory" : "econ/weapon_cases/crate_community_11", | |
"prefab" : "weapon_case", | |
"associated_items" : { | |
"7000" : "1" | |
}, | |
"tool" : { | |
"restriction" : "crate_community_11" | |
}, | |
"attributes" : { | |
"set supply crate series" : { | |
"attribute_class" : "supply_crate_series", | |
"value" : "112" | |
} | |
}, | |
"tags" : { | |
"ItemSet" : { | |
"tag_value" : "set_community_11", | |
"tag_text" : "#CSGO_set_community_11", | |
"tag_group" : "ItemSet", | |
"tag_group_text" : "#SFUI_InvTooltip_SetTag" | |
} | |
}, | |
"loot_list_rare_item_footer" : "#crate_community_11_unusual_lootlist", | |
"loot_list_rare_item_name" : "#crate_community_11_unusual_itemname", | |
"image_unusual_item" : "econ/weapon_cases/crate_community_11_rare_item" | |
}, | |
"6001" : { | |
"name" : "Collectible Pin - Dust II", | |
"prefab" : "attendance_pin", | |
"item_rarity" : "ancient", | |
"item_name" : "#CSGO_Collectible_Pin_DustII", | |
"item_description" : "#CSGO_Collectible_Pin_DustII_Desc", | |
"image_inventory" : "econ/status_icons/collectible_pin_dust2", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/collectible_pin_dust2.mdl" | |
} | |
}, | |
"6002" : { | |
"name" : "Collectible Pin - Guardian Elite", | |
"prefab" : "attendance_pin", | |
"item_rarity" : "ancient", | |
"item_name" : "#CSGO_Collectible_Pin_GuardianElite", | |
"item_description" : "#CSGO_Collectible_Pin_GuardianElite_Desc", | |
"image_inventory" : "econ/status_icons/collectible_pin_guardianelite", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/collectible_pin_guardianelite.mdl" | |
} | |
}, | |
"6003" : { | |
"name" : "Collectible Pin - Mirage", | |
"prefab" : "attendance_pin", | |
"item_rarity" : "legendary", | |
"item_name" : "#CSGO_Collectible_Pin_Mirage", | |
"item_description" : "#CSGO_Collectible_Pin_Mirage_Desc", | |
"image_inventory" : "econ/status_icons/collectible_pin_mirage", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/collectible_pin_mirage.mdl" | |
} | |
}, | |
"6004" : { | |
"name" : "Collectible Pin - Inferno", | |
"prefab" : "attendance_pin", | |
"item_rarity" : "legendary", | |
"item_name" : "#CSGO_Collectible_Pin_Inferno", | |
"item_description" : "#CSGO_Collectible_Pin_Inferno_Desc", | |
"image_inventory" : "econ/status_icons/collectible_pin_inferno", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/collectible_pin_inferno.mdl" | |
} | |
}, | |
"6005" : { | |
"name" : "Collectible Pin - Italy", | |
"prefab" : "attendance_pin", | |
"item_rarity" : "mythical", | |
"item_name" : "#CSGO_Collectible_Pin_Italy", | |
"item_description" : "#CSGO_Collectible_Pin_Italy_Desc", | |
"image_inventory" : "econ/status_icons/collectible_pin_italy", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/collectible_pin_italy.mdl" | |
} | |
}, | |
"6006" : { | |
"name" : "Collectible Pin - Victory", | |
"prefab" : "attendance_pin", | |
"item_rarity" : "mythical", | |
"item_name" : "#CSGO_Collectible_Pin_Victory", | |
"item_description" : "#CSGO_Collectible_Pin_Victory_Desc", | |
"image_inventory" : "econ/status_icons/collectible_pin_victory", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/collectible_pin_victory.mdl" | |
} | |
}, | |
"6007" : { | |
"name" : "Collectible Pin - Militia", | |
"prefab" : "attendance_pin", | |
"item_rarity" : "mythical", | |
"item_name" : "#CSGO_Collectible_Pin_Militia", | |
"item_description" : "#CSGO_Collectible_Pin_Militia_Desc", | |
"image_inventory" : "econ/status_icons/collectible_pin_militia", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/collectible_pin_militia.mdl" | |
} | |
}, | |
"6008" : { | |
"name" : "Collectible Pin - Nuke", | |
"prefab" : "attendance_pin", | |
"item_rarity" : "rare", | |
"item_name" : "#CSGO_Collectible_Pin_Nuke", | |
"item_description" : "#CSGO_Collectible_Pin_Nuke_Desc", | |
"image_inventory" : "econ/status_icons/collectible_pin_nuke", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/collectible_pin_nuke.mdl" | |
} | |
}, | |
"6009" : { | |
"name" : "Collectible Pin - Train", | |
"prefab" : "attendance_pin", | |
"item_rarity" : "rare", | |
"item_name" : "#CSGO_Collectible_Pin_Train", | |
"item_description" : "#CSGO_Collectible_Pin_Train_Desc", | |
"image_inventory" : "econ/status_icons/collectible_pin_train", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/collectible_pin_train.mdl" | |
} | |
}, | |
"6010" : { | |
"name" : "Collectible Pin - Guardian", | |
"prefab" : "attendance_pin", | |
"item_rarity" : "rare", | |
"item_name" : "#CSGO_Collectible_Pin_Guardian", | |
"item_description" : "#CSGO_Collectible_Pin_Guardian_Desc", | |
"image_inventory" : "econ/status_icons/collectible_pin_guardian", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/collectible_pin_guardian.mdl" | |
} | |
}, | |
"6011" : { | |
"name" : "Collectible Pin - Tactics", | |
"prefab" : "attendance_pin", | |
"item_rarity" : "rare", | |
"item_name" : "#CSGO_Collectible_Pin_Tactics", | |
"item_description" : "#CSGO_Collectible_Pin_Tactics_Desc", | |
"image_inventory" : "econ/status_icons/collectible_pin_tactics", | |
"attributes" : { | |
"pedestal display model" : "models/inventory_items/collectible_pin_tactics.mdl" | |
} | |
}, | |
"6012" : { | |
"name" : "item 6012", | |
"prefab" : "collectible_untradable" | |
}, | |
"6013" : { | |
"name" : "item 6013", | |
"prefab" : "collectible_untradable" | |
}, | |
"6014" : { | |
"name" : "item 6014", | |
"prefab" : "collectible_untradable" | |
}, | |
"6015" : { | |
"name" : "item 6015", | |
"prefab" : "collectible_untradable" | |
}, | |
"6016" : { | |
"name" : "item 6016", | |
"prefab" : "collectible_untradable" | |
}, | |
"6017" : { | |
"name" : "item 6017", | |
"prefab" : "collectible_untradable" | |
}, | |
"6018" : { | |
"name" : "item 6018", | |
"prefab" : "collectible_untradable" | |
}, | |
"6019" : { | |
"name" : "item 6019", | |
"prefab" : "collectible_untradable" | |
}, | |
"6020" : { | |
"name" : "item 6020", | |
"prefab" : "collectible_untradable" | |
}, | |
"6021" : { | |
"name" : "item 6021", | |
"prefab" : "collectible_untradable" | |
}, | |
"6022" : { | |
"name" : "item 6022", | |
"prefab" : "collectible_untradable" | |
}, | |
"6023" : { | |
"name" : "item 6023", | |
"prefab" : "collectible_untradable" | |
}, | |
"6024" : { | |
"name" : "item 6024", | |
"prefab" : "collectible_untradable" | |
}, | |
"6025" : { | |
"name" : "item 6025", | |
"prefab" : "collectible_untradable" | |
}, | |
"6026" : { | |
"name" : "item 6026", | |
"prefab" : "collectible_untradable" | |
}, | |
"6027" : { | |
"name" : "item 6027", | |
"prefab" : "collectible_untradable" | |
}, | |
"6028" : { | |
"name" : "item 6028", | |
"prefab" : "collectible_untradable" | |
}, | |
"6029" : { | |
"name" : "item 6029", | |
"prefab" : "collectible_untradable" | |
}, | |
"6030" : { | |
"name" : "item 6030", | |
"prefab" : "collectible_untradable" | |
}, | |
"6031" : { | |
"name" : "item 6031", | |
"prefab" : "collectible_untradable" | |
}, | |
"6032" : { | |
"name" : "item 6032", | |
"prefab" : "collectible_untradable" | |
}, | |
"6033" : { | |
"name" : "item 6033", | |
"prefab" : "collectible_untradable" | |
}, | |
"6034" : { | |
"name" : "item 6034", | |
"prefab" : "collectible_untradable" | |
}, | |
"6035" : { | |
"name" : "item 6035", | |
"prefab" : "collectible_untradable" | |
}, | |
"6036" : { | |
"name" : "item 6036", | |
"prefab" : "collectible_untradable" | |
}, | |
"6037" : { | |
"name" : "item 6037", | |
"prefab" : "collectible_untradable" | |
}, | |
"6038" : { | |
"name" : "item 6038", | |
"prefab" : "collectible_untradable" | |
}, | |
"6039" : { | |
"name" : "item 6039", | |
"prefab" : "collectible_untradable" | |
}, | |
"6040" : { | |
"name" : "item 6040", | |
"prefab" : "collectible_untradable" | |
}, | |
"6041" : { | |
"name" : "item 6041", | |
"prefab" : "collectible_untradable" | |
}, | |
"6042" : { | |
"name" : "item 6042", | |
"prefab" : "collectible_untradable" | |
}, | |
"6043" : { | |
"name" : "item 6043", | |
"prefab" : "collectible_untradable" | |
}, | |
"6044" : { | |
"name" : "item 6044", | |
"prefab" : "collectible_untradable" | |
}, | |
"6045" : { | |
"name" : "item 6045", | |
"prefab" : "collectible_untradable" | |
}, | |
"6046" : { | |
"name" : "item 6046", | |
"prefab" : "collectible_untradable" | |
}, | |
"6047" : { | |
"name" : "item 6047", | |
"prefab" : "collectible_untradable" | |
}, | |
"6048" : { | |
"name" : "item 6048", | |
"prefab" : "collectible_untradable" | |
}, | |
"6049" : { | |
"name" : "item 6049", | |
"prefab" : "collectible_untradable" | |
}, | |
"6050" : { | |
"name" : "item 6050", | |
"prefab" : "collectible_untradable" | |
}, | |
"6051" : { | |
"name" : "item 6051", | |
"prefab" : "collectible_untradable" | |
}, | |
"6052" : { | |
"name" : "item 6052", | |
"prefab" : "collectible_untradable" | |
}, | |
"6053" : { | |
"name" : "item 6053", | |
"prefab" : "collectible_untradable" | |
}, | |
"6054" : { | |
"name" : "item 6054", | |
"prefab" : "collectible_untradable" | |
}, | |
"6055" : { | |
"name" : "item 6055", | |
"prefab" : "collectible_untradable" | |
}, | |
"6056" : { | |
"name" : "item 6056", | |
"prefab" : "collectible_untradable" | |
}, | |
"6057" : { | |
"name" : "item 6057", | |
"prefab" : "collectible_untradable" | |
}, | |
"6058" : { | |
"name" : "item 6058", | |
"prefab" : "collectible_untradable" | |
}, | |
"6059" : { | |
"name" : "item 6059", | |
"prefab" : "collectible_untradable" | |
}, | |
"6060" : { | |
"name" : "item 6060", | |
"prefab" : "collectible_untradable" | |
}, | |
"6061" : { | |
"name" : "item 6061", | |
"prefab" : "collectible_untradable" | |
}, | |
"6062" : { | |
"name" : "item 6062", | |
"prefab" : "collectible_untradable" | |
}, | |
"6063" : { | |
"name" : "item 6063", | |
"prefab" : "collectible_untradable" | |
}, | |
"6064" : { | |
"name" : "item 6064", | |
"prefab" : "collectible_untradable" | |
}, | |
"6065" : { | |
"name" : "item 6065", | |
"prefab" : "collectible_untradable" | |
}, | |
"6066" : { | |
"name" : "item 6066", | |
"prefab" : "collectible_untradable" | |
}, | |
"6067" : { | |
"name" : "item 6067", | |
"prefab" : "collectible_untradable" | |
}, | |
"6068" : { | |
"name" : "item 6068", | |
"prefab" : "collectible_untradable" | |
}, | |
"6069" : { | |
"name" : "item 6069", | |
"prefab" : "collectible_untradable" | |
}, | |
"6070" : { | |
"name" : "item 6070", | |
"prefab" : "collectible_untradable" | |
}, | |
"6071" : { | |
"name" : "item 6071", | |
"prefab" : "collectible_untradable" | |
}, | |
"6072" : { | |
"name" : "item 6072", | |
"prefab" : "collectible_untradable" | |
}, | |
"6073" : { | |
"name" : "item 6073", | |
"prefab" : "collectible_untradable" | |
}, | |
"6074" : { | |
"name" : "item 6074", | |
"prefab" : "collectible_untradable" | |
}, | |
"6075" : { | |
"name" : "item 6075", | |
"prefab" : "collectible_untradable" | |
}, | |
"6076" : { | |
"name" : "item 6076", | |
"prefab" : "collectible_untradable" | |
}, | |
"6077" : { | |
"name" : "item 6077", | |
"prefab" : "collectible_untradable" | |
}, | |
"6078" : { | |
"name" : "item 6078", | |
"prefab" : "collectible_untradable" | |
}, | |
"6079" : { | |
"name" : "item 6079", | |
"prefab" : "collectible_untradable" | |
}, | |
"6080" : { | |
"name" : "item 6080", | |
"prefab" : "collectible_untradable" | |
}, | |
"6081" : { | |
"name" : "item 6081", | |
"prefab" : "collectible_untradable" | |
}, | |
"6082" : { | |
"name" : "item 6082", | |
"prefab" : "collectible_untradable" | |
}, | |
"6083" : { | |
"name" : "item 6083", | |
"prefab" : "collectible_untradable" | |
}, | |
"6084" : { | |
"name" : "item 6084", | |
"prefab" : "collectible_untradable" | |
}, | |
"6085" : { | |
"name" : "item 6085", | |
"prefab" : "collectible_untradable" | |
}, | |
"6086" : { | |
"name" : "item 6086", | |
"prefab" : "collectible_untradable" | |
}, | |
"6087" : { | |
"name" : "item 6087", | |
"prefab" : "collectible_untradable" | |
}, | |
"6088" : { | |
"name" : "item 6088", | |
"prefab" : "collectible_untradable" | |
}, | |
"6089" : { | |
"name" : "item 6089", | |
"prefab" : "collectible_untradable" | |
}, | |
"6090" : { | |
"name" : "item 6090", | |
"prefab" : "collectible_untradable" | |
}, | |
"6091" : { | |
"name" : "item 6091", | |
"prefab" : "collectible_untradable" | |
}, | |
"6092" : { | |
"name" : "item 6092", | |
"prefab" : "collectible_untradable" | |
}, | |
"6093" : { | |
"name" : "item 6093", | |
"prefab" : "collectible_untradable" | |
}, | |
"6094" : { | |
"name" : "item 6094", | |
"prefab" : "collectible_untradable" | |
}, | |
"6095" : { | |
"name" : "item 6095", | |
"prefab" : "collectible_untradable" | |
}, | |
"6096" : { | |
"name" : "item 6096", | |
"prefab" : "collectible_untradable" | |
}, | |
"6097" : { | |
"name" : "item 6097", | |
"prefab" : "collectible_untradable" | |
}, | |
"6098" : { | |
"name" : "item 6098", | |
"prefab" : "collectible_untradable" | |
}, | |
"6099" : { | |
"name" : "item 6099", | |
"prefab" : "collectible_untradable" | |
}, | |
"7000" : { | |
"name" : "community_11 Key", | |
"item_name" : "#CSGO_crate_key_community_11", | |
"item_description" : "#CSGO_crate_key_community_11_desc", | |
"first_sale_date" : "2016-01-19", | |
"prefab" : "weapon_case_key", | |
"image_inventory" : "econ/tools/crate_key_community_11", | |
"tool" : { | |
"restriction" : "crate_community_11" | |
} | |
}, | |
"20000" : { | |
"name" : "coupon - bossyburger", | |
"item_name" : "#coupon_bossyburger", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - bossyburger", | |
"prefab" : "coupon_prefab" | |
}, | |
"20001" : { | |
"name" : "coupon - catcall", | |
"item_name" : "#coupon_catcall", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - catcall", | |
"prefab" : "coupon_prefab" | |
}, | |
"20002" : { | |
"name" : "coupon - chickenstrike", | |
"item_name" : "#coupon_chickenstrike", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - chickenstrike", | |
"prefab" : "coupon_prefab" | |
}, | |
"20003" : { | |
"name" : "coupon - ctbanana", | |
"item_name" : "#coupon_ctbanana", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - ctbanana", | |
"prefab" : "coupon_prefab" | |
}, | |
"20004" : { | |
"name" : "coupon - dontworryimpro", | |
"item_name" : "#coupon_dontworryimpro", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - dontworryimpro", | |
"prefab" : "coupon_prefab" | |
}, | |
"20005" : { | |
"name" : "coupon - fightlikeagirl", | |
"item_name" : "#coupon_fightlikeagirl", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - fightlikeagirl", | |
"prefab" : "coupon_prefab" | |
}, | |
"20006" : { | |
"name" : "coupon - handmadeflash", | |
"item_name" : "#coupon_handmadeflash", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - handmadeflash", | |
"prefab" : "coupon_prefab" | |
}, | |
"20007" : { | |
"name" : "coupon - kawaiikiller", | |
"item_name" : "#coupon_kawaiikiller", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - kawaiikiller", | |
"prefab" : "coupon_prefab" | |
}, | |
"20008" : { | |
"name" : "coupon - neluthebear", | |
"item_name" : "#coupon_neluthebear", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - neluthebear", | |
"prefab" : "coupon_prefab" | |
}, | |
"20009" : { | |
"name" : "coupon - oneshotonekill", | |
"item_name" : "#coupon_oneshotonekill", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - oneshotonekill", | |
"prefab" : "coupon_prefab" | |
}, | |
"20010" : { | |
"name" : "coupon - shootingstar", | |
"item_name" : "#coupon_shootingstar", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - shootingstar", | |
"prefab" : "coupon_prefab" | |
}, | |
"20012" : { | |
"name" : "coupon - warpenguin", | |
"item_name" : "#coupon_warpenguin", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - warpenguin", | |
"prefab" : "coupon_prefab" | |
}, | |
"20013" : { | |
"name" : "coupon - windywalking", | |
"item_name" : "#coupon_windywalking", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - windywalking", | |
"prefab" : "coupon_prefab" | |
}, | |
"20014" : { | |
"name" : "coupon - blitzkrieg", | |
"item_name" : "#coupon_blitzkrieg", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - blitzkrieg", | |
"prefab" : "coupon_prefab" | |
}, | |
"20015" : { | |
"name" : "coupon - pigeonmaster", | |
"item_name" : "#coupon_pigeonmaster", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - pigeonmaster", | |
"prefab" : "coupon_prefab" | |
}, | |
"20016" : { | |
"name" : "coupon - terrorized", | |
"item_name" : "#coupon_terrorized", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - terrorized", | |
"prefab" : "coupon_prefab" | |
}, | |
"20017" : { | |
"name" : "coupon - tilldeathdouspart", | |
"item_name" : "#coupon_tilldeathdouspart", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - tilldeathdouspart", | |
"prefab" : "coupon_prefab" | |
}, | |
"20018" : { | |
"name" : "coupon - stayfrosty", | |
"item_name" : "#coupon_stayfrosty", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - stayfrosty", | |
"prefab" : "coupon_prefab" | |
}, | |
"20019" : { | |
"name" : "coupon - toncat", | |
"item_name" : "#coupon_toncat", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - toncat", | |
"prefab" : "coupon_prefab" | |
}, | |
"20020" : { | |
"name" : "coupon - danielsadowski_01", | |
"item_name" : "#coupon_danielsadowski_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - danielsadowski_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/danielsadowski_01" | |
}, | |
"20021" : { | |
"name" : "coupon - noisia_01", | |
"item_name" : "#coupon_noisia_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - noisia_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/noisia_01" | |
}, | |
"20022" : { | |
"name" : "coupon - robertallaire_01", | |
"item_name" : "#coupon_robertallaire_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - robertallaire_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/robertallaire_01" | |
}, | |
"20023" : { | |
"name" : "coupon - seanmurray_01", | |
"item_name" : "#coupon_seanmurray_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - seanmurray_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/seanmurray_01" | |
}, | |
"20024" : { | |
"name" : "coupon - feedme_01", | |
"item_name" : "#coupon_feedme_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - feedme_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/feedme_01" | |
}, | |
"20025" : { | |
"name" : "coupon - dren_01", | |
"item_name" : "#coupon_dren_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - dren_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/dren_01" | |
}, | |
"20026" : { | |
"name" : "coupon - austinwintory_01", | |
"item_name" : "#coupon_austinwintory_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - austinwintory_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/austinwintory_01" | |
}, | |
"20027" : { | |
"name" : "coupon - sasha_01", | |
"item_name" : "#coupon_sasha_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - sasha_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/sasha_01" | |
}, | |
"20028" : { | |
"name" : "coupon - skog_01", | |
"item_name" : "#coupon_skog_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - skog_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/skog_01" | |
}, | |
"20029" : { | |
"name" : "coupon - doomed", | |
"item_name" : "#coupon_doomed", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - doomed", | |
"prefab" : "coupon_prefab" | |
}, | |
"20030" : { | |
"name" : "coupon - queenofpain", | |
"item_name" : "#coupon_queenofpain", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - queenofpain", | |
"prefab" : "coupon_prefab" | |
}, | |
"20031" : { | |
"name" : "coupon - trickorthreat", | |
"item_name" : "#coupon_trickorthreat", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - trickorthreat", | |
"prefab" : "coupon_prefab" | |
}, | |
"20032" : { | |
"name" : "coupon - trickortreat", | |
"item_name" : "#coupon_trickortreat", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - trickortreat", | |
"prefab" : "coupon_prefab" | |
}, | |
"20033" : { | |
"name" : "coupon - witch", | |
"item_name" : "#coupon_witch", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - witch", | |
"prefab" : "coupon_prefab" | |
}, | |
"20034" : { | |
"name" : "coupon - zombielover", | |
"item_name" : "#coupon_zombielover", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - zombielover", | |
"prefab" : "coupon_prefab" | |
}, | |
"20035" : { | |
"name" : "coupon - blood_broiler", | |
"item_name" : "#coupon_blood_broiler", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - blood_broiler", | |
"prefab" : "coupon_prefab" | |
}, | |
"20036" : { | |
"name" : "coupon - dinked", | |
"item_name" : "#coupon_dinked", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - dinked", | |
"prefab" : "coupon_prefab" | |
}, | |
"20037" : { | |
"name" : "coupon - drugwarveteran", | |
"item_name" : "#coupon_drugwarveteran", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - drugwarveteran", | |
"prefab" : "coupon_prefab" | |
}, | |
"20038" : { | |
"name" : "coupon - hohoho", | |
"item_name" : "#coupon_hohoho", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - hohoho", | |
"prefab" : "coupon_prefab" | |
}, | |
"20039" : { | |
"name" : "coupon - massivepear", | |
"item_name" : "#coupon_massivepear", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - massivepear", | |
"prefab" : "coupon_prefab" | |
}, | |
"20040" : { | |
"name" : "coupon - mylittlefriend", | |
"item_name" : "#coupon_mylittlefriend", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - mylittlefriend", | |
"prefab" : "coupon_prefab" | |
}, | |
"20041" : { | |
"name" : "coupon - pandamonium", | |
"item_name" : "#coupon_pandamonium", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - pandamonium", | |
"prefab" : "coupon_prefab" | |
}, | |
"20042" : { | |
"name" : "coupon - pieceofcake", | |
"item_name" : "#coupon_pieceofcake", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - pieceofcake", | |
"prefab" : "coupon_prefab" | |
}, | |
"20043" : { | |
"name" : "coupon - saschicken", | |
"item_name" : "#coupon_saschicken", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - saschicken", | |
"prefab" : "coupon_prefab" | |
}, | |
"20044" : { | |
"name" : "coupon - thuglife", | |
"item_name" : "#coupon_thuglife", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - thuglife", | |
"prefab" : "coupon_prefab" | |
}, | |
"20045" : { | |
"name" : "coupon - trekt", | |
"item_name" : "#coupon_trekt", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - trekt", | |
"prefab" : "coupon_prefab" | |
}, | |
"20046" : { | |
"name" : "coupon - warowl", | |
"item_name" : "#coupon_warowl", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - warowl", | |
"prefab" : "coupon_prefab" | |
}, | |
"20047" : { | |
"name" : "coupon - workforfood", | |
"item_name" : "#coupon_workforfood", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - workforfood", | |
"prefab" : "coupon_prefab" | |
}, | |
"20048" : { | |
"name" : "coupon - phoenix_foil", | |
"item_name" : "#coupon_phoenix_foil", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - phoenix_foil", | |
"prefab" : "coupon_prefab" | |
}, | |
"20049" : { | |
"name" : "coupon - bombsquad_foil", | |
"item_name" : "#coupon_bombsquad_foil", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - bombsquad_foil", | |
"prefab" : "coupon_prefab" | |
}, | |
"20050" : { | |
"name" : "coupon - midnightriders_01", | |
"item_name" : "#coupon_midnightriders_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - midnightriders_01", | |
"prefab" : "valve coupon_prefab", | |
"image_inventory" : "econ/music_kits/midnightriders_01" | |
}, | |
"20051" : { | |
"name" : "coupon - danielsadowski_02", | |
"item_name" : "#coupon_danielsadowski_02", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - danielsadowski_02", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/danielsadowski_02" | |
}, | |
"20052" : { | |
"name" : "coupon - hotlinemiami_01", | |
"item_name" : "#coupon_hotlinemiami_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - hotlinemiami_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/hotlinemiami_01" | |
}, | |
"20053" : { | |
"name" : "coupon - mattlange_01", | |
"item_name" : "#coupon_mattlange_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - mattlange_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/mattlange_01" | |
}, | |
"20054" : { | |
"name" : "coupon - mateomessina_01", | |
"item_name" : "#coupon_mateomessina_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - mateomessina_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/mateomessina_01" | |
}, | |
"20055" : { | |
"name" : "coupon - damjanmravunac_01", | |
"item_name" : "#coupon_damjanmravunac_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - damjanmravunac_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/damjanmravunac_01" | |
}, | |
"20056" : { | |
"name" : "coupon - flickshot", | |
"item_name" : "#coupon_flickshot", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - flickshot", | |
"prefab" : "coupon_prefab" | |
}, | |
"20057" : { | |
"name" : "coupon - headshot_guarantee", | |
"item_name" : "#coupon_headshot_guarantee", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - headshot_guarantee", | |
"prefab" : "coupon_prefab" | |
}, | |
"20058" : { | |
"name" : "coupon - eco_rush", | |
"item_name" : "#coupon_eco_rush", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - eco_rush", | |
"prefab" : "coupon_prefab" | |
}, | |
"20059" : { | |
"name" : "coupon - just_trolling", | |
"item_name" : "#coupon_just_trolling", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - just_trolling", | |
"prefab" : "valve coupon_prefab" | |
}, | |
"20061" : { | |
"name" : "coupon - firestarter_holo", | |
"item_name" : "#coupon_firestarter_holo", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - firestarter_holo", | |
"prefab" : "coupon_prefab" | |
}, | |
"20062" : { | |
"name" : "coupon - lucky_cat_foil", | |
"item_name" : "#coupon_lucky_cat_foil", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - lucky_cat_foil", | |
"prefab" : "coupon_prefab" | |
}, | |
"20063" : { | |
"name" : "coupon - robot_head", | |
"item_name" : "#coupon_robot_head", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - robot_head", | |
"prefab" : "coupon_prefab" | |
}, | |
"20064" : { | |
"name" : "coupon - witchcraft", | |
"item_name" : "#coupon_witchcraft", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - witchcraft", | |
"prefab" : "coupon_prefab" | |
}, | |
"20065" : { | |
"name" : "coupon - wanna_fight", | |
"item_name" : "#coupon_wanna_fight", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - wanna_fight", | |
"prefab" : "coupon_prefab" | |
}, | |
"20066" : { | |
"name" : "coupon - hostage_rescue", | |
"item_name" : "#coupon_hostage_rescue", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - hostage_rescue", | |
"prefab" : "coupon_prefab" | |
}, | |
"20067" : { | |
"name" : "coupon - hamster_hawk", | |
"item_name" : "#coupon_hamster_hawk", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - hamster_hawk", | |
"prefab" : "coupon_prefab" | |
}, | |
"20068" : { | |
"name" : "coupon - headless_chicken", | |
"item_name" : "#coupon_headless_chicken", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - headless_chicken", | |
"prefab" : "coupon_prefab" | |
}, | |
"20069" : { | |
"name" : "coupon - proxy_01", | |
"item_name" : "#coupon_proxy_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - proxy_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/proxy_01" | |
}, | |
"20070" : { | |
"name" : "coupon - kitheory_01", | |
"item_name" : "#coupon_kitheory_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - kitheory_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/kitheory_01" | |
}, | |
"20071" : { | |
"name" : "coupon - troelsfolmann_01", | |
"item_name" : "#coupon_troelsfolmann_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - troelsfolmann_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/troelsfolmann_01" | |
}, | |
"20072" : { | |
"name" : "coupon - kellybailey_01", | |
"item_name" : "#coupon_kellybailey_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - kellybailey_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/kellybailey_01" | |
}, | |
"20073" : { | |
"name" : "coupon - skog_02", | |
"item_name" : "#coupon_skog_02", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - skog_02", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/skog_02" | |
}, | |
"20074" : { | |
"name" : "coupon - enfu_sticker_capsule", | |
"item_name" : "#coupon_enfu_sticker_capsule", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - enfu_sticker_capsule", | |
"prefab" : "coupon_enfu_capsule_prefab" | |
}, | |
"20075" : { | |
"name" : "coupon - awp_country", | |
"item_name" : "#coupon_awp_country", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - awp_country", | |
"prefab" : "coupon_prefab" | |
}, | |
"20076" : { | |
"name" : "coupon - chi_bomb", | |
"item_name" : "#coupon_chi_bomb", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - chi_bomb", | |
"prefab" : "coupon_prefab" | |
}, | |
"20077" : { | |
"name" : "coupon - fox", | |
"item_name" : "#coupon_fox", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - fox", | |
"prefab" : "coupon_prefab" | |
}, | |
"20078" : { | |
"name" : "coupon - knifeclub", | |
"item_name" : "#coupon_knifeclub", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - knifeclub", | |
"prefab" : "coupon_prefab" | |
}, | |
"20079" : { | |
"name" : "coupon - cs_on_the_mind", | |
"item_name" : "#coupon_cs_on_the_mind", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - cs_on_the_mind", | |
"prefab" : "coupon_prefab" | |
}, | |
"20080" : { | |
"name" : "coupon - ninja_defuse", | |
"item_name" : "#coupon_ninja_defuse", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - ninja_defuse", | |
"prefab" : "coupon_prefab" | |
}, | |
"20081" : { | |
"name" : "coupon - pros_dont_fake", | |
"item_name" : "#coupon_pros_dont_fake", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - pros_dont_fake", | |
"prefab" : "coupon_prefab" | |
}, | |
"20082" : { | |
"name" : "coupon - kawaiikiller_t", | |
"item_name" : "#coupon_kawaiikiller_t", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - kawaiikiller_t", | |
"prefab" : "coupon_prefab" | |
}, | |
"20083" : { | |
"name" : "coupon - baackstabber", | |
"item_name" : "#coupon_baackstabber", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - baackstabber", | |
"prefab" : "coupon_prefab" | |
}, | |
"20084" : { | |
"name" : "coupon - delicious_tears", | |
"item_name" : "#coupon_delicious_tears", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - delicious_tears", | |
"prefab" : "coupon_prefab" | |
}, | |
"20085" : { | |
"name" : "coupon - danielsadowski_03", | |
"item_name" : "#coupon_danielsadowski_03", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - danielsadowski_03", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/danielsadowski_03" | |
}, | |
"20086" : { | |
"name" : "coupon - awolnation_01", | |
"item_name" : "#coupon_awolnation_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - awolnation_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/awolnation_01" | |
}, | |
"20087" : { | |
"name" : "coupon - mordfustang_01", | |
"item_name" : "#coupon_mordfustang_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - mordfustang_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/mordfustang_01" | |
}, | |
"20088" : { | |
"name" : "coupon - michaelbross_01", | |
"item_name" : "#coupon_michaelbross_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - michaelbross_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/michaelbross_01" | |
}, | |
"20089" : { | |
"name" : "coupon - ianhultquist_01", | |
"item_name" : "#coupon_ianhultquist_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - ianhultquist_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/ianhultquist_01" | |
}, | |
"20090" : { | |
"name" : "coupon - newbeatfund_01", | |
"item_name" : "#coupon_newbeatfund_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - newbeatfund_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/newbeatfund_01" | |
}, | |
"20091" : { | |
"name" : "coupon - beartooth_01", | |
"item_name" : "#coupon_beartooth_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - beartooth_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/beartooth_01" | |
}, | |
"20092" : { | |
"name" : "coupon - lenniemoore_01", | |
"item_name" : "#coupon_lenniemoore_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - lenniemoore_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/lenniemoore_01" | |
}, | |
"20093" : { | |
"name" : "coupon - darude_01", | |
"item_name" : "#coupon_darude_01", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - darude_01", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/darude_01" | |
}, | |
"20094" : { | |
"name" : "coupon - proxy_01_stattrak", | |
"item_name" : "#coupon_proxy_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - proxy_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/proxy_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20095" : { | |
"name" : "coupon - kitheory_01_stattrak", | |
"item_name" : "#coupon_kitheory_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - kitheory_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/kitheory_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20096" : { | |
"name" : "coupon - troelsfolmann_01_stattrak", | |
"item_name" : "#coupon_troelsfolmann_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - troelsfolmann_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/troelsfolmann_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20097" : { | |
"name" : "coupon - kellybailey_01_stattrak", | |
"item_name" : "#coupon_kellybailey_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - kellybailey_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/kellybailey_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20098" : { | |
"name" : "coupon - skog_02_stattrak", | |
"item_name" : "#coupon_skog_02_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - skog_02_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/skog_02", | |
"will_produce_stattrak" : "1" | |
}, | |
"20099" : { | |
"name" : "coupon - danielsadowski_03_stattrak", | |
"item_name" : "#coupon_danielsadowski_03_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - danielsadowski_03_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/danielsadowski_03", | |
"will_produce_stattrak" : "1" | |
}, | |
"20100" : { | |
"name" : "coupon - awolnation_01_stattrak", | |
"item_name" : "#coupon_awolnation_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - awolnation_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/awolnation_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20101" : { | |
"name" : "coupon - mordfustang_01_stattrak", | |
"item_name" : "#coupon_mordfustang_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - mordfustang_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/mordfustang_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20102" : { | |
"name" : "coupon - michaelbross_01_stattrak", | |
"item_name" : "#coupon_michaelbross_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - michaelbross_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/michaelbross_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20103" : { | |
"name" : "coupon - ianhultquist_01_stattrak", | |
"item_name" : "#coupon_ianhultquist_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - ianhultquist_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/ianhultquist_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20104" : { | |
"name" : "coupon - newbeatfund_01_stattrak", | |
"item_name" : "#coupon_newbeatfund_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - newbeatfund_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/newbeatfund_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20105" : { | |
"name" : "coupon - beartooth_01_stattrak", | |
"item_name" : "#coupon_beartooth_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - beartooth_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/beartooth_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20106" : { | |
"name" : "coupon - lenniemoore_01_stattrak", | |
"item_name" : "#coupon_lenniemoore_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - lenniemoore_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/lenniemoore_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20107" : { | |
"name" : "coupon - darude_01_stattrak", | |
"item_name" : "#coupon_darude_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - darude_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/darude_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20108" : { | |
"name" : "coupon - danielsadowski_01_stattrak", | |
"item_name" : "#coupon_danielsadowski_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - danielsadowski_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/danielsadowski_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20109" : { | |
"name" : "coupon - noisia_01_stattrak", | |
"item_name" : "#coupon_noisia_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - noisia_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/noisia_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20110" : { | |
"name" : "coupon - robertallaire_01_stattrak", | |
"item_name" : "#coupon_robertallaire_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - robertallaire_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/robertallaire_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20111" : { | |
"name" : "coupon - seanmurray_01_stattrak", | |
"item_name" : "#coupon_seanmurray_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - seanmurray_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/seanmurray_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20112" : { | |
"name" : "coupon - feedme_01_stattrak", | |
"item_name" : "#coupon_feedme_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - feedme_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/feedme_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20113" : { | |
"name" : "coupon - dren_01_stattrak", | |
"item_name" : "#coupon_dren_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - dren_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/dren_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20114" : { | |
"name" : "coupon - austinwintory_01_stattrak", | |
"item_name" : "#coupon_austinwintory_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - austinwintory_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/austinwintory_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20115" : { | |
"name" : "coupon - sasha_01_stattrak", | |
"item_name" : "#coupon_sasha_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - sasha_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/sasha_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20116" : { | |
"name" : "coupon - skog_01_stattrak", | |
"item_name" : "#coupon_skog_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - skog_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/skog_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20117" : { | |
"name" : "coupon - midnightriders_01_stattrak", | |
"item_name" : "#coupon_midnightriders_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - midnightriders_01_stattrak", | |
"prefab" : "valve coupon_prefab", | |
"image_inventory" : "econ/music_kits/midnightriders_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20118" : { | |
"name" : "coupon - danielsadowski_02_stattrak", | |
"item_name" : "#coupon_danielsadowski_02_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - danielsadowski_02_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/danielsadowski_02", | |
"will_produce_stattrak" : "1" | |
}, | |
"20119" : { | |
"name" : "coupon - hotlinemiami_01_stattrak", | |
"item_name" : "#coupon_hotlinemiami_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - hotlinemiami_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/hotlinemiami_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20120" : { | |
"name" : "coupon - mattlange_01_stattrak", | |
"item_name" : "#coupon_mattlange_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - mattlange_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/mattlange_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20121" : { | |
"name" : "coupon - mateomessina_01_stattrak", | |
"item_name" : "#coupon_mateomessina_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - mateomessina_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/mateomessina_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20122" : { | |
"name" : "coupon - damjanmravunac_01_stattrak", | |
"item_name" : "#coupon_damjanmravunac_01_stattrak", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - damjanmravunac_01_stattrak", | |
"prefab" : "coupon_prefab", | |
"image_inventory" : "econ/music_kits/damjanmravunac_01", | |
"will_produce_stattrak" : "1" | |
}, | |
"20123" : { | |
"name" : "coupon - pinups_sticker_capsule", | |
"item_name" : "#coupon_pinups_sticker_capsule", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - pinups_sticker_capsule", | |
"prefab" : "coupon_pinups_capsule_prefab" | |
}, | |
"20124" : { | |
"name" : "coupon - slid3_sticker_capsule", | |
"item_name" : "#coupon_slid3_sticker_capsule", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - slid3_sticker_capsule", | |
"prefab" : "coupon_slid3_capsule_prefab" | |
}, | |
"20125" : { | |
"name" : "coupon - team_roles_sticker_capsule", | |
"item_name" : "#coupon_team_roles_sticker_capsule", | |
"item_description" : "#coupon_desc", | |
"loot_list_name" : "coupon loot list - team_roles_sticker_capsule", | |
"prefab" : "coupon_team_roles_capsule_prefab" | |
} | |
}, | |
"attributes" : { | |
"1" : { | |
"name" : "always tradable", | |
"attribute_class" : "always_tradable", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_AlwaysTradable", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"2" : { | |
"name" : "cannot trade", | |
"attribute_class" : "cannot_trade", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_CannotTrade", | |
"hidden" : "1", | |
"effect_type" : "negative", | |
"stored_as_integer" : "1" | |
}, | |
"3" : { | |
"name" : "referenced item id low", | |
"attribute_class" : "referenced_item_id_low", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"4" : { | |
"name" : "referenced item id high", | |
"attribute_class" : "referenced_item_id_high", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"6" : { | |
"name" : "set item texture prefab", | |
"attribute_class" : "set_item_texture_prefab", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"7" : { | |
"name" : "set item texture seed", | |
"attribute_class" : "set_item_texture_seed", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "0" | |
}, | |
"8" : { | |
"name" : "set item texture wear", | |
"attribute_class" : "set_item_texture_wear", | |
"hidden" : "1", | |
"description_string" : "#Attrib_SetItemTextureWear", | |
"description_format" : "value_is_additive", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "0" | |
}, | |
"10" : { | |
"name" : "has silencer", | |
"attribute_class" : "has_silencer", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_HasSilencer", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"13" : { | |
"name" : "has burst mode", | |
"attribute_class" : "has_burst_mode", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_HasBurstMode", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"14" : { | |
"name" : "cycletime when in burst mode", | |
"attribute_class" : "cycletime_when_in_burst_mode", | |
"description_format" : "value_is_replace", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"15" : { | |
"name" : "time between burst shots", | |
"attribute_class" : "time_between_burst_shots", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"16" : { | |
"name" : "unzoom after shot", | |
"attribute_class" : "unzoom_after_shot", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"17" : { | |
"name" : "cycletime when zoomed", | |
"attribute_class" : "cycletime_when_zoomed", | |
"description_format" : "value_is_replace", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"18" : { | |
"name" : "cannot shoot underwater", | |
"attribute_class" : "cannot_shoot_underwater", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"19" : { | |
"name" : "in game price", | |
"attribute_class" : "in_game_price", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"20" : { | |
"name" : "primary clip size", | |
"attribute_class" : "primary_clip_size", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"21" : { | |
"name" : "secondary clip size", | |
"attribute_class" : "secondary_clip_size", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"22" : { | |
"name" : "is full auto", | |
"attribute_class" : "is_full_auto", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_FullAuto", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"attribute_type" : "uint32" | |
}, | |
"23" : { | |
"name" : "heat per shot", | |
"attribute_class" : "heat_per_shot", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"24" : { | |
"name" : "addon scale", | |
"attribute_class" : "addon_scale", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"25" : { | |
"name" : "tracer frequency", | |
"attribute_class" : "tracer_frequency", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"26" : { | |
"name" : "max player speed", | |
"attribute_class" : "max_player_speed", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"27" : { | |
"name" : "max player speed alt", | |
"attribute_class" : "max_player_speed_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"28" : { | |
"name" : "armor ratio", | |
"attribute_class" : "armor_ratio", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"29" : { | |
"name" : "crosshair min distance", | |
"attribute_class" : "crosshair_min_distance", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"30" : { | |
"name" : "crosshair delta distance", | |
"attribute_class" : "crosshair_delta_distance", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"31" : { | |
"name" : "penetration", | |
"attribute_class" : "penetration", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"32" : { | |
"name" : "damage", | |
"attribute_class" : "damage", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"33" : { | |
"name" : "range", | |
"attribute_class" : "range", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"34" : { | |
"name" : "range modifier", | |
"attribute_class" : "range_modifier", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"35" : { | |
"name" : "bullets", | |
"attribute_class" : "bullets", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"36" : { | |
"name" : "cycletime", | |
"attribute_class" : "cycletime", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"37" : { | |
"name" : "time to idle", | |
"attribute_class" : "time_to_idle", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"38" : { | |
"name" : "idle interval", | |
"attribute_class" : "idle interval", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"39" : { | |
"name" : "flinch velocity modifier large", | |
"attribute_class" : "flinch_velocity_modifier_large", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"40" : { | |
"name" : "flinch velocity modifier small", | |
"attribute_class" : "flinch velocity modifier small", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"41" : { | |
"name" : "spread", | |
"attribute_class" : "spread", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"42" : { | |
"name" : "inaccuracy crouch", | |
"attribute_class" : "inaccuracy_crouch", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"43" : { | |
"name" : "inaccuracy stand", | |
"attribute_class" : "inaccuracy_stand", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"44" : { | |
"name" : "inaccuracy jump", | |
"attribute_class" : "inaccuracy_jump", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"45" : { | |
"name" : "inaccuracy land", | |
"attribute_class" : "inaccuracy_land", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"46" : { | |
"name" : "inaccuracy ladder", | |
"attribute_class" : "inaccuracy_ladder", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"47" : { | |
"name" : "inaccuracy fire", | |
"attribute_class" : "inaccuracy_fire", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"48" : { | |
"name" : "inaccuracy move", | |
"attribute_class" : "inaccuracy_move", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"49" : { | |
"name" : "spread alt", | |
"attribute_class" : "spread_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"50" : { | |
"name" : "inaccuracy crouch alt", | |
"attribute_class" : "inaccuracy_crouch_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"51" : { | |
"name" : "inaccuracy stand alt", | |
"attribute_class" : "inaccuracy_stand_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"52" : { | |
"name" : "inaccuracy jump alt", | |
"attribute_class" : "inaccuracy_jump_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"53" : { | |
"name" : "inaccuracy land alt", | |
"attribute_class" : "inaccuracy_land_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"54" : { | |
"name" : "inaccuracy ladder alt", | |
"attribute_class" : "inaccuracy_ladder_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"55" : { | |
"name" : "inaccuracy fire alt", | |
"attribute_class" : "inaccuracy_fire_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"56" : { | |
"name" : "inaccuracy move alt", | |
"attribute_class" : "inaccuracy_move_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"57" : { | |
"name" : "recovery time crouch", | |
"attribute_class" : "recovery_time_crouch", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"58" : { | |
"name" : "recovery time stand", | |
"attribute_class" : "recovery_time_stand", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"59" : { | |
"name" : "recoil seed", | |
"attribute_class" : "recoil_seed", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"60" : { | |
"name" : "recoil angle", | |
"attribute_class" : "recoil_angle", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"61" : { | |
"name" : "recoil angle variance", | |
"attribute_class" : "recoil_angle_variance", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"62" : { | |
"name" : "recoil magnitude", | |
"attribute_class" : "recoil_magnitude", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"63" : { | |
"name" : "recoil magnitude variance", | |
"attribute_class" : "recoil_magnitude_variance", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"64" : { | |
"name" : "recoil angle alt", | |
"attribute_class" : "recoil_angle_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"65" : { | |
"name" : "recoil angle variance alt", | |
"attribute_class" : "recoil_angle_variance_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"66" : { | |
"name" : "recoil magnitude alt", | |
"attribute_class" : "recoil_magnitude_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"67" : { | |
"name" : "recoil magnitude variance alt", | |
"attribute_class" : "recoil_magnitude_variance_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"68" : { | |
"name" : "set supply crate series", | |
"attribute_class" : "supply_crate_series", | |
"description_string" : "#Attrib_SupplyCrateSeries", | |
"description_format" : "value_is_additive", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"69" : { | |
"name" : "minutes played", | |
"attribute_class" : "minutes_played", | |
"description_string" : "#Attrib_MinutesPlayedAsHrs", | |
"description_format" : "value_is_mins_as_hours", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0", | |
"score" : "10000" | |
}, | |
"70" : { | |
"name" : "alternate icon", | |
"attribute_class" : "alternate_icon", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"71" : { | |
"name" : "season access", | |
"attribute_class" : "season_access", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"72" : { | |
"name" : "disallow recycling", | |
"attribute_class" : "disallow_recycling", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"73" : { | |
"name" : "upgrade threshold", | |
"attribute_class" : "upgrade_threshold", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"75" : { | |
"name" : "tradable after date", | |
"attribute_class" : "tradable_after_date", | |
"description_format" : "value_is_date", | |
"description_string" : "#Attrib_TradableAfterDate", | |
"hidden" : "1", | |
"effect_type" : "negative", | |
"stored_as_integer" : "1" | |
}, | |
"76" : { | |
"name" : "is revolver", | |
"attribute_class" : "is_revolver", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"78" : { | |
"name" : "elevate quality", | |
"attribute_class" : "set_elevated_quality", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"79" : { | |
"name" : "cycletime alt", | |
"attribute_class" : "cycletime_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "float" | |
}, | |
"80" : { | |
"name" : "kill eater", | |
"attribute_class" : "kill_eater", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"81" : { | |
"name" : "kill eater score type", | |
"attribute_class" : "kill_eater_score_type", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"score" : "6", | |
"stored_as_integer" : "1" | |
}, | |
"82" : { | |
"name" : "kill eater user 1", | |
"attribute_class" : "kill_eater_user_1", | |
"description_format" : "value_is_additive", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"83" : { | |
"name" : "kill eater user score type 1", | |
"attribute_class" : "kill_eater_user_score_type_1", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"score" : "6", | |
"stored_as_integer" : "1" | |
}, | |
"84" : { | |
"name" : "kill eater user 2", | |
"attribute_class" : "kill_eater_user_2", | |
"description_format" : "value_is_additive", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"85" : { | |
"name" : "kill eater user score type 2", | |
"attribute_class" : "kill_eater_user_score_type_2", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"score" : "6", | |
"stored_as_integer" : "1" | |
}, | |
"86" : { | |
"name" : "kill eater user 3", | |
"attribute_class" : "kill_eater_user_3", | |
"description_format" : "value_is_additive", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"87" : { | |
"name" : "kill eater user score type 3", | |
"attribute_class" : "kill_eater_user_score_type_3", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"score" : "6", | |
"stored_as_integer" : "1" | |
}, | |
"88" : { | |
"name" : "kill eater 2", | |
"attribute_class" : "kill_eater_2", | |
"description_format" : "value_is_additive", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"89" : { | |
"name" : "kill eater score type 2", | |
"attribute_class" : "kill_eater_score_type_2", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"score" : "6", | |
"stored_as_integer" : "1" | |
}, | |
"92" : { | |
"name" : "tracer frequency alt", | |
"attribute_class" : "tracer_frequency_alt", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"93" : { | |
"name" : "primary default clip size", | |
"attribute_class" : "primary_default_clip_size", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"94" : { | |
"name" : "secondary default clip size", | |
"attribute_class" : "secondary_default_clip_size", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"95" : { | |
"name" : "recipe filter", | |
"attribute_class" : "recipe_filter", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "0" | |
}, | |
"97" : { | |
"name" : "competitive kills", | |
"attribute_class" : "competitive_kills", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_CompetitiveKills", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "8000" | |
}, | |
"98" : { | |
"name" : "competitive 3k", | |
"attribute_class" : "competitive_3k", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_Competitive3k", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "7000" | |
}, | |
"99" : { | |
"name" : "competitive 4k", | |
"attribute_class" : "competitive_4k", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_Competitive4k", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "6900" | |
}, | |
"101" : { | |
"name" : "competitive 5k", | |
"attribute_class" : "competitive_5k", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_Competitive5k", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "6800" | |
}, | |
"102" : { | |
"name" : "competitive hsp", | |
"attribute_class" : "competitive_hsp", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_CompetitiveHSP", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0", | |
"score" : "7500" | |
}, | |
"103" : { | |
"name" : "competitive wins", | |
"attribute_class" : "competitive_wins", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_CompetitiveWins", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "8500" | |
}, | |
"104" : { | |
"name" : "competitive mvps", | |
"attribute_class" : "competitive_mvps", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_CompetitiveMVPs", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "8400" | |
}, | |
"105" : { | |
"name" : "competitive minutes played", | |
"attribute_class" : "competitive_minutes_played", | |
"description_string" : "#Attrib_CompetitiveMinutesPlayedAsHrs", | |
"description_format" : "value_is_mins_as_hours", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "9000" | |
}, | |
"106" : { | |
"name" : "match wins", | |
"attribute_class" : "match_wins", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_MatchWins", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "9500" | |
}, | |
"107" : { | |
"name" : "preferred sort", | |
"attribute_class" : "preferred_sort", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "0" | |
}, | |
"111" : { | |
"name" : "custom name attr", | |
"attribute_class" : "custom_name_attr", | |
"attribute_type" : "string", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive" | |
}, | |
"112" : { | |
"name" : "custom desc attr", | |
"attribute_class" : "custom_desc_attr", | |
"attribute_type" : "string", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive" | |
}, | |
"113" : { | |
"name" : "sticker slot 0 id", | |
"attribute_class" : "sticker_slot_id", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"114" : { | |
"name" : "sticker slot 0 wear", | |
"attribute_class" : "sticker_slot_wear", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"115" : { | |
"name" : "sticker slot 0 scale", | |
"attribute_class" : "sticker_slot_scale", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"116" : { | |
"name" : "sticker slot 0 rotation", | |
"attribute_class" : "sticker_slot_rotation", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"117" : { | |
"name" : "sticker slot 1 id", | |
"attribute_class" : "sticker_slot_id", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"118" : { | |
"name" : "sticker slot 1 wear", | |
"attribute_class" : "sticker_slot_wear", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"119" : { | |
"name" : "sticker slot 1 scale", | |
"attribute_class" : "sticker_slot_scale", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"120" : { | |
"name" : "sticker slot 1 rotation", | |
"attribute_class" : "sticker_slot_rotation", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"121" : { | |
"name" : "sticker slot 2 id", | |
"attribute_class" : "sticker_slot_id", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"122" : { | |
"name" : "sticker slot 2 wear", | |
"attribute_class" : "sticker_slot_wear", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"123" : { | |
"name" : "sticker slot 2 scale", | |
"attribute_class" : "sticker_slot_scale", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"124" : { | |
"name" : "sticker slot 2 rotation", | |
"attribute_class" : "sticker_slot_rotation", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"125" : { | |
"name" : "sticker slot 3 id", | |
"attribute_class" : "sticker_slot_id", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"126" : { | |
"name" : "sticker slot 3 wear", | |
"attribute_class" : "sticker_slot_wear", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"127" : { | |
"name" : "sticker slot 3 scale", | |
"attribute_class" : "sticker_slot_scale", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"128" : { | |
"name" : "sticker slot 3 rotation", | |
"attribute_class" : "sticker_slot_rotation", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"129" : { | |
"name" : "sticker slot 4 id", | |
"attribute_class" : "sticker_slot_id", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"130" : { | |
"name" : "sticker slot 4 wear", | |
"attribute_class" : "sticker_slot_wear", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"131" : { | |
"name" : "sticker slot 4 scale", | |
"attribute_class" : "sticker_slot_scale", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"132" : { | |
"name" : "sticker slot 4 rotation", | |
"attribute_class" : "sticker_slot_rotation", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"133" : { | |
"name" : "sticker slot 5 id", | |
"attribute_class" : "sticker_slot_id", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"134" : { | |
"name" : "sticker slot 5 wear", | |
"attribute_class" : "sticker_slot_wear", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"135" : { | |
"name" : "sticker slot 5 scale", | |
"attribute_class" : "sticker_slot_scale", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"136" : { | |
"name" : "sticker slot 5 rotation", | |
"attribute_class" : "sticker_slot_rotation", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0" | |
}, | |
"137" : { | |
"name" : "tournament event id", | |
"attribute_class" : "tournament_event_id", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"138" : { | |
"name" : "tournament event stage id", | |
"attribute_class" : "tournament_event_stage_id", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"139" : { | |
"name" : "tournament event team0 id", | |
"attribute_class" : "tournament_event_team_id", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"140" : { | |
"name" : "tournament event team1 id", | |
"attribute_class" : "tournament_event_team_id", | |
"group" : "only_on_unique", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"142" : { | |
"name" : "icon display model", | |
"attribute_class" : "icon_display_model", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"attribute_type" : "string" | |
}, | |
"143" : { | |
"name" : "buymenu display model", | |
"attribute_class" : "buymenu_display_model", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"attribute_type" : "string" | |
}, | |
"144" : { | |
"name" : "pedestal display model", | |
"attribute_class" : "pedestal_display_model", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"attribute_type" : "string" | |
}, | |
"145" : { | |
"name" : "magazine model", | |
"attribute_class" : "magazine_model", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"attribute_type" : "string" | |
}, | |
"146" : { | |
"name" : "uid model", | |
"attribute_class" : "uid_model", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"attribute_type" : "string" | |
}, | |
"147" : { | |
"name" : "stattrak model", | |
"attribute_class" : "stattrak_model", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"attribute_type" : "string" | |
}, | |
"150" : { | |
"name" : "aimsight capable", | |
"attribute_class" : "aimsight_capable", | |
"description_format" : "value_is_replace", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"151" : { | |
"name" : "aimsight eye pos", | |
"attribute_class" : "aimsight_eye_pos", | |
"description_format" : "value_is_replace", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "vector" | |
}, | |
"154" : { | |
"name" : "aimsight pivot angle", | |
"attribute_class" : "aimsight_pivot_angle", | |
"description_format" : "value_is_replace", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "vector" | |
}, | |
"157" : { | |
"name" : "aimsight speed up", | |
"attribute_class" : "aimsight_speed_up", | |
"description_format" : "value_is_replace", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "0" | |
}, | |
"158" : { | |
"name" : "aimsight speed down", | |
"attribute_class" : "aimsight_speed_down", | |
"description_format" : "value_is_replace", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "0" | |
}, | |
"159" : { | |
"name" : "aimsight looseness", | |
"attribute_class" : "aimsight_looseness", | |
"description_format" : "value_is_replace", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "0" | |
}, | |
"160" : { | |
"name" : "aimsight fov", | |
"attribute_class" : "aimsight_fov", | |
"description_format" : "value_is_replace", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "0" | |
}, | |
"161" : { | |
"name" : "aimsight pivot forward", | |
"attribute_class" : "aimsight_pivot_forward", | |
"description_format" : "value_is_replace", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "0" | |
}, | |
"162" : { | |
"name" : "gifter account id", | |
"attribute_class" : "gifter_account_id", | |
"description_format" : "value_is_account_id", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"165" : { | |
"name" : "aimsight lens mask", | |
"attribute_class" : "aimsight_lens_mask", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"attribute_type" : "string" | |
}, | |
"166" : { | |
"name" : "music id", | |
"attribute_class" : "music_id", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"168" : { | |
"name" : "quest id", | |
"attribute_class" : "quest_id", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"169" : { | |
"name" : "quest points remaining", | |
"attribute_class" : "quest_points_remaining", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"170" : { | |
"name" : "quest reward lootlist", | |
"attribute_class" : "quest_reward_lootlist", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"171" : { | |
"name" : "quests complete", | |
"attribute_class" : "quests_complete", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_QuestsComplete", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "8600" | |
}, | |
"172" : { | |
"name" : "operation kills", | |
"attribute_class" : "operation_kills", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_OperationKills", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "8000" | |
}, | |
"173" : { | |
"name" : "operation 3k", | |
"attribute_class" : "operation_3k", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_Operation3k", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "7000" | |
}, | |
"174" : { | |
"name" : "operation 4k", | |
"attribute_class" : "operation_4k", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_Operation4k", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "6900" | |
}, | |
"175" : { | |
"name" : "operation 5k", | |
"attribute_class" : "operation_5k", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_Operation5k", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "6800" | |
}, | |
"176" : { | |
"name" : "operation hsp", | |
"attribute_class" : "operation_hsp", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_OperationHSP", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "0", | |
"score" : "7500" | |
}, | |
"177" : { | |
"name" : "operation mvps", | |
"attribute_class" : "operation_mvps", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_OperationMVPs", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "8400" | |
}, | |
"178" : { | |
"name" : "operation minutes played", | |
"attribute_class" : "operation_minutes_played", | |
"description_string" : "#Attrib_OperationMinutesPlayedAsHrs", | |
"description_format" : "value_is_mins_as_hours", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "9000" | |
}, | |
"179" : { | |
"name" : "operation wins", | |
"attribute_class" : "operation_wins", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_OperationWins", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1", | |
"score" : "9500" | |
}, | |
"180" : { | |
"name" : "deployment date", | |
"attribute_class" : "deployment_date", | |
"description_format" : "value_is_date", | |
"description_string" : "#Attrib_DeploymentDate", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"182" : { | |
"name" : "use after date", | |
"attribute_class" : "use_after_date", | |
"description_format" : "value_is_date", | |
"description_string" : "#Attrib_UseAfterDate", | |
"hidden" : "1", | |
"effect_type" : "negative", | |
"stored_as_integer" : "1" | |
}, | |
"183" : { | |
"name" : "expiration date", | |
"attribute_class" : "expiration_date", | |
"description_string" : "#Attrib_ExpirationDate", | |
"description_format" : "value_is_date", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"184" : { | |
"name" : "campaign id", | |
"attribute_class" : "campaign_id", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"185" : { | |
"name" : "campaign completion bitfield", | |
"attribute_class" : "campaign_completion_bitfield", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"187" : { | |
"name" : "last campaign completion", | |
"attribute_class" : "last_campaign_completion", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"188" : { | |
"name" : "operation points", | |
"attribute_class" : "operation_points", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"197" : { | |
"name" : "kill award", | |
"attribute_class" : "kill_award", | |
"description_format" : "value_is_additive", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"attribute_type" : "uint32" | |
}, | |
"199" : { | |
"name" : "primary reserve ammo max", | |
"attribute_class" : "primary_reserve_ammo_max", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"200" : { | |
"name" : "secondary reserve ammo max", | |
"attribute_class" : "secondary_reserve_ammo_max", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"attribute_type" : "uint32" | |
}, | |
"208" : { | |
"name" : "campaign 1 completion bitfield", | |
"attribute_class" : "campaign_completion_bitfield", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"209" : { | |
"name" : "campaign 1 last completed quest", | |
"attribute_class" : "campaign_last_completed_quest", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"210" : { | |
"name" : "campaign 2 completion bitfield", | |
"attribute_class" : "campaign_completion_bitfield", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"211" : { | |
"name" : "campaign 2 last completed quest", | |
"attribute_class" : "campaign_last_completed_quest", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"212" : { | |
"name" : "campaign 3 completion bitfield", | |
"attribute_class" : "campaign_completion_bitfield", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"213" : { | |
"name" : "campaign 3 last completed quest", | |
"attribute_class" : "campaign_last_completed_quest", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"214" : { | |
"name" : "campaign 4 completion bitfield", | |
"attribute_class" : "campaign_completion_bitfield", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"215" : { | |
"name" : "campaign 4 last completed quest", | |
"attribute_class" : "campaign_last_completed_quest", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"216" : { | |
"name" : "campaign 5 completion bitfield", | |
"attribute_class" : "campaign_completion_bitfield", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"217" : { | |
"name" : "campaign 5 last completed quest", | |
"attribute_class" : "campaign_last_completed_quest", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"218" : { | |
"name" : "campaign 6 completion bitfield", | |
"attribute_class" : "campaign_completion_bitfield", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"219" : { | |
"name" : "campaign 6 last completed quest", | |
"attribute_class" : "campaign_last_completed_quest", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"220" : { | |
"name" : "operation bonus points", | |
"attribute_class" : "operation_bonus_points", | |
"description_format" : "value_is_additive", | |
"description_string" : "#Attrib_OperationBonusXP", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"221" : { | |
"name" : "prestige year", | |
"attribute_class" : "prestige_year", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"222" : { | |
"name" : "issue date", | |
"attribute_class" : "issue_date", | |
"description_format" : "value_is_date", | |
"description_string" : "#Attrib_IssueDate", | |
"hidden" : "0", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"223" : { | |
"name" : "tournament mvp account id", | |
"attribute_class" : "tournament_mvp_account_id", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "positive", | |
"stored_as_integer" : "1" | |
}, | |
"224" : { | |
"name" : "campaign 7 completion bitfield", | |
"attribute_class" : "campaign_completion_bitfield", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"225" : { | |
"name" : "campaign 7 last completed quest", | |
"attribute_class" : "campaign_last_completed_quest", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"226" : { | |
"name" : "campaign 8 completion bitfield", | |
"attribute_class" : "campaign_completion_bitfield", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
}, | |
"227" : { | |
"name" : "campaign 8 last completed quest", | |
"attribute_class" : "campaign_last_completed_quest", | |
"description_format" : "value_is_additive", | |
"hidden" : "1", | |
"effect_type" : "neutral", | |
"stored_as_integer" : "1" | |
} | |
}, | |
"sticker_kits" : { | |
"0" : { | |
"name" : "default", | |
"item_name" : "#StickerKit_Default", | |
"description_string" : "#StickerKit_Desc_Default" | |
}, | |
"1" : { | |
"name" : "dh_gologo1", | |
"item_name" : "#StickerKit_dh_gologo1", | |
"description_string" : "#StickerKit_desc_dh_gologo1", | |
"sticker_material" : "dreamhack/dh_gologo1", | |
"tournament_event_id" : "1" | |
}, | |
"2" : { | |
"name" : "dh_gologo1_holo", | |
"item_name" : "#StickerKit_dh_gologo1_holo", | |
"description_string" : "#StickerKit_desc_dh_gologo1_holo", | |
"sticker_material" : "dreamhack/dh_gologo1_holo", | |
"tournament_event_id" : "1" | |
}, | |
"3" : { | |
"name" : "dh_gologo2", | |
"item_name" : "#StickerKit_dh_gologo2", | |
"description_string" : "#StickerKit_desc_dh_gologo2", | |
"sticker_material" : "dreamhack/dh_gologo2", | |
"tournament_event_id" : "1" | |
}, | |
"4" : { | |
"name" : "dh_gologo2_holo", | |
"item_name" : "#StickerKit_dh_gologo2_holo", | |
"description_string" : "#StickerKit_desc_dh_gologo2_holo", | |
"sticker_material" : "dreamhack/dh_gologo2_holo", | |
"tournament_event_id" : "1" | |
}, | |
"5" : { | |
"name" : "dh_snowflake2", | |
"item_name" : "#StickerKit_dh_snowflake2", | |
"description_string" : "#StickerKit_desc_dh_snowflake2", | |
"sticker_material" : "dreamhack/dh_snowflake2", | |
"tournament_event_id" : "1" | |
}, | |
"6" : { | |
"name" : "dh_snowflake3", | |
"item_name" : "#StickerKit_dh_snowflake3", | |
"description_string" : "#StickerKit_desc_dh_snowflake3", | |
"sticker_material" : "dreamhack/dh_snowflake3", | |
"tournament_event_id" : "1" | |
}, | |
"7" : { | |
"name" : "dh_bears", | |
"item_name" : "#StickerKit_dh_bears", | |
"description_string" : "#StickerKit_desc_dh_bears", | |
"sticker_material" : "dreamhack/dh_bears", | |
"tournament_event_id" : "1" | |
}, | |
"8" : { | |
"name" : "dh_bears_holo", | |
"item_name" : "#StickerKit_dh_bears_holo", | |
"description_string" : "#StickerKit_desc_dh_bears_holo", | |
"sticker_material" : "dreamhack/dh_bears_holo", | |
"tournament_event_id" : "1" | |
}, | |
"9" : { | |
"name" : "dh_mountain", | |
"item_name" : "#StickerKit_dh_mountain", | |
"description_string" : "#StickerKit_desc_dh_mountain", | |
"sticker_material" : "dreamhack/dh_mountain", | |
"tournament_event_id" : "1" | |
}, | |
"10" : { | |
"name" : "dh_mountain_holo", | |
"item_name" : "#StickerKit_dh_mountain_holo", | |
"description_string" : "#StickerKit_desc_dh_mountain_holo", | |
"sticker_material" : "dreamhack/dh_mountain_holo", | |
"tournament_event_id" : "1" | |
}, | |
"11" : { | |
"name" : "dh_snowman", | |
"item_name" : "#StickerKit_dh_snowman", | |
"description_string" : "#StickerKit_desc_dh_snowman", | |
"sticker_material" : "dreamhack/dh_snowman", | |
"tournament_event_id" : "1" | |
}, | |
"12" : { | |
"name" : "dh_snowman_holo", | |
"item_name" : "#StickerKit_dh_snowman_holo", | |
"description_string" : "#StickerKit_desc_dh_snowman_holo", | |
"sticker_material" : "dreamhack/dh_snowman_holo", | |
"tournament_event_id" : "1" | |
}, | |
"13" : { | |
"name" : "std_thirteen", | |
"item_name" : "#StickerKit_std_thirteen", | |
"description_string" : "#StickerKit_desc_std_thirteen", | |
"sticker_material" : "standard/thirteen", | |
"item_rarity" : "rare" | |
}, | |
"14" : { | |
"name" : "std_aces_high", | |
"item_name" : "#StickerKit_std_aces_high", | |
"description_string" : "#StickerKit_desc_std_aces_high", | |
"sticker_material" : "standard/aces_high", | |
"item_rarity" : "rare" | |
}, | |
"15" : { | |
"name" : "std_aces_high_holo", | |
"item_name" : "#StickerKit_std_aces_high_holo", | |
"description_string" : "#StickerKit_desc_std_aces_high_holo", | |
"sticker_material" : "standard/aces_high_holo", | |
"item_rarity" : "mythical" | |
}, | |
"16" : { | |
"name" : "std_conquered", | |
"item_name" : "#StickerKit_std_conquered", | |
"description_string" : "#StickerKit_desc_std_conquered", | |
"sticker_material" : "standard/conquered", | |
"item_rarity" : "rare" | |
}, | |
"17" : { | |
"name" : "std_destroy", | |
"item_name" : "#StickerKit_std_destroy", | |
"description_string" : "#StickerKit_desc_std_destroy", | |
"sticker_material" : "standard/destroy", | |
"item_rarity" : "rare" | |
}, | |
"18" : { | |
"name" : "std_dispatch", | |
"item_name" : "#StickerKit_std_dispatch", | |
"description_string" : "#StickerKit_desc_std_dispatch", | |
"sticker_material" : "standard/dispatch", | |
"item_rarity" : "rare" | |
}, | |
"19" : { | |
"name" : "std_fearsome", | |
"item_name" : "#StickerKit_std_fearsome", | |
"description_string" : "#StickerKit_desc_std_fearsome", | |
"sticker_material" : "standard/fearsome", | |
"item_rarity" : "rare" | |
}, | |
"20" : { | |
"name" : "std_fearsome_holo", | |
"item_name" : "#StickerKit_std_fearsome_holo", | |
"description_string" : "#StickerKit_desc_std_fearsome_holo", | |
"sticker_material" : "standard/fearsome_holo", | |
"item_rarity" : "mythical" | |
}, | |
"21" : { | |
"name" : "std_guarding_hell", | |
"item_name" : "#StickerKit_std_guarding_hell", | |
"description_string" : "#StickerKit_desc_std_guarding_hell", | |
"sticker_material" : "standard/guarding_hell", | |
"item_rarity" : "rare" | |
}, | |
"22" : { | |
"name" : "std_lemon", | |
"item_name" : "#StickerKit_std_lemon", | |
"description_string" : "#StickerKit_desc_std_lemon", | |
"sticker_material" : "standard/lemon", | |
"item_rarity" : "rare" | |
}, | |
"23" : { | |
"name" : "std_luck", | |
"item_name" : "#StickerKit_std_luck", | |
"description_string" : "#StickerKit_desc_std_luck", | |
"sticker_material" : "standard/luck", | |
"item_rarity" : "rare" | |
}, | |
"24" : { | |
"name" : "std_vigilance", | |
"item_name" : "#StickerKit_std_vigilance", | |
"description_string" : "#StickerKit_desc_std_vigilance", | |
"sticker_material" : "standard/vigilance", | |
"item_rarity" : "rare" | |
}, | |
"25" : { | |
"name" : "std_vigilance_holo", | |
"item_name" : "#StickerKit_std_vigilance_holo", | |
"description_string" : "#StickerKit_desc_std_vigilance_holo", | |
"sticker_material" : "standard/vigilance_holo", | |
"item_rarity" : "mythical" | |
}, | |
"26" : { | |
"name" : "std_thirteen_foil", | |
"item_name" : "#StickerKit_std_thirteen_foil", | |
"description_string" : "#StickerKit_desc_std_thirteen_foil", | |
"sticker_material" : "standard/thirteen_foil", | |
"item_rarity" : "legendary" | |
}, | |
"27" : { | |
"name" : "std_luck_foil", | |
"item_name" : "#StickerKit_std_luck_foil", | |
"description_string" : "#StickerKit_desc_std_luck_foil", | |
"sticker_material" : "standard/luck_foil", | |
"item_rarity" : "legendary" | |
}, | |
"31" : { | |
"name" : "std2_bish_holo", | |
"item_name" : "#StickerKit_std2_bish_holo", | |
"description_string" : "#StickerKit_desc_std2_bish_holo", | |
"sticker_material" : "stickers2/bish_holo", | |
"item_rarity" : "mythical" | |
}, | |
"32" : { | |
"name" : "std2_bash_holo", | |
"item_name" : "#StickerKit_std2_bash_holo", | |
"description_string" : "#StickerKit_desc_std2_bash_holo", | |
"sticker_material" : "stickers2/bash_holo", | |
"item_rarity" : "mythical" | |
}, | |
"33" : { | |
"name" : "std2_bosh_holo", | |
"item_name" : "#StickerKit_std2_bosh_holo", | |
"description_string" : "#StickerKit_desc_std2_bosh_holo", | |
"sticker_material" : "stickers2/bosh_holo", | |
"item_rarity" : "mythical" | |
}, | |
"34" : { | |
"name" : "std2_banana", | |
"item_name" : "#StickerKit_std2_banana", | |
"description_string" : "#StickerKit_desc_std2_banana", | |
"sticker_material" : "stickers2/banana", | |
"item_rarity" : "rare" | |
}, | |
"35" : { | |
"name" : "std2_bomb_code", | |
"item_name" : "#StickerKit_std2_bomb_code", | |
"description_string" : "#StickerKit_desc_std2_bomb_code", | |
"sticker_material" : "stickers2/bomb_code", | |
"item_rarity" : "rare" | |
}, | |
"36" : { | |
"name" : "std2_chicken_lover", | |
"item_name" : "#StickerKit_std2_chicken_lover", | |
"description_string" : "#StickerKit_desc_std2_chicken_lover", | |
"sticker_material" : "stickers2/chicken_lover", | |
"item_rarity" : "rare" | |
}, | |
"37" : { | |
"name" : "std_crown_foil", | |
"item_name" : "#StickerKit_std_crown_foil", | |
"description_string" : "#StickerKit_desc_std_crown_foil", | |
"sticker_material" : "stickers2/crown_foil", | |
"item_rarity" : "legendary" | |
}, | |
"38" : { | |
"name" : "std2_goodgame", | |
"item_name" : "#StickerKit_std2_goodgame", | |
"description_string" : "#StickerKit_desc_std2_goodgame", | |
"sticker_material" : "stickers2/goodgame", | |
"item_rarity" : "rare" | |
}, | |
"39" : { | |
"name" : "std2_goodluck", | |
"item_name" : "#StickerKit_std2_goodluck", | |
"description_string" : "#StickerKit_desc_std2_goodluck", | |
"sticker_material" : "stickers2/goodluck", | |
"item_rarity" : "rare" | |
}, | |
"40" : { | |
"name" : "std2_havefun", | |
"item_name" : "#StickerKit_std2_havefun", | |
"description_string" : "#StickerKit_desc_std2_havefun", | |
"sticker_material" : "stickers2/havefun", | |
"item_rarity" : "rare" | |
}, | |
"41" : { | |
"name" : "std2_lets_roll_oll", | |
"item_name" : "#StickerKit_std2_lets_roll_oll", | |
"description_string" : "#StickerKit_desc_std2_lets_roll_oll", | |
"sticker_material" : "stickers2/lets_roll_oll", | |
"item_rarity" : "rare" | |
}, | |
"42" : { | |
"name" : "std2_lets_roll_oll_holo", | |
"item_name" : "#StickerKit_std2_lets_roll_oll_holo", | |
"description_string" : "#StickerKit_desc_std2_lets_roll_oll_holo", | |
"sticker_material" : "stickers2/lets_roll_oll_holo", | |
"item_rarity" : "mythical" | |
}, | |
"43" : { | |
"name" : "std2_metal", | |
"item_name" : "#StickerKit_std2_metal", | |
"description_string" : "#StickerKit_desc_std2_metal", | |
"sticker_material" : "stickers2/metal", | |
"item_rarity" : "rare" | |
}, | |
"44" : { | |
"name" : "std2_nice_shot", | |
"item_name" : "#StickerKit_std2_nice_shot", | |
"description_string" : "#StickerKit_desc_std2_nice_shot", | |
"sticker_material" : "stickers2/nice_shot", | |
"item_rarity" : "rare" | |
}, | |
"46" : { | |
"name" : "std2_stupid_banana_foil", | |
"item_name" : "#StickerKit_std2_stupid_banana_foil", | |
"description_string" : "#StickerKit_desc_std2_stupid_banana_foil", | |
"sticker_material" : "stickers2/stupid_banana_foil", | |
"item_rarity" : "legendary" | |
}, | |
"47" : { | |
"name" : "std2_welcome_clutch", | |
"item_name" : "#StickerKit_std2_welcome_clutch", | |
"description_string" : "#StickerKit_desc_std2_welcome_clutch", | |
"sticker_material" : "stickers2/welcome_clutch", | |
"item_rarity" : "rare" | |
}, | |
"48" : { | |
"name" : "kat2014_3dmax", | |
"item_name" : "#StickerKit_kat2014_3dmax", | |
"description_string" : "#StickerKit_desc_kat2014_3dmax", | |
"sticker_material" : "emskatowice2014/3dmax", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "28" | |
}, | |
"49" : { | |
"name" : "kat2014_3dmax_holo", | |
"item_name" : "#StickerKit_kat2014_3dmax_holo", | |
"description_string" : "#StickerKit_desc_kat2014_3dmax_holo", | |
"sticker_material" : "emskatowice2014/3dmax_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "28" | |
}, | |
"50" : { | |
"name" : "kat2014_complexity", | |
"item_name" : "#StickerKit_kat2014_complexity", | |
"description_string" : "#StickerKit_desc_kat2014_complexity", | |
"sticker_material" : "emskatowice2014/complexity", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "3" | |
}, | |
"51" : { | |
"name" : "kat2014_complexity_holo", | |
"item_name" : "#StickerKit_kat2014_complexity_holo", | |
"description_string" : "#StickerKit_desc_kat2014_complexity_holo", | |
"sticker_material" : "emskatowice2014/complexity_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "3" | |
}, | |
"52" : { | |
"name" : "kat2014_dignitas", | |
"item_name" : "#StickerKit_kat2014_dignitas", | |
"description_string" : "#StickerKit_desc_kat2014_dignitas", | |
"sticker_material" : "emskatowice2014/dignitas", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "24" | |
}, | |
"53" : { | |
"name" : "kat2014_dignitas_holo", | |
"item_name" : "#StickerKit_kat2014_dignitas_holo", | |
"description_string" : "#StickerKit_desc_kat2014_dignitas_holo", | |
"sticker_material" : "emskatowice2014/dignitas_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "24" | |
}, | |
"55" : { | |
"name" : "kat2014_fnatic", | |
"item_name" : "#StickerKit_kat2014_fnatic", | |
"description_string" : "#StickerKit_desc_kat2014_fnatic", | |
"sticker_material" : "emskatowice2014/fnatic", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "6" | |
}, | |
"56" : { | |
"name" : "kat2014_fnatic_holo", | |
"item_name" : "#StickerKit_kat2014_fnatic_holo", | |
"description_string" : "#StickerKit_desc_kat2014_fnatic_holo", | |
"sticker_material" : "emskatowice2014/fnatic_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "6" | |
}, | |
"57" : { | |
"name" : "kat2014_hellraisers", | |
"item_name" : "#StickerKit_kat2014_hellraisers", | |
"description_string" : "#StickerKit_desc_kat2014_hellraisers", | |
"sticker_material" : "emskatowice2014/hellraisers", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "25" | |
}, | |
"58" : { | |
"name" : "kat2014_hellraisers_holo", | |
"item_name" : "#StickerKit_kat2014_hellraisers_holo", | |
"description_string" : "#StickerKit_desc_kat2014_hellraisers_holo", | |
"sticker_material" : "emskatowice2014/hellraisers_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "25" | |
}, | |
"59" : { | |
"name" : "kat2014_ibuypower", | |
"item_name" : "#StickerKit_kat2014_ibuypower", | |
"description_string" : "#StickerKit_desc_kat2014_ibuypower", | |
"sticker_material" : "emskatowice2014/ibuypower", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "5" | |
}, | |
"60" : { | |
"name" : "kat2014_ibuypower_holo", | |
"item_name" : "#StickerKit_kat2014_ibuypower_holo", | |
"description_string" : "#StickerKit_desc_kat2014_ibuypower_holo", | |
"sticker_material" : "emskatowice2014/ibuypower_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "5" | |
}, | |
"61" : { | |
"name" : "kat2014_ldlc", | |
"item_name" : "#StickerKit_kat2014_ldlc", | |
"description_string" : "#StickerKit_desc_kat2014_ldlc", | |
"sticker_material" : "emskatowice2014/ldlc", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "26" | |
}, | |
"62" : { | |
"name" : "kat2014_ldlc_holo", | |
"item_name" : "#StickerKit_kat2014_ldlc_holo", | |
"description_string" : "#StickerKit_desc_kat2014_ldlc_holo", | |
"sticker_material" : "emskatowice2014/ldlc_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "26" | |
}, | |
"63" : { | |
"name" : "kat2014_lgb", | |
"item_name" : "#StickerKit_kat2014_lgb", | |
"description_string" : "#StickerKit_desc_kat2014_lgb", | |
"sticker_material" : "emskatowice2014/lgb", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "9" | |
}, | |
"64" : { | |
"name" : "kat2014_lgb_holo", | |
"item_name" : "#StickerKit_kat2014_lgb_holo", | |
"description_string" : "#StickerKit_desc_kat2014_lgb_holo", | |
"sticker_material" : "emskatowice2014/lgb_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "9" | |
}, | |
"65" : { | |
"name" : "kat2014_mousesports", | |
"item_name" : "#StickerKit_kat2014_mousesports", | |
"description_string" : "#StickerKit_desc_kat2014_mousesports", | |
"sticker_material" : "emskatowice2014/mousesports", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "29" | |
}, | |
"66" : { | |
"name" : "kat2014_mousesports_holo", | |
"item_name" : "#StickerKit_kat2014_mousesports_holo", | |
"description_string" : "#StickerKit_desc_kat2014_mousesports_holo", | |
"sticker_material" : "emskatowice2014/mousesports_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "29" | |
}, | |
"67" : { | |
"name" : "kat2014_mystik", | |
"item_name" : "#StickerKit_kat2014_mystik", | |
"description_string" : "#StickerKit_desc_kat2014_mystik", | |
"sticker_material" : "emskatowice2014/mystik", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "7" | |
}, | |
"68" : { | |
"name" : "kat2014_mystik_holo", | |
"item_name" : "#StickerKit_kat2014_mystik_holo", | |
"description_string" : "#StickerKit_desc_kat2014_mystik_holo", | |
"sticker_material" : "emskatowice2014/mystik_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "7" | |
}, | |
"69" : { | |
"name" : "kat2014_navi", | |
"item_name" : "#StickerKit_kat2014_navi", | |
"description_string" : "#StickerKit_desc_kat2014_navi", | |
"sticker_material" : "emskatowice2014/navi", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "12" | |
}, | |
"70" : { | |
"name" : "kat2014_navi_holo", | |
"item_name" : "#StickerKit_kat2014_navi_holo", | |
"description_string" : "#StickerKit_desc_kat2014_navi_holo", | |
"sticker_material" : "emskatowice2014/navi_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "12" | |
}, | |
"71" : { | |
"name" : "kat2014_ninjasinpyjamas", | |
"item_name" : "#StickerKit_kat2014_ninjasinpyjamas", | |
"description_string" : "#StickerKit_desc_kat2014_ninjasinpyjamas", | |
"sticker_material" : "emskatowice2014/ninjasinpyjamas", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "1" | |
}, | |
"72" : { | |
"name" : "kat2014_ninjasinpyjamas_holo", | |
"item_name" : "#StickerKit_kat2014_ninjasinpyjamas_holo", | |
"description_string" : "#StickerKit_desc_kat2014_ninjasinpyjamas_holo", | |
"sticker_material" : "emskatowice2014/ninjasinpyjamas_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "1" | |
}, | |
"73" : { | |
"name" : "kat2014_reason", | |
"item_name" : "#StickerKit_kat2014_reason", | |
"description_string" : "#StickerKit_desc_kat2014_reason", | |
"sticker_material" : "emskatowice2014/reason", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "30" | |
}, | |
"74" : { | |
"name" : "kat2014_reason_holo", | |
"item_name" : "#StickerKit_kat2014_reason_holo", | |
"description_string" : "#StickerKit_desc_kat2014_reason_holo", | |
"sticker_material" : "emskatowice2014/reason_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "30" | |
}, | |
"75" : { | |
"name" : "kat2014_titan", | |
"item_name" : "#StickerKit_kat2014_titan", | |
"description_string" : "#StickerKit_desc_kat2014_titan", | |
"sticker_material" : "emskatowice2014/titan", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "27" | |
}, | |
"76" : { | |
"name" : "kat2014_titan_holo", | |
"item_name" : "#StickerKit_kat2014_titan_holo", | |
"description_string" : "#StickerKit_desc_kat2014_titan_holo", | |
"sticker_material" : "emskatowice2014/titan_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "27" | |
}, | |
"77" : { | |
"name" : "kat2014_virtuspro", | |
"item_name" : "#StickerKit_kat2014_virtuspro", | |
"description_string" : "#StickerKit_desc_kat2014_virtuspro", | |
"sticker_material" : "emskatowice2014/virtuspro", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "31" | |
}, | |
"78" : { | |
"name" : "kat2014_virtuspro_holo", | |
"item_name" : "#StickerKit_kat2014_virtuspro_holo", | |
"description_string" : "#StickerKit_desc_kat2014_virtuspro_holo", | |
"sticker_material" : "emskatowice2014/virtuspro_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "31" | |
}, | |
"79" : { | |
"name" : "kat2014_voxeminor", | |
"item_name" : "#StickerKit_kat2014_voxeminor", | |
"description_string" : "#StickerKit_desc_kat2014_voxeminor", | |
"sticker_material" : "emskatowice2014/voxeminor", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "32" | |
}, | |
"80" : { | |
"name" : "kat2014_voxeminor_holo", | |
"item_name" : "#StickerKit_kat2014_voxeminor_holo", | |
"description_string" : "#StickerKit_desc_kat2014_voxeminor_holo", | |
"sticker_material" : "emskatowice2014/voxeminor_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "32" | |
}, | |
"81" : { | |
"name" : "kat2014_esl1_foil", | |
"item_name" : "#StickerKit_kat2014_esl1_foil", | |
"description_string" : "#StickerKit_desc_kat2014_esl1_foil", | |
"sticker_material" : "emskatowice2014/wolf_esl_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3" | |
}, | |
"82" : { | |
"name" : "kat2014_esl2_foil", | |
"item_name" : "#StickerKit_kat2014_esl2_foil", | |
"description_string" : "#StickerKit_desc_kat2014_esl2_foil", | |
"sticker_material" : "emskatowice2014/wolf_skull_esl_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3" | |
}, | |
"83" : { | |
"name" : "kat2014_3dmax_foil", | |
"item_name" : "#StickerKit_kat2014_3dmax_foil", | |
"description_string" : "#StickerKit_desc_kat2014_3dmax_foil", | |
"sticker_material" : "emskatowice2014/3dmax_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "28" | |
}, | |
"84" : { | |
"name" : "kat2014_complexity_foil", | |
"item_name" : "#StickerKit_kat2014_complexity_foil", | |
"description_string" : "#StickerKit_desc_kat2014_complexity_foil", | |
"sticker_material" : "emskatowice2014/complexity_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "3" | |
}, | |
"85" : { | |
"name" : "kat2014_dignitas_foil", | |
"item_name" : "#StickerKit_kat2014_dignitas_foil", | |
"description_string" : "#StickerKit_desc_kat2014_dignitas_foil", | |
"sticker_material" : "emskatowice2014/dignitas_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "24" | |
}, | |
"86" : { | |
"name" : "kat2014_fnatic_foil", | |
"item_name" : "#StickerKit_kat2014_fnatic_foil", | |
"description_string" : "#StickerKit_desc_kat2014_fnatic_foil", | |
"sticker_material" : "emskatowice2014/fnatic_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "6" | |
}, | |
"87" : { | |
"name" : "kat2014_hellraisers_foil", | |
"item_name" : "#StickerKit_kat2014_hellraisers_foil", | |
"description_string" : "#StickerKit_desc_kat2014_hellraisers_foil", | |
"sticker_material" : "emskatowice2014/hellraisers_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "25" | |
}, | |
"88" : { | |
"name" : "kat2014_ibuypower_foil", | |
"item_name" : "#StickerKit_kat2014_ibuypower_foil", | |
"description_string" : "#StickerKit_desc_kat2014_ibuypower_foil", | |
"sticker_material" : "emskatowice2014/ibuypower_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "5" | |
}, | |
"89" : { | |
"name" : "kat2014_ldlc_foil", | |
"item_name" : "#StickerKit_kat2014_ldlc_foil", | |
"description_string" : "#StickerKit_desc_kat2014_ldlc_foil", | |
"sticker_material" : "emskatowice2014/ldlc_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "26" | |
}, | |
"90" : { | |
"name" : "kat2014_lgb_foil", | |
"item_name" : "#StickerKit_kat2014_lgb_foil", | |
"description_string" : "#StickerKit_desc_kat2014_lgb_foil", | |
"sticker_material" : "emskatowice2014/lgb_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "9" | |
}, | |
"91" : { | |
"name" : "kat2014_mousesports_foil", | |
"item_name" : "#StickerKit_kat2014_mousesports_foil", | |
"description_string" : "#StickerKit_desc_kat2014_mousesports_foil", | |
"sticker_material" : "emskatowice2014/mousesports_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "29" | |
}, | |
"92" : { | |
"name" : "kat2014_mystik_foil", | |
"item_name" : "#StickerKit_kat2014_mystik_foil", | |
"description_string" : "#StickerKit_desc_kat2014_mystik_foil", | |
"sticker_material" : "emskatowice2014/mystik_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "7" | |
}, | |
"93" : { | |
"name" : "kat2014_navi_foil", | |
"item_name" : "#StickerKit_kat2014_navi_foil", | |
"description_string" : "#StickerKit_desc_kat2014_navi_foil", | |
"sticker_material" : "emskatowice2014/navi_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "12" | |
}, | |
"94" : { | |
"name" : "kat2014_ninjasinpyjamas_foil", | |
"item_name" : "#StickerKit_kat2014_ninjasinpyjamas_foil", | |
"description_string" : "#StickerKit_desc_kat2014_ninjasinpyjamas_foil", | |
"sticker_material" : "emskatowice2014/ninjasinpyjamas_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "1" | |
}, | |
"95" : { | |
"name" : "kat2014_reason_foil", | |
"item_name" : "#StickerKit_kat2014_reason_foil", | |
"description_string" : "#StickerKit_desc_kat2014_reason_foil", | |
"sticker_material" : "emskatowice2014/reason_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "30" | |
}, | |
"96" : { | |
"name" : "kat2014_titan_foil", | |
"item_name" : "#StickerKit_kat2014_titan_foil", | |
"description_string" : "#StickerKit_desc_kat2014_titan_foil", | |
"sticker_material" : "emskatowice2014/titan_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "27" | |
}, | |
"97" : { | |
"name" : "kat2014_virtuspro_foil", | |
"item_name" : "#StickerKit_kat2014_virtuspro_foil", | |
"description_string" : "#StickerKit_desc_kat2014_virtuspro_foil", | |
"sticker_material" : "emskatowice2014/virtuspro_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "31" | |
}, | |
"98" : { | |
"name" : "kat2014_voxeminor_foil", | |
"item_name" : "#StickerKit_kat2014_voxeminor_foil", | |
"description_string" : "#StickerKit_desc_kat2014_voxeminor_foil", | |
"sticker_material" : "emskatowice2014/voxeminor_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3", | |
"tournament_team_id" : "32" | |
}, | |
"99" : { | |
"name" : "kat2014_wolf_esl_gold_foil", | |
"item_name" : "#StickerKit_kat2014_wolf_esl_gold_foil", | |
"description_string" : "#StickerKit_desc_kat2014_wolf_esl_gold_foil", | |
"sticker_material" : "emskatowice2014/wolf_esl_gold_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3" | |
}, | |
"100" : { | |
"name" : "kat2014_wolf_skull_esl_gold_foil", | |
"item_name" : "#StickerKit_kat2014_wolf_skull_esl_gold_foil", | |
"description_string" : "#StickerKit_desc_kat2014_wolf_skull_esl_gold_foil", | |
"sticker_material" : "emskatowice2014/wolf_skull_esl_gold_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "3" | |
}, | |
"101" : { | |
"name" : "comm01_backstab", | |
"item_name" : "#StickerKit_comm01_backstab", | |
"description_string" : "#StickerKit_desc_comm01_backstab", | |
"sticker_material" : "community01/backstab", | |
"item_rarity" : "rare" | |
}, | |
"102" : { | |
"name" : "comm01_black_king", | |
"item_name" : "#StickerKit_comm01_black_king", | |
"description_string" : "#StickerKit_desc_comm01_black_king", | |
"sticker_material" : "community01/black_king", | |
"item_rarity" : "rare" | |
}, | |
"103" : { | |
"name" : "comm01_howling_dawn", | |
"item_name" : "#StickerKit_comm01_howling_dawn", | |
"description_string" : "#StickerKit_desc_comm01_howling_dawn", | |
"sticker_material" : "community01/howling_dawn", | |
"item_rarity" : "rare" | |
}, | |
"104" : { | |
"name" : "comm01_bomb_doge", | |
"item_name" : "#StickerKit_comm01_bomb_doge", | |
"description_string" : "#StickerKit_desc_comm01_bomb_doge", | |
"sticker_material" : "community01/bomb_doge", | |
"item_rarity" : "rare" | |
}, | |
"105" : { | |
"name" : "comm01_burn_them_all", | |
"item_name" : "#StickerKit_comm01_burn_them_all", | |
"description_string" : "#StickerKit_desc_comm01_burn_them_all", | |
"sticker_material" : "community01/burn_them_all", | |
"item_rarity" : "rare" | |
}, | |
"106" : { | |
"name" : "comm01_harp_of_war", | |
"item_name" : "#StickerKit_comm01_harp_of_war", | |
"description_string" : "#StickerKit_desc_comm01_harp_of_war", | |
"sticker_material" : "community01/harp_of_war", | |
"item_rarity" : "mythical" | |
}, | |
"107" : { | |
"name" : "comm01_flammable_foil", | |
"item_name" : "#StickerKit_comm01_flammable_foil", | |
"description_string" : "#StickerKit_desc_comm01_flammable_foil", | |
"sticker_material" : "community01/flammable_foil", | |
"item_rarity" : "legendary" | |
}, | |
"108" : { | |
"name" : "comm01_headhunter_foil", | |
"item_name" : "#StickerKit_comm01_headhunter_foil", | |
"description_string" : "#StickerKit_desc_comm01_headhunter_foil", | |
"sticker_material" : "community01/headhunter_foil", | |
"item_rarity" : "legendary" | |
}, | |
"109" : { | |
"name" : "comm01_llama_cannon", | |
"item_name" : "#StickerKit_comm01_llama_cannon", | |
"description_string" : "#StickerKit_desc_comm01_llama_cannon", | |
"sticker_material" : "community01/llama_cannon", | |
"item_rarity" : "rare" | |
}, | |
"110" : { | |
"name" : "comm01_new_sheriff_foil", | |
"item_name" : "#StickerKit_comm01_new_sheriff_foil", | |
"description_string" : "#StickerKit_desc_comm01_new_sheriff_foil", | |
"sticker_material" : "community01/new_sheriff_foil", | |
"item_rarity" : "legendary" | |
}, | |
"111" : { | |
"name" : "comm01_other_awp", | |
"item_name" : "#StickerKit_comm01_other_awp", | |
"description_string" : "#StickerKit_desc_comm01_other_awp", | |
"sticker_material" : "community01/other_awp", | |
"item_rarity" : "rare" | |
}, | |
"112" : { | |
"name" : "comm01_shavemaster", | |
"item_name" : "#StickerKit_comm01_shavemaster", | |
"description_string" : "#StickerKit_desc_comm01_shavemaster", | |
"sticker_material" : "community01/shavemaster", | |
"item_rarity" : "rare" | |
}, | |
"113" : { | |
"name" : "comm01_skull", | |
"item_name" : "#StickerKit_comm01_skull", | |
"description_string" : "#StickerKit_desc_comm01_skull", | |
"sticker_material" : "community01/skull", | |
"item_rarity" : "rare" | |
}, | |
"114" : { | |
"name" : "comm01_sneaky_beaky", | |
"item_name" : "#StickerKit_comm01_sneaky_beaky", | |
"description_string" : "#StickerKit_desc_comm01_sneaky_beaky", | |
"sticker_material" : "community01/sneaky_beaky", | |
"item_rarity" : "rare" | |
}, | |
"115" : { | |
"name" : "comm01_swag_foil", | |
"item_name" : "#StickerKit_comm01_swag_foil", | |
"description_string" : "#StickerKit_desc_comm01_swag_foil", | |
"sticker_material" : "community01/swag_foil", | |
"item_rarity" : "legendary" | |
}, | |
"116" : { | |
"name" : "comm01_teamwork_holo", | |
"item_name" : "#StickerKit_comm01_teamwork_holo", | |
"description_string" : "#StickerKit_desc_comm01_teamwork_holo", | |
"sticker_material" : "community01/teamwork_holo", | |
"item_rarity" : "mythical" | |
}, | |
"117" : { | |
"name" : "comm01_to_b_or_not_to_b", | |
"item_name" : "#StickerKit_comm01_to_b_or_not_to_b", | |
"description_string" : "#StickerKit_desc_comm01_to_b_or_not_to_b", | |
"sticker_material" : "community01/to_b_or_not_to_b", | |
"item_rarity" : "rare" | |
}, | |
"118" : { | |
"name" : "comm01_winged_defuser", | |
"item_name" : "#StickerKit_comm01_winged_defuser", | |
"description_string" : "#StickerKit_desc_comm01_winged_defuser", | |
"sticker_material" : "community01/winged_defuser", | |
"item_rarity" : "rare" | |
}, | |
"119" : { | |
"name" : "comm01_pocket_bbq", | |
"item_name" : "#StickerKit_comm01_pocket_bbq", | |
"description_string" : "#StickerKit_desc_comm01_pocket_bbq", | |
"sticker_material" : "community01/pocket_bbq", | |
"item_rarity" : "rare" | |
}, | |
"120" : { | |
"name" : "comm01_death_comes", | |
"item_name" : "#StickerKit_comm01_death_comes", | |
"description_string" : "#StickerKit_desc_comm01_death_comes", | |
"sticker_material" : "community01/death_comes", | |
"item_rarity" : "rare" | |
}, | |
"121" : { | |
"name" : "comm01_rekt_holo", | |
"item_name" : "#StickerKit_comm01_rekt_holo", | |
"description_string" : "#StickerKit_desc_comm01_rekt_holo", | |
"sticker_material" : "community01/rekt", | |
"item_rarity" : "mythical" | |
}, | |
"122" : { | |
"name" : "cologne2014_cloud9", | |
"item_name" : "#StickerKit_cologne2014_cloud9", | |
"description_string" : "#StickerKit_desc_cologne2014_cloud9", | |
"sticker_material" : "cologne2014/cloud9", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "33" | |
}, | |
"123" : { | |
"name" : "cologne2014_cloud9_holo", | |
"item_name" : "#StickerKit_cologne2014_cloud9_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_cloud9_holo", | |
"sticker_material" : "cologne2014/cloud9_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "33" | |
}, | |
"124" : { | |
"name" : "cologne2014_fnatic", | |
"item_name" : "#StickerKit_cologne2014_fnatic", | |
"description_string" : "#StickerKit_desc_cologne2014_fnatic", | |
"sticker_material" : "cologne2014/fnatic", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "6" | |
}, | |
"125" : { | |
"name" : "cologne2014_fnatic_holo", | |
"item_name" : "#StickerKit_cologne2014_fnatic_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_fnatic_holo", | |
"sticker_material" : "cologne2014/fnatic_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "6" | |
}, | |
"126" : { | |
"name" : "cologne2014_hellraisers", | |
"item_name" : "#StickerKit_cologne2014_hellraisers", | |
"description_string" : "#StickerKit_desc_cologne2014_hellraisers", | |
"sticker_material" : "cologne2014/hellraisers", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "25" | |
}, | |
"127" : { | |
"name" : "cologne2014_hellraisers_holo", | |
"item_name" : "#StickerKit_cologne2014_hellraisers_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_hellraisers_holo", | |
"sticker_material" : "cologne2014/hellraisers_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "25" | |
}, | |
"128" : { | |
"name" : "cologne2014_ninjasinpyjamas", | |
"item_name" : "#StickerKit_cologne2014_ninjasinpyjamas", | |
"description_string" : "#StickerKit_desc_cologne2014_ninjasinpyjamas", | |
"sticker_material" : "cologne2014/ninjasinpyjamas", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "1" | |
}, | |
"129" : { | |
"name" : "cologne2014_ninjasinpyjamas_holo", | |
"item_name" : "#StickerKit_cologne2014_ninjasinpyjamas_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_ninjasinpyjamas_holo", | |
"sticker_material" : "cologne2014/ninjasinpyjamas_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "1" | |
}, | |
"130" : { | |
"name" : "cologne2014_teamdignitas", | |
"item_name" : "#StickerKit_cologne2014_teamdignitas", | |
"description_string" : "#StickerKit_desc_cologne2014_teamdignitas", | |
"sticker_material" : "cologne2014/teamdignitas", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "24" | |
}, | |
"131" : { | |
"name" : "cologne2014_teamdignitas_holo", | |
"item_name" : "#StickerKit_cologne2014_teamdignitas_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_teamdignitas_holo", | |
"sticker_material" : "cologne2014/teamdignitas_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "24" | |
}, | |
"132" : { | |
"name" : "cologne2014_teamldlc", | |
"item_name" : "#StickerKit_cologne2014_teamldlc", | |
"description_string" : "#StickerKit_desc_cologne2014_teamldlc", | |
"sticker_material" : "cologne2014/teamldlc", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "26" | |
}, | |
"133" : { | |
"name" : "cologne2014_teamldlc_holo", | |
"item_name" : "#StickerKit_cologne2014_teamldlc_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_teamldlc_holo", | |
"sticker_material" : "cologne2014/teamldlc_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "26" | |
}, | |
"134" : { | |
"name" : "cologne2014_virtuspro", | |
"item_name" : "#StickerKit_cologne2014_virtuspro", | |
"description_string" : "#StickerKit_desc_cologne2014_virtuspro", | |
"sticker_material" : "cologne2014/virtuspro", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "31" | |
}, | |
"135" : { | |
"name" : "cologne2014_virtuspro_holo", | |
"item_name" : "#StickerKit_cologne2014_virtuspro_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_virtuspro_holo", | |
"sticker_material" : "cologne2014/virtuspro_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "31" | |
}, | |
"136" : { | |
"name" : "cologne2014_copenhagenwolves", | |
"item_name" : "#StickerKit_cologne2014_copenhagenwolves", | |
"description_string" : "#StickerKit_desc_cologne2014_copenhagenwolves", | |
"sticker_material" : "cologne2014/copenhagenwolves", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "10" | |
}, | |
"137" : { | |
"name" : "cologne2014_copenhagenwolves_holo", | |
"item_name" : "#StickerKit_cologne2014_copenhagenwolves_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_copenhagenwolves_holo", | |
"sticker_material" : "cologne2014/copenhagenwolves_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "10" | |
}, | |
"138" : { | |
"name" : "cologne2014_datteam", | |
"item_name" : "#StickerKit_cologne2014_datteam", | |
"description_string" : "#StickerKit_desc_cologne2014_datteam", | |
"sticker_material" : "cologne2014/datteam", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "34" | |
}, | |
"139" : { | |
"name" : "cologne2014_datteam_holo", | |
"item_name" : "#StickerKit_cologne2014_datteam_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_datteam_holo", | |
"sticker_material" : "cologne2014/datteam_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "34" | |
}, | |
"140" : { | |
"name" : "cologne2014_epsilonesports", | |
"item_name" : "#StickerKit_cologne2014_epsilonesports", | |
"description_string" : "#StickerKit_desc_cologne2014_epsilonesports", | |
"sticker_material" : "cologne2014/epsilonesports", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "35" | |
}, | |
"141" : { | |
"name" : "cologne2014_epsilonesports_holo", | |
"item_name" : "#StickerKit_cologne2014_epsilonesports_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_epsilonesports_holo", | |
"sticker_material" : "cologne2014/epsilonesports_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "35" | |
}, | |
"142" : { | |
"name" : "cologne2014_ibuypower", | |
"item_name" : "#StickerKit_cologne2014_ibuypower", | |
"description_string" : "#StickerKit_desc_cologne2014_ibuypower", | |
"sticker_material" : "cologne2014/ibuypower", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "5" | |
}, | |
"143" : { | |
"name" : "cologne2014_ibuypower_holo", | |
"item_name" : "#StickerKit_cologne2014_ibuypower_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_ibuypower_holo", | |
"sticker_material" : "cologne2014/ibuypower_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "5" | |
}, | |
"144" : { | |
"name" : "cologne2014_londonconspiracy", | |
"item_name" : "#StickerKit_cologne2014_londonconspiracy", | |
"description_string" : "#StickerKit_desc_cologne2014_londonconspiracy", | |
"sticker_material" : "cologne2014/londonconspiracy", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "36" | |
}, | |
"145" : { | |
"name" : "cologne2014_londonconspiracy_holo", | |
"item_name" : "#StickerKit_cologne2014_londonconspiracy_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_londonconspiracy_holo", | |
"sticker_material" : "cologne2014/londonconspiracy_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "36" | |
}, | |
"146" : { | |
"name" : "cologne2014_navi", | |
"item_name" : "#StickerKit_cologne2014_navi", | |
"description_string" : "#StickerKit_desc_cologne2014_navi", | |
"sticker_material" : "cologne2014/navi", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "12" | |
}, | |
"147" : { | |
"name" : "cologne2014_navi_holo", | |
"item_name" : "#StickerKit_cologne2014_navi_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_navi_holo", | |
"sticker_material" : "cologne2014/navi_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "12" | |
}, | |
"148" : { | |
"name" : "cologne2014_titan", | |
"item_name" : "#StickerKit_cologne2014_titan", | |
"description_string" : "#StickerKit_desc_cologne2014_titan", | |
"sticker_material" : "cologne2014/titan", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "27" | |
}, | |
"149" : { | |
"name" : "cologne2014_titan_holo", | |
"item_name" : "#StickerKit_cologne2014_titan_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_titan_holo", | |
"sticker_material" : "cologne2014/titan_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "27" | |
}, | |
"150" : { | |
"name" : "cologne2014_voxeminor", | |
"item_name" : "#StickerKit_cologne2014_voxeminor", | |
"description_string" : "#StickerKit_desc_cologne2014_voxeminor", | |
"sticker_material" : "cologne2014/voxeminor", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "32" | |
}, | |
"151" : { | |
"name" : "cologne2014_voxeminor_holo", | |
"item_name" : "#StickerKit_cologne2014_voxeminor_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_voxeminor_holo", | |
"sticker_material" : "cologne2014/voxeminor_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "32" | |
}, | |
"152" : { | |
"name" : "cologne2014_wolf", | |
"item_name" : "#StickerKit_cologne2014_wolf", | |
"description_string" : "#StickerKit_desc_cologne2014_wolf", | |
"sticker_material" : "cologne2014/wolf", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "37" | |
}, | |
"153" : { | |
"name" : "cologne2014_wolf_holo", | |
"item_name" : "#StickerKit_cologne2014_wolf_holo", | |
"description_string" : "#StickerKit_desc_cologne2014_wolf_holo", | |
"sticker_material" : "cologne2014/wolf_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "37" | |
}, | |
"154" : { | |
"name" : "cologne2014_esl_a", | |
"item_name" : "#StickerKit_cologne2014_esl_a", | |
"description_string" : "#StickerKit_desc_cologne2014_esl_a", | |
"sticker_material" : "cologne2014/esl_a", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4" | |
}, | |
"155" : { | |
"name" : "cologne2014_esl_b", | |
"item_name" : "#StickerKit_cologne2014_esl_b", | |
"description_string" : "#StickerKit_desc_cologne2014_esl_b", | |
"sticker_material" : "cologne2014/esl_b", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4" | |
}, | |
"156" : { | |
"name" : "cologne2014_cloud9_foil", | |
"item_name" : "#StickerKit_cologne2014_cloud9_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_cloud9_foil", | |
"sticker_material" : "cologne2014/cloud9_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "33" | |
}, | |
"157" : { | |
"name" : "cologne2014_fnatic_foil", | |
"item_name" : "#StickerKit_cologne2014_fnatic_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_fnatic_foil", | |
"sticker_material" : "cologne2014/fnatic_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "6" | |
}, | |
"158" : { | |
"name" : "cologne2014_hellraisers_foil", | |
"item_name" : "#StickerKit_cologne2014_hellraisers_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_hellraisers_foil", | |
"sticker_material" : "cologne2014/hellraisers_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "25" | |
}, | |
"159" : { | |
"name" : "cologne2014_ninjasinpyjamas_foil", | |
"item_name" : "#StickerKit_cologne2014_ninjasinpyjamas_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_ninjasinpyjamas_foil", | |
"sticker_material" : "cologne2014/ninjasinpyjamas_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "1" | |
}, | |
"160" : { | |
"name" : "cologne2014_teamdignitas_foil", | |
"item_name" : "#StickerKit_cologne2014_teamdignitas_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_teamdignitas_foil", | |
"sticker_material" : "cologne2014/teamdignitas_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "24" | |
}, | |
"161" : { | |
"name" : "cologne2014_teamldlc_foil", | |
"item_name" : "#StickerKit_cologne2014_teamldlc_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_teamldlc_foil", | |
"sticker_material" : "cologne2014/teamldlc_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "26" | |
}, | |
"162" : { | |
"name" : "cologne2014_virtuspro_foil", | |
"item_name" : "#StickerKit_cologne2014_virtuspro_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_virtuspro_foil", | |
"sticker_material" : "cologne2014/virtuspro_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "31" | |
}, | |
"163" : { | |
"name" : "cologne2014_copenhagenwolves_foil", | |
"item_name" : "#StickerKit_cologne2014_copenhagenwolves_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_copenhagenwolves_foil", | |
"sticker_material" : "cologne2014/copenhagenwolves_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "10" | |
}, | |
"164" : { | |
"name" : "cologne2014_datteam_foil", | |
"item_name" : "#StickerKit_cologne2014_datteam_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_datteam_foil", | |
"sticker_material" : "cologne2014/datteam_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "34" | |
}, | |
"165" : { | |
"name" : "cologne2014_epsilonesports_foil", | |
"item_name" : "#StickerKit_cologne2014_epsilonesports_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_epsilonesports_foil", | |
"sticker_material" : "cologne2014/epsilonesports_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "35" | |
}, | |
"166" : { | |
"name" : "cologne2014_ibuypower_foil", | |
"item_name" : "#StickerKit_cologne2014_ibuypower_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_ibuypower_foil", | |
"sticker_material" : "cologne2014/ibuypower_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "5" | |
}, | |
"167" : { | |
"name" : "cologne2014_londonconspiracy_foil", | |
"item_name" : "#StickerKit_cologne2014_londonconspiracy_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_londonconspiracy_foil", | |
"sticker_material" : "cologne2014/londonconspiracy_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "36" | |
}, | |
"168" : { | |
"name" : "cologne2014_navi_foil", | |
"item_name" : "#StickerKit_cologne2014_navi_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_navi_foil", | |
"sticker_material" : "cologne2014/navi_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "12" | |
}, | |
"169" : { | |
"name" : "cologne2014_titan_foil", | |
"item_name" : "#StickerKit_cologne2014_titan_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_titan_foil", | |
"sticker_material" : "cologne2014/titan_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "27" | |
}, | |
"170" : { | |
"name" : "cologne2014_voxeminor_foil", | |
"item_name" : "#StickerKit_cologne2014_voxeminor_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_voxeminor_foil", | |
"sticker_material" : "cologne2014/voxeminor_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "32" | |
}, | |
"171" : { | |
"name" : "cologne2014_wolf_foil", | |
"item_name" : "#StickerKit_cologne2014_wolf_foil", | |
"description_string" : "#StickerKit_desc_cologne2014_wolf_foil", | |
"sticker_material" : "cologne2014/wolf_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4", | |
"tournament_team_id" : "37" | |
}, | |
"172" : { | |
"name" : "cologne2014_esl_c", | |
"item_name" : "#StickerKit_cologne2014_esl_c", | |
"description_string" : "#StickerKit_desc_cologne2014_esl_c", | |
"sticker_material" : "cologne2014/esl_c", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "4" | |
}, | |
"173" : { | |
"name" : "bossyburger", | |
"item_name" : "#StickerKit_comm02_bossyburger", | |
"description_string" : "#StickerKit_desc_comm02_bossyburger", | |
"sticker_material" : "community02/bossyburger", | |
"item_rarity" : "rare" | |
}, | |
"174" : { | |
"name" : "catcall", | |
"item_name" : "#StickerKit_comm02_catcall", | |
"description_string" : "#StickerKit_desc_comm02_catcall", | |
"sticker_material" : "community02/catcall", | |
"item_rarity" : "rare" | |
}, | |
"175" : { | |
"name" : "chickenstrike", | |
"item_name" : "#StickerKit_comm02_chickenstrike", | |
"description_string" : "#StickerKit_desc_comm02_chickenstrike", | |
"sticker_material" : "community02/chickenstrike", | |
"item_rarity" : "rare" | |
}, | |
"176" : { | |
"name" : "ctbanana", | |
"item_name" : "#StickerKit_comm02_ctbanana", | |
"description_string" : "#StickerKit_desc_comm02_ctbanana", | |
"sticker_material" : "community02/ctbanana", | |
"item_rarity" : "rare" | |
}, | |
"177" : { | |
"name" : "dontworryimpro", | |
"item_name" : "#StickerKit_comm02_dontworryimpro", | |
"description_string" : "#StickerKit_desc_comm02_dontworryimpro", | |
"sticker_material" : "community02/dontworryimpro", | |
"item_rarity" : "rare" | |
}, | |
"178" : { | |
"name" : "fightlikeagirl", | |
"item_name" : "#StickerKit_comm02_fightlikeagirl", | |
"description_string" : "#StickerKit_desc_comm02_fightlikeagirl", | |
"sticker_material" : "community02/fightlikeagirl", | |
"item_rarity" : "rare" | |
}, | |
"179" : { | |
"name" : "handmadeflash", | |
"item_name" : "#StickerKit_comm02_handmadeflash", | |
"description_string" : "#StickerKit_desc_comm02_handmadeflash", | |
"sticker_material" : "community02/handmadeflash", | |
"item_rarity" : "rare" | |
}, | |
"180" : { | |
"name" : "kawaiikiller", | |
"item_name" : "#StickerKit_comm02_kawaiikiller", | |
"description_string" : "#StickerKit_desc_comm02_kawaiikiller", | |
"sticker_material" : "community02/kawaiikiller", | |
"item_rarity" : "rare" | |
}, | |
"181" : { | |
"name" : "neluthebear", | |
"item_name" : "#StickerKit_comm02_neluthebear", | |
"description_string" : "#StickerKit_desc_comm02_neluthebear", | |
"sticker_material" : "community02/neluthebear", | |
"item_rarity" : "rare" | |
}, | |
"182" : { | |
"name" : "oneshotonekill", | |
"item_name" : "#StickerKit_comm02_oneshotonekill", | |
"description_string" : "#StickerKit_desc_comm02_oneshotonekill", | |
"sticker_material" : "community02/oneshotonekill", | |
"item_rarity" : "rare" | |
}, | |
"183" : { | |
"name" : "shootingstar", | |
"item_name" : "#StickerKit_comm02_shootingstar", | |
"description_string" : "#StickerKit_desc_comm02_shootingstar", | |
"sticker_material" : "community02/shootingstar", | |
"item_rarity" : "rare" | |
}, | |
"184" : { | |
"name" : "toncat", | |
"item_name" : "#StickerKit_comm02_toncat", | |
"description_string" : "#StickerKit_desc_comm02_toncat", | |
"sticker_material" : "community02/toncat", | |
"item_rarity" : "rare" | |
}, | |
"185" : { | |
"name" : "warpenguin", | |
"item_name" : "#StickerKit_comm02_warpenguin", | |
"description_string" : "#StickerKit_desc_comm02_warpenguin", | |
"sticker_material" : "community02/warpenguin", | |
"item_rarity" : "rare" | |
}, | |
"186" : { | |
"name" : "windywalking", | |
"item_name" : "#StickerKit_comm02_windywalking", | |
"description_string" : "#StickerKit_desc_comm02_windywalking", | |
"sticker_material" : "community02/windywalking", | |
"item_rarity" : "rare" | |
}, | |
"187" : { | |
"name" : "blitzkrieg", | |
"item_name" : "#StickerKit_comm02_blitzkrieg", | |
"description_string" : "#StickerKit_desc_comm02_blitzkrieg", | |
"sticker_material" : "community02/blitzkrieg", | |
"item_rarity" : "rare" | |
}, | |
"188" : { | |
"name" : "pigeonmaster", | |
"item_name" : "#StickerKit_comm02_pigeonmaster", | |
"description_string" : "#StickerKit_desc_comm02_pigeonmaster", | |
"sticker_material" : "community02/pigeonmaster", | |
"item_rarity" : "rare" | |
}, | |
"189" : { | |
"name" : "terrorized", | |
"item_name" : "#StickerKit_comm02_terrorized", | |
"description_string" : "#StickerKit_desc_comm02_terrorized", | |
"sticker_material" : "community02/terrorized", | |
"item_rarity" : "rare" | |
}, | |
"190" : { | |
"name" : "tilldeathdouspart", | |
"item_name" : "#StickerKit_comm02_tilldeathdouspart", | |
"description_string" : "#StickerKit_desc_comm02_tilldeathdouspart", | |
"sticker_material" : "community02/tilldeathdouspart", | |
"item_rarity" : "rare" | |
}, | |
"191" : { | |
"name" : "stayfrosty", | |
"item_name" : "#StickerKit_comm02_stayfrosty", | |
"description_string" : "#StickerKit_desc_comm02_stayfrosty", | |
"sticker_material" : "community02/stayfrosty", | |
"item_rarity" : "rare" | |
}, | |
"192" : { | |
"name" : "doomed", | |
"item_name" : "#StickerKit_comm02_doomed", | |
"description_string" : "#StickerKit_desc_comm02_doomed", | |
"sticker_material" : "community02/doomed", | |
"item_rarity" : "rare" | |
}, | |
"193" : { | |
"name" : "queenofpain", | |
"item_name" : "#StickerKit_comm02_queenofpain", | |
"description_string" : "#StickerKit_desc_comm02_queenofpain", | |
"sticker_material" : "community02/queenofpain", | |
"item_rarity" : "rare" | |
}, | |
"194" : { | |
"name" : "trickorthreat", | |
"item_name" : "#StickerKit_comm02_trickorthreat", | |
"description_string" : "#StickerKit_desc_comm02_trickorthreat", | |
"sticker_material" : "community02/trickorthreat", | |
"item_rarity" : "rare" | |
}, | |
"195" : { | |
"name" : "trickortreat", | |
"item_name" : "#StickerKit_comm02_trickortreat", | |
"description_string" : "#StickerKit_desc_comm02_trickortreat", | |
"sticker_material" : "community02/trickortreat", | |
"item_rarity" : "rare" | |
}, | |
"196" : { | |
"name" : "witch", | |
"item_name" : "#StickerKit_comm02_witch", | |
"description_string" : "#StickerKit_desc_comm02_witch", | |
"sticker_material" : "community02/witch", | |
"item_rarity" : "rare" | |
}, | |
"197" : { | |
"name" : "zombielover", | |
"item_name" : "#StickerKit_comm02_zombielover", | |
"description_string" : "#StickerKit_desc_comm02_zombielover", | |
"sticker_material" : "community02/zombielover", | |
"item_rarity" : "rare" | |
}, | |
"198" : { | |
"name" : "dhw2014_fnatic", | |
"item_name" : "#StickerKit_dhw2014_fnatic", | |
"description_string" : "#StickerKit_desc_dhw2014_fnatic", | |
"sticker_material" : "dhw2014/fnatic", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "6" | |
}, | |
"199" : { | |
"name" : "dhw2014_fnatic_holo", | |
"item_name" : "#StickerKit_dhw2014_fnatic_holo", | |
"description_string" : "#StickerKit_desc_dhw2014_fnatic_holo", | |
"sticker_material" : "dhw2014/fnatic_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "6" | |
}, | |
"200" : { | |
"name" : "dhw2014_fnatic_foil", | |
"item_name" : "#StickerKit_dhw2014_fnatic_foil", | |
"description_string" : "#StickerKit_desc_dhw2014_fnatic_foil", | |
"sticker_material" : "dhw2014/fnatic_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "6" | |
}, | |
"201" : { | |
"name" : "dhw2014_cloud9", | |
"item_name" : "#StickerKit_dhw2014_cloud9", | |
"description_string" : "#StickerKit_desc_dhw2014_cloud9", | |
"sticker_material" : "dhw2014/cloud9", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "33" | |
}, | |
"202" : { | |
"name" : "dhw2014_cloud9_holo", | |
"item_name" : "#StickerKit_dhw2014_cloud9_holo", | |
"description_string" : "#StickerKit_desc_dhw2014_cloud9_holo", | |
"sticker_material" : "dhw2014/cloud9_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "33" | |
}, | |
"203" : { | |
"name" : "dhw2014_cloud9_foil", | |
"item_name" : "#StickerKit_dhw2014_cloud9_foil", | |
"description_string" : "#StickerKit_desc_dhw2014_cloud9_foil", | |
"sticker_material" : "dhw2014/cloud9_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "33" | |
}, | |
"207" : { | |
"name" : "dhw2014_virtuspro", | |
"item_name" : "#StickerKit_dhw2014_virtuspro", | |
"description_string" : "#StickerKit_desc_dhw2014_virtuspro", | |
"sticker_material" : "dhw2014/virtuspro", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "31" | |
}, | |
"208" : { | |
"name" : "dhw2014_virtuspro_holo", | |
"item_name" : "#StickerKit_dhw2014_virtuspro_holo", | |
"description_string" : "#StickerKit_desc_dhw2014_virtuspro_holo", | |
"sticker_material" : "dhw2014/virtuspro_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "31" | |
}, | |
"209" : { | |
"name" : "dhw2014_virtuspro_foil", | |
"item_name" : "#StickerKit_dhw2014_virtuspro_foil", | |
"description_string" : "#StickerKit_desc_dhw2014_virtuspro_foil", | |
"sticker_material" : "dhw2014/virtuspro_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "31" | |
}, | |
"210" : { | |
"name" : "dhw2014_ninjasinpyjamas", | |
"item_name" : "#StickerKit_dhw2014_ninjasinpyjamas", | |
"description_string" : "#StickerKit_desc_dhw2014_ninjasinpyjamas", | |
"sticker_material" : "dhw2014/ninjasinpyjamas", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "1" | |
}, | |
"211" : { | |
"name" : "dhw2014_ninjasinpyjamas_holo", | |
"item_name" : "#StickerKit_dhw2014_ninjasinpyjamas_holo", | |
"description_string" : "#StickerKit_desc_dhw2014_ninjasinpyjamas_holo", | |
"sticker_material" : "dhw2014/ninjasinpyjamas_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "1" | |
}, | |
"212" : { | |
"name" : "dhw2014_ninjasinpyjamas_foil", | |
"item_name" : "#StickerKit_dhw2014_ninjasinpyjamas_foil", | |
"description_string" : "#StickerKit_desc_dhw2014_ninjasinpyjamas_foil", | |
"sticker_material" : "dhw2014/ninjasinpyjamas_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "1" | |
}, | |
"213" : { | |
"name" : "dhw2014_navi", | |
"item_name" : "#StickerKit_dhw2014_navi", | |
"description_string" : "#StickerKit_desc_dhw2014_navi", | |
"sticker_material" : "dhw2014/navi", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "12" | |
}, | |
"214" : { | |
"name" : "dhw2014_navi_holo", | |
"item_name" : "#StickerKit_dhw2014_navi_holo", | |
"description_string" : "#StickerKit_desc_dhw2014_navi_holo", | |
"sticker_material" : "dhw2014/navi_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "12" | |
}, | |
"215" : { | |
"name" : "dhw2014_navi_foil", | |
"item_name" : "#StickerKit_dhw2014_navi_foil", | |
"description_string" : "#StickerKit_desc_dhw2014_navi_foil", | |
"sticker_material" : "dhw2014/navi_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "12" | |
}, | |
"219" : { | |
"name" : "dhw2014_dignitas", | |
"item_name" : "#StickerKit_dhw2014_teamdignitas", | |
"description_string" : "#StickerKit_desc_dhw2014_teamdignitas", | |
"sticker_material" : "dhw2014/dignitas", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "24" | |
}, | |
"220" : { | |
"name" : "dhw2014_dignitas_holo", | |
"item_name" : "#StickerKit_dhw2014_teamdignitas_holo", | |
"description_string" : "#StickerKit_desc_dhw2014_teamdignitas_holo", | |
"sticker_material" : "dhw2014/dignitas_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "24" | |
}, | |
"221" : { | |
"name" : "dhw2014_dignitas_foil", | |
"item_name" : "#StickerKit_dhw2014_teamdignitas_foil", | |
"description_string" : "#StickerKit_desc_dhw2014_teamdignitas_foil", | |
"sticker_material" : "dhw2014/dignitas_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "24" | |
}, | |
"222" : { | |
"name" : "dhw2014_bravadogaming", | |
"item_name" : "#StickerKit_dhw2014_bravadogaming", | |
"description_string" : "#StickerKit_desc_dhw2014_bravadogaming", | |
"sticker_material" : "dhw2014/bravadogaming", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "40" | |
}, | |
"223" : { | |
"name" : "dhw2014_escgaming", | |
"item_name" : "#StickerKit_dhw2014_escgaming", | |
"description_string" : "#StickerKit_desc_dhw2014_escgaming", | |
"sticker_material" : "dhw2014/escgaming", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "42" | |
}, | |
"224" : { | |
"name" : "dhw2014_hellraisers", | |
"item_name" : "#StickerKit_dhw2014_hellraisers", | |
"description_string" : "#StickerKit_desc_dhw2014_hellraisers", | |
"sticker_material" : "dhw2014/hellraisers", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "25" | |
}, | |
"225" : { | |
"name" : "dhw2014_ibuypower", | |
"item_name" : "#StickerKit_dhw2014_ibuypower", | |
"description_string" : "#StickerKit_desc_dhw2014_ibuypower", | |
"sticker_material" : "dhw2014/ibuypower", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "5" | |
}, | |
"226" : { | |
"name" : "dhw2014_pentasports", | |
"item_name" : "#StickerKit_dhw2014_pentasports", | |
"description_string" : "#StickerKit_desc_dhw2014_pentasports", | |
"sticker_material" : "dhw2014/pentasports", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "39" | |
}, | |
"227" : { | |
"name" : "dhw2014_planetkeydynamics", | |
"item_name" : "#StickerKit_dhw2014_planetkeydynamics", | |
"description_string" : "#StickerKit_desc_dhw2014_planetkeydynamics", | |
"sticker_material" : "dhw2014/planetkeydynamics", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "41" | |
}, | |
"228" : { | |
"name" : "dhw2014_teamldlc", | |
"item_name" : "#StickerKit_dhw2014_teamldlc", | |
"description_string" : "#StickerKit_desc_dhw2014_teamldlc", | |
"sticker_material" : "dhw2014/teamldlc", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "26" | |
}, | |
"229" : { | |
"name" : "dhw2014_myxmg", | |
"item_name" : "#StickerKit_dhw2014_myxmg", | |
"description_string" : "#StickerKit_desc_dhw2014_myxmg", | |
"sticker_material" : "dhw2014/myxmg", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "38" | |
}, | |
"230" : { | |
"name" : "dhw2014_dhw", | |
"item_name" : "#StickerKit_dhw2014_dhw", | |
"description_string" : "#StickerKit_desc_dhw2014_dhw", | |
"sticker_material" : "dhw2014/dreamhackwinter2014", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5" | |
}, | |
"231" : { | |
"name" : "dhw2014_dhw_foil", | |
"item_name" : "#StickerKit_dhw2014_dhw_foil", | |
"description_string" : "#StickerKit_desc_dhw2014_dhw_foil", | |
"sticker_material" : "dhw2014/dreamhackwinter2014_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5" | |
}, | |
"232" : { | |
"name" : "dhw2014_3dmax", | |
"item_name" : "#StickerKit_dhw2014_3dmax", | |
"description_string" : "#StickerKit_desc_dhw2014_3dmax", | |
"sticker_material" : "dhw2014/3dmax", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "28" | |
}, | |
"233" : { | |
"name" : "dhw2014_copenhagenwolves", | |
"item_name" : "#StickerKit_dhw2014_copenhagenwolves", | |
"description_string" : "#StickerKit_desc_dhw2014_copenhagenwolves", | |
"sticker_material" : "dhw2014/copenhagenwolves", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "10" | |
}, | |
"234" : { | |
"name" : "dhw2014_datteam", | |
"item_name" : "#StickerKit_dhw2014_datteam", | |
"description_string" : "#StickerKit_desc_dhw2014_datteam", | |
"sticker_material" : "dhw2014/datteam", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "34" | |
}, | |
"235" : { | |
"name" : "dhw2014_londonconspiracy", | |
"item_name" : "#StickerKit_dhw2014_londonconspiracy", | |
"description_string" : "#StickerKit_desc_dhw2014_londonconspiracy", | |
"sticker_material" : "dhw2014/londonconspiracy", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "36" | |
}, | |
"236" : { | |
"name" : "dhw2014_mousesports", | |
"item_name" : "#StickerKit_dhw2014_mousesports", | |
"description_string" : "#StickerKit_desc_dhw2014_mousesports", | |
"sticker_material" : "dhw2014/mousesports", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "29" | |
}, | |
"237" : { | |
"name" : "dhw2014_3dmax_gold", | |
"item_name" : "#StickerKit_dhw2014_3dmax_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_3dmax_gold", | |
"sticker_material" : "dhw2014/3dmax_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "28" | |
}, | |
"238" : { | |
"name" : "dhw2014_bravadogaming_gold", | |
"item_name" : "#StickerKit_dhw2014_bravadogaming_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_bravadogaming_gold", | |
"sticker_material" : "dhw2014/bravadogaming_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "40" | |
}, | |
"239" : { | |
"name" : "dhw2014_cloud9_gold", | |
"item_name" : "#StickerKit_dhw2014_cloud9_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_cloud9_gold", | |
"sticker_material" : "dhw2014/cloud9_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "33" | |
}, | |
"240" : { | |
"name" : "dhw2014_copenhagenwolves_gold", | |
"item_name" : "#StickerKit_dhw2014_copenhagenwolves_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_copenhagenwolves_gold", | |
"sticker_material" : "dhw2014/copenhagenwolves_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "10" | |
}, | |
"241" : { | |
"name" : "dhw2014_datteam_gold", | |
"item_name" : "#StickerKit_dhw2014_datteam_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_datteam_gold", | |
"sticker_material" : "dhw2014/datteam_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "34" | |
}, | |
"242" : { | |
"name" : "dhw2014_dignitas_gold", | |
"item_name" : "#StickerKit_dhw2014_dignitas_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_dignitas_gold", | |
"sticker_material" : "dhw2014/dignitas_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "24" | |
}, | |
"243" : { | |
"name" : "dhw2014_escgaming_gold", | |
"item_name" : "#StickerKit_dhw2014_escgaming_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_escgaming_gold", | |
"sticker_material" : "dhw2014/escgaming_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "42" | |
}, | |
"244" : { | |
"name" : "dhw2014_fnatic_gold", | |
"item_name" : "#StickerKit_dhw2014_fnatic_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_fnatic_gold", | |
"sticker_material" : "dhw2014/fnatic_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "6" | |
}, | |
"245" : { | |
"name" : "dhw2014_hellraisers_gold", | |
"item_name" : "#StickerKit_dhw2014_hellraisers_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_hellraisers_gold", | |
"sticker_material" : "dhw2014/hellraisers_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "25" | |
}, | |
"246" : { | |
"name" : "dhw2014_ibuypower_gold", | |
"item_name" : "#StickerKit_dhw2014_ibuypower_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_ibuypower_gold", | |
"sticker_material" : "dhw2014/ibuypower_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "5" | |
}, | |
"247" : { | |
"name" : "dhw2014_londonconspiracy_gold", | |
"item_name" : "#StickerKit_dhw2014_londonconspiracy_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_londonconspiracy_gold", | |
"sticker_material" : "dhw2014/londonconspiracy_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "36" | |
}, | |
"248" : { | |
"name" : "dhw2014_mousesports_gold", | |
"item_name" : "#StickerKit_dhw2014_mousesports_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_mousesports_gold", | |
"sticker_material" : "dhw2014/mousesports_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "29" | |
}, | |
"249" : { | |
"name" : "dhw2014_myxmg_gold", | |
"item_name" : "#StickerKit_dhw2014_myxmg_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_myxmg_gold", | |
"sticker_material" : "dhw2014/myxmg_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "38" | |
}, | |
"250" : { | |
"name" : "dhw2014_navi_gold", | |
"item_name" : "#StickerKit_dhw2014_navi_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_navi_gold", | |
"sticker_material" : "dhw2014/navi_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "12" | |
}, | |
"251" : { | |
"name" : "dhw2014_ninjasinpyjamas_gold", | |
"item_name" : "#StickerKit_dhw2014_ninjasinpyjamas_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_ninjasinpyjamas_gold", | |
"sticker_material" : "dhw2014/ninjasinpyjamas_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "1" | |
}, | |
"252" : { | |
"name" : "dhw2014_pentasports_gold", | |
"item_name" : "#StickerKit_dhw2014_pentasports_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_pentasports_gold", | |
"sticker_material" : "dhw2014/pentasports_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "39" | |
}, | |
"253" : { | |
"name" : "dhw2014_planetkeydynamics_gold", | |
"item_name" : "#StickerKit_dhw2014_planetkeydynamics_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_planetkeydynamics_gold", | |
"sticker_material" : "dhw2014/planetkeydynamics_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "41" | |
}, | |
"254" : { | |
"name" : "dhw2014_teamldlc_gold", | |
"item_name" : "#StickerKit_dhw2014_teamldlc_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_teamldlc_gold", | |
"sticker_material" : "dhw2014/teamldlc_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "26" | |
}, | |
"255" : { | |
"name" : "dhw2014_virtuspro_gold", | |
"item_name" : "#StickerKit_dhw2014_virtuspro_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_virtuspro_gold", | |
"sticker_material" : "dhw2014/virtuspro_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "31" | |
}, | |
"256" : { | |
"name" : "dhw2014_flipsid3", | |
"item_name" : "#StickerKit_dhw2014_flipsid3", | |
"description_string" : "#StickerKit_desc_dhw2014_flipsid3", | |
"sticker_material" : "dhw2014/flipsid3", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "43" | |
}, | |
"257" : { | |
"name" : "dhw2014_flipsid3_gold", | |
"item_name" : "#StickerKit_dhw2014_flipsid3_gold", | |
"description_string" : "#StickerKit_desc_dhw2014_flipsid3_gold", | |
"sticker_material" : "dhw2014/flipsid3_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "5", | |
"tournament_team_id" : "43" | |
}, | |
"258" : { | |
"name" : "blood_broiler", | |
"item_name" : "#StickerKit_comm02_blood_broiler", | |
"description_string" : "#StickerKit_desc_comm02_blood_broiler", | |
"sticker_material" : "community02/blood_broiler", | |
"item_rarity" : "rare" | |
}, | |
"259" : { | |
"name" : "dinked", | |
"item_name" : "#StickerKit_comm02_dinked", | |
"description_string" : "#StickerKit_desc_comm02_dinked", | |
"sticker_material" : "community02/dinked", | |
"item_rarity" : "rare" | |
}, | |
"260" : { | |
"name" : "drugwarveteran", | |
"item_name" : "#StickerKit_comm02_drugwarveteran", | |
"description_string" : "#StickerKit_desc_comm02_drugwarveteran", | |
"sticker_material" : "community02/drugwarveteran", | |
"item_rarity" : "rare" | |
}, | |
"261" : { | |
"name" : "hohoho", | |
"item_name" : "#StickerKit_comm02_hohoho", | |
"description_string" : "#StickerKit_desc_comm02_hohoho", | |
"sticker_material" : "community02/hohoho", | |
"item_rarity" : "rare" | |
}, | |
"262" : { | |
"name" : "massivepear", | |
"item_name" : "#StickerKit_comm02_massivepear", | |
"description_string" : "#StickerKit_desc_comm02_massivepear", | |
"sticker_material" : "community02/massivepear", | |
"item_rarity" : "rare" | |
}, | |
"263" : { | |
"name" : "mylittlefriend", | |
"item_name" : "#StickerKit_comm02_mylittlefriend", | |
"description_string" : "#StickerKit_desc_comm02_mylittlefriend", | |
"sticker_material" : "community02/mylittlefriend", | |
"item_rarity" : "rare" | |
}, | |
"264" : { | |
"name" : "pandamonium", | |
"item_name" : "#StickerKit_comm02_pandamonium", | |
"description_string" : "#StickerKit_desc_comm02_pandamonium", | |
"sticker_material" : "community02/pandamonium", | |
"item_rarity" : "rare" | |
}, | |
"265" : { | |
"name" : "pieceofcake", | |
"item_name" : "#StickerKit_comm02_pieceofcake", | |
"description_string" : "#StickerKit_desc_comm02_pieceofcake", | |
"sticker_material" : "community02/pieceofcake", | |
"item_rarity" : "rare" | |
}, | |
"266" : { | |
"name" : "saschicken", | |
"item_name" : "#StickerKit_comm02_saschicken", | |
"description_string" : "#StickerKit_desc_comm02_saschicken", | |
"sticker_material" : "community02/saschicken", | |
"item_rarity" : "rare" | |
}, | |
"267" : { | |
"name" : "thuglife", | |
"item_name" : "#StickerKit_comm02_thuglife", | |
"description_string" : "#StickerKit_desc_comm02_thuglife", | |
"sticker_material" : "community02/thuglife", | |
"item_rarity" : "rare" | |
}, | |
"268" : { | |
"name" : "trekt", | |
"item_name" : "#StickerKit_comm02_trekt", | |
"description_string" : "#StickerKit_desc_comm02_trekt", | |
"sticker_material" : "community02/trekt", | |
"item_rarity" : "rare" | |
}, | |
"269" : { | |
"name" : "warowl", | |
"item_name" : "#StickerKit_comm02_warowl", | |
"description_string" : "#StickerKit_desc_comm02_warowl", | |
"sticker_material" : "community02/warowl", | |
"item_rarity" : "rare" | |
}, | |
"270" : { | |
"name" : "workforfood", | |
"item_name" : "#StickerKit_comm02_workforfood", | |
"description_string" : "#StickerKit_desc_comm02_workforfood", | |
"sticker_material" : "community02/workforfood", | |
"item_rarity" : "rare" | |
}, | |
"271" : { | |
"name" : "phoenix_foil", | |
"item_name" : "#StickerKit_comm02_phoenix_foil", | |
"description_string" : "#StickerKit_desc_comm02_phoenix_foil", | |
"sticker_material" : "community02/phoenix_foil", | |
"item_rarity" : "rare" | |
}, | |
"272" : { | |
"name" : "bombsquad_foil", | |
"item_name" : "#StickerKit_comm02_bombsquad_foil", | |
"description_string" : "#StickerKit_desc_comm02_bombsquad_foil", | |
"sticker_material" : "community02/bombsquad_foil", | |
"item_rarity" : "rare" | |
}, | |
"273" : { | |
"name" : "flickshot", | |
"item_name" : "#StickerKit_comm02_flickshot", | |
"description_string" : "#StickerKit_desc_comm02_flickshot", | |
"sticker_material" : "community02/flickshot", | |
"item_rarity" : "rare" | |
}, | |
"274" : { | |
"name" : "headshot_guarantee", | |
"item_name" : "#StickerKit_comm02_headshot_guarantee", | |
"description_string" : "#StickerKit_desc_comm02_headshot_guarantee", | |
"sticker_material" : "community02/headshot_guarantee", | |
"item_rarity" : "rare" | |
}, | |
"275" : { | |
"name" : "eco_rush", | |
"item_name" : "#StickerKit_comm02_eco_rush", | |
"description_string" : "#StickerKit_desc_comm02_eco_rush", | |
"sticker_material" : "community02/eco_rush", | |
"item_rarity" : "rare" | |
}, | |
"276" : { | |
"name" : "just_trolling", | |
"item_name" : "#StickerKit_comm02_just_trolling", | |
"description_string" : "#StickerKit_desc_comm02_just_trolling", | |
"sticker_material" : "community02/just_trolling", | |
"item_rarity" : "rare" | |
}, | |
"278" : { | |
"name" : "firestarter_holo", | |
"item_name" : "#StickerKit_comm02_firestarter_holo", | |
"description_string" : "#StickerKit_desc_comm02_firestarter_holo", | |
"sticker_material" : "community02/firestarter_holo", | |
"item_rarity" : "rare" | |
}, | |
"279" : { | |
"name" : "lucky_cat_foil", | |
"item_name" : "#StickerKit_comm02_lucky_cat_foil", | |
"description_string" : "#StickerKit_desc_comm02_lucky_cat_foil", | |
"sticker_material" : "community02/lucky_cat_foil", | |
"item_rarity" : "rare" | |
}, | |
"280" : { | |
"name" : "robot_head", | |
"item_name" : "#StickerKit_comm02_robot_head", | |
"description_string" : "#StickerKit_desc_comm02_robot_head", | |
"sticker_material" : "community02/robot_head", | |
"item_rarity" : "rare" | |
}, | |
"281" : { | |
"name" : "witchcraft", | |
"item_name" : "#StickerKit_comm02_witchcraft", | |
"description_string" : "#StickerKit_desc_comm02_witchcraft", | |
"sticker_material" : "community02/witchcraft", | |
"item_rarity" : "rare" | |
}, | |
"282" : { | |
"name" : "wanna_fight", | |
"item_name" : "#StickerKit_comm02_wanna_fight", | |
"description_string" : "#StickerKit_desc_comm02_wanna_fight", | |
"sticker_material" : "community02/wanna_fight", | |
"item_rarity" : "rare" | |
}, | |
"283" : { | |
"name" : "hostage_rescue", | |
"item_name" : "#StickerKit_comm02_hostage_rescue", | |
"description_string" : "#StickerKit_desc_comm02_hostage_rescue", | |
"sticker_material" : "community02/hostage_rescue", | |
"item_rarity" : "rare" | |
}, | |
"284" : { | |
"name" : "hamster_hawk", | |
"item_name" : "#StickerKit_comm02_hamster_hawk", | |
"description_string" : "#StickerKit_desc_comm02_hamster_hawk", | |
"sticker_material" : "community02/hamster_hawk", | |
"item_rarity" : "rare" | |
}, | |
"285" : { | |
"name" : "headless_chicken", | |
"item_name" : "#StickerKit_comm02_headless_chicken", | |
"description_string" : "#StickerKit_desc_comm02_headless_chicken", | |
"sticker_material" : "community02/headless_chicken", | |
"item_rarity" : "rare" | |
}, | |
"286" : { | |
"name" : "eslkatowice2015_3dmax", | |
"item_name" : "#StickerKit_eslkatowice2015_3dmax", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_3dmax", | |
"sticker_material" : "eslkatowice2015/3dmax", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "28" | |
}, | |
"287" : { | |
"name" : "eslkatowice2015_3dmax_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_3dmax_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_3dmax_holo", | |
"sticker_material" : "eslkatowice2015/3dmax_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "28" | |
}, | |
"288" : { | |
"name" : "eslkatowice2015_3dmax_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_3dmax_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_3dmax_foil", | |
"sticker_material" : "eslkatowice2015/3dmax_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "28" | |
}, | |
"289" : { | |
"name" : "eslkatowice2015_3dmax_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_3dmax_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_3dmax_gold", | |
"sticker_material" : "eslkatowice2015/3dmax_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "28" | |
}, | |
"290" : { | |
"name" : "eslkatowice2015_cloud9", | |
"item_name" : "#StickerKit_eslkatowice2015_cloud9", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_cloud9", | |
"sticker_material" : "eslkatowice2015/cloud9", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "52" | |
}, | |
"291" : { | |
"name" : "eslkatowice2015_cloud9_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_cloud9_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_cloud9_holo", | |
"sticker_material" : "eslkatowice2015/cloud9_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "52" | |
}, | |
"292" : { | |
"name" : "eslkatowice2015_cloud9_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_cloud9_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_cloud9_foil", | |
"sticker_material" : "eslkatowice2015/cloud9_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "52" | |
}, | |
"293" : { | |
"name" : "eslkatowice2015_cloud9_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_cloud9_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_cloud9_gold", | |
"sticker_material" : "eslkatowice2015/cloud9_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "52" | |
}, | |
"294" : { | |
"name" : "eslkatowice2015_counterlogic", | |
"item_name" : "#StickerKit_eslkatowice2015_counterlogic", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_counterlogic", | |
"sticker_material" : "eslkatowice2015/counterlogic", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "49" | |
}, | |
"295" : { | |
"name" : "eslkatowice2015_counterlogic_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_counterlogic_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_counterlogic_holo", | |
"sticker_material" : "eslkatowice2015/counterlogic_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "49" | |
}, | |
"296" : { | |
"name" : "eslkatowice2015_counterlogic_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_counterlogic_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_counterlogic_foil", | |
"sticker_material" : "eslkatowice2015/counterlogic_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "49" | |
}, | |
"297" : { | |
"name" : "eslkatowice2015_counterlogic_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_counterlogic_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_counterlogic_gold", | |
"sticker_material" : "eslkatowice2015/counterlogic_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "49" | |
}, | |
"300" : { | |
"name" : "eslkatowice2015_esl_a_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_esl_a_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_esl_a_foil", | |
"sticker_material" : "eslkatowice2015/esl_a_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6" | |
}, | |
"301" : { | |
"name" : "eslkatowice2015_esl_a_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_esl_a_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_esl_a_gold", | |
"sticker_material" : "eslkatowice2015/esl_a_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6" | |
}, | |
"302" : { | |
"name" : "eslkatowice2015_flipsid3", | |
"item_name" : "#StickerKit_eslkatowice2015_flipsid3", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_flipsid3", | |
"sticker_material" : "eslkatowice2015/flipsid3", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "43" | |
}, | |
"303" : { | |
"name" : "eslkatowice2015_flipsid3_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_flipsid3_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_flipsid3_holo", | |
"sticker_material" : "eslkatowice2015/flipsid3_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "43" | |
}, | |
"304" : { | |
"name" : "eslkatowice2015_flipsid3_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_flipsid3_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_flipsid3_foil", | |
"sticker_material" : "eslkatowice2015/flipsid3_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "43" | |
}, | |
"305" : { | |
"name" : "eslkatowice2015_flipsid3_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_flipsid3_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_flipsid3_gold", | |
"sticker_material" : "eslkatowice2015/flipsid3_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "43" | |
}, | |
"306" : { | |
"name" : "eslkatowice2015_fnatic", | |
"item_name" : "#StickerKit_eslkatowice2015_fnatic", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_fnatic", | |
"sticker_material" : "eslkatowice2015/fnatic", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "6" | |
}, | |
"307" : { | |
"name" : "eslkatowice2015_fnatic_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_fnatic_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_fnatic_holo", | |
"sticker_material" : "eslkatowice2015/fnatic_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "6" | |
}, | |
"308" : { | |
"name" : "eslkatowice2015_fnatic_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_fnatic_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_fnatic_foil", | |
"sticker_material" : "eslkatowice2015/fnatic_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "6" | |
}, | |
"309" : { | |
"name" : "eslkatowice2015_fnatic_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_fnatic_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_fnatic_gold", | |
"sticker_material" : "eslkatowice2015/fnatic_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "6" | |
}, | |
"310" : { | |
"name" : "eslkatowice2015_hellraisers", | |
"item_name" : "#StickerKit_eslkatowice2015_hellraisers", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_hellraisers", | |
"sticker_material" : "eslkatowice2015/hellraisers", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "25" | |
}, | |
"311" : { | |
"name" : "eslkatowice2015_hellraisers_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_hellraisers_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_hellraisers_holo", | |
"sticker_material" : "eslkatowice2015/hellraisers_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "25" | |
}, | |
"312" : { | |
"name" : "eslkatowice2015_hellraisers_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_hellraisers_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_hellraisers_foil", | |
"sticker_material" : "eslkatowice2015/hellraisers_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "25" | |
}, | |
"313" : { | |
"name" : "eslkatowice2015_hellraisers_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_hellraisers_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_hellraisers_gold", | |
"sticker_material" : "eslkatowice2015/hellraisers_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "25" | |
}, | |
"314" : { | |
"name" : "eslkatowice2015_keyd", | |
"item_name" : "#StickerKit_eslkatowice2015_keyd", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_keyd", | |
"sticker_material" : "eslkatowice2015/keyd", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "50" | |
}, | |
"315" : { | |
"name" : "eslkatowice2015_keyd_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_keyd_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_keyd_holo", | |
"sticker_material" : "eslkatowice2015/keyd_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "50" | |
}, | |
"316" : { | |
"name" : "eslkatowice2015_keyd_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_keyd_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_keyd_foil", | |
"sticker_material" : "eslkatowice2015/keyd_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "50" | |
}, | |
"317" : { | |
"name" : "eslkatowice2015_keyd_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_keyd_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_keyd_gold", | |
"sticker_material" : "eslkatowice2015/keyd_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "50" | |
}, | |
"318" : { | |
"name" : "eslkatowice2015_lgb", | |
"item_name" : "#StickerKit_eslkatowice2015_lgb", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_lgb", | |
"sticker_material" : "eslkatowice2015/lgb", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "9" | |
}, | |
"319" : { | |
"name" : "eslkatowice2015_lgb_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_lgb_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_lgb_holo", | |
"sticker_material" : "eslkatowice2015/lgb_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "9" | |
}, | |
"320" : { | |
"name" : "eslkatowice2015_lgb_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_lgb_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_lgb_foil", | |
"sticker_material" : "eslkatowice2015/lgb_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "9" | |
}, | |
"321" : { | |
"name" : "eslkatowice2015_lgb_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_lgb_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_lgb_gold", | |
"sticker_material" : "eslkatowice2015/lgb_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "9" | |
}, | |
"322" : { | |
"name" : "eslkatowice2015_navi", | |
"item_name" : "#StickerKit_eslkatowice2015_navi", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_navi", | |
"sticker_material" : "eslkatowice2015/navi", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "12" | |
}, | |
"323" : { | |
"name" : "eslkatowice2015_navi_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_navi_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_navi_holo", | |
"sticker_material" : "eslkatowice2015/navi_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "12" | |
}, | |
"324" : { | |
"name" : "eslkatowice2015_navi_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_navi_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_navi_foil", | |
"sticker_material" : "eslkatowice2015/navi_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "12" | |
}, | |
"325" : { | |
"name" : "eslkatowice2015_navi_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_navi_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_navi_gold", | |
"sticker_material" : "eslkatowice2015/navi_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "12" | |
}, | |
"326" : { | |
"name" : "eslkatowice2015_ninjasinpyjamas", | |
"item_name" : "#StickerKit_eslkatowice2015_ninjasinpyjamas", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas", | |
"sticker_material" : "eslkatowice2015/ninjasinpyjamas", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "1" | |
}, | |
"327" : { | |
"name" : "eslkatowice2015_ninjasinpyjamas_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_ninjasinpyjamas_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas_holo", | |
"sticker_material" : "eslkatowice2015/ninjasinpyjamas_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "1" | |
}, | |
"328" : { | |
"name" : "eslkatowice2015_ninjasinpyjamas_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_ninjasinpyjamas_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas_foil", | |
"sticker_material" : "eslkatowice2015/ninjasinpyjamas_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "1" | |
}, | |
"329" : { | |
"name" : "eslkatowice2015_ninjasinpyjamas_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_ninjasinpyjamas_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_ninjasinpyjamas_gold", | |
"sticker_material" : "eslkatowice2015/ninjasinpyjamas_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "1" | |
}, | |
"330" : { | |
"name" : "eslkatowice2015_pentasports", | |
"item_name" : "#StickerKit_eslkatowice2015_pentasports", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_pentasports", | |
"sticker_material" : "eslkatowice2015/pentasports", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "39" | |
}, | |
"331" : { | |
"name" : "eslkatowice2015_pentasports_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_pentasports_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_pentasports_holo", | |
"sticker_material" : "eslkatowice2015/pentasports_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "39" | |
}, | |
"332" : { | |
"name" : "eslkatowice2015_pentasports_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_pentasports_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_pentasports_foil", | |
"sticker_material" : "eslkatowice2015/pentasports_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "39" | |
}, | |
"333" : { | |
"name" : "eslkatowice2015_pentasports_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_pentasports_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_pentasports_gold", | |
"sticker_material" : "eslkatowice2015/pentasports_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "39" | |
}, | |
"334" : { | |
"name" : "eslkatowice2015_teamenvyus", | |
"item_name" : "#StickerKit_eslkatowice2015_teamenvyus", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_teamenvyus", | |
"sticker_material" : "eslkatowice2015/teamenvyus", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "46" | |
}, | |
"335" : { | |
"name" : "eslkatowice2015_teamenvyus_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_teamenvyus_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_teamenvyus_holo", | |
"sticker_material" : "eslkatowice2015/teamenvyus_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "46" | |
}, | |
"336" : { | |
"name" : "eslkatowice2015_teamenvyus_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_teamenvyus_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_teamenvyus_foil", | |
"sticker_material" : "eslkatowice2015/teamenvyus_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "46" | |
}, | |
"337" : { | |
"name" : "eslkatowice2015_teamenvyus_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_teamenvyus_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_teamenvyus_gold", | |
"sticker_material" : "eslkatowice2015/teamenvyus_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "46" | |
}, | |
"338" : { | |
"name" : "eslkatowice2015_teamsolomid", | |
"item_name" : "#StickerKit_eslkatowice2015_teamsolomid", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_teamsolomid", | |
"sticker_material" : "eslkatowice2015/teamsolomid", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "51" | |
}, | |
"339" : { | |
"name" : "eslkatowice2015_teamsolomid_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_teamsolomid_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_teamsolomid_holo", | |
"sticker_material" : "eslkatowice2015/teamsolomid_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "51" | |
}, | |
"340" : { | |
"name" : "eslkatowice2015_teamsolomid_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_teamsolomid_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_teamsolomid_foil", | |
"sticker_material" : "eslkatowice2015/teamsolomid_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "51" | |
}, | |
"341" : { | |
"name" : "eslkatowice2015_teamsolomid_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_teamsolomid_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_teamsolomid_gold", | |
"sticker_material" : "eslkatowice2015/teamsolomid_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "51" | |
}, | |
"342" : { | |
"name" : "eslkatowice2015_titan", | |
"item_name" : "#StickerKit_eslkatowice2015_titan", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_titan", | |
"sticker_material" : "eslkatowice2015/titan", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "27" | |
}, | |
"343" : { | |
"name" : "eslkatowice2015_titan_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_titan_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_titan_holo", | |
"sticker_material" : "eslkatowice2015/titan_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "27" | |
}, | |
"344" : { | |
"name" : "eslkatowice2015_titan_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_titan_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_titan_foil", | |
"sticker_material" : "eslkatowice2015/titan_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "27" | |
}, | |
"345" : { | |
"name" : "eslkatowice2015_titan_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_titan_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_titan_gold", | |
"sticker_material" : "eslkatowice2015/titan_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "27" | |
}, | |
"346" : { | |
"name" : "eslkatowice2015_virtuspro", | |
"item_name" : "#StickerKit_eslkatowice2015_virtuspro", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_virtuspro", | |
"sticker_material" : "eslkatowice2015/virtuspro", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "31" | |
}, | |
"347" : { | |
"name" : "eslkatowice2015_virtuspro_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_virtuspro_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_virtuspro_holo", | |
"sticker_material" : "eslkatowice2015/virtuspro_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "31" | |
}, | |
"348" : { | |
"name" : "eslkatowice2015_virtuspro_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_virtuspro_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_virtuspro_foil", | |
"sticker_material" : "eslkatowice2015/virtuspro_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "31" | |
}, | |
"349" : { | |
"name" : "eslkatowice2015_virtuspro_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_virtuspro_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_virtuspro_gold", | |
"sticker_material" : "eslkatowice2015/virtuspro_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "31" | |
}, | |
"350" : { | |
"name" : "eslkatowice2015_voxeminor", | |
"item_name" : "#StickerKit_eslkatowice2015_voxeminor", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_voxeminor", | |
"sticker_material" : "eslkatowice2015/voxeminor", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "32" | |
}, | |
"351" : { | |
"name" : "eslkatowice2015_voxeminor_holo", | |
"item_name" : "#StickerKit_eslkatowice2015_voxeminor_holo", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_voxeminor_holo", | |
"sticker_material" : "eslkatowice2015/voxeminor_holo", | |
"item_rarity" : "mythical", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "32" | |
}, | |
"352" : { | |
"name" : "eslkatowice2015_voxeminor_foil", | |
"item_name" : "#StickerKit_eslkatowice2015_voxeminor_foil", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_voxeminor_foil", | |
"sticker_material" : "eslkatowice2015/voxeminor_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "32" | |
}, | |
"353" : { | |
"name" : "eslkatowice2015_voxeminor_gold", | |
"item_name" : "#StickerKit_eslkatowice2015_voxeminor_gold", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_voxeminor_gold", | |
"sticker_material" : "eslkatowice2015/voxeminor_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "6", | |
"tournament_team_id" : "32" | |
}, | |
"354" : { | |
"name" : "eslkatowice2015_esl_a", | |
"item_name" : "#StickerKit_eslkatowice2015_esl_a", | |
"description_string" : "#StickerKit_desc_eslkatowice2015_esl_a", | |
"sticker_material" : "eslkatowice2015/esl_a", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "6" | |
}, | |
"355" : { | |
"name" : "enfu_chicken", | |
"item_name" : "#StickerKit_enfu_chicken", | |
"description_string" : "#StickerKit_desc_enfu_chicken", | |
"sticker_material" : "enfu_capsule/chicken", | |
"item_rarity" : "rare" | |
}, | |
"356" : { | |
"name" : "enfu_bombsquad", | |
"item_name" : "#StickerKit_enfu_bombsquad", | |
"description_string" : "#StickerKit_desc_enfu_bombsquad", | |
"sticker_material" : "enfu_capsule/enfu_bombsquad", | |
"item_rarity" : "rare" | |
}, | |
"357" : { | |
"name" : "enfu_bombsquad_foil", | |
"item_name" : "#StickerKit_enfu_bombsquad_foil", | |
"description_string" : "#StickerKit_desc_enfu_bombsquad_foil", | |
"sticker_material" : "enfu_capsule/enfu_bombsquad_foil", | |
"item_rarity" : "legendary" | |
}, | |
"358" : { | |
"name" : "enfu_guru", | |
"item_name" : "#StickerKit_enfu_guru", | |
"description_string" : "#StickerKit_desc_enfu_guru", | |
"sticker_material" : "enfu_capsule/guru", | |
"item_rarity" : "rare" | |
}, | |
"359" : { | |
"name" : "enfu_ninja", | |
"item_name" : "#StickerKit_enfu_ninja", | |
"description_string" : "#StickerKit_desc_enfu_ninja", | |
"sticker_material" : "enfu_capsule/ninja", | |
"item_rarity" : "rare" | |
}, | |
"360" : { | |
"name" : "enfu_ninja_foil", | |
"item_name" : "#StickerKit_enfu_ninja_foil", | |
"description_string" : "#StickerKit_desc_enfu_ninja_foil", | |
"sticker_material" : "enfu_capsule/ninja_foil", | |
"item_rarity" : "legendary" | |
}, | |
"361" : { | |
"name" : "enfu_samurai", | |
"item_name" : "#StickerKit_enfu_samurai", | |
"description_string" : "#StickerKit_desc_enfu_samurai", | |
"sticker_material" : "enfu_capsule/samurai", | |
"item_rarity" : "rare" | |
}, | |
"362" : { | |
"name" : "enfu_skullfulilboney", | |
"item_name" : "#StickerKit_enfu_skullfulilboney", | |
"description_string" : "#StickerKit_desc_enfu_skullfulilboney", | |
"sticker_material" : "enfu_capsule/skullfulilboney", | |
"item_rarity" : "rare" | |
}, | |
"363" : { | |
"name" : "enfu_skullfuskulltorgeist", | |
"item_name" : "#StickerKit_enfu_skullfuskulltorgeist", | |
"description_string" : "#StickerKit_desc_enfu_skullfuskulltorgeist", | |
"sticker_material" : "enfu_capsule/skullfuskulltorgeist", | |
"item_rarity" : "rare" | |
}, | |
"364" : { | |
"name" : "enfu_skullfutrooop", | |
"item_name" : "#StickerKit_enfu_skullfutrooop", | |
"description_string" : "#StickerKit_desc_enfu_skullfutrooop", | |
"sticker_material" : "enfu_capsule/skullfutrooop", | |
"item_rarity" : "rare" | |
}, | |
"365" : { | |
"name" : "enfu_soldier", | |
"item_name" : "#StickerKit_enfu_soldier", | |
"description_string" : "#StickerKit_desc_enfu_soldier", | |
"sticker_material" : "enfu_capsule/soldier", | |
"item_rarity" : "rare" | |
}, | |
"366" : { | |
"name" : "enfu_spartan", | |
"item_name" : "#StickerKit_enfu_spartan", | |
"description_string" : "#StickerKit_desc_enfu_spartan", | |
"sticker_material" : "enfu_capsule/spartan", | |
"item_rarity" : "rare" | |
}, | |
"367" : { | |
"name" : "enfu_unicorn", | |
"item_name" : "#StickerKit_enfu_unicorn", | |
"description_string" : "#StickerKit_desc_enfu_unicorn", | |
"sticker_material" : "enfu_capsule/unicorn", | |
"item_rarity" : "rare" | |
}, | |
"368" : { | |
"name" : "enfu_unicorn_holo", | |
"item_name" : "#StickerKit_enfu_unicorn_holo", | |
"description_string" : "#StickerKit_desc_enfu_unicorn_holo", | |
"sticker_material" : "enfu_capsule/unicorn_holo", | |
"item_rarity" : "mythical" | |
}, | |
"369" : { | |
"name" : "enfu_zombie", | |
"item_name" : "#StickerKit_enfu_zombie", | |
"description_string" : "#StickerKit_desc_enfu_zombie", | |
"sticker_material" : "enfu_capsule/zombie", | |
"item_rarity" : "rare" | |
}, | |
"370" : { | |
"name" : "awp_country", | |
"item_name" : "#StickerKit_comm02_awp_country", | |
"description_string" : "#StickerKit_desc_comm02_awp_country", | |
"sticker_material" : "community02/awp_country", | |
"item_rarity" : "rare" | |
}, | |
"371" : { | |
"name" : "chi_bomb", | |
"item_name" : "#StickerKit_comm02_chi_bomb", | |
"description_string" : "#StickerKit_desc_comm02_chi_bomb", | |
"sticker_material" : "community02/chi_bomb", | |
"item_rarity" : "rare" | |
}, | |
"372" : { | |
"name" : "fox", | |
"item_name" : "#StickerKit_comm02_fox", | |
"description_string" : "#StickerKit_desc_comm02_fox", | |
"sticker_material" : "community02/fox", | |
"item_rarity" : "rare" | |
}, | |
"373" : { | |
"name" : "knifeclub", | |
"item_name" : "#StickerKit_comm02_knifeclub", | |
"description_string" : "#StickerKit_desc_comm02_knifeclub", | |
"sticker_material" : "community02/knifeclub", | |
"item_rarity" : "rare" | |
}, | |
"374" : { | |
"name" : "cs_on_the_mind", | |
"item_name" : "#StickerKit_comm02_cs_on_the_mind", | |
"description_string" : "#StickerKit_desc_comm02_cs_on_the_mind", | |
"sticker_material" : "community02/cs_on_the_mind", | |
"item_rarity" : "rare" | |
}, | |
"375" : { | |
"name" : "ninja_defuse", | |
"item_name" : "#StickerKit_comm02_ninja_defuse", | |
"description_string" : "#StickerKit_desc_comm02_ninja_defuse", | |
"sticker_material" : "community02/ninja_defuse", | |
"item_rarity" : "rare" | |
}, | |
"376" : { | |
"name" : "pros_dont_fake", | |
"item_name" : "#StickerKit_comm02_pros_dont_fake", | |
"description_string" : "#StickerKit_desc_comm02_pros_dont_fake", | |
"sticker_material" : "community02/pros_dont_fake", | |
"item_rarity" : "rare" | |
}, | |
"377" : { | |
"name" : "kawaiikiller_t", | |
"item_name" : "#StickerKit_comm02_kawaiikiller_t", | |
"description_string" : "#StickerKit_desc_comm02_kawaiikiller_t", | |
"sticker_material" : "community02/kawaiikiller_t", | |
"item_rarity" : "rare" | |
}, | |
"378" : { | |
"name" : "baackstabber", | |
"item_name" : "#StickerKit_comm02_baackstabber", | |
"description_string" : "#StickerKit_desc_comm02_baackstabber", | |
"sticker_material" : "community02/baackstabber", | |
"item_rarity" : "rare" | |
}, | |
"379" : { | |
"name" : "delicious_tears", | |
"item_name" : "#StickerKit_comm02_delicious_tears", | |
"description_string" : "#StickerKit_desc_comm02_delicious_tears", | |
"sticker_material" : "community02/delicious_tears", | |
"item_rarity" : "rare" | |
}, | |
"380" : { | |
"name" : "eslcologne2015_signature_pronax", | |
"item_name" : "#StickerKit_eslcologne2015_signature_pronax", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_pronax", | |
"sticker_material" : "cologne2015/sig_pronax", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "9419182" | |
}, | |
"381" : { | |
"name" : "eslcologne2015_signature_pronax_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_pronax_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_pronax_foil", | |
"sticker_material" : "cologne2015/sig_pronax_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "9419182" | |
}, | |
"382" : { | |
"name" : "eslcologne2015_signature_pronax_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_pronax_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_pronax_gold", | |
"sticker_material" : "cologne2015/sig_pronax_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "9419182" | |
}, | |
"383" : { | |
"name" : "eslcologne2015_signature_flusha", | |
"item_name" : "#StickerKit_eslcologne2015_signature_flusha", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_flusha", | |
"sticker_material" : "cologne2015/sig_flusha", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "31082355" | |
}, | |
"384" : { | |
"name" : "eslcologne2015_signature_flusha_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_flusha_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_flusha_foil", | |
"sticker_material" : "cologne2015/sig_flusha_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "31082355" | |
}, | |
"385" : { | |
"name" : "eslcologne2015_signature_flusha_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_flusha_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_flusha_gold", | |
"sticker_material" : "cologne2015/sig_flusha_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "31082355" | |
}, | |
"386" : { | |
"name" : "eslcologne2015_signature_jw", | |
"item_name" : "#StickerKit_eslcologne2015_signature_jw", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_jw", | |
"sticker_material" : "cologne2015/sig_jw", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71288472" | |
}, | |
"387" : { | |
"name" : "eslcologne2015_signature_jw_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_jw_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_jw_foil", | |
"sticker_material" : "cologne2015/sig_jw_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71288472" | |
}, | |
"388" : { | |
"name" : "eslcologne2015_signature_jw_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_jw_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_jw_gold", | |
"sticker_material" : "cologne2015/sig_jw_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71288472" | |
}, | |
"389" : { | |
"name" : "eslcologne2015_signature_krimz", | |
"item_name" : "#StickerKit_eslcologne2015_signature_krimz", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_krimz", | |
"sticker_material" : "cologne2015/sig_krimz", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71385856" | |
}, | |
"390" : { | |
"name" : "eslcologne2015_signature_krimz_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_krimz_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_krimz_foil", | |
"sticker_material" : "cologne2015/sig_krimz_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71385856" | |
}, | |
"391" : { | |
"name" : "eslcologne2015_signature_krimz_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_krimz_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_krimz_gold", | |
"sticker_material" : "cologne2015/sig_krimz_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71385856" | |
}, | |
"392" : { | |
"name" : "eslcologne2015_signature_olofmeister", | |
"item_name" : "#StickerKit_eslcologne2015_signature_olofmeister", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_olofmeister", | |
"sticker_material" : "cologne2015/sig_olofmeister", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "28361465" | |
}, | |
"393" : { | |
"name" : "eslcologne2015_signature_olofmeister_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_olofmeister_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_olofmeister_foil", | |
"sticker_material" : "cologne2015/sig_olofmeister_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "28361465" | |
}, | |
"394" : { | |
"name" : "eslcologne2015_signature_olofmeister_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_olofmeister_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_olofmeister_gold", | |
"sticker_material" : "cologne2015/sig_olofmeister_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "28361465" | |
}, | |
"395" : { | |
"name" : "eslcologne2015_signature_fallen", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fallen", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fallen", | |
"sticker_material" : "cologne2015/sig_fallen", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "424467" | |
}, | |
"396" : { | |
"name" : "eslcologne2015_signature_fallen_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fallen_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fallen_foil", | |
"sticker_material" : "cologne2015/sig_fallen_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "424467" | |
}, | |
"397" : { | |
"name" : "eslcologne2015_signature_fallen_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fallen_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fallen_gold", | |
"sticker_material" : "cologne2015/sig_fallen_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "424467" | |
}, | |
"398" : { | |
"name" : "eslcologne2015_signature_steel", | |
"item_name" : "#StickerKit_eslcologne2015_signature_steel", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_steel", | |
"sticker_material" : "cologne2015/sig_steel", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "54512474" | |
}, | |
"399" : { | |
"name" : "eslcologne2015_signature_steel_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_steel_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_steel_foil", | |
"sticker_material" : "cologne2015/sig_steel_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "54512474" | |
}, | |
"400" : { | |
"name" : "eslcologne2015_signature_steel_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_steel_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_steel_gold", | |
"sticker_material" : "cologne2015/sig_steel_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "54512474" | |
}, | |
"401" : { | |
"name" : "eslcologne2015_signature_fer", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fer", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fer", | |
"sticker_material" : "cologne2015/sig_fer", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "38921219" | |
}, | |
"402" : { | |
"name" : "eslcologne2015_signature_fer_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fer_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fer_foil", | |
"sticker_material" : "cologne2015/sig_fer_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "38921219" | |
}, | |
"403" : { | |
"name" : "eslcologne2015_signature_fer_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fer_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fer_gold", | |
"sticker_material" : "cologne2015/sig_fer_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "38921219" | |
}, | |
"404" : { | |
"name" : "eslcologne2015_signature_boltz", | |
"item_name" : "#StickerKit_eslcologne2015_signature_boltz", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_boltz", | |
"sticker_material" : "cologne2015/sig_boltz", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "58113672" | |
}, | |
"405" : { | |
"name" : "eslcologne2015_signature_boltz_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_boltz_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_boltz_foil", | |
"sticker_material" : "cologne2015/sig_boltz_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "58113672" | |
}, | |
"406" : { | |
"name" : "eslcologne2015_signature_boltz_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_boltz_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_boltz_gold", | |
"sticker_material" : "cologne2015/sig_boltz_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "58113672" | |
}, | |
"407" : { | |
"name" : "eslcologne2015_signature_coldzera", | |
"item_name" : "#StickerKit_eslcologne2015_signature_coldzera", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_coldzera", | |
"sticker_material" : "cologne2015/sig_coldzera", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "79720871" | |
}, | |
"408" : { | |
"name" : "eslcologne2015_signature_coldzera_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_coldzera_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_coldzera_foil", | |
"sticker_material" : "cologne2015/sig_coldzera_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "79720871" | |
}, | |
"409" : { | |
"name" : "eslcologne2015_signature_coldzera_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_coldzera_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_coldzera_gold", | |
"sticker_material" : "cologne2015/sig_coldzera_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "79720871" | |
}, | |
"410" : { | |
"name" : "eslcologne2015_signature_guardian", | |
"item_name" : "#StickerKit_eslcologne2015_signature_guardian", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_guardian", | |
"sticker_material" : "cologne2015/sig_guardian", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "12065295" | |
}, | |
"411" : { | |
"name" : "eslcologne2015_signature_guardian_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_guardian_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_guardian_foil", | |
"sticker_material" : "cologne2015/sig_guardian_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "12065295" | |
}, | |
"412" : { | |
"name" : "eslcologne2015_signature_guardian_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_guardian_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_guardian_gold", | |
"sticker_material" : "cologne2015/sig_guardian_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "12065295" | |
}, | |
"413" : { | |
"name" : "eslcologne2015_signature_zeus", | |
"item_name" : "#StickerKit_eslcologne2015_signature_zeus", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_zeus", | |
"sticker_material" : "cologne2015/sig_zeus", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "59062744" | |
}, | |
"414" : { | |
"name" : "eslcologne2015_signature_zeus_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_zeus_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_zeus_foil", | |
"sticker_material" : "cologne2015/sig_zeus_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "59062744" | |
}, | |
"415" : { | |
"name" : "eslcologne2015_signature_zeus_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_zeus_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_zeus_gold", | |
"sticker_material" : "cologne2015/sig_zeus_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "59062744" | |
}, | |
"416" : { | |
"name" : "eslcologne2015_signature_seized", | |
"item_name" : "#StickerKit_eslcologne2015_signature_seized", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_seized", | |
"sticker_material" : "cologne2015/sig_seized", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "3648428" | |
}, | |
"417" : { | |
"name" : "eslcologne2015_signature_seized_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_seized_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_seized_foil", | |
"sticker_material" : "cologne2015/sig_seized_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "3648428" | |
}, | |
"418" : { | |
"name" : "eslcologne2015_signature_seized_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_seized_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_seized_gold", | |
"sticker_material" : "cologne2015/sig_seized_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "3648428" | |
}, | |
"419" : { | |
"name" : "eslcologne2015_signature_edward", | |
"item_name" : "#StickerKit_eslcologne2015_signature_edward", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_edward", | |
"sticker_material" : "cologne2015/sig_edward", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "23429534" | |
}, | |
"420" : { | |
"name" : "eslcologne2015_signature_edward_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_edward_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_edward_foil", | |
"sticker_material" : "cologne2015/sig_edward_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "23429534" | |
}, | |
"421" : { | |
"name" : "eslcologne2015_signature_edward_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_edward_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_edward_gold", | |
"sticker_material" : "cologne2015/sig_edward_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "23429534" | |
}, | |
"422" : { | |
"name" : "eslcologne2015_signature_flamie", | |
"item_name" : "#StickerKit_eslcologne2015_signature_flamie", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_flamie", | |
"sticker_material" : "cologne2015/sig_flamie", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "156257548" | |
}, | |
"423" : { | |
"name" : "eslcologne2015_signature_flamie_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_flamie_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_flamie_foil", | |
"sticker_material" : "cologne2015/sig_flamie_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "156257548" | |
}, | |
"424" : { | |
"name" : "eslcologne2015_signature_flamie_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_flamie_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_flamie_gold", | |
"sticker_material" : "cologne2015/sig_flamie_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12", | |
"tournament_player_id" : "156257548" | |
}, | |
"425" : { | |
"name" : "eslcologne2015_signature_xizt", | |
"item_name" : "#StickerKit_eslcologne2015_signature_xizt", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_xizt", | |
"sticker_material" : "cologne2015/sig_xizt", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "26224992" | |
}, | |
"426" : { | |
"name" : "eslcologne2015_signature_xizt_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_xizt_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_xizt_foil", | |
"sticker_material" : "cologne2015/sig_xizt_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "26224992" | |
}, | |
"427" : { | |
"name" : "eslcologne2015_signature_xizt_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_xizt_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_xizt_gold", | |
"sticker_material" : "cologne2015/sig_xizt_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "26224992" | |
}, | |
"428" : { | |
"name" : "eslcologne2015_signature_forest", | |
"item_name" : "#StickerKit_eslcologne2015_signature_forest", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_forest", | |
"sticker_material" : "cologne2015/sig_forest", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "93724" | |
}, | |
"429" : { | |
"name" : "eslcologne2015_signature_forest_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_forest_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_forest_foil", | |
"sticker_material" : "cologne2015/sig_forest_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "93724" | |
}, | |
"430" : { | |
"name" : "eslcologne2015_signature_forest_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_forest_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_forest_gold", | |
"sticker_material" : "cologne2015/sig_forest_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "93724" | |
}, | |
"431" : { | |
"name" : "eslcologne2015_signature_getright", | |
"item_name" : "#StickerKit_eslcologne2015_signature_getright", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_getright", | |
"sticker_material" : "cologne2015/sig_getright", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "21771190" | |
}, | |
"432" : { | |
"name" : "eslcologne2015_signature_getright_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_getright_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_getright_foil", | |
"sticker_material" : "cologne2015/sig_getright_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "21771190" | |
}, | |
"433" : { | |
"name" : "eslcologne2015_signature_getright_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_getright_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_getright_gold", | |
"sticker_material" : "cologne2015/sig_getright_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "21771190" | |
}, | |
"434" : { | |
"name" : "eslcologne2015_signature_friberg", | |
"item_name" : "#StickerKit_eslcologne2015_signature_friberg", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_friberg", | |
"sticker_material" : "cologne2015/sig_friberg", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "24295201" | |
}, | |
"435" : { | |
"name" : "eslcologne2015_signature_friberg_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_friberg_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_friberg_foil", | |
"sticker_material" : "cologne2015/sig_friberg_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "24295201" | |
}, | |
"436" : { | |
"name" : "eslcologne2015_signature_friberg_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_friberg_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_friberg_gold", | |
"sticker_material" : "cologne2015/sig_friberg_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "24295201" | |
}, | |
"437" : { | |
"name" : "eslcologne2015_signature_allu", | |
"item_name" : "#StickerKit_eslcologne2015_signature_allu", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_allu", | |
"sticker_material" : "cologne2015/sig_allu", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "1345246" | |
}, | |
"438" : { | |
"name" : "eslcologne2015_signature_allu_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_allu_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_allu_foil", | |
"sticker_material" : "cologne2015/sig_allu_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "1345246" | |
}, | |
"439" : { | |
"name" : "eslcologne2015_signature_allu_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_allu_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_allu_gold", | |
"sticker_material" : "cologne2015/sig_allu_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1", | |
"tournament_player_id" : "1345246" | |
}, | |
"440" : { | |
"name" : "eslcologne2015_signature_kennys", | |
"item_name" : "#StickerKit_eslcologne2015_signature_kennys", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_kennys", | |
"sticker_material" : "cologne2015/sig_kennys", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "64640068" | |
}, | |
"441" : { | |
"name" : "eslcologne2015_signature_kennys_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_kennys_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_kennys_foil", | |
"sticker_material" : "cologne2015/sig_kennys_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "64640068" | |
}, | |
"442" : { | |
"name" : "eslcologne2015_signature_kennys_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_kennys_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_kennys_gold", | |
"sticker_material" : "cologne2015/sig_kennys_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "64640068" | |
}, | |
"443" : { | |
"name" : "eslcologne2015_signature_kioshima", | |
"item_name" : "#StickerKit_eslcologne2015_signature_kioshima", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_kioshima", | |
"sticker_material" : "cologne2015/sig_kioshima", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "40517167" | |
}, | |
"444" : { | |
"name" : "eslcologne2015_signature_kioshima_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_kioshima_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_kioshima_foil", | |
"sticker_material" : "cologne2015/sig_kioshima_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "40517167" | |
}, | |
"445" : { | |
"name" : "eslcologne2015_signature_kioshima_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_kioshima_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_kioshima_gold", | |
"sticker_material" : "cologne2015/sig_kioshima_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "40517167" | |
}, | |
"446" : { | |
"name" : "eslcologne2015_signature_happy", | |
"item_name" : "#StickerKit_eslcologne2015_signature_happy", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_happy", | |
"sticker_material" : "cologne2015/sig_happy", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "17975624" | |
}, | |
"447" : { | |
"name" : "eslcologne2015_signature_happy_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_happy_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_happy_foil", | |
"sticker_material" : "cologne2015/sig_happy_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "17975624" | |
}, | |
"448" : { | |
"name" : "eslcologne2015_signature_happy_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_happy_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_happy_gold", | |
"sticker_material" : "cologne2015/sig_happy_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "17975624" | |
}, | |
"449" : { | |
"name" : "eslcologne2015_signature_apex", | |
"item_name" : "#StickerKit_eslcologne2015_signature_apex", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_apex", | |
"sticker_material" : "cologne2015/sig_apex", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "29478439" | |
}, | |
"450" : { | |
"name" : "eslcologne2015_signature_apex_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_apex_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_apex_foil", | |
"sticker_material" : "cologne2015/sig_apex_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "29478439" | |
}, | |
"451" : { | |
"name" : "eslcologne2015_signature_apex_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_apex_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_apex_gold", | |
"sticker_material" : "cologne2015/sig_apex_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "29478439" | |
}, | |
"452" : { | |
"name" : "eslcologne2015_signature_nbk", | |
"item_name" : "#StickerKit_eslcologne2015_signature_nbk", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_nbk", | |
"sticker_material" : "cologne2015/sig_nbk", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "444845" | |
}, | |
"453" : { | |
"name" : "eslcologne2015_signature_nbk_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_nbk_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_nbk_foil", | |
"sticker_material" : "cologne2015/sig_nbk_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "444845" | |
}, | |
"454" : { | |
"name" : "eslcologne2015_signature_nbk_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_nbk_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_nbk_gold", | |
"sticker_material" : "cologne2015/sig_nbk_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "444845" | |
}, | |
"455" : { | |
"name" : "eslcologne2015_signature_karrigan", | |
"item_name" : "#StickerKit_eslcologne2015_signature_karrigan", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_karrigan", | |
"sticker_material" : "cologne2015/sig_karrigan", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "29164525" | |
}, | |
"456" : { | |
"name" : "eslcologne2015_signature_karrigan_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_karrigan_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_karrigan_foil", | |
"sticker_material" : "cologne2015/sig_karrigan_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "29164525" | |
}, | |
"457" : { | |
"name" : "eslcologne2015_signature_karrigan_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_karrigan_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_karrigan_gold", | |
"sticker_material" : "cologne2015/sig_karrigan_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "29164525" | |
}, | |
"458" : { | |
"name" : "eslcologne2015_signature_device", | |
"item_name" : "#StickerKit_eslcologne2015_signature_device", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_device", | |
"sticker_material" : "cologne2015/sig_device", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "27447936" | |
}, | |
"459" : { | |
"name" : "eslcologne2015_signature_device_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_device_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_device_foil", | |
"sticker_material" : "cologne2015/sig_device_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "27447936" | |
}, | |
"460" : { | |
"name" : "eslcologne2015_signature_device_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_device_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_device_gold", | |
"sticker_material" : "cologne2015/sig_device_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "27447936" | |
}, | |
"461" : { | |
"name" : "eslcologne2015_signature_dupreeh", | |
"item_name" : "#StickerKit_eslcologne2015_signature_dupreeh", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_dupreeh", | |
"sticker_material" : "cologne2015/sig_dupreeh", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "44589228" | |
}, | |
"462" : { | |
"name" : "eslcologne2015_signature_dupreeh_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_dupreeh_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_dupreeh_foil", | |
"sticker_material" : "cologne2015/sig_dupreeh_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "44589228" | |
}, | |
"463" : { | |
"name" : "eslcologne2015_signature_dupreeh_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_dupreeh_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_dupreeh_gold", | |
"sticker_material" : "cologne2015/sig_dupreeh_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "44589228" | |
}, | |
"464" : { | |
"name" : "eslcologne2015_signature_xyp9x", | |
"item_name" : "#StickerKit_eslcologne2015_signature_xyp9x", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_xyp9x", | |
"sticker_material" : "cologne2015/sig_xyp9x", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "30416534" | |
}, | |
"465" : { | |
"name" : "eslcologne2015_signature_xyp9x_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_xyp9x_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_xyp9x_foil", | |
"sticker_material" : "cologne2015/sig_xyp9x_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "30416534" | |
}, | |
"466" : { | |
"name" : "eslcologne2015_signature_xyp9x_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_xyp9x_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_xyp9x_gold", | |
"sticker_material" : "cologne2015/sig_xyp9x_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "30416534" | |
}, | |
"467" : { | |
"name" : "eslcologne2015_signature_cajunb", | |
"item_name" : "#StickerKit_eslcologne2015_signature_cajunb", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_cajunb", | |
"sticker_material" : "cologne2015/sig_cajunb", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "18062315" | |
}, | |
"468" : { | |
"name" : "eslcologne2015_signature_cajunb_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_cajunb_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_cajunb_foil", | |
"sticker_material" : "cologne2015/sig_cajunb_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "18062315" | |
}, | |
"469" : { | |
"name" : "eslcologne2015_signature_cajunb_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_cajunb_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_cajunb_gold", | |
"sticker_material" : "cologne2015/sig_cajunb_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58", | |
"tournament_player_id" : "18062315" | |
}, | |
"470" : { | |
"name" : "eslcologne2015_signature_neo", | |
"item_name" : "#StickerKit_eslcologne2015_signature_neo", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_neo", | |
"sticker_material" : "cologne2015/sig_neo", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "460206" | |
}, | |
"471" : { | |
"name" : "eslcologne2015_signature_neo_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_neo_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_neo_foil", | |
"sticker_material" : "cologne2015/sig_neo_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "460206" | |
}, | |
"472" : { | |
"name" : "eslcologne2015_signature_neo_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_neo_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_neo_gold", | |
"sticker_material" : "cologne2015/sig_neo_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "460206" | |
}, | |
"473" : { | |
"name" : "eslcologne2015_signature_pasha", | |
"item_name" : "#StickerKit_eslcologne2015_signature_pasha", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_pasha", | |
"sticker_material" : "cologne2015/sig_pasha", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "13580090" | |
}, | |
"474" : { | |
"name" : "eslcologne2015_signature_pasha_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_pasha_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_pasha_foil", | |
"sticker_material" : "cologne2015/sig_pasha_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "13580090" | |
}, | |
"475" : { | |
"name" : "eslcologne2015_signature_pasha_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_pasha_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_pasha_gold", | |
"sticker_material" : "cologne2015/sig_pasha_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "13580090" | |
}, | |
"476" : { | |
"name" : "eslcologne2015_signature_taz", | |
"item_name" : "#StickerKit_eslcologne2015_signature_taz", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_taz", | |
"sticker_material" : "cologne2015/sig_taz", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "234052" | |
}, | |
"477" : { | |
"name" : "eslcologne2015_signature_taz_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_taz_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_taz_foil", | |
"sticker_material" : "cologne2015/sig_taz_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "234052" | |
}, | |
"478" : { | |
"name" : "eslcologne2015_signature_taz_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_taz_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_taz_gold", | |
"sticker_material" : "cologne2015/sig_taz_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "234052" | |
}, | |
"479" : { | |
"name" : "eslcologne2015_signature_snax", | |
"item_name" : "#StickerKit_eslcologne2015_signature_snax", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_snax", | |
"sticker_material" : "cologne2015/sig_snax", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "21875845" | |
}, | |
"480" : { | |
"name" : "eslcologne2015_signature_snax_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_snax_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_snax_foil", | |
"sticker_material" : "cologne2015/sig_snax_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "21875845" | |
}, | |
"481" : { | |
"name" : "eslcologne2015_signature_snax_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_snax_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_snax_gold", | |
"sticker_material" : "cologne2015/sig_snax_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "21875845" | |
}, | |
"482" : { | |
"name" : "eslcologne2015_signature_byali", | |
"item_name" : "#StickerKit_eslcologne2015_signature_byali", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_byali", | |
"sticker_material" : "cologne2015/sig_byali", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "18860354" | |
}, | |
"483" : { | |
"name" : "eslcologne2015_signature_byali_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_byali_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_byali_foil", | |
"sticker_material" : "cologne2015/sig_byali_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "18860354" | |
}, | |
"484" : { | |
"name" : "eslcologne2015_signature_byali_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_byali_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_byali_gold", | |
"sticker_material" : "cologne2015/sig_byali_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31", | |
"tournament_player_id" : "18860354" | |
}, | |
"485" : { | |
"name" : "eslcologne2015_signature_chrisj", | |
"item_name" : "#StickerKit_eslcologne2015_signature_chrisj", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_chrisj", | |
"sticker_material" : "cologne2015/sig_chrisj", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "28273376" | |
}, | |
"486" : { | |
"name" : "eslcologne2015_signature_chrisj_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_chrisj_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_chrisj_foil", | |
"sticker_material" : "cologne2015/sig_chrisj_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "28273376" | |
}, | |
"487" : { | |
"name" : "eslcologne2015_signature_chrisj_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_chrisj_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_chrisj_gold", | |
"sticker_material" : "cologne2015/sig_chrisj_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "28273376" | |
}, | |
"488" : { | |
"name" : "eslcologne2015_signature_gobb", | |
"item_name" : "#StickerKit_eslcologne2015_signature_gobb", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_gobb", | |
"sticker_material" : "cologne2015/sig_gobb", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "1162165" | |
}, | |
"489" : { | |
"name" : "eslcologne2015_signature_gobb_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_gobb_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_gobb_foil", | |
"sticker_material" : "cologne2015/sig_gobb_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "1162165" | |
}, | |
"490" : { | |
"name" : "eslcologne2015_signature_gobb_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_gobb_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_gobb_gold", | |
"sticker_material" : "cologne2015/sig_gobb_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "1162165" | |
}, | |
"491" : { | |
"name" : "eslcologne2015_signature_denis", | |
"item_name" : "#StickerKit_eslcologne2015_signature_denis", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_denis", | |
"sticker_material" : "cologne2015/sig_denis", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "31185376" | |
}, | |
"492" : { | |
"name" : "eslcologne2015_signature_denis_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_denis_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_denis_foil", | |
"sticker_material" : "cologne2015/sig_denis_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "31185376" | |
}, | |
"493" : { | |
"name" : "eslcologne2015_signature_denis_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_denis_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_denis_gold", | |
"sticker_material" : "cologne2015/sig_denis_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "31185376" | |
}, | |
"494" : { | |
"name" : "eslcologne2015_signature_nex", | |
"item_name" : "#StickerKit_eslcologne2015_signature_nex", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_nex", | |
"sticker_material" : "cologne2015/sig_nex", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "90378773" | |
}, | |
"495" : { | |
"name" : "eslcologne2015_signature_nex_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_nex_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_nex_foil", | |
"sticker_material" : "cologne2015/sig_nex_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "90378773" | |
}, | |
"496" : { | |
"name" : "eslcologne2015_signature_nex_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_nex_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_nex_gold", | |
"sticker_material" : "cologne2015/sig_nex_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "90378773" | |
}, | |
"497" : { | |
"name" : "eslcologne2015_signature_spiidi", | |
"item_name" : "#StickerKit_eslcologne2015_signature_spiidi", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_spiidi", | |
"sticker_material" : "cologne2015/sig_spiidi", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "13465075" | |
}, | |
"498" : { | |
"name" : "eslcologne2015_signature_spiidi_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_spiidi_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_spiidi_foil", | |
"sticker_material" : "cologne2015/sig_spiidi_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "13465075" | |
}, | |
"499" : { | |
"name" : "eslcologne2015_signature_spiidi_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_spiidi_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_spiidi_gold", | |
"sticker_material" : "cologne2015/sig_spiidi_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "13465075" | |
}, | |
"500" : { | |
"name" : "eslcologne2015_signature_azr", | |
"item_name" : "#StickerKit_eslcologne2015_signature_azr", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_azr", | |
"sticker_material" : "cologne2015/sig_azr", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "24832266" | |
}, | |
"501" : { | |
"name" : "eslcologne2015_signature_azr_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_azr_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_azr_foil", | |
"sticker_material" : "cologne2015/sig_azr_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "24832266" | |
}, | |
"502" : { | |
"name" : "eslcologne2015_signature_azr_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_azr_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_azr_gold", | |
"sticker_material" : "cologne2015/sig_azr_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "24832266" | |
}, | |
"503" : { | |
"name" : "eslcologne2015_signature_havoc", | |
"item_name" : "#StickerKit_eslcologne2015_signature_havoc", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_havoc", | |
"sticker_material" : "cologne2015/sig_havoc", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "10025211" | |
}, | |
"504" : { | |
"name" : "eslcologne2015_signature_havoc_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_havoc_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_havoc_foil", | |
"sticker_material" : "cologne2015/sig_havoc_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "10025211" | |
}, | |
"505" : { | |
"name" : "eslcologne2015_signature_havoc_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_havoc_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_havoc_gold", | |
"sticker_material" : "cologne2015/sig_havoc_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "10025211" | |
}, | |
"506" : { | |
"name" : "eslcologne2015_signature_jks", | |
"item_name" : "#StickerKit_eslcologne2015_signature_jks", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_jks", | |
"sticker_material" : "cologne2015/sig_jks", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "16839456" | |
}, | |
"507" : { | |
"name" : "eslcologne2015_signature_jks_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_jks_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_jks_foil", | |
"sticker_material" : "cologne2015/sig_jks_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "16839456" | |
}, | |
"508" : { | |
"name" : "eslcologne2015_signature_jks_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_jks_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_jks_gold", | |
"sticker_material" : "cologne2015/sig_jks_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "16839456" | |
}, | |
"509" : { | |
"name" : "eslcologne2015_signature_spunj", | |
"item_name" : "#StickerKit_eslcologne2015_signature_spunj", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_spunj", | |
"sticker_material" : "cologne2015/sig_spunj", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "34303888" | |
}, | |
"510" : { | |
"name" : "eslcologne2015_signature_spunj_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_spunj_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_spunj_foil", | |
"sticker_material" : "cologne2015/sig_spunj_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "34303888" | |
}, | |
"511" : { | |
"name" : "eslcologne2015_signature_spunj_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_spunj_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_spunj_gold", | |
"sticker_material" : "cologne2015/sig_spunj_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "34303888" | |
}, | |
"512" : { | |
"name" : "eslcologne2015_signature_yam", | |
"item_name" : "#StickerKit_eslcologne2015_signature_yam", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_yam", | |
"sticker_material" : "cologne2015/sig_yam", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "30659" | |
}, | |
"513" : { | |
"name" : "eslcologne2015_signature_yam_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_yam_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_yam_foil", | |
"sticker_material" : "cologne2015/sig_yam_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "30659" | |
}, | |
"514" : { | |
"name" : "eslcologne2015_signature_yam_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_yam_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_yam_gold", | |
"sticker_material" : "cologne2015/sig_yam_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53", | |
"tournament_player_id" : "30659" | |
}, | |
"515" : { | |
"name" : "eslcologne2015_signature_ustilo", | |
"item_name" : "#StickerKit_eslcologne2015_signature_ustilo", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_ustilo", | |
"sticker_material" : "cologne2015/sig_ustilo", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "18903255" | |
}, | |
"516" : { | |
"name" : "eslcologne2015_signature_ustilo_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_ustilo_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_ustilo_foil", | |
"sticker_material" : "cologne2015/sig_ustilo_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "18903255" | |
}, | |
"517" : { | |
"name" : "eslcologne2015_signature_ustilo_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_ustilo_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_ustilo_gold", | |
"sticker_material" : "cologne2015/sig_ustilo_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "18903255" | |
}, | |
"518" : { | |
"name" : "eslcologne2015_signature_rickeh", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rickeh", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rickeh", | |
"sticker_material" : "cologne2015/sig_rickeh", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "3215921" | |
}, | |
"519" : { | |
"name" : "eslcologne2015_signature_rickeh_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rickeh_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rickeh_foil", | |
"sticker_material" : "cologne2015/sig_rickeh_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "3215921" | |
}, | |
"520" : { | |
"name" : "eslcologne2015_signature_rickeh_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rickeh_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rickeh_gold", | |
"sticker_material" : "cologne2015/sig_rickeh_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "3215921" | |
}, | |
"521" : { | |
"name" : "eslcologne2015_signature_emagine", | |
"item_name" : "#StickerKit_eslcologne2015_signature_emagine", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_emagine", | |
"sticker_material" : "cologne2015/sig_emagine", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "19633654" | |
}, | |
"522" : { | |
"name" : "eslcologne2015_signature_emagine_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_emagine_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_emagine_foil", | |
"sticker_material" : "cologne2015/sig_emagine_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "19633654" | |
}, | |
"523" : { | |
"name" : "eslcologne2015_signature_emagine_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_emagine_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_emagine_gold", | |
"sticker_material" : "cologne2015/sig_emagine_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "19633654" | |
}, | |
"524" : { | |
"name" : "eslcologne2015_signature_snyper", | |
"item_name" : "#StickerKit_eslcologne2015_signature_snyper", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_snyper", | |
"sticker_material" : "cologne2015/sig_snyper", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "7436549" | |
}, | |
"525" : { | |
"name" : "eslcologne2015_signature_snyper_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_snyper_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_snyper_foil", | |
"sticker_material" : "cologne2015/sig_snyper_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "7436549" | |
}, | |
"526" : { | |
"name" : "eslcologne2015_signature_snyper_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_snyper_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_snyper_gold", | |
"sticker_material" : "cologne2015/sig_snyper_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "7436549" | |
}, | |
"527" : { | |
"name" : "eslcologne2015_signature_james", | |
"item_name" : "#StickerKit_eslcologne2015_signature_james", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_james", | |
"sticker_material" : "cologne2015/sig_james", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "35336006" | |
}, | |
"528" : { | |
"name" : "eslcologne2015_signature_james_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_james_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_james_foil", | |
"sticker_material" : "cologne2015/sig_james_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "35336006" | |
}, | |
"529" : { | |
"name" : "eslcologne2015_signature_james_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_james_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_james_gold", | |
"sticker_material" : "cologne2015/sig_james_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54", | |
"tournament_player_id" : "35336006" | |
}, | |
"530" : { | |
"name" : "eslcologne2015_signature_markeloff", | |
"item_name" : "#StickerKit_eslcologne2015_signature_markeloff", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_markeloff", | |
"sticker_material" : "cologne2015/sig_markeloff", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "5667261" | |
}, | |
"531" : { | |
"name" : "eslcologne2015_signature_markeloff_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_markeloff_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_markeloff_foil", | |
"sticker_material" : "cologne2015/sig_markeloff_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "5667261" | |
}, | |
"532" : { | |
"name" : "eslcologne2015_signature_markeloff_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_markeloff_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_markeloff_gold", | |
"sticker_material" : "cologne2015/sig_markeloff_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "5667261" | |
}, | |
"533" : { | |
"name" : "eslcologne2015_signature_b1ad3", | |
"item_name" : "#StickerKit_eslcologne2015_signature_b1ad3", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_b1ad3", | |
"sticker_material" : "cologne2015/sig_b1ad3", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "53258137" | |
}, | |
"534" : { | |
"name" : "eslcologne2015_signature_b1ad3_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_b1ad3_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_b1ad3_foil", | |
"sticker_material" : "cologne2015/sig_b1ad3_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "53258137" | |
}, | |
"535" : { | |
"name" : "eslcologne2015_signature_b1ad3_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_b1ad3_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_b1ad3_gold", | |
"sticker_material" : "cologne2015/sig_b1ad3_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "53258137" | |
}, | |
"536" : { | |
"name" : "eslcologne2015_signature_bondik", | |
"item_name" : "#StickerKit_eslcologne2015_signature_bondik", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_bondik", | |
"sticker_material" : "cologne2015/sig_bondik", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "46918643" | |
}, | |
"537" : { | |
"name" : "eslcologne2015_signature_bondik_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_bondik_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_bondik_foil", | |
"sticker_material" : "cologne2015/sig_bondik_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "46918643" | |
}, | |
"538" : { | |
"name" : "eslcologne2015_signature_bondik_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_bondik_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_bondik_gold", | |
"sticker_material" : "cologne2015/sig_bondik_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "46918643" | |
}, | |
"539" : { | |
"name" : "eslcologne2015_signature_worldedit", | |
"item_name" : "#StickerKit_eslcologne2015_signature_worldedit", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_worldedit", | |
"sticker_material" : "cologne2015/sig_worldedit", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "36732188" | |
}, | |
"540" : { | |
"name" : "eslcologne2015_signature_worldedit_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_worldedit_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_worldedit_foil", | |
"sticker_material" : "cologne2015/sig_worldedit_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "36732188" | |
}, | |
"541" : { | |
"name" : "eslcologne2015_signature_worldedit_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_worldedit_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_worldedit_gold", | |
"sticker_material" : "cologne2015/sig_worldedit_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "36732188" | |
}, | |
"542" : { | |
"name" : "eslcologne2015_signature_davcost", | |
"item_name" : "#StickerKit_eslcologne2015_signature_davcost", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_davcost", | |
"sticker_material" : "cologne2015/sig_davcost", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "20273529" | |
}, | |
"543" : { | |
"name" : "eslcologne2015_signature_davcost_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_davcost_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_davcost_foil", | |
"sticker_material" : "cologne2015/sig_davcost_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "20273529" | |
}, | |
"544" : { | |
"name" : "eslcologne2015_signature_davcost_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_davcost_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_davcost_gold", | |
"sticker_material" : "cologne2015/sig_davcost_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "20273529" | |
}, | |
"545" : { | |
"name" : "eslcologne2015_signature_dennis", | |
"item_name" : "#StickerKit_eslcologne2015_signature_dennis", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_dennis", | |
"sticker_material" : "cologne2015/sig_dennis", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "108076825" | |
}, | |
"546" : { | |
"name" : "eslcologne2015_signature_dennis_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_dennis_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_dennis_foil", | |
"sticker_material" : "cologne2015/sig_dennis_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "108076825" | |
}, | |
"547" : { | |
"name" : "eslcologne2015_signature_dennis_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_dennis_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_dennis_gold", | |
"sticker_material" : "cologne2015/sig_dennis_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "108076825" | |
}, | |
"548" : { | |
"name" : "eslcologne2015_signature_scream", | |
"item_name" : "#StickerKit_eslcologne2015_signature_scream", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_scream", | |
"sticker_material" : "cologne2015/sig_scream", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "28502520" | |
}, | |
"549" : { | |
"name" : "eslcologne2015_signature_scream_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_scream_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_scream_foil", | |
"sticker_material" : "cologne2015/sig_scream_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "28502520" | |
}, | |
"550" : { | |
"name" : "eslcologne2015_signature_scream_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_scream_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_scream_gold", | |
"sticker_material" : "cologne2015/sig_scream_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "28502520" | |
}, | |
"551" : { | |
"name" : "eslcologne2015_signature_rain", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rain", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rain", | |
"sticker_material" : "cologne2015/sig_rain", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "37085479" | |
}, | |
"552" : { | |
"name" : "eslcologne2015_signature_rain_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rain_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rain_foil", | |
"sticker_material" : "cologne2015/sig_rain_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "37085479" | |
}, | |
"553" : { | |
"name" : "eslcologne2015_signature_rain_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rain_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rain_gold", | |
"sticker_material" : "cologne2015/sig_rain_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "37085479" | |
}, | |
"554" : { | |
"name" : "eslcologne2015_signature_maikelele", | |
"item_name" : "#StickerKit_eslcologne2015_signature_maikelele", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_maikelele", | |
"sticker_material" : "cologne2015/sig_maikelele", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "925972" | |
}, | |
"555" : { | |
"name" : "eslcologne2015_signature_maikelele_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_maikelele_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_maikelele_foil", | |
"sticker_material" : "cologne2015/sig_maikelele_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "925972" | |
}, | |
"556" : { | |
"name" : "eslcologne2015_signature_maikelele_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_maikelele_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_maikelele_gold", | |
"sticker_material" : "cologne2015/sig_maikelele_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "925972" | |
}, | |
"557" : { | |
"name" : "eslcologne2015_signature_fox", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fox", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fox", | |
"sticker_material" : "cologne2015/sig_fox", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "1939536" | |
}, | |
"558" : { | |
"name" : "eslcologne2015_signature_fox_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fox_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fox_foil", | |
"sticker_material" : "cologne2015/sig_fox_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "1939536" | |
}, | |
"559" : { | |
"name" : "eslcologne2015_signature_fox_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fox_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fox_gold", | |
"sticker_material" : "cologne2015/sig_fox_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55", | |
"tournament_player_id" : "1939536" | |
}, | |
"560" : { | |
"name" : "eslcologne2015_signature_rallen", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rallen", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rallen", | |
"sticker_material" : "cologne2015/sig_rallen", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "31166738" | |
}, | |
"561" : { | |
"name" : "eslcologne2015_signature_rallen_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rallen_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rallen_foil", | |
"sticker_material" : "cologne2015/sig_rallen_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "31166738" | |
}, | |
"562" : { | |
"name" : "eslcologne2015_signature_rallen_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rallen_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rallen_gold", | |
"sticker_material" : "cologne2015/sig_rallen_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "31166738" | |
}, | |
"563" : { | |
"name" : "eslcologne2015_signature_hyper", | |
"item_name" : "#StickerKit_eslcologne2015_signature_hyper", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_hyper", | |
"sticker_material" : "cologne2015/sig_hyper", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "10357481" | |
}, | |
"564" : { | |
"name" : "eslcologne2015_signature_hyper_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_hyper_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_hyper_foil", | |
"sticker_material" : "cologne2015/sig_hyper_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "10357481" | |
}, | |
"565" : { | |
"name" : "eslcologne2015_signature_hyper_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_hyper_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_hyper_gold", | |
"sticker_material" : "cologne2015/sig_hyper_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "10357481" | |
}, | |
"566" : { | |
"name" : "eslcologne2015_signature_peet", | |
"item_name" : "#StickerKit_eslcologne2015_signature_peet", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_peet", | |
"sticker_material" : "cologne2015/sig_peet", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "104340617" | |
}, | |
"567" : { | |
"name" : "eslcologne2015_signature_peet_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_peet_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_peet_foil", | |
"sticker_material" : "cologne2015/sig_peet_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "104340617" | |
}, | |
"568" : { | |
"name" : "eslcologne2015_signature_peet_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_peet_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_peet_gold", | |
"sticker_material" : "cologne2015/sig_peet_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "104340617" | |
}, | |
"569" : { | |
"name" : "eslcologne2015_signature_furlan", | |
"item_name" : "#StickerKit_eslcologne2015_signature_furlan", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_furlan", | |
"sticker_material" : "cologne2015/sig_furlan", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "177495873" | |
}, | |
"570" : { | |
"name" : "eslcologne2015_signature_furlan_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_furlan_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_furlan_foil", | |
"sticker_material" : "cologne2015/sig_furlan_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "177495873" | |
}, | |
"571" : { | |
"name" : "eslcologne2015_signature_furlan_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_furlan_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_furlan_gold", | |
"sticker_material" : "cologne2015/sig_furlan_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "177495873" | |
}, | |
"572" : { | |
"name" : "eslcologne2015_signature_gruby", | |
"item_name" : "#StickerKit_eslcologne2015_signature_gruby", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_gruby", | |
"sticker_material" : "cologne2015/sig_gruby", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "44752530" | |
}, | |
"573" : { | |
"name" : "eslcologne2015_signature_gruby_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_gruby_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_gruby_foil", | |
"sticker_material" : "cologne2015/sig_gruby_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "44752530" | |
}, | |
"574" : { | |
"name" : "eslcologne2015_signature_gruby_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_gruby_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_gruby_gold", | |
"sticker_material" : "cologne2015/sig_gruby_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56", | |
"tournament_player_id" : "44752530" | |
}, | |
"575" : { | |
"name" : "eslcologne2015_signature_maniac", | |
"item_name" : "#StickerKit_eslcologne2015_signature_maniac", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_maniac", | |
"sticker_material" : "cologne2015/sig_maniac", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "35761" | |
}, | |
"576" : { | |
"name" : "eslcologne2015_signature_maniac_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_maniac_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_maniac_foil", | |
"sticker_material" : "cologne2015/sig_maniac_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "35761" | |
}, | |
"577" : { | |
"name" : "eslcologne2015_signature_maniac_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_maniac_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_maniac_gold", | |
"sticker_material" : "cologne2015/sig_maniac_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "35761" | |
}, | |
"578" : { | |
"name" : "eslcologne2015_signature_ex6tenz", | |
"item_name" : "#StickerKit_eslcologne2015_signature_ex6tenz", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_ex6tenz", | |
"sticker_material" : "cologne2015/sig_ex6tenz", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "11737333" | |
}, | |
"579" : { | |
"name" : "eslcologne2015_signature_ex6tenz_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_ex6tenz_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_ex6tenz_foil", | |
"sticker_material" : "cologne2015/sig_ex6tenz_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "11737333" | |
}, | |
"580" : { | |
"name" : "eslcologne2015_signature_ex6tenz_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_ex6tenz_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_ex6tenz_gold", | |
"sticker_material" : "cologne2015/sig_ex6tenz_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "11737333" | |
}, | |
"581" : { | |
"name" : "eslcologne2015_signature_shox", | |
"item_name" : "#StickerKit_eslcologne2015_signature_shox", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_shox", | |
"sticker_material" : "cologne2015/sig_shox", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "46654567" | |
}, | |
"582" : { | |
"name" : "eslcologne2015_signature_shox_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_shox_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_shox_foil", | |
"sticker_material" : "cologne2015/sig_shox_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "46654567" | |
}, | |
"583" : { | |
"name" : "eslcologne2015_signature_shox_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_shox_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_shox_gold", | |
"sticker_material" : "cologne2015/sig_shox_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "46654567" | |
}, | |
"584" : { | |
"name" : "eslcologne2015_signature_smithzz", | |
"item_name" : "#StickerKit_eslcologne2015_signature_smithzz", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_smithzz", | |
"sticker_material" : "cologne2015/sig_smithzz", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "14321919" | |
}, | |
"585" : { | |
"name" : "eslcologne2015_signature_smithzz_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_smithzz_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_smithzz_foil", | |
"sticker_material" : "cologne2015/sig_smithzz_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "14321919" | |
}, | |
"586" : { | |
"name" : "eslcologne2015_signature_smithzz_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_smithzz_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_smithzz_gold", | |
"sticker_material" : "cologne2015/sig_smithzz_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "14321919" | |
}, | |
"587" : { | |
"name" : "eslcologne2015_signature_rpk", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rpk", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rpk", | |
"sticker_material" : "cologne2015/sig_rpk", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "53985773" | |
}, | |
"588" : { | |
"name" : "eslcologne2015_signature_rpk_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rpk_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rpk_foil", | |
"sticker_material" : "cologne2015/sig_rpk_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "53985773" | |
}, | |
"589" : { | |
"name" : "eslcologne2015_signature_rpk_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_rpk_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_rpk_gold", | |
"sticker_material" : "cologne2015/sig_rpk_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27", | |
"tournament_player_id" : "53985773" | |
}, | |
"590" : { | |
"name" : "eslcologne2015_signature_hazed", | |
"item_name" : "#StickerKit_eslcologne2015_signature_hazed", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_hazed", | |
"sticker_material" : "cologne2015/sig_hazed", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "30305781" | |
}, | |
"591" : { | |
"name" : "eslcologne2015_signature_hazed_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_hazed_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_hazed_foil", | |
"sticker_material" : "cologne2015/sig_hazed_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "30305781" | |
}, | |
"592" : { | |
"name" : "eslcologne2015_signature_hazed_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_hazed_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_hazed_gold", | |
"sticker_material" : "cologne2015/sig_hazed_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "30305781" | |
}, | |
"593" : { | |
"name" : "eslcologne2015_signature_fns", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fns", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fns", | |
"sticker_material" : "cologne2015/sig_fns", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "17564706" | |
}, | |
"594" : { | |
"name" : "eslcologne2015_signature_fns_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fns_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fns_foil", | |
"sticker_material" : "cologne2015/sig_fns_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "17564706" | |
}, | |
"595" : { | |
"name" : "eslcologne2015_signature_fns_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_fns_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_fns_gold", | |
"sticker_material" : "cologne2015/sig_fns_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "17564706" | |
}, | |
"596" : { | |
"name" : "eslcologne2015_signature_jdm64", | |
"item_name" : "#StickerKit_eslcologne2015_signature_jdm64", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_jdm64", | |
"sticker_material" : "cologne2015/sig_jdm64", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "7223652" | |
}, | |
"597" : { | |
"name" : "eslcologne2015_signature_jdm64_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_jdm64_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_jdm64_foil", | |
"sticker_material" : "cologne2015/sig_jdm64_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "7223652" | |
}, | |
"598" : { | |
"name" : "eslcologne2015_signature_jdm64_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_jdm64_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_jdm64_gold", | |
"sticker_material" : "cologne2015/sig_jdm64_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "7223652" | |
}, | |
"599" : { | |
"name" : "eslcologne2015_signature_reltuc", | |
"item_name" : "#StickerKit_eslcologne2015_signature_reltuc", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_reltuc", | |
"sticker_material" : "cologne2015/sig_reltuc", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "518760" | |
}, | |
"600" : { | |
"name" : "eslcologne2015_signature_reltuc_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_reltuc_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_reltuc_foil", | |
"sticker_material" : "cologne2015/sig_reltuc_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "518760" | |
}, | |
"601" : { | |
"name" : "eslcologne2015_signature_reltuc_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_reltuc_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_reltuc_gold", | |
"sticker_material" : "cologne2015/sig_reltuc_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "518760" | |
}, | |
"602" : { | |
"name" : "eslcologne2015_signature_tarik", | |
"item_name" : "#StickerKit_eslcologne2015_signature_tarik", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_tarik", | |
"sticker_material" : "cologne2015/sig_tarik", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "18216247" | |
}, | |
"603" : { | |
"name" : "eslcologne2015_signature_tarik_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_tarik_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_tarik_foil", | |
"sticker_material" : "cologne2015/sig_tarik_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "18216247" | |
}, | |
"604" : { | |
"name" : "eslcologne2015_signature_tarik_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_tarik_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_tarik_gold", | |
"sticker_material" : "cologne2015/sig_tarik_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "18216247" | |
}, | |
"605" : { | |
"name" : "eslcologne2015_signature_nothing", | |
"item_name" : "#StickerKit_eslcologne2015_signature_nothing", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_nothing", | |
"sticker_material" : "cologne2015/sig_nothing", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "755286" | |
}, | |
"606" : { | |
"name" : "eslcologne2015_signature_nothing_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_nothing_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_nothing_foil", | |
"sticker_material" : "cologne2015/sig_nothing_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "755286" | |
}, | |
"607" : { | |
"name" : "eslcologne2015_signature_nothing_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_nothing_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_nothing_gold", | |
"sticker_material" : "cologne2015/sig_nothing_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "755286" | |
}, | |
"608" : { | |
"name" : "eslcologne2015_signature_sgares", | |
"item_name" : "#StickerKit_eslcologne2015_signature_sgares", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_sgares", | |
"sticker_material" : "cologne2015/sig_sgares", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "164004" | |
}, | |
"609" : { | |
"name" : "eslcologne2015_signature_sgares_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_sgares_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_sgares_foil", | |
"sticker_material" : "cologne2015/sig_sgares_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "164004" | |
}, | |
"610" : { | |
"name" : "eslcologne2015_signature_sgares_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_sgares_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_sgares_gold", | |
"sticker_material" : "cologne2015/sig_sgares_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "164004" | |
}, | |
"611" : { | |
"name" : "eslcologne2015_signature_shroud", | |
"item_name" : "#StickerKit_eslcologne2015_signature_shroud", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_shroud", | |
"sticker_material" : "cologne2015/sig_shroud", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "4515926" | |
}, | |
"612" : { | |
"name" : "eslcologne2015_signature_shroud_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_shroud_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_shroud_foil", | |
"sticker_material" : "cologne2015/sig_shroud_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "4515926" | |
}, | |
"613" : { | |
"name" : "eslcologne2015_signature_shroud_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_shroud_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_shroud_gold", | |
"sticker_material" : "cologne2015/sig_shroud_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "4515926" | |
}, | |
"614" : { | |
"name" : "eslcologne2015_signature_freakazoid", | |
"item_name" : "#StickerKit_eslcologne2015_signature_freakazoid", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_freakazoid", | |
"sticker_material" : "cologne2015/sig_freakazoid", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "16883071" | |
}, | |
"615" : { | |
"name" : "eslcologne2015_signature_freakazoid_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_freakazoid_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_freakazoid_foil", | |
"sticker_material" : "cologne2015/sig_freakazoid_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "16883071" | |
}, | |
"616" : { | |
"name" : "eslcologne2015_signature_freakazoid_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_freakazoid_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_freakazoid_gold", | |
"sticker_material" : "cologne2015/sig_freakazoid_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "16883071" | |
}, | |
"617" : { | |
"name" : "eslcologne2015_signature_skadoodle", | |
"item_name" : "#StickerKit_eslcologne2015_signature_skadoodle", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_skadoodle", | |
"sticker_material" : "cologne2015/sig_skadoodle", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "21075725" | |
}, | |
"618" : { | |
"name" : "eslcologne2015_signature_skadoodle_foil", | |
"item_name" : "#StickerKit_eslcologne2015_signature_skadoodle_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_skadoodle_foil", | |
"sticker_material" : "cologne2015/sig_skadoodle_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "21075725" | |
}, | |
"619" : { | |
"name" : "eslcologne2015_signature_skadoodle_gold", | |
"item_name" : "#StickerKit_eslcologne2015_signature_skadoodle_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_signature_skadoodle_gold", | |
"sticker_material" : "cologne2015/sig_skadoodle_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52", | |
"tournament_player_id" : "21075725" | |
}, | |
"620" : { | |
"name" : "eslcologne2015_team_fnatic", | |
"item_name" : "#StickerKit_eslcologne2015_team_fnatic", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_fnatic", | |
"sticker_material" : "cologne2015/fnatic", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6" | |
}, | |
"621" : { | |
"name" : "eslcologne2015_team_fnatic_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_fnatic_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_fnatic_foil", | |
"sticker_material" : "cologne2015/fnatic_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6" | |
}, | |
"622" : { | |
"name" : "eslcologne2015_team_fnatic_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_fnatic_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_fnatic_gold", | |
"sticker_material" : "cologne2015/fnatic_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "6" | |
}, | |
"623" : { | |
"name" : "eslcologne2015_team_virtuspro", | |
"item_name" : "#StickerKit_eslcologne2015_team_virtuspro", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_virtuspro", | |
"sticker_material" : "cologne2015/virtuspro", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31" | |
}, | |
"624" : { | |
"name" : "eslcologne2015_team_virtuspro_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_virtuspro_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_virtuspro_foil", | |
"sticker_material" : "cologne2015/virtuspro_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31" | |
}, | |
"625" : { | |
"name" : "eslcologne2015_team_virtuspro_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_virtuspro_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_virtuspro_gold", | |
"sticker_material" : "cologne2015/virtuspro_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "31" | |
}, | |
"626" : { | |
"name" : "eslcologne2015_team_mousesports", | |
"item_name" : "#StickerKit_eslcologne2015_team_mousesports", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_mousesports", | |
"sticker_material" : "cologne2015/mousesports", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29" | |
}, | |
"627" : { | |
"name" : "eslcologne2015_team_mousesports_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_mousesports_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_mousesports_foil", | |
"sticker_material" : "cologne2015/mousesports_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29" | |
}, | |
"628" : { | |
"name" : "eslcologne2015_team_mousesports_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_mousesports_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_mousesports_gold", | |
"sticker_material" : "cologne2015/mousesports_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "29" | |
}, | |
"629" : { | |
"name" : "eslcologne2015_team_navi", | |
"item_name" : "#StickerKit_eslcologne2015_team_navi", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_navi", | |
"sticker_material" : "cologne2015/navi", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12" | |
}, | |
"630" : { | |
"name" : "eslcologne2015_team_navi_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_navi_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_navi_foil", | |
"sticker_material" : "cologne2015/navi_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12" | |
}, | |
"631" : { | |
"name" : "eslcologne2015_team_navi_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_navi_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_navi_gold", | |
"sticker_material" : "cologne2015/navi_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "12" | |
}, | |
"632" : { | |
"name" : "eslcologne2015_team_renegades", | |
"item_name" : "#StickerKit_eslcologne2015_team_renegades", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_renegades", | |
"sticker_material" : "cologne2015/renegades", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53" | |
}, | |
"633" : { | |
"name" : "eslcologne2015_team_renegades_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_renegades_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_renegades_foil", | |
"sticker_material" : "cologne2015/renegades_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53" | |
}, | |
"634" : { | |
"name" : "eslcologne2015_team_renegades_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_renegades_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_renegades_gold", | |
"sticker_material" : "cologne2015/renegades_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "53" | |
}, | |
"635" : { | |
"name" : "eslcologne2015_team_kinguin", | |
"item_name" : "#StickerKit_eslcologne2015_team_kinguin", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_kinguin", | |
"sticker_material" : "cologne2015/kinguin", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55" | |
}, | |
"636" : { | |
"name" : "eslcologne2015_team_kinguin_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_kinguin_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_kinguin_foil", | |
"sticker_material" : "cologne2015/kinguin_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55" | |
}, | |
"637" : { | |
"name" : "eslcologne2015_team_kinguin_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_kinguin_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_kinguin_gold", | |
"sticker_material" : "cologne2015/kinguin_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "55" | |
}, | |
"638" : { | |
"name" : "eslcologne2015_team_ebettle", | |
"item_name" : "#StickerKit_eslcologne2015_team_ebettle", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_ebettle", | |
"sticker_material" : "cologne2015/ebettle", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56" | |
}, | |
"639" : { | |
"name" : "eslcologne2015_team_ebettle_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_ebettle_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_ebettle_foil", | |
"sticker_material" : "cologne2015/ebettle_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56" | |
}, | |
"640" : { | |
"name" : "eslcologne2015_team_ebettle_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_ebettle_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_ebettle_gold", | |
"sticker_material" : "cologne2015/ebettle_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "56" | |
}, | |
"641" : { | |
"name" : "eslcologne2015_team_cloud9", | |
"item_name" : "#StickerKit_eslcologne2015_team_cloud9", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_cloud9", | |
"sticker_material" : "cologne2015/cloud9", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52" | |
}, | |
"642" : { | |
"name" : "eslcologne2015_team_cloud9_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_cloud9_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_cloud9_foil", | |
"sticker_material" : "cologne2015/cloud9_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52" | |
}, | |
"643" : { | |
"name" : "eslcologne2015_team_cloud9_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_cloud9_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_cloud9_gold", | |
"sticker_material" : "cologne2015/cloud9_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "52" | |
}, | |
"644" : { | |
"name" : "eslcologne2015_team_ninjasinpyjamas", | |
"item_name" : "#StickerKit_eslcologne2015_team_ninjasinpyjamas", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas", | |
"sticker_material" : "cologne2015/ninjasinpyjamas", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1" | |
}, | |
"645" : { | |
"name" : "eslcologne2015_team_ninjasinpyjamas_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_ninjasinpyjamas_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas_foil", | |
"sticker_material" : "cologne2015/ninjasinpyjamas_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1" | |
}, | |
"646" : { | |
"name" : "eslcologne2015_team_ninjasinpyjamas_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_ninjasinpyjamas_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_ninjasinpyjamas_gold", | |
"sticker_material" : "cologne2015/ninjasinpyjamas_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "1" | |
}, | |
"647" : { | |
"name" : "eslcologne2015_team_envyus", | |
"item_name" : "#StickerKit_eslcologne2015_team_envyus", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_envyus", | |
"sticker_material" : "cologne2015/envyus", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46" | |
}, | |
"648" : { | |
"name" : "eslcologne2015_team_envyus_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_envyus_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_envyus_foil", | |
"sticker_material" : "cologne2015/envyus_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46" | |
}, | |
"649" : { | |
"name" : "eslcologne2015_team_envyus_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_envyus_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_envyus_gold", | |
"sticker_material" : "cologne2015/envyus_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "46" | |
}, | |
"650" : { | |
"name" : "eslcologne2015_team_luminositygaming", | |
"item_name" : "#StickerKit_eslcologne2015_team_luminositygaming", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_luminositygaming", | |
"sticker_material" : "cologne2015/luminositygaming", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57" | |
}, | |
"651" : { | |
"name" : "eslcologne2015_team_luminositygaming_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_luminositygaming_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_luminositygaming_foil", | |
"sticker_material" : "cologne2015/luminositygaming_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57" | |
}, | |
"652" : { | |
"name" : "eslcologne2015_team_luminositygaming_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_luminositygaming_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_luminositygaming_gold", | |
"sticker_material" : "cologne2015/luminositygaming_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "57" | |
}, | |
"653" : { | |
"name" : "eslcologne2015_team_solomid", | |
"item_name" : "#StickerKit_eslcologne2015_team_solomid", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_solomid", | |
"sticker_material" : "cologne2015/solomid", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58" | |
}, | |
"654" : { | |
"name" : "eslcologne2015_team_solomid_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_solomid_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_solomid_foil", | |
"sticker_material" : "cologne2015/solomid_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58" | |
}, | |
"655" : { | |
"name" : "eslcologne2015_team_solomid_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_solomid_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_solomid_gold", | |
"sticker_material" : "cologne2015/solomid_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "58" | |
}, | |
"656" : { | |
"name" : "eslcologne2015_team_teamimmunity", | |
"item_name" : "#StickerKit_eslcologne2015_team_teamimmunity", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_teamimmunity", | |
"sticker_material" : "cologne2015/teamimmunity", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54" | |
}, | |
"657" : { | |
"name" : "eslcologne2015_team_teamimmunity_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_teamimmunity_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_teamimmunity_foil", | |
"sticker_material" : "cologne2015/teamimmunity_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54" | |
}, | |
"658" : { | |
"name" : "eslcologne2015_team_teamimmunity_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_teamimmunity_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_teamimmunity_gold", | |
"sticker_material" : "cologne2015/teamimmunity_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "54" | |
}, | |
"659" : { | |
"name" : "eslcologne2015_team_flipside", | |
"item_name" : "#StickerKit_eslcologne2015_team_flipside", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_flipside", | |
"sticker_material" : "cologne2015/flipside", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43" | |
}, | |
"660" : { | |
"name" : "eslcologne2015_team_flipside_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_flipside_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_flipside_foil", | |
"sticker_material" : "cologne2015/flipside_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43" | |
}, | |
"661" : { | |
"name" : "eslcologne2015_team_flipside_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_flipside_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_flipside_gold", | |
"sticker_material" : "cologne2015/flipside_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "43" | |
}, | |
"662" : { | |
"name" : "eslcologne2015_team_titan", | |
"item_name" : "#StickerKit_eslcologne2015_team_titan", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_titan", | |
"sticker_material" : "cologne2015/titan", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27" | |
}, | |
"663" : { | |
"name" : "eslcologne2015_team_titan_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_titan_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_titan_foil", | |
"sticker_material" : "cologne2015/titan_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27" | |
}, | |
"664" : { | |
"name" : "eslcologne2015_team_titan_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_titan_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_titan_gold", | |
"sticker_material" : "cologne2015/titan_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "27" | |
}, | |
"665" : { | |
"name" : "eslcologne2015_team_clg", | |
"item_name" : "#StickerKit_eslcologne2015_team_clg", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_clg", | |
"sticker_material" : "cologne2015/clg", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49" | |
}, | |
"666" : { | |
"name" : "eslcologne2015_team_clg_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_clg_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_clg_foil", | |
"sticker_material" : "cologne2015/clg_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49" | |
}, | |
"667" : { | |
"name" : "eslcologne2015_team_clg_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_clg_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_clg_gold", | |
"sticker_material" : "cologne2015/clg_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7", | |
"tournament_team_id" : "49" | |
}, | |
"668" : { | |
"name" : "eslcologne2015_team_esl", | |
"item_name" : "#StickerKit_eslcologne2015_team_esl", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_esl", | |
"sticker_material" : "cologne2015/esl", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "7" | |
}, | |
"669" : { | |
"name" : "eslcologne2015_team_esl_foil", | |
"item_name" : "#StickerKit_eslcologne2015_team_esl_foil", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_esl_foil", | |
"sticker_material" : "cologne2015/esl_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7" | |
}, | |
"670" : { | |
"name" : "eslcologne2015_team_esl_gold", | |
"item_name" : "#StickerKit_eslcologne2015_team_esl_gold", | |
"description_string" : "#StickerKit_desc_eslcologne2015_team_esl_gold", | |
"sticker_material" : "cologne2015/esl_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "7" | |
}, | |
"671" : { | |
"name" : "cluj2015_signature_reltuc", | |
"item_name" : "#StickerKit_cluj2015_signature_reltuc", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_reltuc", | |
"sticker_material" : "cluj2015/sig_reltuc", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "518760" | |
}, | |
"672" : { | |
"name" : "cluj2015_signature_reltuc_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_reltuc_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_reltuc_foil", | |
"sticker_material" : "cluj2015/sig_reltuc_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "518760" | |
}, | |
"673" : { | |
"name" : "cluj2015_signature_reltuc_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_reltuc_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_reltuc_gold", | |
"sticker_material" : "cluj2015/sig_reltuc_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "518760" | |
}, | |
"674" : { | |
"name" : "cluj2015_signature_fns", | |
"item_name" : "#StickerKit_cluj2015_signature_fns", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fns", | |
"sticker_material" : "cluj2015/sig_fns", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "17564706" | |
}, | |
"675" : { | |
"name" : "cluj2015_signature_fns_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_fns_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fns_foil", | |
"sticker_material" : "cluj2015/sig_fns_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "17564706" | |
}, | |
"676" : { | |
"name" : "cluj2015_signature_fns_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_fns_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fns_gold", | |
"sticker_material" : "cluj2015/sig_fns_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "17564706" | |
}, | |
"677" : { | |
"name" : "cluj2015_signature_hazed", | |
"item_name" : "#StickerKit_cluj2015_signature_hazed", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_hazed", | |
"sticker_material" : "cluj2015/sig_hazed", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "30305781" | |
}, | |
"678" : { | |
"name" : "cluj2015_signature_hazed_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_hazed_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_hazed_foil", | |
"sticker_material" : "cluj2015/sig_hazed_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "30305781" | |
}, | |
"679" : { | |
"name" : "cluj2015_signature_hazed_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_hazed_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_hazed_gold", | |
"sticker_material" : "cluj2015/sig_hazed_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "30305781" | |
}, | |
"680" : { | |
"name" : "cluj2015_signature_jdm64", | |
"item_name" : "#StickerKit_cluj2015_signature_jdm64", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_jdm64", | |
"sticker_material" : "cluj2015/sig_jdm64", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "7223652" | |
}, | |
"681" : { | |
"name" : "cluj2015_signature_jdm64_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_jdm64_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_jdm64_foil", | |
"sticker_material" : "cluj2015/sig_jdm64_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "7223652" | |
}, | |
"682" : { | |
"name" : "cluj2015_signature_jdm64_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_jdm64_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_jdm64_gold", | |
"sticker_material" : "cluj2015/sig_jdm64_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "7223652" | |
}, | |
"683" : { | |
"name" : "cluj2015_signature_tarik", | |
"item_name" : "#StickerKit_cluj2015_signature_tarik", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_tarik", | |
"sticker_material" : "cluj2015/sig_tarik", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "18216247" | |
}, | |
"684" : { | |
"name" : "cluj2015_signature_tarik_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_tarik_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_tarik_foil", | |
"sticker_material" : "cluj2015/sig_tarik_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "18216247" | |
}, | |
"685" : { | |
"name" : "cluj2015_signature_tarik_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_tarik_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_tarik_gold", | |
"sticker_material" : "cluj2015/sig_tarik_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "49", | |
"tournament_player_id" : "18216247" | |
}, | |
"686" : { | |
"name" : "cluj2015_signature_freakazoid", | |
"item_name" : "#StickerKit_cluj2015_signature_freakazoid", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_freakazoid", | |
"sticker_material" : "cluj2015/sig_freakazoid", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "16883071" | |
}, | |
"687" : { | |
"name" : "cluj2015_signature_freakazoid_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_freakazoid_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_freakazoid_foil", | |
"sticker_material" : "cluj2015/sig_freakazoid_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "16883071" | |
}, | |
"688" : { | |
"name" : "cluj2015_signature_freakazoid_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_freakazoid_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_freakazoid_gold", | |
"sticker_material" : "cluj2015/sig_freakazoid_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "16883071" | |
}, | |
"689" : { | |
"name" : "cluj2015_signature_sgares", | |
"item_name" : "#StickerKit_cluj2015_signature_sgares", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_sgares", | |
"sticker_material" : "cluj2015/sig_sgares", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "164004" | |
}, | |
"690" : { | |
"name" : "cluj2015_signature_sgares_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_sgares_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_sgares_foil", | |
"sticker_material" : "cluj2015/sig_sgares_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "164004" | |
}, | |
"691" : { | |
"name" : "cluj2015_signature_sgares_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_sgares_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_sgares_gold", | |
"sticker_material" : "cluj2015/sig_sgares_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "164004" | |
}, | |
"692" : { | |
"name" : "cluj2015_signature_shroud", | |
"item_name" : "#StickerKit_cluj2015_signature_shroud", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_shroud", | |
"sticker_material" : "cluj2015/sig_shroud", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "4515926" | |
}, | |
"693" : { | |
"name" : "cluj2015_signature_shroud_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_shroud_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_shroud_foil", | |
"sticker_material" : "cluj2015/sig_shroud_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "4515926" | |
}, | |
"694" : { | |
"name" : "cluj2015_signature_shroud_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_shroud_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_shroud_gold", | |
"sticker_material" : "cluj2015/sig_shroud_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "4515926" | |
}, | |
"695" : { | |
"name" : "cluj2015_signature_skadoodle", | |
"item_name" : "#StickerKit_cluj2015_signature_skadoodle", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_skadoodle", | |
"sticker_material" : "cluj2015/sig_skadoodle", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "21075725" | |
}, | |
"696" : { | |
"name" : "cluj2015_signature_skadoodle_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_skadoodle_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_skadoodle_foil", | |
"sticker_material" : "cluj2015/sig_skadoodle_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "21075725" | |
}, | |
"697" : { | |
"name" : "cluj2015_signature_skadoodle_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_skadoodle_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_skadoodle_gold", | |
"sticker_material" : "cluj2015/sig_skadoodle_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "21075725" | |
}, | |
"698" : { | |
"name" : "cluj2015_signature_nothing", | |
"item_name" : "#StickerKit_cluj2015_signature_nothing", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_nothing", | |
"sticker_material" : "cluj2015/sig_nothing", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "755286" | |
}, | |
"699" : { | |
"name" : "cluj2015_signature_nothing_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_nothing_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_nothing_foil", | |
"sticker_material" : "cluj2015/sig_nothing_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "755286" | |
}, | |
"700" : { | |
"name" : "cluj2015_signature_nothing_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_nothing_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_nothing_gold", | |
"sticker_material" : "cluj2015/sig_nothing_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "33", | |
"tournament_player_id" : "755286" | |
}, | |
"701" : { | |
"name" : "cluj2015_signature_apex", | |
"item_name" : "#StickerKit_cluj2015_signature_apex", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_apex", | |
"sticker_material" : "cluj2015/sig_apex", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "29478439" | |
}, | |
"702" : { | |
"name" : "cluj2015_signature_apex_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_apex_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_apex_foil", | |
"sticker_material" : "cluj2015/sig_apex_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "29478439" | |
}, | |
"703" : { | |
"name" : "cluj2015_signature_apex_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_apex_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_apex_gold", | |
"sticker_material" : "cluj2015/sig_apex_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "29478439" | |
}, | |
"704" : { | |
"name" : "cluj2015_signature_happy", | |
"item_name" : "#StickerKit_cluj2015_signature_happy", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_happy", | |
"sticker_material" : "cluj2015/sig_happy", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "17975624" | |
}, | |
"705" : { | |
"name" : "cluj2015_signature_happy_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_happy_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_happy_foil", | |
"sticker_material" : "cluj2015/sig_happy_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "17975624" | |
}, | |
"706" : { | |
"name" : "cluj2015_signature_happy_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_happy_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_happy_gold", | |
"sticker_material" : "cluj2015/sig_happy_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "17975624" | |
}, | |
"707" : { | |
"name" : "cluj2015_signature_kioshima", | |
"item_name" : "#StickerKit_cluj2015_signature_kioshima", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_kioshima", | |
"sticker_material" : "cluj2015/sig_kioshima", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "40517167" | |
}, | |
"708" : { | |
"name" : "cluj2015_signature_kioshima_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_kioshima_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_kioshima_foil", | |
"sticker_material" : "cluj2015/sig_kioshima_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "40517167" | |
}, | |
"709" : { | |
"name" : "cluj2015_signature_kioshima_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_kioshima_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_kioshima_gold", | |
"sticker_material" : "cluj2015/sig_kioshima_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "40517167" | |
}, | |
"710" : { | |
"name" : "cluj2015_signature_kennys", | |
"item_name" : "#StickerKit_cluj2015_signature_kennys", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_kennys", | |
"sticker_material" : "cluj2015/sig_kennys", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "64640068" | |
}, | |
"711" : { | |
"name" : "cluj2015_signature_kennys_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_kennys_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_kennys_foil", | |
"sticker_material" : "cluj2015/sig_kennys_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "64640068" | |
}, | |
"712" : { | |
"name" : "cluj2015_signature_kennys_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_kennys_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_kennys_gold", | |
"sticker_material" : "cluj2015/sig_kennys_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "64640068" | |
}, | |
"713" : { | |
"name" : "cluj2015_signature_nbk", | |
"item_name" : "#StickerKit_cluj2015_signature_nbk", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_nbk", | |
"sticker_material" : "cluj2015/sig_nbk", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "444845" | |
}, | |
"714" : { | |
"name" : "cluj2015_signature_nbk_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_nbk_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_nbk_foil", | |
"sticker_material" : "cluj2015/sig_nbk_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "444845" | |
}, | |
"715" : { | |
"name" : "cluj2015_signature_nbk_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_nbk_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_nbk_gold", | |
"sticker_material" : "cluj2015/sig_nbk_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "46", | |
"tournament_player_id" : "444845" | |
}, | |
"716" : { | |
"name" : "cluj2015_signature_b1ad3", | |
"item_name" : "#StickerKit_cluj2015_signature_b1ad3", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_b1ad3", | |
"sticker_material" : "cluj2015/sig_b1ad3", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "53258137" | |
}, | |
"717" : { | |
"name" : "cluj2015_signature_b1ad3_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_b1ad3_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_b1ad3_foil", | |
"sticker_material" : "cluj2015/sig_b1ad3_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "53258137" | |
}, | |
"718" : { | |
"name" : "cluj2015_signature_b1ad3_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_b1ad3_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_b1ad3_gold", | |
"sticker_material" : "cluj2015/sig_b1ad3_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "53258137" | |
}, | |
"719" : { | |
"name" : "cluj2015_signature_bondik", | |
"item_name" : "#StickerKit_cluj2015_signature_bondik", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_bondik", | |
"sticker_material" : "cluj2015/sig_bondik", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "46918643" | |
}, | |
"720" : { | |
"name" : "cluj2015_signature_bondik_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_bondik_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_bondik_foil", | |
"sticker_material" : "cluj2015/sig_bondik_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "46918643" | |
}, | |
"721" : { | |
"name" : "cluj2015_signature_bondik_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_bondik_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_bondik_gold", | |
"sticker_material" : "cluj2015/sig_bondik_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "46918643" | |
}, | |
"722" : { | |
"name" : "cluj2015_signature_davcost", | |
"item_name" : "#StickerKit_cluj2015_signature_davcost", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_davcost", | |
"sticker_material" : "cluj2015/sig_davcost", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "20273529" | |
}, | |
"723" : { | |
"name" : "cluj2015_signature_davcost_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_davcost_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_davcost_foil", | |
"sticker_material" : "cluj2015/sig_davcost_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "20273529" | |
}, | |
"724" : { | |
"name" : "cluj2015_signature_davcost_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_davcost_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_davcost_gold", | |
"sticker_material" : "cluj2015/sig_davcost_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "20273529" | |
}, | |
"725" : { | |
"name" : "cluj2015_signature_markeloff", | |
"item_name" : "#StickerKit_cluj2015_signature_markeloff", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_markeloff", | |
"sticker_material" : "cluj2015/sig_markeloff", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "5667261" | |
}, | |
"726" : { | |
"name" : "cluj2015_signature_markeloff_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_markeloff_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_markeloff_foil", | |
"sticker_material" : "cluj2015/sig_markeloff_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "5667261" | |
}, | |
"727" : { | |
"name" : "cluj2015_signature_markeloff_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_markeloff_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_markeloff_gold", | |
"sticker_material" : "cluj2015/sig_markeloff_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "5667261" | |
}, | |
"728" : { | |
"name" : "cluj2015_signature_worldedit", | |
"item_name" : "#StickerKit_cluj2015_signature_worldedit", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_worldedit", | |
"sticker_material" : "cluj2015/sig_worldedit", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "36732188" | |
}, | |
"729" : { | |
"name" : "cluj2015_signature_worldedit_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_worldedit_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_worldedit_foil", | |
"sticker_material" : "cluj2015/sig_worldedit_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "36732188" | |
}, | |
"730" : { | |
"name" : "cluj2015_signature_worldedit_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_worldedit_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_worldedit_gold", | |
"sticker_material" : "cluj2015/sig_worldedit_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "43", | |
"tournament_player_id" : "36732188" | |
}, | |
"731" : { | |
"name" : "cluj2015_signature_flusha", | |
"item_name" : "#StickerKit_cluj2015_signature_flusha", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_flusha", | |
"sticker_material" : "cluj2015/sig_flusha", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "31082355" | |
}, | |
"732" : { | |
"name" : "cluj2015_signature_flusha_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_flusha_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_flusha_foil", | |
"sticker_material" : "cluj2015/sig_flusha_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "31082355" | |
}, | |
"733" : { | |
"name" : "cluj2015_signature_flusha_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_flusha_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_flusha_gold", | |
"sticker_material" : "cluj2015/sig_flusha_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "31082355" | |
}, | |
"734" : { | |
"name" : "cluj2015_signature_jw", | |
"item_name" : "#StickerKit_cluj2015_signature_jw", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_jw", | |
"sticker_material" : "cluj2015/sig_jw", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71288472" | |
}, | |
"735" : { | |
"name" : "cluj2015_signature_jw_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_jw_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_jw_foil", | |
"sticker_material" : "cluj2015/sig_jw_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71288472" | |
}, | |
"736" : { | |
"name" : "cluj2015_signature_jw_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_jw_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_jw_gold", | |
"sticker_material" : "cluj2015/sig_jw_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71288472" | |
}, | |
"737" : { | |
"name" : "cluj2015_signature_krimz", | |
"item_name" : "#StickerKit_cluj2015_signature_krimz", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_krimz", | |
"sticker_material" : "cluj2015/sig_krimz", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71385856" | |
}, | |
"738" : { | |
"name" : "cluj2015_signature_krimz_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_krimz_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_krimz_foil", | |
"sticker_material" : "cluj2015/sig_krimz_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71385856" | |
}, | |
"739" : { | |
"name" : "cluj2015_signature_krimz_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_krimz_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_krimz_gold", | |
"sticker_material" : "cluj2015/sig_krimz_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "71385856" | |
}, | |
"740" : { | |
"name" : "cluj2015_signature_olofmeister", | |
"item_name" : "#StickerKit_cluj2015_signature_olofmeister", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_olofmeister", | |
"sticker_material" : "cluj2015/sig_olofmeister", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "28361465" | |
}, | |
"741" : { | |
"name" : "cluj2015_signature_olofmeister_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_olofmeister_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_olofmeister_foil", | |
"sticker_material" : "cluj2015/sig_olofmeister_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "28361465" | |
}, | |
"742" : { | |
"name" : "cluj2015_signature_olofmeister_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_olofmeister_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_olofmeister_gold", | |
"sticker_material" : "cluj2015/sig_olofmeister_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "28361465" | |
}, | |
"743" : { | |
"name" : "cluj2015_signature_pronax", | |
"item_name" : "#StickerKit_cluj2015_signature_pronax", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_pronax", | |
"sticker_material" : "cluj2015/sig_pronax", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "9419182" | |
}, | |
"744" : { | |
"name" : "cluj2015_signature_pronax_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_pronax_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_pronax_foil", | |
"sticker_material" : "cluj2015/sig_pronax_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "9419182" | |
}, | |
"745" : { | |
"name" : "cluj2015_signature_pronax_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_pronax_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_pronax_gold", | |
"sticker_material" : "cluj2015/sig_pronax_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "6", | |
"tournament_player_id" : "9419182" | |
}, | |
"746" : { | |
"name" : "cluj2015_signature_dennis", | |
"item_name" : "#StickerKit_cluj2015_signature_dennis", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_dennis", | |
"sticker_material" : "cluj2015/sig_dennis", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "108076825" | |
}, | |
"747" : { | |
"name" : "cluj2015_signature_dennis_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_dennis_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_dennis_foil", | |
"sticker_material" : "cluj2015/sig_dennis_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "108076825" | |
}, | |
"748" : { | |
"name" : "cluj2015_signature_dennis_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_dennis_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_dennis_gold", | |
"sticker_material" : "cluj2015/sig_dennis_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "108076825" | |
}, | |
"749" : { | |
"name" : "cluj2015_signature_fox", | |
"item_name" : "#StickerKit_cluj2015_signature_fox", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fox", | |
"sticker_material" : "cluj2015/sig_fox", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "1939536" | |
}, | |
"750" : { | |
"name" : "cluj2015_signature_fox_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_fox_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fox_foil", | |
"sticker_material" : "cluj2015/sig_fox_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "1939536" | |
}, | |
"751" : { | |
"name" : "cluj2015_signature_fox_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_fox_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fox_gold", | |
"sticker_material" : "cluj2015/sig_fox_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "1939536" | |
}, | |
"752" : { | |
"name" : "cluj2015_signature_maikelele", | |
"item_name" : "#StickerKit_cluj2015_signature_maikelele", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_maikelele", | |
"sticker_material" : "cluj2015/sig_maikelele", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "925972" | |
}, | |
"753" : { | |
"name" : "cluj2015_signature_maikelele_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_maikelele_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_maikelele_foil", | |
"sticker_material" : "cluj2015/sig_maikelele_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "925972" | |
}, | |
"754" : { | |
"name" : "cluj2015_signature_maikelele_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_maikelele_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_maikelele_gold", | |
"sticker_material" : "cluj2015/sig_maikelele_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "925972" | |
}, | |
"755" : { | |
"name" : "cluj2015_signature_rain", | |
"item_name" : "#StickerKit_cluj2015_signature_rain", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_rain", | |
"sticker_material" : "cluj2015/sig_rain", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "37085479" | |
}, | |
"756" : { | |
"name" : "cluj2015_signature_rain_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_rain_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_rain_foil", | |
"sticker_material" : "cluj2015/sig_rain_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "37085479" | |
}, | |
"757" : { | |
"name" : "cluj2015_signature_rain_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_rain_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_rain_gold", | |
"sticker_material" : "cluj2015/sig_rain_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "37085479" | |
}, | |
"758" : { | |
"name" : "cluj2015_signature_jkaem", | |
"item_name" : "#StickerKit_cluj2015_signature_jkaem", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_jkaem", | |
"sticker_material" : "cluj2015/sig_jkaem", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "42442914" | |
}, | |
"759" : { | |
"name" : "cluj2015_signature_jkaem_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_jkaem_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_jkaem_foil", | |
"sticker_material" : "cluj2015/sig_jkaem_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "42442914" | |
}, | |
"760" : { | |
"name" : "cluj2015_signature_jkaem_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_jkaem_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_jkaem_gold", | |
"sticker_material" : "cluj2015/sig_jkaem_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "59", | |
"tournament_player_id" : "42442914" | |
}, | |
"761" : { | |
"name" : "cluj2015_signature_boltz", | |
"item_name" : "#StickerKit_cluj2015_signature_boltz", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_boltz", | |
"sticker_material" : "cluj2015/sig_boltz", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "58113672" | |
}, | |
"762" : { | |
"name" : "cluj2015_signature_boltz_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_boltz_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_boltz_foil", | |
"sticker_material" : "cluj2015/sig_boltz_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "58113672" | |
}, | |
"763" : { | |
"name" : "cluj2015_signature_boltz_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_boltz_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_boltz_gold", | |
"sticker_material" : "cluj2015/sig_boltz_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "58113672" | |
}, | |
"764" : { | |
"name" : "cluj2015_signature_coldzera", | |
"item_name" : "#StickerKit_cluj2015_signature_coldzera", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_coldzera", | |
"sticker_material" : "cluj2015/sig_coldzera", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "79720871" | |
}, | |
"765" : { | |
"name" : "cluj2015_signature_coldzera_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_coldzera_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_coldzera_foil", | |
"sticker_material" : "cluj2015/sig_coldzera_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "79720871" | |
}, | |
"766" : { | |
"name" : "cluj2015_signature_coldzera_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_coldzera_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_coldzera_gold", | |
"sticker_material" : "cluj2015/sig_coldzera_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "79720871" | |
}, | |
"767" : { | |
"name" : "cluj2015_signature_fallen", | |
"item_name" : "#StickerKit_cluj2015_signature_fallen", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fallen", | |
"sticker_material" : "cluj2015/sig_fallen", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "424467" | |
}, | |
"768" : { | |
"name" : "cluj2015_signature_fallen_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_fallen_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fallen_foil", | |
"sticker_material" : "cluj2015/sig_fallen_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "424467" | |
}, | |
"769" : { | |
"name" : "cluj2015_signature_fallen_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_fallen_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fallen_gold", | |
"sticker_material" : "cluj2015/sig_fallen_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "424467" | |
}, | |
"770" : { | |
"name" : "cluj2015_signature_fer", | |
"item_name" : "#StickerKit_cluj2015_signature_fer", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fer", | |
"sticker_material" : "cluj2015/sig_fer", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "38921219" | |
}, | |
"771" : { | |
"name" : "cluj2015_signature_fer_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_fer_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fer_foil", | |
"sticker_material" : "cluj2015/sig_fer_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "38921219" | |
}, | |
"772" : { | |
"name" : "cluj2015_signature_fer_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_fer_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_fer_gold", | |
"sticker_material" : "cluj2015/sig_fer_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "38921219" | |
}, | |
"773" : { | |
"name" : "cluj2015_signature_steel", | |
"item_name" : "#StickerKit_cluj2015_signature_steel", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_steel", | |
"sticker_material" : "cluj2015/sig_steel", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "54512474" | |
}, | |
"774" : { | |
"name" : "cluj2015_signature_steel_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_steel_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_steel_foil", | |
"sticker_material" : "cluj2015/sig_steel_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "54512474" | |
}, | |
"775" : { | |
"name" : "cluj2015_signature_steel_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_steel_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_steel_gold", | |
"sticker_material" : "cluj2015/sig_steel_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "57", | |
"tournament_player_id" : "54512474" | |
}, | |
"776" : { | |
"name" : "cluj2015_signature_chrisj", | |
"item_name" : "#StickerKit_cluj2015_signature_chrisj", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_chrisj", | |
"sticker_material" : "cluj2015/sig_chrisj", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "28273376" | |
}, | |
"777" : { | |
"name" : "cluj2015_signature_chrisj_foil", | |
"item_name" : "#StickerKit_cluj2015_signature_chrisj_foil", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_chrisj_foil", | |
"sticker_material" : "cluj2015/sig_chrisj_foil", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "28273376" | |
}, | |
"778" : { | |
"name" : "cluj2015_signature_chrisj_gold", | |
"item_name" : "#StickerKit_cluj2015_signature_chrisj_gold", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_chrisj_gold", | |
"sticker_material" : "cluj2015/sig_chrisj_gold", | |
"item_rarity" : "legendary", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "28273376" | |
}, | |
"779" : { | |
"name" : "cluj2015_signature_denis", | |
"item_name" : "#StickerKit_cluj2015_signature_denis", | |
"description_string" : "#StickerKit_desc_cluj2015_signature_denis", | |
"sticker_material" : "cluj2015/sig_denis", | |
"item_rarity" : "rare", | |
"tournament_event_id" : "8", | |
"tournament_team_id" : "29", | |
"tournament_player_id" : "31185376" | |
}, | |
"780" : { | |
"name" : "cluj2015_signature_denis_foil", | |
"item_name" : "#StickerKit_cluj2015_signature |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment