quakelive_api 0.0.1 → 0.1.0

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.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +1 -0
  3. data/.travis.yml +3 -2
  4. data/CHANGELOG.md +11 -0
  5. data/README.md +6 -2
  6. data/lib/quakelive_api/base.rb +23 -23
  7. data/lib/quakelive_api/game_time.rb +5 -5
  8. data/lib/quakelive_api/parser/awards.rb +21 -21
  9. data/lib/quakelive_api/parser/base.rb +1 -1
  10. data/lib/quakelive_api/parser/statistics.rb +17 -17
  11. data/lib/quakelive_api/parser/summary.rb +25 -24
  12. data/lib/quakelive_api/profile/awards/base.rb +10 -10
  13. data/lib/quakelive_api/profile/awards/career_milestones.rb +1 -1
  14. data/lib/quakelive_api/profile/awards/experience.rb +1 -1
  15. data/lib/quakelive_api/profile/awards/mad_skillz.rb +1 -1
  16. data/lib/quakelive_api/profile/awards/social_life.rb +4 -5
  17. data/lib/quakelive_api/profile/awards/sweet_success.rb +1 -1
  18. data/lib/quakelive_api/profile/statistics.rb +7 -7
  19. data/lib/quakelive_api/profile/summary.rb +21 -21
  20. data/lib/quakelive_api/version.rb +1 -1
  21. data/quakelive_api.gemspec +7 -6
  22. data/test/fixtures/awards/career_milestones.yml +262 -0
  23. data/test/fixtures/awards/experience.yml +1019 -0
  24. data/test/fixtures/profiles/emqz.yml +331 -0
  25. data/test/fixtures/profiles/error.yml +53 -0
  26. data/test/fixtures/profiles/full/awards_experience.yml +1019 -0
  27. data/test/fixtures/profiles/full/awards_milestones.yml +262 -0
  28. data/test/fixtures/profiles/full/awards_skillz.yml +592 -0
  29. data/test/fixtures/profiles/full/awards_social.yml +163 -0
  30. data/test/fixtures/profiles/full/awards_success.yml +449 -0
  31. data/test/fixtures/profiles/full/statistics.yml +438 -0
  32. data/test/fixtures/profiles/full/summary.yml +331 -0
  33. data/test/fixtures/profiles/mariano.yml +329 -0
  34. data/test/fixtures/profiles/not_existing.yml +57 -0
  35. data/test/fixtures/statistics/xsi.yml +438 -0
  36. data/test/quakelive_api/profile/awards/career_milestones_test.rb +8 -9
  37. data/test/quakelive_api/profile/awards/experience_test.rb +6 -7
  38. data/test/quakelive_api/profile/statistics_test.rb +31 -37
  39. data/test/quakelive_api/profile/summary_test.rb +60 -51
  40. data/test/quakelive_api/profile_test.rb +37 -32
  41. data/test/test_helper.rb +10 -30
  42. metadata +71 -72
  43. data/test/fixtures/awards/career.txt +0 -382
  44. data/test/fixtures/awards/experience.txt +0 -769
  45. data/test/fixtures/awards/mad_skillz.txt +0 -915
  46. data/test/fixtures/awards/social_life.txt +0 -155
  47. data/test/fixtures/awards/sweet_success.txt +0 -684
  48. data/test/fixtures/profile/error.txt +0 -24
  49. data/test/fixtures/profile/not_found.txt +0 -36
  50. data/test/fixtures/profile/summary.txt +0 -383
  51. data/test/fixtures/statistics/emqz.txt +0 -431
  52. data/test/fixtures/statistics/xsi.txt +0 -558
  53. data/test/fixtures/summary/emqz.txt +0 -304
  54. data/test/fixtures/summary/mariano.txt +0 -380
  55. data/test/quakelive_api/profile/awards/mad_skillz_test.rb +0 -38
  56. data/test/quakelive_api/profile/awards/social_life_test.rb +0 -38
  57. data/test/quakelive_api/profile/awards/sweet_success_test.rb +0 -38
