xbox-live 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +18 -0
- data/.rspec +2 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/lib/xbox-live.rb +21 -0
- data/lib/xbox-live/version.rb +5 -0
- data/spec/spec_helper.rb +21 -0
- data/spec/support/achievements.json +590 -0
- data/spec/support/friends.json +141 -0
- data/spec/support/games.json +980 -0
- data/spec/support/profile.json +31 -0
- data/spec/xbox_live_spec.rb +55 -0
- data/xbox-live.gemspec +21 -0
- metadata +115 -0
data/.gitignore
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Nícolas Iensen
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# XboxLive
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'xbox-live'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install xbox-live
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/lib/xbox-live.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
require "xbox-live/version"
|
2
|
+
require "multi_json"
|
3
|
+
require "faraday"
|
4
|
+
|
5
|
+
module XboxLive
|
6
|
+
def self.profile gamertag
|
7
|
+
MultiJson.load(Faraday.get("http://www.xboxleaders.com/api/profile.json?gamertag=#{gamertag}").body)
|
8
|
+
end
|
9
|
+
|
10
|
+
def self.games gamertag
|
11
|
+
MultiJson.load(Faraday.get("http://www.xboxleaders.com/api/games.json?gamertag=#{gamertag}").body)
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.achievements gamertag, title_id
|
15
|
+
MultiJson.load(Faraday.get("http://www.xboxleaders.com/api/achievements.json?gamertag=#{gamertag}&titleid=#{title_id}").body)
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.friends gamertag
|
19
|
+
MultiJson.load(Faraday.get("http://www.xboxleaders.com/api/friends.json?gamertag=#{gamertag}").body)
|
20
|
+
end
|
21
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
2
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
3
|
+
# Require this file using `require "spec_helper"` to ensure that it is only
|
4
|
+
# loaded once.
|
5
|
+
#
|
6
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
7
|
+
|
8
|
+
require 'xbox-live'
|
9
|
+
require 'faraday'
|
10
|
+
|
11
|
+
RSpec.configure do |config|
|
12
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
13
|
+
config.run_all_when_everything_filtered = true
|
14
|
+
config.filter_run :focus
|
15
|
+
|
16
|
+
# Run specs in random order to surface order dependencies. If you find an
|
17
|
+
# order dependency and want to debug it, you can fix the order by providing
|
18
|
+
# the seed, which is printed after each run.
|
19
|
+
# --seed 1234
|
20
|
+
config.order = 'random'
|
21
|
+
end
|
@@ -0,0 +1,590 @@
|
|
1
|
+
{
|
2
|
+
"Data": {
|
3
|
+
"Id": 1161890128,
|
4
|
+
"Title": "Battlefield 3",
|
5
|
+
"Url": "http:\/\/marketplace.xbox.com\/en-US\/Title\/1161890128",
|
6
|
+
"BoxArt": "http:\/\/www.xboxleaders.com\/img\/boxart\/1161890128-small.jpg",
|
7
|
+
"LargeBoxArt": "http:\/\/www.xboxleaders.com\/img\/boxart\/1161890128-large.jpg",
|
8
|
+
"EarnedGamerScore": 585,
|
9
|
+
"PossibleGamerScore": 1480,
|
10
|
+
"EarnedAchievements": 24,
|
11
|
+
"PossibleAchievements": 58,
|
12
|
+
"LastPlayed": 1361051619,
|
13
|
+
"Achievements": [
|
14
|
+
{
|
15
|
+
"Id": 13,
|
16
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/tU\/pe\/1Tc8P2NhbC8QFQQaXFJRFjUwL2FjaC8wL2QAAAABUFBQ+nFKrg==.jpg",
|
17
|
+
"Title": "Scrap Metal",
|
18
|
+
"Description": "Destroy 6 enemy tanks before reaching the fort in Thunder Run",
|
19
|
+
"GamerScore": 25,
|
20
|
+
"IsSecret": "no",
|
21
|
+
"Unlocked": "yes",
|
22
|
+
"DateEarned": 1360780860,
|
23
|
+
"EarnedOffline": "no"
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"Id": 12,
|
27
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/TK\/H8\/0Dc8P2NhbC8XFQQaXFJRFjUwL2FjaC8wL2MAAAABUFBQ-9OhVw==.jpg",
|
28
|
+
"Title": "You can be my wingman anytime",
|
29
|
+
"Description": "Complete Going Hunting in a perfect run",
|
30
|
+
"GamerScore": 30,
|
31
|
+
"IsSecret": "no",
|
32
|
+
"Unlocked": "yes",
|
33
|
+
"DateEarned": 1360776355,
|
34
|
+
"EarnedOffline": "no"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"Id": 31,
|
38
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/Ye\/SF\/1zc8P2NhbC8SCxsFG1lTWDUwL2FjaC8wLzFmAAAAAVBQUPiq5H0=.jpg",
|
39
|
+
"Title": "Infantry Efficiency",
|
40
|
+
"Description": "Obtain all 4 weapon efficiency ribbons",
|
41
|
+
"GamerScore": 30,
|
42
|
+
"IsSecret": "no",
|
43
|
+
"Unlocked": "yes",
|
44
|
+
"DateEarned": 1360019936,
|
45
|
+
"EarnedOffline": "no"
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"Id": 10,
|
49
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/al\/A9\/0zc8P2NhbC8VFQQaXFJRFjUwL2FjaC8wL2EAAAABUFBQ-BJQcQ==.jpg",
|
50
|
+
"Title": "What the hell *are* you?",
|
51
|
+
"Description": "Take a russian Dog Tag in the forest ambush in Rock And A Hard Place",
|
52
|
+
"GamerScore": 20,
|
53
|
+
"IsSecret": "no",
|
54
|
+
"Unlocked": "yes",
|
55
|
+
"DateEarned": 1354752415,
|
56
|
+
"EarnedOffline": "no"
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"Id": 9,
|
60
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/xg\/8S\/0Dc8P2NhbC9NFQQaXFJRFjUwL2FjaC8wLzkAAAABUFBQ-z0P3Q==.jpg",
|
61
|
+
"Title": "Practice makes perfect",
|
62
|
+
"Description": "Headshot each of the targets in the gun range in Kaffarov",
|
63
|
+
"GamerScore": 15,
|
64
|
+
"IsSecret": "no",
|
65
|
+
"Unlocked": "yes",
|
66
|
+
"DateEarned": 1354578251,
|
67
|
+
"EarnedOffline": "no"
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"Id": 3,
|
71
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/Fw\/FW\/1Tc8P2NhbC9HFQQaXFJRFjUwL2FjaC8wLzMAAAABUFBQ+nkBDA==.jpg",
|
72
|
+
"Title": "The Professional",
|
73
|
+
"Description": "Complete the street chase in Comrades in under 2 minutes 30 seconds without dying",
|
74
|
+
"GamerScore": 30,
|
75
|
+
"IsSecret": "no",
|
76
|
+
"Unlocked": "yes",
|
77
|
+
"DateEarned": 1354576282,
|
78
|
+
"EarnedOffline": "no"
|
79
|
+
},
|
80
|
+
{
|
81
|
+
"Id": 36,
|
82
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/tY\/X8\/0zc8P2NhbC9ACBsFG1lTWDUwL2FjaC8wLzI0AAAAAVBQUPzThak=.jpg",
|
83
|
+
"Title": "1st Loser",
|
84
|
+
"Description": "Finish as 2nd MVP in a ranked match",
|
85
|
+
"GamerScore": 30,
|
86
|
+
"IsSecret": "no",
|
87
|
+
"Unlocked": "yes",
|
88
|
+
"DateEarned": 1352132187,
|
89
|
+
"EarnedOffline": "no"
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"Id": 33,
|
93
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/ap\/+f\/1Tc8P2NhbC9FCBsFG1lTWDUwL2FjaC8wLzIxAAAAAVBQUPqwn3Y=.jpg",
|
94
|
+
"Title": "It's better than nothing!",
|
95
|
+
"Description": "Finish as 3rd MVP in a ranked match",
|
96
|
+
"GamerScore": 30,
|
97
|
+
"IsSecret": "no",
|
98
|
+
"Unlocked": "yes",
|
99
|
+
"DateEarned": 1352129189,
|
100
|
+
"EarnedOffline": "no"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"Id": 37,
|
104
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/Jn\/0c\/0jc8P2NhbC9BCBsFG1lTWDUwL2FjaC8wLzI1AAAAAVBQUP0zfTo=.jpg",
|
105
|
+
"Title": "Most Valuable Player",
|
106
|
+
"Description": "Finish as MVP in a ranked match",
|
107
|
+
"GamerScore": 30,
|
108
|
+
"IsSecret": "no",
|
109
|
+
"Unlocked": "yes",
|
110
|
+
"DateEarned": 1348982631,
|
111
|
+
"EarnedOffline": "no"
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"Id": 38,
|
115
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/k3\/Q9\/0Dc8P2NhbC9CCBsFG1lTWDUwL2FjaC8wLzI2AAAAAVBQUP8SdI8=.jpg",
|
116
|
+
"Title": "M.I.A",
|
117
|
+
"Description": "Obtain your first enemy Dog Tag",
|
118
|
+
"GamerScore": 20,
|
119
|
+
"IsSecret": "no",
|
120
|
+
"Unlocked": "yes",
|
121
|
+
"DateEarned": 1348832892,
|
122
|
+
"EarnedOffline": "no"
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"Id": 11,
|
126
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/31\/kc\/0Tc8P2NhbC8WFQQaXFJRFjUwL2FjaC8wL2IAAAABUFBQ-jNZxA==.jpg",
|
127
|
+
"Title": "Roadkill",
|
128
|
+
"Description": "Kick the car to kill the soldiers in Uprising",
|
129
|
+
"GamerScore": 20,
|
130
|
+
"IsSecret": "no",
|
131
|
+
"Unlocked": "yes",
|
132
|
+
"DateEarned": null,
|
133
|
+
"EarnedOffline": "yes"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"Id": 2,
|
137
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/hP\/m2\/1Dc8P2NhbC9GFQQaXFJRFjUwL2FjaC8wLzIAAAABUFBQ+5n5nw==.jpg",
|
138
|
+
"Title": "Involuntary Euthanasia",
|
139
|
+
"Description": "Kill the 2 soldiers before the building falls on them in Uprising",
|
140
|
+
"GamerScore": 25,
|
141
|
+
"IsSecret": "no",
|
142
|
+
"Unlocked": "yes",
|
143
|
+
"DateEarned": null,
|
144
|
+
"EarnedOffline": "yes"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"Id": 8,
|
148
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/Vf\/fy\/0Tc8P2NhbC9MFQQaXFJRFjUwL2FjaC8wLzgAAAABUFBQ-t33Tg==.jpg",
|
149
|
+
"Title": "Army of Darkness",
|
150
|
+
"Description": "Shoot out the 4 lights with 4 bullets in Night Shift",
|
151
|
+
"GamerScore": 30,
|
152
|
+
"IsSecret": "no",
|
153
|
+
"Unlocked": "yes",
|
154
|
+
"DateEarned": null,
|
155
|
+
"EarnedOffline": "yes"
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"Id": 18,
|
159
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/dq\/as\/1Tc8P2NhbC9GCxsFG1lTWDUwL2FjaC8wLzEyAAAAAVBQUPqDpmo=.jpg",
|
160
|
+
"Title": "Ooh-rah!",
|
161
|
+
"Description": "Complete the campaign story",
|
162
|
+
"GamerScore": 30,
|
163
|
+
"IsSecret": "no",
|
164
|
+
"Unlocked": "yes",
|
165
|
+
"DateEarned": null,
|
166
|
+
"EarnedOffline": "yes"
|
167
|
+
},
|
168
|
+
{
|
169
|
+
"Id": 20,
|
170
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/HL\/Xu\/0Tc8P2NhbC9ACxsFG1lTWDUwL2FjaC8wLzE0AAAAAVBQUP7BtQA=.jpg",
|
171
|
+
"Title": "Semper Fidelis",
|
172
|
+
"Description": "Complete the campaign story on Hard",
|
173
|
+
"GamerScore": 50,
|
174
|
+
"IsSecret": "no",
|
175
|
+
"Unlocked": "yes",
|
176
|
+
"DateEarned": null,
|
177
|
+
"EarnedOffline": "yes"
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"Id": 19,
|
181
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/5V\/5M\/1Dc8P2NhbC9HCxsFG1lTWDUwL2FjaC8wLzEzAAAAAVBQUPtjXvk=.jpg",
|
182
|
+
"Title": "Between a rock and a hard place",
|
183
|
+
"Description": "Beat Solomon, flawlessly, in The Great Destroyer",
|
184
|
+
"GamerScore": 15,
|
185
|
+
"IsSecret": "no",
|
186
|
+
"Unlocked": "yes",
|
187
|
+
"DateEarned": null,
|
188
|
+
"EarnedOffline": "yes"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"Id": 14,
|
192
|
+
"TileUrl": "",
|
193
|
+
"Title": "",
|
194
|
+
"Description": "",
|
195
|
+
"GamerScore": 30,
|
196
|
+
"IsSecret": "yes",
|
197
|
+
"Unlocked": "yes",
|
198
|
+
"DateEarned": 1344799527,
|
199
|
+
"EarnedOffline": "no"
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"Id": 7,
|
203
|
+
"TileUrl": "",
|
204
|
+
"Title": "",
|
205
|
+
"Description": "",
|
206
|
+
"GamerScore": 20,
|
207
|
+
"IsSecret": "yes",
|
208
|
+
"Unlocked": "yes",
|
209
|
+
"DateEarned": null,
|
210
|
+
"EarnedOffline": "yes"
|
211
|
+
},
|
212
|
+
{
|
213
|
+
"Id": 16,
|
214
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/UF\/dt\/1jc8P2NhbC9ECxsFG1lTWDUwL2FjaC8wLzEwAAAAAVBQUPlCV0w=.jpg",
|
215
|
+
"Title": "Twofor",
|
216
|
+
"Description": "Take down 2 enemies with 1 bullet in Night Shift",
|
217
|
+
"GamerScore": 15,
|
218
|
+
"IsSecret": "no",
|
219
|
+
"Unlocked": "yes",
|
220
|
+
"DateEarned": null,
|
221
|
+
"EarnedOffline": "yes"
|
222
|
+
},
|
223
|
+
{
|
224
|
+
"Id": 4,
|
225
|
+
"TileUrl": "",
|
226
|
+
"Title": "",
|
227
|
+
"Description": "",
|
228
|
+
"GamerScore": 20,
|
229
|
+
"IsSecret": "yes",
|
230
|
+
"Unlocked": "yes",
|
231
|
+
"DateEarned": null,
|
232
|
+
"EarnedOffline": "yes"
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"Id": 5,
|
236
|
+
"TileUrl": "",
|
237
|
+
"Title": "",
|
238
|
+
"Description": "",
|
239
|
+
"GamerScore": 20,
|
240
|
+
"IsSecret": "yes",
|
241
|
+
"Unlocked": "yes",
|
242
|
+
"DateEarned": null,
|
243
|
+
"EarnedOffline": "yes"
|
244
|
+
},
|
245
|
+
{
|
246
|
+
"Id": 6,
|
247
|
+
"TileUrl": "",
|
248
|
+
"Title": "",
|
249
|
+
"Description": "",
|
250
|
+
"GamerScore": 15,
|
251
|
+
"IsSecret": "yes",
|
252
|
+
"Unlocked": "yes",
|
253
|
+
"DateEarned": null,
|
254
|
+
"EarnedOffline": "yes"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"Id": 1,
|
258
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/Mf\/CX\/1jc8P2NhbC9FFQQaXFJRFjUwL2FjaC8wLzEAAAABUFBQ+bjwKg==.jpg",
|
259
|
+
"Title": "Not on my watch",
|
260
|
+
"Description": "Protect Chaffin from the soldiers in the street in Operation Swordbreaker",
|
261
|
+
"GamerScore": 25,
|
262
|
+
"IsSecret": "no",
|
263
|
+
"Unlocked": "yes",
|
264
|
+
"DateEarned": 1344553560,
|
265
|
+
"EarnedOffline": "no"
|
266
|
+
},
|
267
|
+
{
|
268
|
+
"Id": 17,
|
269
|
+
"TileUrl": "",
|
270
|
+
"Title": "",
|
271
|
+
"Description": "",
|
272
|
+
"GamerScore": 10,
|
273
|
+
"IsSecret": "yes",
|
274
|
+
"Unlocked": "yes",
|
275
|
+
"DateEarned": 1344552545,
|
276
|
+
"EarnedOffline": "no"
|
277
|
+
},
|
278
|
+
{
|
279
|
+
"Id": 15,
|
280
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/k7\/uf\/1jc8P2NhbC8SFQQaXFJRFjUwL2FjaC8wL2YAAAABUFBQ+bC7iA==.jpg",
|
281
|
+
"Title": "Butterfly",
|
282
|
+
"Description": "Take down the jet in one attempt in Rock And A Hard Place",
|
283
|
+
"GamerScore": 25,
|
284
|
+
"IsSecret": "no",
|
285
|
+
"Unlocked": "no"
|
286
|
+
},
|
287
|
+
{
|
288
|
+
"Id": 21,
|
289
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/j0\/0O\/0Dc8P2NhbC9BCxsFG1lTWDUwL2FjaC8wLzE1AAAAAVBQUP8hTZM=.jpg",
|
290
|
+
"Title": "Push On",
|
291
|
+
"Description": "Reach the garage without going into man-down state in Hit and Run",
|
292
|
+
"GamerScore": 20,
|
293
|
+
"IsSecret": "no",
|
294
|
+
"Unlocked": "no"
|
295
|
+
},
|
296
|
+
{
|
297
|
+
"Id": 22,
|
298
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/Ok\/Qv\/0jc8P2NhbC9CCxsFG1lTWDUwL2FjaC8wLzE2AAAAAVBQUP0ARCY=.jpg",
|
299
|
+
"Title": "Two-rah!",
|
300
|
+
"Description": "Complete all co-op missions",
|
301
|
+
"GamerScore": 30,
|
302
|
+
"IsSecret": "no",
|
303
|
+
"Unlocked": "no"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"Id": 23,
|
307
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/qb\/zP\/0zc8P2NhbC9DCxsFG1lTWDUwL2FjaC8wLzE3AAAAAVBQUPzgvLU=.jpg",
|
308
|
+
"Title": "Lock 'n' Load",
|
309
|
+
"Description": "Unlock all unique co-op weapons",
|
310
|
+
"GamerScore": 30,
|
311
|
+
"IsSecret": "no",
|
312
|
+
"Unlocked": "no"
|
313
|
+
},
|
314
|
+
{
|
315
|
+
"Id": 24,
|
316
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/p6\/jo\/0Dc8P2NhbC9MCxsFG1lTWDUwL2FjaC8wLzE4AAAAAVBQUP-HqLs=.jpg",
|
317
|
+
"Title": "Car Lover",
|
318
|
+
"Description": "Complete the mission without losing a humvee in Operation Exodus",
|
319
|
+
"GamerScore": 20,
|
320
|
+
"IsSecret": "no",
|
321
|
+
"Unlocked": "no"
|
322
|
+
},
|
323
|
+
{
|
324
|
+
"Id": 25,
|
325
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/NF\/AI\/0Tc8P2NhbC9NCxsFG1lTWDUwL2FjaC8wLzE5AAAAAVBQUP4nUCg=.jpg",
|
326
|
+
"Title": "In the nick of time",
|
327
|
+
"Description": "Disarm the bomb in under 20 seconds in The Eleventh Hour",
|
328
|
+
"GamerScore": 20,
|
329
|
+
"IsSecret": "no",
|
330
|
+
"Unlocked": "no"
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"Id": 26,
|
334
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/mA\/8n\/0jc8P2NhbC8VCxsFG1lTWDUwL2FjaC8wLzFhAAAAAVBQUP0ID4Q=.jpg",
|
335
|
+
"Title": "Bullseye",
|
336
|
+
"Description": "Reach and save the hostages without alerting any enemies in Drop 'em Like Liquid",
|
337
|
+
"GamerScore": 20,
|
338
|
+
"IsSecret": "no",
|
339
|
+
"Unlocked": "no"
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"Id": 27,
|
343
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/LQ\/YG\/0Dc8P2NhbC8WCxsFG1lTWDUwL2FjaC8wLzFiAAAAAVBQUP8pBjE=.jpg",
|
344
|
+
"Title": "Untouchable",
|
345
|
+
"Description": "Complete the mission without using the fire extinguisher in Fire From The Sky",
|
346
|
+
"GamerScore": 20,
|
347
|
+
"IsSecret": "no",
|
348
|
+
"Unlocked": "no"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"Id": 28,
|
352
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/vv\/7m\/0Tc8P2NhbC8XCxsFG1lTWDUwL2FjaC8wLzFjAAAAAVBQUP7J-qI=.jpg",
|
353
|
+
"Title": "Army of Two",
|
354
|
+
"Description": "Complete all co-op missions on Hard",
|
355
|
+
"GamerScore": 50,
|
356
|
+
"IsSecret": "no",
|
357
|
+
"Unlocked": "no"
|
358
|
+
},
|
359
|
+
{
|
360
|
+
"Id": 29,
|
361
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/Rx\/VE\/1Dc8P2NhbC8QCxsFG1lTWDUwL2FjaC8wLzFkAAAAAVBQUPtrFVs=.jpg",
|
362
|
+
"Title": "Ninjas",
|
363
|
+
"Description": "Reach the VIP without setting off the alarm in Exfiltration",
|
364
|
+
"GamerScore": 20,
|
365
|
+
"IsSecret": "no",
|
366
|
+
"Unlocked": "no"
|
367
|
+
},
|
368
|
+
{
|
369
|
+
"Id": 30,
|
370
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/1O\/2k\/1Tc8P2NhbC8RCxsFG1lTWDUwL2FjaC8wLzFlAAAAAVBQUPqL7cg=.jpg",
|
371
|
+
"Title": "Vehicle Warfare",
|
372
|
+
"Description": "Obtain all 3 vehicle warfare ribbons",
|
373
|
+
"GamerScore": 30,
|
374
|
+
"IsSecret": "no",
|
375
|
+
"Unlocked": "no"
|
376
|
+
},
|
377
|
+
{
|
378
|
+
"Id": 32,
|
379
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/+W\/d-\/1Dc8P2NhbC9ECBsFG1lTWDUwL2FjaC8wLzIwAAAAAVBQUPtQZ+U=.jpg",
|
380
|
+
"Title": "Decorated",
|
381
|
+
"Description": "Obtain one of each ribbon in the game",
|
382
|
+
"GamerScore": 50,
|
383
|
+
"IsSecret": "no",
|
384
|
+
"Unlocked": "no"
|
385
|
+
},
|
386
|
+
{
|
387
|
+
"Id": 34,
|
388
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/35\/a+\/1zc8P2NhbC9GCBsFG1lTWDUwL2FjaC8wLzIyAAAAAVBQUPiRlsM=.jpg",
|
389
|
+
"Title": "Support Efficiency",
|
390
|
+
"Description": "Obtain all 4 support efficiency ribbons",
|
391
|
+
"GamerScore": 30,
|
392
|
+
"IsSecret": "no",
|
393
|
+
"Unlocked": "no"
|
394
|
+
},
|
395
|
+
{
|
396
|
+
"Id": 35,
|
397
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/TG\/5e\/1jc8P2NhbC9HCBsFG1lTWDUwL2FjaC8wLzIzAAAAAVBQUPlxblA=.jpg",
|
398
|
+
"Title": "Colonel",
|
399
|
+
"Description": "Achieve rank 45",
|
400
|
+
"GamerScore": 50,
|
401
|
+
"IsSecret": "no",
|
402
|
+
"Unlocked": "no"
|
403
|
+
},
|
404
|
+
{
|
405
|
+
"Id": 39,
|
406
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/AI\/zd\/0Tc8P2NhbC9DCBsFG1lTWDUwL2FjaC8wLzI3AAAAAVBQUP7yjBw=.jpg",
|
407
|
+
"Title": "Complete Warrior",
|
408
|
+
"Description": "Get a kill with the following weapons in a single life: Assault Rifle, Jet, Tank",
|
409
|
+
"GamerScore": 30,
|
410
|
+
"IsSecret": "no",
|
411
|
+
"Unlocked": "no"
|
412
|
+
},
|
413
|
+
{
|
414
|
+
"Id": 40,
|
415
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/Dp\/j6\/0jc8P2NhbC9MCBsFG1lTWDUwL2FjaC8wLzI4AAAAAVBQUP3VmBI=.jpg",
|
416
|
+
"Title": "Third Tour",
|
417
|
+
"Description": "Get a kill with each of the following vehicles: the BTR-90, DPV and F-35.",
|
418
|
+
"GamerScore": 20,
|
419
|
+
"IsSecret": "no",
|
420
|
+
"Unlocked": "no"
|
421
|
+
},
|
422
|
+
{
|
423
|
+
"Id": 41,
|
424
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/nW\/Aa\/0zc8P2NhbC9NCBsFG1lTWDUwL2FjaC8wLzI5AAAAAVBQUPw1YIE=.jpg",
|
425
|
+
"Title": "Gunslinger",
|
426
|
+
"Description": "Get 10 kills with each of the ten Back to Karkand weapons",
|
427
|
+
"GamerScore": 20,
|
428
|
+
"IsSecret": "no",
|
429
|
+
"Unlocked": "no"
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"Id": 42,
|
433
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/MT\/81\/0Dc8P2NhbC8VCBsFG1lTWDUwL2FjaC8wLzJhAAAAAVBQUP8aPy0=.jpg",
|
434
|
+
"Title": "Like a Boss",
|
435
|
+
"Description": "Get a kill with the skid loader",
|
436
|
+
"GamerScore": 30,
|
437
|
+
"IsSecret": "no",
|
438
|
+
"Unlocked": "no"
|
439
|
+
},
|
440
|
+
{
|
441
|
+
"Id": 43,
|
442
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/hD\/YU\/0jc8P2NhbC8WCBsFG1lTWDUwL2FjaC8wLzJiAAAAAVBQUP07Npg=.jpg",
|
443
|
+
"Title": "Jaws",
|
444
|
+
"Description": "Take a swim in the Oman Hotel swimming pool",
|
445
|
+
"GamerScore": 20,
|
446
|
+
"IsSecret": "no",
|
447
|
+
"Unlocked": "no"
|
448
|
+
},
|
449
|
+
{
|
450
|
+
"Id": 44,
|
451
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/F8\/70\/0zc8P2NhbC8XCBsFG1lTWDUwL2FjaC8wLzJjAAAAAVBQUPzbzgs=.jpg",
|
452
|
+
"Title": "Dominator",
|
453
|
+
"Description": "Win a round in Conquest Domination",
|
454
|
+
"GamerScore": 20,
|
455
|
+
"IsSecret": "no",
|
456
|
+
"Unlocked": "no"
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"Id": 45,
|
460
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/7i\/VW\/1jc8P2NhbC8QCBsFG1lTWDUwL2FjaC8wLzJkAAAAAVBQUPl5JfI=.jpg",
|
461
|
+
"Title": "Deadly tools",
|
462
|
+
"Description": "Without dying, get a kill with a Carbine, Pistol and Rocket Launcher",
|
463
|
+
"GamerScore": 30,
|
464
|
+
"IsSecret": "no",
|
465
|
+
"Unlocked": "no"
|
466
|
+
},
|
467
|
+
{
|
468
|
+
"Id": 46,
|
469
|
+
"TileUrl": "",
|
470
|
+
"Title": "",
|
471
|
+
"Description": "",
|
472
|
+
"GamerScore": 20,
|
473
|
+
"IsSecret": "yes",
|
474
|
+
"Unlocked": "no"
|
475
|
+
},
|
476
|
+
{
|
477
|
+
"Id": 47,
|
478
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/yN\/SX\/1Tc8P2NhbC8SCBsFG1lTWDUwL2FjaC8wLzJmAAAAAVBQUPq41NQ=.jpg",
|
479
|
+
"Title": "Show of Force",
|
480
|
+
"Description": "Get 10 kills with all ten CQ weapons",
|
481
|
+
"GamerScore": 30,
|
482
|
+
"IsSecret": "no",
|
483
|
+
"Unlocked": "no"
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"Id": 48,
|
487
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/u5\/7w\/0jc8P2NhbC9ECRsFG1lTWDUwL2FjaC8wLzMwAAAAAVBQUP3fnqc=.jpg",
|
488
|
+
"Title": "Man of Calibre",
|
489
|
+
"Description": "Complete a round of Gun Master",
|
490
|
+
"GamerScore": 20,
|
491
|
+
"IsSecret": "no",
|
492
|
+
"Unlocked": "no"
|
493
|
+
},
|
494
|
+
{
|
495
|
+
"Id": 49,
|
496
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/KG\/YQ\/0zc8P2NhbC9FCRsFG1lTWDUwL2FjaC8wLzMxAAAAAVBQUPw-ZjQ=.jpg",
|
497
|
+
"Title": "Death from above",
|
498
|
+
"Description": "Get one kill with the Gunship",
|
499
|
+
"GamerScore": 20,
|
500
|
+
"IsSecret": "no",
|
501
|
+
"Unlocked": "no"
|
502
|
+
},
|
503
|
+
{
|
504
|
+
"Id": 50,
|
505
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/nW\/8x\/0Tc8P2NhbC9GCRsFG1lTWDUwL2FjaC8wLzMyAAAAAVBQUP4eb4E=.jpg",
|
506
|
+
"Title": "Destroyer",
|
507
|
+
"Description": "Get 10 kills each with Tank destroyers and Mobile Artilleries",
|
508
|
+
"GamerScore": 30,
|
509
|
+
"IsSecret": "no",
|
510
|
+
"Unlocked": "no"
|
511
|
+
},
|
512
|
+
{
|
513
|
+
"Id": 51,
|
514
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/Dp\/fR\/0Dc8P2NhbC9HCRsFG1lTWDUwL2FjaC8wLzMzAAAAAVBQUP-+lxI=.jpg",
|
515
|
+
"Title": "Offroad",
|
516
|
+
"Description": "Get one kill with the Quad bike",
|
517
|
+
"GamerScore": 20,
|
518
|
+
"IsSecret": "no",
|
519
|
+
"Unlocked": "no"
|
520
|
+
},
|
521
|
+
{
|
522
|
+
"Id": 52,
|
523
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/93\/xz\/1Tc8P2NhbC9ACRsFG1lTWDUwL2FjaC8wLzM0AAAAAVBQUPpcfOs=.jpg",
|
524
|
+
"Title": "Superiority",
|
525
|
+
"Description": "Win one round of Tank Superiority",
|
526
|
+
"GamerScore": 20,
|
527
|
+
"IsSecret": "no",
|
528
|
+
"Unlocked": "no"
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"Id": 53,
|
532
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/ZI\/ST\/1Dc8P2NhbC9BCRsFG1lTWDUwL2FjaC8wLzM1AAAAAVBQUPu8hHg=.jpg",
|
533
|
+
"Title": "Dropship",
|
534
|
+
"Description": "Destroy the Gunship",
|
535
|
+
"GamerScore": 30,
|
536
|
+
"IsSecret": "no",
|
537
|
+
"Unlocked": "no"
|
538
|
+
},
|
539
|
+
{
|
540
|
+
"Id": 54,
|
541
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/0Y\/2y\/1jc8P2NhbC9CCRsFG1lTWDUwL2FjaC8wLzM2AAAAAVBQUPmdjc0=.jpg",
|
542
|
+
"Title": "Handyman",
|
543
|
+
"Description": "Unlock all xbow parts",
|
544
|
+
"GamerScore": 20,
|
545
|
+
"IsSecret": "no",
|
546
|
+
"Unlocked": "no"
|
547
|
+
},
|
548
|
+
{
|
549
|
+
"Id": 55,
|
550
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/Qn\/VS\/1zc8P2NhbC9DCRsFG1lTWDUwL2FjaC8wLzM3AAAAAVBQUPh9dV4=.jpg",
|
551
|
+
"Title": "Bite your finger",
|
552
|
+
"Description": "Find the secret reptile",
|
553
|
+
"GamerScore": 30,
|
554
|
+
"IsSecret": "no",
|
555
|
+
"Unlocked": "no"
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"Id": 56,
|
559
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/TG\/F1\/1Dc8P2NhbC9MCRsFG1lTWDUwL2FjaC8wLzM4AAAAAVBQUPtaYVA=.jpg",
|
560
|
+
"Title": "Home made javelin",
|
561
|
+
"Description": "Destroy an enemy vehicle using the xbow",
|
562
|
+
"GamerScore": 20,
|
563
|
+
"IsSecret": "no",
|
564
|
+
"Unlocked": "no"
|
565
|
+
},
|
566
|
+
{
|
567
|
+
"Id": 57,
|
568
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/35\/mV\/1Tc8P2NhbC9NCRsFG1lTWDUwL2FjaC8wLzM5AAAAAVBQUPq6mcM=.jpg",
|
569
|
+
"Title": "Pocket full of death",
|
570
|
+
"Description": "Without dying, get a kill with xbow, primary weapon, and hand grenade",
|
571
|
+
"GamerScore": 30,
|
572
|
+
"IsSecret": "no",
|
573
|
+
"Unlocked": "no"
|
574
|
+
},
|
575
|
+
{
|
576
|
+
"Id": 58,
|
577
|
+
"TileUrl": "https:\/\/live.xbox.com\/tiles\/c8\/a6\/1jc8P2NhbC8VCRsFG1lTWDUwL2FjaC8wLzNhAAAAAVBQUPmVxm8=.jpg",
|
578
|
+
"Title": "Extreme Hoarder",
|
579
|
+
"Description": "Pick up 50 weapons in Scavenger mode",
|
580
|
+
"GamerScore": 20,
|
581
|
+
"IsSecret": "no",
|
582
|
+
"Unlocked": "no"
|
583
|
+
}
|
584
|
+
]
|
585
|
+
},
|
586
|
+
"Stat": "ok",
|
587
|
+
"In": 4.027,
|
588
|
+
"Authed": "false",
|
589
|
+
"AuthedAs": null
|
590
|
+
}
|