# List of packages to track
# https://store.steampowered.com/sub/:packageid:
packages = {
"469": "The Orange Box",
"7586": "Potato Sack",
"18406": "Total War Grand Master Collection"
}
# List of apps to track
# https://store.steampowered.com/app/:appid:
apps = {
# TEAM FORTRESS
"20": "Team Fortress Classic",
"440": "Team Fortress 2",
"629330": "Fight Songs: The Music Of Team Fortress 2",
#
# RELEVANT GAMES
#
"10": "Counter-Strike", # Related to CS:GO, relevancy is debatable
"70": "Half-Life", # History-making, duh!
"400": "Portal", # Related to Portal 2, relevancy is debatable
"500": "Left 4 Dead", # Related to Left 4 Dead 2, relevancy is debatable
"1840": "Source Filmmaker", # See Source Filmmaker
"4000": "Garry's Mod", # History-making
"250820": "SteamVR", # See SteamVR wearables
"253530": "Fortress Forever", # Fan game
#
# PROMO ITEMS
#
"550": "Left 4 Dead 2",
"570": "Dota 2",
"620": "Portal 2",
"630": "Alien Swarm",
"730": "Counter-Strike: Global Offensive", # Don't change to CS2, please!
"1250": "Killing Floor",
"2210": "Quake IV",
"3590": "Plants vs. Zombies GOTY Edition",
"8870": "BioShock Infinite",
"9200": "RAGE",
"20920": "The Witcher 2: Assassins of Kings Enhanced Edition",
"22350": "BRINK",
"22380": "Fallout: New Vegas",
"22600": "Worms Reloaded",
"28050": "Deus Ex: Human Revolution",
"31280": "Poker Night at the Inventory",
"33460": "From Dust",
"34330": "Total War: SHOGUN 2",
"35450": "Red Orchestra 2: Heroes of Stalingrad with Rising Storm",
"35720": "Trine 2",
"38600": "Faerie Solitaire",
"38830": "CrimeCraft GangWars",
"39120": "RIFT",
"48720": "Mount & Blade: With Fire & Sword",
"49470": "Magic: The Gathering - Duels of the Planeswalkers 2012",
"55100": "Homefront",
"55110": "Red Faction: Armageddon",
"55230": "Saints Row: The Third",
"55300": "Company of Heroes 2",
"57690": "Tropico 4: Steam Special Edition",
"57740": "Jagged Alliance - Back in Action",
"63200": "Monday Night Combat",
"71270": "Football Manager 2012",
"72850": "The Elder Scrolls V: Skyrim",
"73031": "Magicka: Nippon",
"92500": "PC Gamer",
"92800": "SpaceChem",
"96400": "Shoot Many Robots",
"99900": "Spiral Knights",
"102500": "Kingdoms of Amalur: Reckoning™",
"102700": "Alliance of Valiant Arms",
"104700": "Super Monday Night Combat",
"200010": "Quantum Conundrum",
"200510": "XCOM: Enemy Unknown",
"201810": "Wolfenstein: The New Order",
"201870": "Assassin's Creed Revelations",
"203140": "Hitman: Absolution",
"203160": "Tomb Raider",
"204300": "Awesomenauts",
"205100": "Dishonored",
"206190": "Gunpoint",
"208650": "Batman™: Arkham Knight",
"209270": "Hero Academy",
"212630": "Tom Clancy's Ghost Recon: Future Soldier",
"214490": "Alien: Isolation",
"214933": "BioShock Infinite - Season Pass",
"214950": "Total War: ROME II",
"218060": "BIT.TRIP Presents... Runner2: Future Legend of Rhythm Alien",
"218680": "Scribblenauts Unlimited",
"219740": "Don't Starve",
"221810": "The Cave",
"224480": "Octodad: Dadliest Catch",
"225260": "Brütal Legend",
"233720": "Surgeon Simulator",
"234710": "Poker Night 2",
"238010": "Deus Ex: Human Revolution - Director's Cut",
"239160": "Thief",
"289690": "Lara Croft and the Temple of Osiris",
"307690": "Sleeping Dogs: Definitive Edition",
"405900": "Disgaea PC",
"901399": "Sam & Max: The Devil's Playhouse",
#
# TF2 CROSSOVER
#
"212480": "Sonic & All-Stars Racing Transformed Collection",
"327890": "I am Bread",
"334330": "FaceRig Team Fortress 2 Avatars DLC",
"435177": "IRFaceRig Team Fortress 2",
"457420": "Surgeon Simulator VR: Meet The Medic",
"480560": "RPG Maker MV - Team Fortress 2 Character Pack",
"1531604": "Evil Genius 2: Team Fortress 2 - Pyro Pack",
"3037360": "Funko Fusion - Team Fortress 2 Pack"
}
# List of currencies and their corresponding country codes and format strings
currencies = [
("brl", "br", "R$ {0}", 100.0),
("cny", "cn", "¥ {0}", 100.0),
("eur", "de", "€{0}", 100.0),
("gbp", "gb", "£{0}", 100.0),
("jpy", "jp", "¥ {0}", 100.0),
("krw", "kr", "₩ {0}", 100.0),
("pln", "pl", "{0}zł", 100.0),
("rub", "ru", "{0} ₽", 100.0),
("usd", "us", "${0}", 100.0),
]