metadata CHANGED
@@ -1,112 +1,113 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quakelive_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
5
- prerelease:
4
+ version: 0.1.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Rafal Wojsznis
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-09-21 00:00:00.000000000 Z
11
+ date: 2014-08-18 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: nokogiri
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '1.5'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '1.5'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: bundler
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ~>
31
+ - - "~>"
36
32
  - !ruby/object:Gem::Version
37
33
  version: '1.3'
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ~>
38
+ - - "~>"
44
39
  - !ruby/object:Gem::Version
45
40
  version: '1.3'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: rake
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
47
  version: '0'
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - ">="
60
53
  - !ruby/object:Gem::Version
61
54
  version: '0'
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: minitest
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
- - - ~>
59
+ - - "~>"
68
60
  - !ruby/object:Gem::Version
69
- version: 5.0.0
61
+ version: 5.2.0
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
- - - ~>
66
+ - - "~>"
76
67
  - !ruby/object:Gem::Version
77
- version: 5.0.0
68
+ version: 5.2.0
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: webmock
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
- - - ~>
73
+ - - "~>"
84
74
  - !ruby/object:Gem::Version
85
- version: 1.12.0
75
+ version: 1.18.0
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
- - - ~>
80
+ - - "~>"
92
81
  - !ruby/object:Gem::Version
93
- version: 1.12.0
82
+ version: 1.18.0
94
83
  - !ruby/object:Gem::Dependency
95
- name: simplecov
84
+ name: vcr
96
85
  requirement: !ruby/object:Gem::Requirement
97
- none: false
98
86
  requirements:
99
- - - ~>
87
+ - - "~>"
100
88
  - !ruby/object:Gem::Version
101
- version: 0.8.0.pre
89
+ version: 2.9.2
102
90
  type: :development
103
91
  prerelease: false
104
92
  version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
93
  requirements:
107
- - - ~>
94
+ - - "~>"
108
95
  - !ruby/object:Gem::Version
109
- version: 0.8.0.pre
96
+ version: 2.9.2
97
+ - !ruby/object:Gem::Dependency
98
+ name: coveralls
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 0.7.1
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 0.7.1
110
111
  description: Pseudo API for QuakeLive
111
112
  email:
112
113
  - rafal.wojsznis@gmail.com
@@ -114,8 +115,9 @@ executables: []
114
115
  extensions: []
115
116
  extra_rdoc_files: []
116
117
  files:
117
- - .gitignore
118
- - .travis.yml
118
+ - ".gitignore"
119
+ - ".travis.yml"
120
+ - CHANGELOG.md
119
121
  - Gemfile
120
122
  - LICENSE.txt
121
123
  - README.md
@@ -148,24 +150,23 @@ files:
148
150
  - lib/quakelive_api/profile/summary.rb
149
151
  - lib/quakelive_api/version.rb
150
152
  - quakelive_api.gemspec
151
- - test/fixtures/awards/career.txt
152
- - test/fixtures/awards/experience.txt
153
- - test/fixtures/awards/mad_skillz.txt
154
- - test/fixtures/awards/social_life.txt
155
- - test/fixtures/awards/sweet_success.txt
156
- - test/fixtures/profile/error.txt
157
- - test/fixtures/profile/not_found.txt
158
- - test/fixtures/profile/summary.txt
159
- - test/fixtures/statistics/emqz.txt
160
- - test/fixtures/statistics/xsi.txt
161
- - test/fixtures/summary/emqz.txt
162
- - test/fixtures/summary/mariano.txt
153
+ - test/fixtures/awards/career_milestones.yml
154
+ - test/fixtures/awards/experience.yml
155
+ - test/fixtures/profiles/emqz.yml
156
+ - test/fixtures/profiles/error.yml
157
+ - test/fixtures/profiles/full/awards_experience.yml
158
+ - test/fixtures/profiles/full/awards_milestones.yml
159
+ - test/fixtures/profiles/full/awards_skillz.yml
160
+ - test/fixtures/profiles/full/awards_social.yml
161
+ - test/fixtures/profiles/full/awards_success.yml
162
+ - test/fixtures/profiles/full/statistics.yml
163
+ - test/fixtures/profiles/full/summary.yml
164
+ - test/fixtures/profiles/mariano.yml
165
+ - test/fixtures/profiles/not_existing.yml
166
+ - test/fixtures/statistics/xsi.yml
163
167
  - test/quakelive_api/game_time_test.rb
