stew 0.5.3 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +6 -6
  2. data/.gitignore +1 -0
  3. data/lib/stew.rb +6 -9
  4. data/lib/stew/community/profile.rb +2 -2
  5. data/lib/stew/community/profile_friends.rb +1 -1
  6. data/lib/stew/community/profile_game.rb +23 -6
  7. data/lib/stew/community/steam_id.rb +6 -21
  8. data/lib/stew/community/steam_id_resolver.rb +34 -0
  9. data/lib/stew/community/web_api_client.rb +29 -0
  10. data/lib/stew/community/web_client.rb +29 -0
  11. data/lib/stew/version.rb +1 -1
  12. data/spec/config.yml.example +1 -0
  13. data/spec/fixtures/profiles/76561197992917668.json +24 -0
  14. data/spec/fixtures/profiles/friends/76561197992917668.json +167 -0
  15. data/spec/fixtures/profiles/friends/76561197994486912.json +8 -0
  16. data/spec/fixtures/profiles/games/76561197992917668.json +789 -0
  17. data/spec/fixtures/profiles/games/76561197994486912.json +5 -0
  18. data/spec/fixtures/profiles/vanity/Phucked.json +6 -0
  19. data/spec/integration/community_web_api_integration_spec.rb +32 -0
  20. data/spec/lib/stew/community/profile_friends_spec.rb +3 -24
  21. data/spec/lib/stew/community/profile_game_spec.rb +20 -12
  22. data/spec/lib/stew/community/profile_games_spec.rb +2 -3
  23. data/spec/lib/stew/community/profile_spec.rb +2 -2
  24. data/spec/lib/stew/community/steam_id_resolver_spec.rb +82 -0
  25. data/spec/lib/stew/community/steam_id_spec.rb +22 -83
  26. data/spec/lib/stew/community/web_api_client_spec.rb +61 -0
  27. data/spec/lib/stew/community/web_client_spec.rb +17 -0
  28. data/spec/spec_helper.rb +12 -0
  29. data/stew.gemspec +7 -5
  30. metadata +98 -92
  31. data/lib/stew/community/community_client.rb +0 -53
  32. data/lib/stew/community/xml_client/xml_client.rb +0 -50
  33. data/lib/stew/community/xml_client/xml_client_response_friends.rb +0 -20
  34. data/lib/stew/community/xml_client/xml_client_response_games.rb +0 -20
  35. data/lib/stew/community/xml_client/xml_client_response_profile.rb +0 -14
  36. data/spec/fixtures/profiles/friends/76561197992917668.yml +0 -36
  37. data/spec/fixtures/profiles/friends/76561197994486912.yml +0 -5
  38. data/spec/fixtures/profiles/games/76561197992917668.yml +0 -616
  39. data/spec/fixtures/profiles/games/76561197994486912.yml +0 -5
  40. data/spec/integration/community_integration_spec.rb +0 -50
  41. data/spec/lib/stew/community/community_client_spec.rb +0 -118
  42. data/spec/lib/stew/community/xml_client/xml_client_spec.rb +0 -36