164
168
  - test/quakelive_api/profile/awards/career_milestones_test.rb
165
169
  - test/quakelive_api/profile/awards/experience_test.rb
166
- - test/quakelive_api/profile/awards/mad_skillz_test.rb
167
- - test/quakelive_api/profile/awards/social_life_test.rb
168
- - test/quakelive_api/profile/awards/sweet_success_test.rb
169
170
  - test/quakelive_api/profile/statistics_test.rb
170
171
  - test/quakelive_api/profile/summary_test.rb
171
172
  - test/quakelive_api/profile_test.rb
@@ -173,47 +174,45 @@ files:
173
174
  homepage: https://github.com/emq/quakelive_api
174
175
  licenses:
175
176
  - MIT
177
+ metadata: {}
176
178
  post_install_message:
177
179
  rdoc_options: []
178
180
  require_paths:
179
181
  - lib
180
182
  required_ruby_version: !ruby/object:Gem::Requirement
181
- none: false
182
183
  requirements:
183
- - - ! '>='
184
+ - - ">="
184
185
  - !ruby/object:Gem::Version
185
186
  version: '0'
186
187
  required_rubygems_version: !ruby/object:Gem::Requirement
187
- none: false
188
188
  requirements:
189
- - - ! '>='
189
+ - - ">="
190
190
  - !ruby/object:Gem::Version
191
191
  version: '0'
192
192
  requirements: []
193
193
  rubyforge_project:
194
- rubygems_version: 1.8.25
194
+ rubygems_version: 2.2.2
195
195
  signing_key:
196
- specification_version: 3
196
+ specification_version: 4
197
197
  summary: Fetch some basic information from QuakeLive site
198
198
  test_files:
199
- - test/fixtures/awards/career.txt
200
- - test/fixtures/awards/experience.txt
201
- - test/fixtures/awards/mad_skillz.txt
202
- - test/fixtures/awards/social_life.txt
203
- - test/fixtures/awards/sweet_success.txt
204
- - test/fixtures/profile/error.txt
205
- - test/fixtures/profile/not_found.txt
206
- - test/fixtures/profile/summary.txt
207
- - test/fixtures/statistics/emqz.txt
208
- - test/fixtures/statistics/xsi.txt
209
- - test/fixtures/summary/emqz.txt
210
- - test/fixtures/summary/mariano.txt
199
+ - test/fixtures/awards/career_milestones.yml
200
+ - test/fixtures/awards/experience.yml
201
+ - test/fixtures/profiles/emqz.yml
202
+ - test/fixtures/profiles/error.yml
203
+ - test/fixtures/profiles/full/awards_experience.yml
204
+ - test/fixtures/profiles/full/awards_milestones.yml
205
+ - test/fixtures/profiles/full/awards_skillz.yml
206
+ - test/fixtures/profiles/full/awards_social.yml
207
+ - test/fixtures/profiles/full/awards_success.yml
208
+ - test/fixtures/profiles/full/statistics.yml
209
+ - test/fixtures/profiles/full/summary.yml
210
+ - test/fixtures/profiles/mariano.yml
211
+ - test/fixtures/profiles/not_existing.yml
212
+ - test/fixtures/statistics/xsi.yml
211
213
  - test/quakelive_api/game_time_test.rb
212
214
  - test/quakelive_api/profile/awards/career_milestones_test.rb
213
215
  - test/quakelive_api/profile/awards/experience_test.rb
214
- - test/quakelive_api/profile/awards/mad_skillz_test.rb
215
- - test/quakelive_api/profile/awards/social_life_test.rb
216
- - test/quakelive_api/profile/awards/sweet_success_test.rb
217
216
  - test/quakelive_api/profile/statistics_test.rb
218
217
  - test/quakelive_api/profile/summary_test.rb
219
218
  - test/quakelive_api/profile_test.rb