@@ -1,53 +0,0 @@
1
- module Stew
2
- module Community
3
- # Creation of all profile* objects.
4
- # Uses a given or default XmlClient instance to communicate with the Steam API
5
- # The main identifier for most methods is the 64-bit steam id
6
- # @example Create a Profile
7
- # Stew::CommunityClient.new.profile(76561197992917668) #=> Stew::Community::Profile
8
- #
9
- # @example Resolve a Steam Vanity name
10
- # Stew::CommunityClient.steam_id_from_vanity_name('eekon20') #=> 76561197986383225
11
- #
12
- class CommunityClient
13
- COMMUNITY_URL = 'http://steamcommunity.com'
14
- DEFAULT_BASE_PATH = 'profiles'
15
-
16
- # @deprecated Use CommunityClient.new.steam_id_from_vanity_name instead
17
- def self.steam_id_from_vanity_name(vanity_name)
18
- self.new.steam_id_from_vanity_name(vanity_name)
19
- end
20
-
21
- def initialize(opts = {})
22
- @xml_client = opts[:client] || Stew.config[:default_xml_client].new(COMMUNITY_URL)
23
- @base_path = opts[:base_path] || DEFAULT_BASE_PATH
24
- end
25
-
26
- def steam_id_from_vanity_name(vanity_name)
27
- response = XmlClientResponseProfile.new(@xml_client.get("/id/#{vanity_name}"))
28
- response.profile['steamID64'].to_i
29
- end
30
-
31
- def profile(steam_id)
32
- response = XmlClientResponseProfile.new(@xml_client.get(path(steam_id)))
33
- Community::Profile.new(response.profile)
34
- end
35
-
36
- def profile_games(steam_id)
37
- response = XmlClientResponseGames.new(@xml_client.get(path(steam_id,'games')))
38
- Community::ProfileGames.new(response.games)
39
- end
40
-
41
- def profile_friends(steam_id)
42
- response = XmlClientResponseFriends.new(@xml_client.get(path(steam_id,'friends')))
43
- Community::ProfileFriends.new(response.friends)
44
- end
45
-
46
- private
47
-
48
- def path(steam_id,command=nil)
49
- "/#{@base_path}/#{steam_id}/#{command}"
50
- end
51
- end
52
- end
53
- end
@@ -1,50 +0,0 @@
1
- module Stew
2
- module Community
3
- # Client for accessing the steam community XML api
4
- class XmlClient
5
- def initialize(uri)
6
- @connection = XmlClient.connection(uri)
7
- end
8
-
9
- # The Steam community is notorious for responding with error 503
10
- # Retries up to 10 times for the same request to compensate for this
11
- def get(path)
12
- 10.times do
13
- response = request(path)
14
- return XmlClient.parse_response(response.body) unless response.status == 503
15
- sleep 0.5
16
- end
17
- raise ServiceUnavailableError
18
- end
19
-
20
- private
21
-
22
- def request(path)
23
- @connection.get path do |req|
24
- req.params['xml'] = 1
25
- end
26
- end
27
-
28
- def self.connection(uri)
29
- Faraday.new uri do |conn|
30
- conn.response :xml, :content_type => /\bxml$/
31
- conn.request :retry
32
- conn.use FaradayMiddleware::FollowRedirects
33
- conn.adapter Faraday.default_adapter
34
- end
35
- end
36
-
37
- def self.parse_response(response)
38
- raise(ObjectNotFoundError) if response.is_a?(String)
39
- raise(ObjectNotFoundError, response['response']['error']) if response.has_key?('response')
40
- response
41
- end
42
-
43
- # Raised when the Steam community API fails to respond after 10 tries
44
- class ServiceUnavailableError < StandardError; end
45
-
46
- # Raised when the reply is malformatted or if nothing is found
47
- class ObjectNotFoundError < StandardError; end
48
- end
49
- end
50
- end
@@ -1,20 +0,0 @@
1
- module Stew
2
- module Community
3
- # A friends response from the Xml Client
4
- class XmlClientResponseFriends
5
- def initialize(response)
6
- @response = response
7
- end
8
-
9
- def friends
10
- has_friends? ? @response['friendsList']['friends']['friend'] : []
11
- end
12
-
13
- private
14
-
15
- def has_friends?
16
- !@response['friendsList']['friends'].nil?
17
- end
18
- end
19
- end
20
- end
@@ -1,20 +0,0 @@
1
- module Stew
2
- module Community
3
- # A games response from the Xml Client
4
- class XmlClientResponseGames
5
- def initialize(response)
6
- @response = response
7
- end
8
-
9
- def games
10
- has_games? ? @response['gamesList']['games']['game'] : []
11
- end
12
-
13
- private
14
-
15
- def has_games?
16
- !@response['gamesList']['games'].nil?
17
- end
18
- end
19
- end
20
- end
@@ -1,14 +0,0 @@
1
- module Stew
2
- module Community
3
- # A profile response from the Xml Client
4
- class XmlClientResponseProfile
5
- def initialize(response)
6
- @response = response
7
- end
8
-
9
- def profile
10
- @response['profile']
11
- end
12
- end
13
- end
14
- end
@@ -1,36 +0,0 @@
1
- ---
2
- friendsList:
3
- steamID64: '76561197992917668'
4
- steamID: MrCheese
5
- friends:
6
- friend:
7
- - '76561197999278598'
8
- - '76561197996738173'
9
- - '76561197986383225'
10
- - '76561198038245915'
11
- - '76561197999580320'
12
- - '76561197965950613'
13
- - '76561197989970207'
14
- - '76561198038197496'
15
- - '76561197970357192'
16
- - '76561197971313256'
17
- - '76561198005665154'
18
- - '76561197984753904'
19
- - '76561198052700918'
20
- - '76561197967840183'
21
- - '76561197990381282'
22
- - '76561197993202125'
23
- - '76561197997794911'
24
- - '76561197992896557'
25
- - '76561197969785267'
26
- - '76561198011470861'
27
- - '76561198067660255'
28
- - '76561197994132576'
29
- - '76561197993600452'
30
- - '76561197972211787'
31
- - '76561198005505133'
32
- - '76561198005611690'
33
- - '76561197973308537'
34
- - '76561198006604638'
35
- - '76561197993006661'
36
- - '76561198009417084'
@@ -1,5 +0,0 @@
1
- ---
2
- friendsList:
3
- steamID64: '76561197994486912'
4
- steamID: dkmez
5
- friends:
@@ -1,616 +0,0 @@
1
- ---
2
- gamesList:
3
- steamID64: '76561197992917668'
4
- steamID: MrCheese
5
- games:
6
- game:
7
- - appID: '211420'
8
- name: ! 'Dark Souls: Prepare to Die Edition'
9
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/211420/d293c8e38f56de2c7097b2c7a975caca49029a8b.jpg
10
- storeLink: http://steamcommunity.com/app/211420
11
- hoursLast2Weeks: '16.9'
12
- hoursOnRecord: '16.9'
13
- - appID: '207610'
14
- name: The Walking Dead
15
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/207610/6d756726214dd97c54966814d58508b86d5eabcf.jpg
16
- storeLink: http://steamcommunity.com/app/207610
17
- hoursLast2Weeks: '7.3'
18
- hoursOnRecord: '7.3'
19
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/TheWalkingDead
20
- globalStatsLink: http://steamcommunity.com/stats/TheWalkingDead/achievements/
21
- - appID: '50300'
22
- name: ! 'Spec Ops: The Line'
23
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/50300/e449c7dc5a9861cf94476de1b394640f3866ddda.jpg
24
- storeLink: http://steamcommunity.com/app/50300
25
- hoursLast2Weeks: '5.4'
26
- hoursOnRecord: '5.4'
27
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/SpecOpsTheLine
28
- globalStatsLink: http://steamcommunity.com/stats/SpecOpsTheLine/achievements/
29
- - appID: '48240'
30
- name: Anno 2070
31
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/48240/96fa0d0f7d3a2cfbd46cfbb3ec266e4fbc9c9953.jpg
32
- storeLink: http://steamcommunity.com/app/48240
33
- hoursLast2Weeks: '3.4'
34
- hoursOnRecord: '3.4'
35
- - appID: '102840'
36
- name: Shank 2
37
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/102840/eec11d103112f36876bd746854d6e8f130ea6078.jpg
38
- storeLink: http://steamcommunity.com/app/102840
39
- hoursLast2Weeks: '3.3'
40
- hoursOnRecord: '3.3'
41
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/102840
42
- globalStatsLink: http://steamcommunity.com/stats/102840/achievements/
43
- - appID: '6120'
44
- name: Shank
45
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/6120/b5938715bdb8479a24b3fc6b5c74936d160a5878.jpg
46
- storeLink: http://steamcommunity.com/app/6120
47
- hoursLast2Weeks: '3.3'
48
- hoursOnRecord: '3.3'
49
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/Shank
50
- globalStatsLink: http://steamcommunity.com/stats/Shank/achievements/
51
- - appID: '8930'
52
- name: Sid Meier's Civilization V
53
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/8930/2203f62bd1bdc75c286c13534e50f22e3bd5bb58.jpg
54
- storeLink: http://steamcommunity.com/app/8930
55
- hoursLast2Weeks: '2.2'
56
- hoursOnRecord: '9.3'
57
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/CivV
58
- globalStatsLink: http://steamcommunity.com/stats/CivV/achievements/
59
- - appID: '214560'
60
- name: Mark of the Ninja
61
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/214560/c20501309696e5bcda98e9e4f2649abc5720a1d1.jpg
62
- storeLink: http://steamcommunity.com/app/214560
63
- hoursLast2Weeks: '1.7'
64
- hoursOnRecord: '1.7'
65
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/MarkoftheNinja
66
- globalStatsLink: http://steamcommunity.com/stats/MarkoftheNinja/achievements/
67
- - appID: '218410'
68
- name: ! 'Defender''s Quest: Valley of the Forgotten'
69
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/218410/3e5786ed9ebf609dfc6e82478acaac05252a692c.jpg
70
- storeLink: http://steamcommunity.com/app/218410
71
- hoursLast2Weeks: '1.1'
72
- hoursOnRecord: '1.1'
73
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/DefendersQuestValleyoftheForgotten
74
- globalStatsLink: http://steamcommunity.com/stats/DefendersQuestValleyoftheForgotten/achievements/
75
- - appID: '570'
76
- name: Dota 2
77
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/570/d4f836839254be08d8e9dd333ecc9a01782c26d2.jpg
78
- storeLink: http://steamcommunity.com/app/570
79
- hoursLast2Weeks: '0.4'
80
- hoursOnRecord: '0.9'
81
- - appID: '212680'
82
- name: ! 'FTL: Faster Than Light'
83
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/212680/975193db5ca8cc2a4c969cea8f80d93157264ec1.jpg
84
- storeLink: http://steamcommunity.com/app/212680
85
- hoursLast2Weeks: '0.4'
86
- hoursOnRecord: '8.3'
87
- - appID: '214700'
88
- name: Thirty Flights of Loving
89
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/214700/c34d64059055264eb45fa7052d1066c40b921eff.jpg
90
- storeLink: http://steamcommunity.com/app/214700
91
- hoursLast2Weeks: '0.2'
92
- hoursOnRecord: '0.2'
93
- - appID: '92300'
94
- name: A.R.E.S.
95
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/92300/a64b7357d965739998e547df1d42ff4702d238e5.jpg
96
- storeLink: http://steamcommunity.com/app/92300
97
- hoursOnRecord: '0.3'
98
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/ARES
99
- globalStatsLink: http://steamcommunity.com/stats/ARES/achievements/
100
- - appID: '108710'
101
- name: Alan Wake
102
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/108710/0f9b6613ac50bf42639ed6a2e16e9b78e846ef0a.jpg
103
- storeLink: http://steamcommunity.com/app/108710
104
- hoursOnRecord: '9.4'
105
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/AlanWake
106
- globalStatsLink: http://steamcommunity.com/stats/AlanWake/achievements/
107
- - appID: '630'
108
- name: Alien Swarm
109
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/630/de3320a2c29b55b6f21d142dee26d9b044a29e97.jpg
110
- storeLink: http://steamcommunity.com/app/630
111
- hoursOnRecord: '5.1'
112
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/AlienSwarm
113
- globalStatsLink: http://steamcommunity.com/stats/AlienSwarm/achievements/
114
- - appID: '57300'
115
- name: ! 'Amnesia: The Dark Descent'
116
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/57300/75b8a82acfb05abda97977ac4eb5af20e0dcf01e.jpg
117
- storeLink: http://steamcommunity.com/app/57300
118
- hoursOnRecord: '8.9'
119
- - appID: '18700'
120
- name: And Yet It Moves
121
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/18700/181003daaa94da1fb275727587b970324a868c40.jpg
122
- storeLink: http://steamcommunity.com/app/18700
123
- hoursOnRecord: '0.4'
124
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/AndYetItMoves
125
- globalStatsLink: http://steamcommunity.com/stats/AndYetItMoves/achievements/
126
- - appID: '33230'
127
- name: Assassin's Creed II
128
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/33230/6d29461ee9303967cb32c2142afaf9bbdb911b6f.jpg
129
- storeLink: http://steamcommunity.com/app/33230
130
- hoursOnRecord: '8.6'
131
- - appID: '55040'
132
- name: ! 'Atom Zombie Smasher '
133
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/55040/5ef89e7f7a049c5f5fa4ade0cb712937f9bdb6eb.jpg
134
- storeLink: http://steamcommunity.com/app/55040
135
- hoursOnRecord: '0.3'
136
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/AtomZombieSmasher
137
- globalStatsLink: http://steamcommunity.com/stats/AtomZombieSmasher/achievements/
138
- - appID: '57400'
139
- name: ! 'Batman: Arkham City™'
140
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/57400/5456a41d4076244a6c593cbb260c3384493a7727.jpg
141
- storeLink: http://steamcommunity.com/app/57400
142
- hoursOnRecord: '13.5'
143
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/BatmanArkhamCity
144
- globalStatsLink: http://steamcommunity.com/stats/BatmanArkhamCity/achievements/
145
- - appID: '24960'
146
- name: ! 'Battlefield: Bad Company 2'
147
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/24960/969a07d20786b5f536122d70f2c3eedc1eca5ede.jpg
148
- storeLink: http://steamcommunity.com/app/24960
149
- hoursOnRecord: '34.1'
150
- - appID: '63710'
151
- name: BIT.TRIP RUNNER
152
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/63710/13cdddc55559cd4f47fbe970c9ad0de6bebb2f21.jpg
153
- storeLink: http://steamcommunity.com/app/63710
154
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/BitTripRunner
155
- globalStatsLink: http://steamcommunity.com/stats/BitTripRunner/achievements/
156
- - appID: '8980'
157
- name: Borderlands
158
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/8980/88ec298ff1ff0d748df39e084892aed6e919b146.jpg
159
- storeLink: http://steamcommunity.com/app/8980
160
- hoursOnRecord: '14.6'
161
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/Borderlands
162
- globalStatsLink: http://steamcommunity.com/stats/Borderlands/achievements/
163
- - appID: '65920'
164
- name: ! 'Borderlands DLC: Claptrap’s New Robot Revolution'
165
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/65920/ceee419f7abfd5f5292e3c3ebe169b7ec8c66dfd.jpg
166
- storeLink: http://steamcommunity.com/app/65920
167
- - appID: '40940'
168
- name: ! 'Borderlands DLC: Mad Moxxi''s Underdome Riot'
169
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/40940/41634cff9cec43edb667f066eae8e9d41d3d3d12.jpg
170
- storeLink: http://steamcommunity.com/app/40940
171
- - appID: '50110'
172
- name: ! 'Borderlands DLC: The Secret Armory of General Knoxx'
173
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/50110/1e78d18afd61ba948ebb5c2c6112c723fdff6ecb.jpg
174
- storeLink: http://steamcommunity.com/app/50110
175
- - appID: '8990'
176
- name: ! 'Borderlands DLC: The Zombie Island of Dr. Ned'
177
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/8990/b4b4b1e093cd60d2bfa77155ab64197f8c792453.jpg
178
- storeLink: http://steamcommunity.com/app/8990
179
- - appID: '207690'
180
- name: Botanicula
181
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/207690/acb47a23b33ef3eed87022185eac7b1937c0235b.jpg
182
- storeLink: http://steamcommunity.com/app/207690
183
- hoursOnRecord: '3.8'
184
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/Botanicula
185
- globalStatsLink: http://steamcommunity.com/stats/Botanicula/achievements/
186
- - appID: '99810'
187
- name: Bulletstorm
188
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/99810/ec0e6043049ae7263b52b917de96aae88f3fb137.jpg
189
- storeLink: http://steamcommunity.com/app/99810
190
- hoursOnRecord: '6.7'
191
- - appID: '95300'
192
- name: Capsized
193
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/95300/4ed97f9c05ae4e0351dd5191f907adf5ddb1d356.jpg
194
- storeLink: http://steamcommunity.com/app/95300
195
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/Capsized
196
- globalStatsLink: http://steamcommunity.com/stats/Capsized/achievements/
197
- - appID: '200900'
198
- name: Cave Story+
199
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/200900/a242e0465a65ffafbf75eeb521812fb575990a33.jpg
200
- storeLink: http://steamcommunity.com/app/200900
201
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/CaveStory
202
- globalStatsLink: http://steamcommunity.com/stats/CaveStory/achievements/
203
- - appID: '9880'
204
- name: ! 'Champions Online: Free For All'
205
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/9880/137480fd5ff150b9a9a06a11e2a15d625dd8ebe3.jpg
206
- storeLink: http://steamcommunity.com/app/9880
207
- hoursOnRecord: '1.1'
208
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/ChampionsOnline
209
- globalStatsLink: http://steamcommunity.com/stats/ChampionsOnline/achievements/
210
- - appID: '72000'
211
- name: Closure
212
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/72000/6e01635915c7a052c64c81f1408844a596917d2e.jpg
213
- storeLink: http://steamcommunity.com/app/72000
214
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/72000
215
- globalStatsLink: http://steamcommunity.com/stats/72000/achievements/
216
- - appID: '26500'
217
- name: Cogs
218
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/26500/db01e5e8973e4a9590f1423b9c7c2199d7cb0186.jpg
219
- storeLink: http://steamcommunity.com/app/26500
220
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/Cogs
221
- globalStatsLink: http://steamcommunity.com/stats/Cogs/achievements/
222
- - appID: '26900'
223
- name: Crayon Physics Deluxe
224
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/26900/c1d7c6248392fae24328cb2f2e307c636b831202.jpg
225
- storeLink: http://steamcommunity.com/app/26900
226
- - appID: '17300'
227
- name: Crysis
228
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/17300/c87630a45764856250306e33f7e0c0195dc2f4af.jpg
229
- storeLink: http://steamcommunity.com/app/17300
230
- hoursOnRecord: '6.9'
231
- - appID: '108800'
232
- name: Crysis 2 Maximum Edition
233
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/108800/bee338e11932e97e995b6e2d84d0772f7b22f2a9.jpg
234
- storeLink: http://steamcommunity.com/app/108800
235
- hoursOnRecord: '8.1'
236
- - appID: '17330'
237
- name: Crysis Warhead
238
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/17330/2df1e5c3f039a252eaceb5853916ab1ad65fb9ee.jpg
239
- storeLink: http://steamcommunity.com/app/17330
240
- hoursOnRecord: '3.6'
241
- - appID: '17340'
242
- name: Crysis Wars
243
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/17340/f67c1df6123c3b3807f363554092bc6fc4178d45.jpg
244
- storeLink: http://steamcommunity.com/app/17340
245
- - appID: '17470'
246
- name: Dead Space
247
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/17470/01400b8d7847c309e5d47d7ceb3f885f47247501.jpg
248
- storeLink: http://steamcommunity.com/app/17470
249
- hoursOnRecord: '11.2'
250
- - appID: '47780'
251
- name: Dead Space 2
252
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/47780/38cb9890ddd639a066bf480e3f098e1b92af2376.jpg
253
- storeLink: http://steamcommunity.com/app/47780
254
- hoursOnRecord: '7.1'
255
- - appID: '203810'
256
- name: Dear Esther
257
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/203810/39f2f2baf454fabdd8a6161e9353ebd9ee335ed2.jpg
258
- storeLink: http://steamcommunity.com/app/203810
259
- hoursOnRecord: '1.7'
260
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/DearEsther
261
- globalStatsLink: http://steamcommunity.com/stats/DearEsther/achievements/
262
- - appID: '18500'
263
- name: ! 'Defense Grid: The Awakening'
264
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/18500/4c49c7d19bf3cec0aa453d4d94a0c079e5114a1b.jpg
265
- storeLink: http://steamcommunity.com/app/18500
266
- hoursOnRecord: '8.0'
267
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/DefenseGrid:Awakening
268
- globalStatsLink: http://steamcommunity.com/stats/DefenseGrid:Awakening/achievements/
269
- - appID: '28050'
270
- name: ! 'Deus Ex: Human Revolution'
271
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/28050/93705ac83aa363ce6ead3f6aad7fa4292d3cd80f.jpg
272
- storeLink: http://steamcommunity.com/app/28050
273
- hoursOnRecord: '21.7'
274
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/DXHR
275
- globalStatsLink: http://steamcommunity.com/stats/DXHR/achievements/
276
- - appID: '2300'
277
- name: ! 'DOOM II: Hell on Earth'
278
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/2300/91e04640ffc94bf7036489d1a72575b0483bfb04.jpg
279
- storeLink: http://steamcommunity.com/app/2300
280
- - appID: '47900'
281
- name: Dragon Age II
282
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/47900/6e7dd1111edfba3ff838c5612edff4802ebf4248.jpg
283
- storeLink: http://steamcommunity.com/app/47900
284
- hoursOnRecord: '19.1'
285
- - appID: '33440'
286
- name: Driver San Francisco
287
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/33440/e268b6988157b317c3992d20727a0dfa38678cb2.jpg
288
- storeLink: http://steamcommunity.com/app/33440
289
- hoursOnRecord: '0.9'
290
- - appID: '57900'
291
- name: Duke Nukem Forever
292
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/57900/a8d1246ad6962f0bfe9f59b1a314fcf53e712fd3.jpg
293
- storeLink: http://steamcommunity.com/app/57900
294
- hoursOnRecord: '7.3'
295
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/DukeNukemForever
296
- globalStatsLink: http://steamcommunity.com/stats/DukeNukemForever/achievements/
297
- - appID: '98800'
298
- name: Dungeons of Dredmor
299
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/98800/484e2713b16e9af259b96b0729ccf30e8fc78b2d.jpg
300
- storeLink: http://steamcommunity.com/app/98800
301
- hoursOnRecord: '7.2'
302
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/DungeonsOfDredmor
303
- globalStatsLink: http://steamcommunity.com/stats/DungeonsOfDredmor/achievements/
304
- - appID: '2290'
305
- name: Final DOOM
306
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/2290/1e0cd3379c55bf95d2e8648dbdda445ad6f65e12.jpg
307
- storeLink: http://steamcommunity.com/app/2290
308
- - appID: '98200'
309
- name: Frozen Synapse
310
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/98200/3b20447980b019783a4e37893660d1ce54893699.jpg
311
- storeLink: http://steamcommunity.com/app/98200
312
- hoursOnRecord: '0.7'
313
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/FrozenSynapse
314
- globalStatsLink: http://steamcommunity.com/stats/FrozenSynapse/achievements/
315
- - appID: '202200'
316
- name: ! 'Galactic Civilizations II: Ultimate Edition'
317
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/202200/ad23e69a2e91b9ad7675c11766b179e24cf8a7e1.jpg
318
- storeLink: http://steamcommunity.com/app/202200
319
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/GalacticCivilizationsIIUltimateEdition
320
- globalStatsLink: http://steamcommunity.com/stats/GalacticCivilizationsIIUltimateEdition/achievements/
321
- - appID: '41800'
322
- name: Gratuitous Space Battles
323
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/41800/d77409d24f8d41331ccbe0efef2582c9703b56bc.jpg
324
- storeLink: http://steamcommunity.com/app/41800
325
- - appID: '220'
326
- name: Half-Life 2
327
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/220/e4ad9cf1b7dc8475c1118625daf9abd4bdcbcad0.jpg
328
- storeLink: http://steamcommunity.com/app/220
329
- hoursOnRecord: '7.9'
330
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/HL2
331
- globalStatsLink: http://steamcommunity.com/stats/HL2/achievements/
332
- - appID: '380'
333
- name: ! 'Half-Life 2: Episode One'
334
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/380/b5a666a961d8b39896887abbed3b78c2b837c238.jpg
335
- storeLink: http://steamcommunity.com/app/380
336
- hoursOnRecord: '2.8'
337
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/HL2:EP1
338
- globalStatsLink: http://steamcommunity.com/stats/HL2:EP1/achievements/
339
- - appID: '420'
340
- name: ! 'Half-Life 2: Episode Two'
341
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/420/553e6a2e7a469dcbaada729baa1f5fd7764668df.jpg
342
- storeLink: http://steamcommunity.com/app/420
343
- hoursOnRecord: '3.6'
344
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/HL2:EP2
345
- globalStatsLink: http://steamcommunity.com/stats/HL2:EP2/achievements/
346
- - appID: '340'
347
- name: ! 'Half-Life 2: Lost Coast'
348
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/340/867cce5c4f37d5ed4aeffb57c60e220ddffe4134.jpg
349
- storeLink: http://steamcommunity.com/app/340
350
- - appID: '41100'
351
- name: Hammerfight
352
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/41100/d157763946f91bf65cf853dc480a2a6e34819c47.jpg
353
- storeLink: http://steamcommunity.com/app/41100
354
- - appID: '6860'
355
- name: ! 'Hitman: Blood Money'
356
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/6860/e67a1e905379399095d5dd509e1e58be3e4889b3.jpg
357
- storeLink: http://steamcommunity.com/app/6860
358
- - appID: '219150'
359
- name: Hotline Miami
360
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/219150/540a1457099f072ced7153239861e42f14febd56.jpg
361
- storeLink: http://steamcommunity.com/app/219150
362
- hoursOnRecord: '1.2'
363
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/HotlineMiami
364
- globalStatsLink: http://steamcommunity.com/stats/HotlineMiami/achievements/
365
- - appID: '207080'
366
- name: ! 'Indie Game: The Movie'
367
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/207080/f2c3f3e7104ad6d8719c2698406c79efe6de41e7.jpg
368
- storeLink: http://steamcommunity.com/app/207080
369
- - appID: '94200'
370
- name: Jamestown
371
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/94200/7a4178ca9546cef28ebb78c5889a01181c2b4e93.jpg
372
- storeLink: http://steamcommunity.com/app/94200
373
- hoursOnRecord: '0.3'
374
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/Jamestown
375
- globalStatsLink: http://steamcommunity.com/stats/Jamestown/achievements/
376
- - appID: '110800'
377
- name: L.A. Noire
378
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/110800/4176ba6f679e28225a95447082c38db290bc2557.jpg
379
- storeLink: http://steamcommunity.com/app/110800
380
- hoursOnRecord: '25.1'
381
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/LANoireTheCompleteEdition
382
- globalStatsLink: http://steamcommunity.com/stats/LANoireTheCompleteEdition/achievements/
383
- - appID: '207170'
384
- name: Legend of Grimrock
385
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/207170/5898cd32c949e03f95a5333c2399508b1a95aa4a.jpg
386
- storeLink: http://steamcommunity.com/app/207170
387
- hoursOnRecord: '8.4'
388
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/LegendofGrimrock
389
- globalStatsLink: http://steamcommunity.com/stats/LegendofGrimrock/achievements/
390
- - appID: '209830'
391
- name: Lone Survivor
392
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/209830/49444b4aa62821ea911de0ef98fe9eb223a970b5.jpg
393
- storeLink: http://steamcommunity.com/app/209830
394
- - appID: '40700'
395
- name: Machinarium
396
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/40700/5101b896d69a6eafc32667689a7f5d8756a4ac87.jpg
397
- storeLink: http://steamcommunity.com/app/40700
398
- hoursOnRecord: '8.7'
399
- - appID: '42910'
400
- name: Magicka
401
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/42910/8c59c674ef40f59c3bafde8ff0d59b7994c66477.jpg
402
- storeLink: http://steamcommunity.com/app/42910
403
- hoursOnRecord: '6.1'
404
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/Magicka
405
- globalStatsLink: http://steamcommunity.com/stats/Magicka/achievements/
406
- - appID: '17460'
407
- name: Mass Effect
408
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/17460/7501ea5009533fa5c017ec1f4b94725d67ad4936.jpg
409
- storeLink: http://steamcommunity.com/app/17460
410
- hoursOnRecord: '52.9'
411
- - appID: '24980'
412
- name: Mass Effect 2
413
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/24980/d446fe6d77c9f434cd7fd871400b978fc01fb4e7.jpg
414
- storeLink: http://steamcommunity.com/app/24980
415
- hoursOnRecord: '59.8'
416
- - appID: '9160'
417
- name: Master Levels for DOOM II
418
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/9160/3e282900d76dedac95fd76ad815e2e88c8251045.jpg
419
- storeLink: http://steamcommunity.com/app/9160
420
- - appID: '204100'
421
- name: Max Payne 3
422
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/204100/135cf60686c2bf570999b96d5c29eb31e962293a.jpg
423
- storeLink: http://steamcommunity.com/app/204100
424
- hoursOnRecord: '8.7'
425
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/MaxPayne3
426
- globalStatsLink: http://steamcommunity.com/stats/MaxPayne3/achievements/
427
- - appID: '99700'
428
- name: NightSky
429
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/99700/b86dc9596e72add75073d01c2e8452da87a0240e.jpg
430
- storeLink: http://steamcommunity.com/app/99700
431
- - appID: '102600'
432
- name: Orcs Must Die!
433
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/102600/9b79e98212c10141aac10471be1c5efa9786bad8.jpg
434
- storeLink: http://steamcommunity.com/app/102600
435
- hoursOnRecord: '12.0'
436
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/OrcsMustDie
437
- globalStatsLink: http://steamcommunity.com/stats/OrcsMustDie/achievements/
438
- - appID: '39530'
439
- name: ! 'Painkiller: Black Edition'
440
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/39530/9779256adc151abf34248362ac0ffc700ef92623.jpg
441
- storeLink: http://steamcommunity.com/app/39530
442
- hoursOnRecord: '3.6'
443
- - appID: '218230'
444
- name: PlanetSide 2
445
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/218230/8bb9796bf871a1d620b28db4dfb2abef2138542d.jpg
446
- storeLink: http://steamcommunity.com/app/218230
447
- hoursOnRecord: '0.8'
448
- - appID: '3590'
449
- name: ! 'Plants vs. Zombies: Game of the Year'
450
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/3590/85bfe66e921d89b034a3a253fb648f1a930e034a.jpg
451
- storeLink: http://steamcommunity.com/app/3590
452
- hoursOnRecord: '23.2'
453
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/PlantsVsZombies
454
- globalStatsLink: http://steamcommunity.com/stats/PlantsVsZombies/achievements/
455
- - appID: '400'
456
- name: Portal
457
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/400/4184d4c0d915bd3a45210667f7b25361352acd8f.jpg
458
- storeLink: http://steamcommunity.com/app/400
459
- hoursOnRecord: '2.2'
460
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/Portal
461
- globalStatsLink: http://steamcommunity.com/stats/Portal/achievements/
462
- - appID: '620'
463
- name: Portal 2
464
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/620/d2a1119ddc202fab81d9b87048f495cbd6377502.jpg
465
- storeLink: http://steamcommunity.com/app/620
466
- hoursOnRecord: '12.3'
467
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/Portal2
468
- globalStatsLink: http://steamcommunity.com/stats/Portal2/achievements/
469
- - appID: '3830'
470
- name: Psychonauts
471
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/3830/f77e1a7a78d03ef070a1fce915c10ee7bb439b34.jpg
472
- storeLink: http://steamcommunity.com/app/3830
473
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/PsychoNauts
474
- globalStatsLink: http://steamcommunity.com/stats/PsychoNauts/achievements/
475
- - appID: '4500'
476
- name: ! 'S.T.A.L.K.E.R.: Shadow of Chernobyl'
477
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/4500/a4f810cb3cbfa8562493e6d9b4fa0afb9706aeb7.jpg
478
- storeLink: http://steamcommunity.com/app/4500
479
- hoursOnRecord: '3.9'
480
- - appID: '55230'
481
- name: ! 'Saints Row: The Third'
482
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/55230/1129528455a8b297fb6404cbb90e802a62881b11.jpg
483
- storeLink: http://steamcommunity.com/app/55230
484
- hoursOnRecord: '16.0'
485
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/SaintsRowTheThird
486
- globalStatsLink: http://steamcommunity.com/stats/SaintsRowTheThird/achievements/
487
- - appID: '34270'
488
- name: SEGA Genesis & Mega Drive Classics
489
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/34270/212f55b3ea1a8c70427890896e93a37b49f57187.jpg
490
- storeLink: http://steamcommunity.com/app/34270
491
- hoursOnRecord: '0.1'
492
- - appID: '41070'
493
- name: ! 'Serious Sam 3: BFE'
494
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/41070/cc3a3c30187b5fbbd0a8861ad08b4f7d779ba239.jpg
495
- storeLink: http://steamcommunity.com/app/41070
496
- hoursOnRecord: '10.0'
497
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/SeriousSam3BFE
498
- globalStatsLink: http://steamcommunity.com/stats/SeriousSam3BFE/achievements/
499
- - appID: '41010'
500
- name: ! 'Serious Sam HD: The Second Encounter'
501
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/41010/d12f80db174670b0335476b78d56e737bb3a385d.jpg
502
- storeLink: http://steamcommunity.com/app/41010
503
- hoursOnRecord: '0.3'
504
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/SSHD:SecondEncounter
505
- globalStatsLink: http://steamcommunity.com/stats/SSHD:SecondEncounter/achievements/
506
- - appID: '204220'
507
- name: Snapshot
508
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/204220/5e0f448c6fa62e33c8142d2738690b4bc55bed19.jpg
509
- storeLink: http://steamcommunity.com/app/204220
510
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/204220
511
- globalStatsLink: http://steamcommunity.com/stats/204220/achievements/
512
- - appID: '107200'
513
- name: Space Pirates and Zombies
514
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/107200/f8371e2e888d057899eb19f5bfca3da3bfd2659f.jpg
515
- storeLink: http://steamcommunity.com/app/107200
516
- hoursOnRecord: '5.6'
517
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/SPAZ
518
- globalStatsLink: http://steamcommunity.com/stats/SPAZ/achievements/
519
- - appID: '99900'
520
- name: Spiral Knights
521
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/99900/eef62584a3d0c3338f569b14a7e667758ad2b098.jpg
522
- storeLink: http://steamcommunity.com/app/99900
523
- hoursOnRecord: '0.5'
524
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/SpiralKnights
525
- globalStatsLink: http://steamcommunity.com/stats/SpiralKnights/achievements/
526
- - appID: '115110'
527
- name: Stacking
528
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/115110/5bbd716992eab33cc5bbcd54cf691da700372329.jpg
529
- storeLink: http://steamcommunity.com/app/115110
530
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/Stacking
531
- globalStatsLink: http://steamcommunity.com/stats/Stacking/achievements/
532
- - appID: '40800'
533
- name: Super Meat Boy
534
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/40800/70f084857297d5fdd96d019db3a990d6d9ec64f1.jpg
535
- storeLink: http://steamcommunity.com/app/40800
536
- hoursOnRecord: '0.2'
537
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/SuperMeatBoy
538
- globalStatsLink: http://steamcommunity.com/stats/SuperMeatBoy/achievements/
539
- - appID: '63500'
540
- name: Swords and Soldiers HD
541
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/63500/0e5a29f1eed738fbcba95b773a596e50bba6c768.jpg
542
- storeLink: http://steamcommunity.com/app/63500
543
- hoursOnRecord: '2.5'
544
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/SwordsAndSoldiers
545
- globalStatsLink: http://steamcommunity.com/stats/SwordsAndSoldiers/achievements/
546
- - appID: '440'
547
- name: Team Fortress 2
548
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/440/07385eb55b5ba974aebbe74d3c99626bda7920b8.jpg
549
- storeLink: http://steamcommunity.com/app/440
550
- hoursOnRecord: '0.1'
551
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/TF2
552
- globalStatsLink: http://steamcommunity.com/stats/TF2/achievements/
553
- - appID: '520'
554
- name: Team Fortress 2 Beta
555
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/520/6f6d22ab0c357d9f02a11f76ff35797e4ccdf19f.jpg
556
- storeLink: http://steamcommunity.com/app/520
557
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/520
558
- globalStatsLink: http://steamcommunity.com/stats/520/achievements/
559
- - appID: '113200'
560
- name: The Binding of Isaac
561
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/113200/d9a7ee7e07dffed1700cb8b3b9482105b88cc5b5.jpg
562
- storeLink: http://steamcommunity.com/app/113200
563
- hoursOnRecord: '9.5'
564
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/BindingOfIsaac
565
- globalStatsLink: http://steamcommunity.com/stats/BindingOfIsaac/achievements/
566
- - appID: '2280'
567
- name: The Ultimate DOOM
568
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/2280/9c9d555b77699d263dfe25769284943f4b4eef3b.jpg
569
- storeLink: http://steamcommunity.com/app/2280
570
- - appID: '20920'
571
- name: ! 'The Witcher 2: Assassins of Kings Enhanced Edition'
572
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/20920/f0274a91931ed39f7c69dca9f907ceae6450785c.jpg
573
- storeLink: http://steamcommunity.com/app/20920
574
- hoursOnRecord: '16.1'
575
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/TheWitcher2
576
- globalStatsLink: http://steamcommunity.com/stats/TheWitcher2/achievements/
577
- - appID: '20900'
578
- name: ! 'The Witcher: Enhanced Edition'
579
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/20900/d37dedbc4104d1683385d022314d1316399b3dce.jpg
580
- storeLink: http://steamcommunity.com/app/20900
581
- hoursOnRecord: '21.2'
582
- - appID: '33220'
583
- name: ! 'Tom Clancy''s Splinter Cell: Conviction'
584
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/33220/6939f9914923cad9934603432b43fe7d46d47dd7.jpg
585
- storeLink: http://steamcommunity.com/app/33220
586
- - appID: '200710'
587
- name: Torchlight II
588
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/200710/fd37abb86628ff54ed304f75c2fb7cf75a4f6902.jpg
589
- storeLink: http://steamcommunity.com/app/200710
590
- hoursOnRecord: '1.7'
591
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/TorchlightII
592
- globalStatsLink: http://steamcommunity.com/stats/TorchlightII/achievements/
593
- - appID: '206440'
594
- name: To the Moon
595
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/206440/f0e5a7037facd7bff7656ebe2396a23735c608c2.jpg
596
- storeLink: http://steamcommunity.com/app/206440
597
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/206440
598
- globalStatsLink: http://steamcommunity.com/stats/206440/achievements/
599
- - appID: '70300'
600
- name: VVVVVV
601
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/70300/3d362d64d51ce524f12c853290ca6cce5761ff1c.jpg
602
- storeLink: http://steamcommunity.com/app/70300
603
- - appID: '55150'
604
- name: Warhammer 40,000 Space Marine
605
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/55150/c18d0776e4b1db78c57e66b5bd7ba74b5927816a.jpg
606
- storeLink: http://steamcommunity.com/app/55150
607
- hoursOnRecord: '7.3'
608
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/SpaceMarine
609
- globalStatsLink: http://steamcommunity.com/stats/SpaceMarine/achievements/
610
- - appID: '22000'
611
- name: World of Goo
612
- logo: http://media.steampowered.com/steamcommunity/public/images/apps/22000/d2a60cb23c6743862af40267817099b08602ee92.jpg
613
- storeLink: http://steamcommunity.com/app/22000
614
- hoursOnRecord: '1.6'
615
- statsLink: http://steamcommunity.com/profiles/76561197992917668/stats/WorldOfGoo
616
- globalStatsLink: http://steamcommunity.com/stats/WorldOfGoo/achievements/