@@ -1,382 +0,0 @@
1
- HTTP/1.1 200 OK
2
- Server: nginx/0.7.67
3
- Date: Sat, 03 Aug 2013 14:15:13 GMT
4
- Content-Type: text/html
5
- Transfer-Encoding: chunked
6
- Connection: close
7
- X-Powered-By: PHP/5.3.3
8
- X-QL-IDENT: 0 standard
9
-
10
- <div class="detailArea awardId53">
11
- <img alt="" title="It takes something special to post 10K. Props." src="http://cdn.quakelive.com/web/2013071600/images/awards/md/fear_me_v2013071600.0.png" width="61" height="61" class="fl" />
12
- <p class="fl ml15 w247">
13
- <span class="bigRedTxt">Fear Me</span>
14
- <br />
15
- <span class="blktxt_11">Accumulate 10,000 frags.</span>
16
- </p>
17
-
18
- <ul class="fl">
19
- <li class="blkbullets blktxt_11">Date awarded: 05/03/2012<!-- (999 days after joining) --></li>
20
- <li class="blkbullets blktxt_11">
21
- 24 friends (70% of total) have earned this award
22
- </li>
23
- <li class="blkbullets blktxt_11">
24
- 28705 players (&lt; 1% of total) have earned this award
25
- </li>
26
- </ul>
27
-
28
- <div class="cl"></div>
29
- </div>
30
- <div class="detailArea awardId168">
31
- <img alt="" title="True dedication to the game. Go start some matches!" src="http://cdn.quakelive.com/web/2013071600/images/awards/md/pro_subscriber_v2013071600.0.png" width="61" height="61" class="fl" />
32
- <p class="fl ml15 w247">
33
- <span class="bigRedTxt">Pro Subscriber</span>
34
- <br />
35
- <span class="blktxt_11">Purchase a pro subscription to QUAKE LIVE.</span>
36
- </p>
37
-
38
- <ul class="fl">
39
- <li class="blkbullets blktxt_11">Date awarded: 02/02/2011<!-- (999 days after joining) --></li>
40
- <li class="blkbullets blktxt_11">
41
- </li>
42
- <li class="blkbullets blktxt_11">
43
- </li>
44
- </ul>
45
-
46
- <div class="cl"></div>
47
- </div>
48
- <div class="detailArea awardId62">
49
- <img alt="" title="Yes, that&#039;s also 500 frags in 8 minutes and 18 seconds." src="http://cdn.quakelive.com/web/2013071600/images/awards/md/2_in_2_v2013071600.0.png" width="61" height="61" class="fl" />
50
- <p class="fl ml15 w247">
51
- <span class="bigRedTxt">2 in 2</span>
52
- <br />
53
- <span class="blktxt_11">Accumulate 250 "Excellent" Medals.</span>
54
- </p>
55
-
56
- <ul class="fl">
57
- <li class="blkbullets blktxt_11">Date awarded: 08/24/2009<!-- (999 days after joining) --></li>
58
- <li class="blkbullets blktxt_11">
59
- 23 friends (67% of total) have earned this award
60
- </li>
61
- <li class="blkbullets blktxt_11">
62
- 41844 players (1% of total) have earned this award
63
- </li>
64
- </ul>
65
-
66
- <div class="cl"></div>
67
- </div>
68
- <div class="detailArea awardId52">
69
- <img alt="" title="You&#039;ve got some serious game." src="http://cdn.quakelive.com/web/2013071600/images/awards/md/dangerous_v2013071600.0.png" width="61" height="61" class="fl" />
70
- <p class="fl ml15 w247">
71
- <span class="bigRedTxt">Dangerous</span>
72
- <br />
73
- <span class="blktxt_11">Accumulate 2500 frags.</span>
74
- </p>
75
-
76
- <ul class="fl">
77
- <li class="blkbullets blktxt_11">Date awarded: 07/24/2009<!-- (999 days after joining) --></li>
78
- <li class="blkbullets blktxt_11">
79
- 27 friends (79% of total) have earned this award
80
- </li>
81
- <li class="blkbullets blktxt_11">
82
- 56027 players (1% of total) have earned this award
83
- </li>
84
- </ul>
85
-
86
- <div class="cl"></div>
87
- </div>
88
- <div class="detailArea awardId63">
89
- <img alt="" title="When people call you a &quot;camper,&quot; challenge them to instagib." src="http://cdn.quakelive.com/web/2013071600/images/awards/md/assassin_v2013071600.0.png" width="61" height="61" class="fl" />
90
- <p class="fl ml15 w247">
91
- <span class="bigRedTxt">Assassin</span>
92
- <br />
93
- <span class="blktxt_11">Accumulate 250 "Impressive" Medals.</span>
94
- </p>
95
-
96
- <ul class="fl">
97
- <li class="blkbullets blktxt_11">Date awarded: 07/09/2009<!-- (999 days after joining) --></li>
98
- <li class="blkbullets blktxt_11">
99
- 28 friends (82% of total) have earned this award
100
- </li>
101
- <li class="blkbullets blktxt_11">
102
- 50359 players (1% of total) have earned this award
103
- </li>
104
- </ul>
105
-
106
- <div class="cl"></div>
107
- </div>
108
- <div class="detailArea awardId59">
109
- <img alt="" title="All you need now is an ear-piece, black suit and shades." src="http://cdn.quakelive.com/web/2013071600/images/awards/md/guardian_v2013071600.0.png" width="61" height="61" class="fl" />
110
- <p class="fl ml15 w247">
111
- <span class="bigRedTxt">Guardian</span>
112
- <br />
113
- <span class="blktxt_11">Accumulate 100 Capture the Flag Defend Medals.</span>
114
- </p>
115
-
116
- <ul class="fl">
117
- <li class="blkbullets blktxt_11">Date awarded: 07/09/2009<!-- (999 days after joining) --></li>
118
- <li class="blkbullets blktxt_11">
119
- 18 friends (52% of total) have earned this award
120
- </li>
121
- <li class="blkbullets blktxt_11">
122
- 26365 players (&lt; 1% of total) have earned this award
123
- </li>
124
- </ul>
125
-
126
- <div class="cl"></div>
127
- </div>
128
- <div class="detailArea awardId51">
129
- <img alt="" title="Just a taste of life in the arena." src="http://cdn.quakelive.com/web/2013071600/images/awards/md/fraggin_great_v2013071600.0.png" width="61" height="61" class="fl" />
130
- <p class="fl ml15 w247">
131
- <span class="bigRedTxt">Fraggin' Great</span>
132
- <br />
133
- <span class="blktxt_11">Accumulate 1000 total frags.</span>
134
- </p>
135
-
136
- <ul class="fl">
137
- <li class="blkbullets blktxt_11">Date awarded: 07/06/2009<!-- (999 days after joining) --></li>
138
- <li class="blkbullets blktxt_11">
139
- 28 friends (82% of total) have earned this award
140
- </li>
141
- <li class="blkbullets blktxt_11">
142
- 76957 players (2% of total) have earned this award
143
- </li>
144
- </ul>
145
-
146
- <div class="cl"></div>
147
- </div>
148
- <div class="detailArea awardId74">
149
- <img alt="" title="The start of something great." src="http://cdn.quakelive.com/web/2013071600/images/awards/md/impressive_v2013071600.0.png" width="61" height="61" class="fl" />
150
- <p class="fl ml15 w247">
151
- <span class="bigRedTxt">Impressive</span>
152
- <br />
153
- <span class="blktxt_11">Accumulate 250 total frags.</span>
154
- </p>
155
-
156
- <ul class="fl">
157
- <li class="blkbullets blktxt_11">Date awarded: 06/11/2009<!-- (999 days after joining) --></li>
158
- <li class="blkbullets blktxt_11">
159
- 29 friends (85% of total) have earned this award
160
- </li>
161
- <li class="blkbullets blktxt_11">
162
- 118582 players (3% of total) have earned this award
163
- </li>
164
- </ul>
165
-
166
- <div class="cl"></div>
167
- </div>
168
- <a class="unearnedAwardsLabel" href="javascript:;" onclick="$('.unearnedAwardType3').show();$(this).hide()">Show unearned awards</a>
169
-
170
- <div class="detailArea_off unearnedAwardType3">
171
- <img alt="" src="http://cdn.quakelive.com/web/2013071600/images/awards/md/premium_subscriber_v2013071600.0.png" width="61" height="61" class="fl" />
172
- <p class="fl ml15 w247">
173
- <span class="bigRedTxt">Premium Subscriber</span>
174
- <br />
175
- <span class="blktxt_11">Purchase a premium subscription to QUAKE LIVE.</span>
176
- </p>
177
-
178
- <ul class="fl">
179
-
180
- <li class="blkbullets blktxt_11">
181
- </li>
182
- </ul>
183
-
184
- <div class="cl"></div>
185
-
186
- </div>
187
-
188
- <div class="detailArea_off unearnedAwardType3">
189
- <img alt="" src="http://cdn.quakelive.com/web/2013071600/images/awards/md/dev_love_v2013071600.0.png" width="61" height="61" class="fl" />
190
- <p class="fl ml15 w247">
191
- <span class="bigRedTxt">Dev Love</span>
192
- <br />
193
- <span class="blktxt_11">Play a DevPick match.</span>
194
- </p>
195
-
196
- <ul class="fl">
197
- <li class="blkbullets blktxt_11">
198
- 6 friends (17% of total) have earned this award
199
- </li>
200
-
201
- <li class="blkbullets blktxt_11">
202
- 8425 players (&lt; 1% of total) have earned this award
203
- </li>
204
- </ul>
205
-
206
- <div class="cl"></div>
207
-
208
- </div>
209
-
210
- <div class="detailArea_off unearnedAwardType3">
211
- <img alt="" src="http://cdn.quakelive.com/web/2013071600/images/awards/md/sidekick_v2013071600.0.png" width="61" height="61" class="fl" />
212
- <p class="fl ml15 w247">
213
- <span class="bigRedTxt">Sidekick</span>
214
- <br />
215
- <span class="blktxt_11">Accumulate 100 Capture the Flag Assist Medals.</span>
216
- </p>
217
-
218
- <ul class="fl">
219
- <li class="blkbullets blktxt_11">
220
- 7 friends (20% of total) have earned this award
221
- </li>
222
-
223
- <li class="blkbullets blktxt_11">
224
- 10041 players (&lt; 1% of total) have earned this award
225
- </li>
226
- </ul>
227
-
228
- <div class="cl"></div>
229
-
230
- </div>
231
-
232
- <div class="detailArea_off unearnedAwardType3">
233
- <img alt="" src="http://cdn.quakelive.com/web/2013071600/images/awards/md/color_guard_v2013071600.0.png" width="61" height="61" class="fl" />
234
- <p class="fl ml15 w247">
235
- <span class="bigRedTxt">Color Guard</span>
236
- <br />
237
- <span class="blktxt_11">Accumulate 100 Capture Medals.</span>
238
- </p>
239
-
240
- <ul class="fl">
241
- <li class="blkbullets blktxt_11">
242
- 8 friends (23% of total) have earned this award
243
- </li>
244
-
245
- <li class="blkbullets blktxt_11">
246
- 11620 players (&lt; 1% of total) have earned this award
247
- </li>
248
- </ul>
249
-
250
- <div class="cl"></div>
251
-
252
- </div>
253
-
254
- <div class="detailArea_off unearnedAwardType3">
255
- <img alt="" src="http://cdn.quakelive.com/web/2013071600/images/awards/md/mvp_v2013071600.0.png" width="61" height="61" class="fl" />
256
- <p class="fl ml15 w247">
257
- <span class="bigRedTxt">MVP</span>
258
- <br />
259
- <span class="blktxt_11">Accumulate 1000 total Capture the Flag Medals (Caps, Def, and Asst combined).</span>
260
- </p>
261
-
262
- <ul class="fl">
263
- <li class="blkbullets blktxt_11">
264
- 8 friends (23% of total) have earned this award
265
- </li>
266
-
267
- <li class="blkbullets blktxt_11">
268
- 9506 players (&lt; 1% of total) have earned this award
269
- </li>
270
- </ul>
271
-
272
- <div class="cl"></div>
273
-
274
- </div>
275
-
276
- <div class="detailArea_off unearnedAwardType3">
277
- <img alt="" src="http://cdn.quakelive.com/web/2013071600/images/awards/md/fragaholic_v2013071600.0.png" width="61" height="61" class="fl" />
278
- <p class="fl ml15 w247">
279
- <span class="bigRedTxt">Fragaholic</span>
280
- <br />
281
- <span class="blktxt_11">Accumulate 50,000 frags.</span>
282
- </p>
283
-
284
- <ul class="fl">
285
- <li class="blkbullets blktxt_11">
286
- 10 friends (29% of total) have earned this award
287
- </li>
288
-
289
- <li class="blkbullets blktxt_11">
290
- 6265 players (&lt; 1% of total) have earned this award
291
- </li>
292
- </ul>
293
-
294
- <div class="cl"></div>
295
-
296
- </div>
297
-
298
- <div class="detailArea_off unearnedAwardType3">
299
- <img alt="" src="http://cdn.quakelive.com/web/2013071600/images/awards/md/merciless_v2013071600.0.png" width="61" height="61" class="fl" />
300
- <p class="fl ml15 w247">
301
- <span class="bigRedTxt">Merciless</span>
302
- <br />
303
- <span class="blktxt_11">Accumulate 100,000 frags.</span>
304
- </p>
305
-
306
- <ul class="fl">
307
- <li class="blkbullets blktxt_11">
308
- 5 friends (14% of total) have earned this award
309
- </li>
310
-
311
- <li class="blkbullets blktxt_11">
312
- 1879 players (&lt; 1% of total) have earned this award
313
- </li>
314
- </ul>
315
-
316
- <div class="cl"></div>
317
-
318
- </div>
319
-
320
- <div class="detailArea_off unearnedAwardType3">
321
- <img alt="" src="http://cdn.quakelive.com/web/2013071600/images/awards/md/dark_angel_v2013071600.0.png" width="61" height="61" class="fl" />
322
- <p class="fl ml15 w247">
323
- <span class="bigRedTxt">Dark Angel</span>
324
- <br />
325
- <span class="blktxt_11">Accumulate 250,000 frags.</span>
326
- </p>
327
-
328
- <ul class="fl">
329
- <li class="blkbullets blktxt_11">
330
- No friends have earned this award
331
- </li>
332
-
333
- <li class="blkbullets blktxt_11">
334
- 154 players (&lt; 1% of total) have earned this award
335
- </li>
336
- </ul>
337
-
338
- <div class="cl"></div>
339
-
340
- </div>
341
-
342
- <div class="detailArea_off unearnedAwardType3">
343
- <img alt="" src="http://cdn.quakelive.com/web/2013071600/images/awards/md/azrael_500k_v2013071600.0.png" width="61" height="61" class="fl" />
344
- <p class="fl ml15 w247">
345
- <span class="bigRedTxt">Azrael</span>
346
- <br />
347
- <span class="blktxt_11">Accumulate 500,000 frags.</span>
348
- </p>
349
-
350
- <ul class="fl">
351
- <li class="blkbullets blktxt_11">
352
- No friends have earned this award
353
- </li>
354
-
355
- <li class="blkbullets blktxt_11">
356
- 7 players (&lt; 1% of total) have earned this award
357
- </li>
358
- </ul>
359
-
360
- <div class="cl"></div>
361
-
362
- </div>
363
-
364
- <div class="detailArea_off unearnedAwardType3">
365
- <img alt="" src="http://cdn.quakelive.com/web/2013071600/images/awards/md/hell_seraph_1m_v2013071600.0.png" width="61" height="61" class="fl" />
366
- <p class="fl ml15 w247">
367
- <span class="bigRedTxt">Hell Seraph</span>
368
- <br />
369
- <span class="blktxt_11">Accumulate 1,000,000 frags.</span>
370
- </p>
371
-
372
- <ul class="fl">
373
-
374
- <li class="blkbullets blktxt_11">
375
- No players have earned this award
376
- </li>
377
- </ul>
378
-
379
- <div class="cl"></div>
380
-
381
- </div>
382
-