dota 0.0.2 → 0.0.3
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.
- checksums.yaml +4 -4
- data/README.md +80 -18
- data/lib/dota.rb +2 -0
- data/lib/dota/api/client.rb +20 -5
- data/lib/dota/api/league.rb +31 -0
- data/lib/dota/api/match.rb +6 -0
- data/lib/dota/api/match/draft.rb +27 -0
- data/lib/dota/version.rb +1 -1
- data/spec/dota/api/league_spec.rb +23 -0
- data/spec/dota/api/match/draft_spec.rb +19 -0
- data/spec/dota/api/match/player_spec.rb +4 -0
- data/spec/dota/api/match_spec.rb +6 -0
- data/spec/dota_spec.rb +18 -1
- data/spec/fixtures/vcr_cassettes/GetLeagueListing.yml +2960 -0
- data/spec/support/vcr.rb +4 -0
- metadata +9 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0b2c0cb87ae13e1584220df1350829581c98e471
|
|
4
|
+
data.tar.gz: 332f94513d8eed6a81b51bdb63c12d7dadb40472
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ffb46d56580f2d2d2823741bc1b4773230635d23b4810932a8c9d531f8e1d2ce43d2fec192c92ba05664b6ddb66eea2284a552158f28ab3d7346e6d239b0b2d
|
|
7
|
+
data.tar.gz: 4be9b68938de3355995a16cf492f2ced60ac56905ac96c4ced18bbf5624432e2c69c5207a2c577c54cd1f3201aa99153da127c0529f51a9d2864e0509071ac72
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Dota is a Ruby client for the [Dota 2 WebAPI](https://wiki.teamfortress.com/wiki/WebAPI#Dota_2). It provides an easy way to access matches, players, heroes, items, and other public Dota 2 objects in an opinionated manner.
|
|
4
4
|
|
|
5
|
-
This gem is in alpha, keep that in mind when upgrading. Documentation is also still lacking. In the meantime,
|
|
5
|
+
This gem is in alpha, keep that in mind when upgrading. Documentation is also still lacking. In the meantime, just do `SomeClass.instance_methods(false)` to see what methods are exposed.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -30,21 +30,28 @@ end
|
|
|
30
30
|
api = Dota.api
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
Get your Steam API key [here](http://steamcommunity.com/dev/apikey). What follows is a list of API methods
|
|
34
|
-
|
|
35
|
-
#### Get a single match
|
|
36
|
-
|
|
37
|
-
Returns an instance of `Dota::API::Match`.
|
|
33
|
+
Get your Steam API key [here](http://steamcommunity.com/dev/apikey). What follows is a list of API methods currently available:
|
|
38
34
|
|
|
39
35
|
```ruby
|
|
40
|
-
api.
|
|
36
|
+
api.hero(43) # => Dota::API::Hero
|
|
37
|
+
api.item(114) # => Dota::API::Item
|
|
38
|
+
api.match(789645621) # => Dota::API::Match
|
|
39
|
+
api.leagues # => [Dota::API::League, ...]
|
|
41
40
|
```
|
|
42
41
|
|
|
43
|
-
|
|
42
|
+
### API Objects
|
|
43
|
+
|
|
44
|
+
You won't need to instantiate on these classes directly and it's not advisable to do so as the API might change anytime. Starting with the call to `Dota.api` should be enough in most cases.
|
|
44
45
|
|
|
45
|
-
|
|
46
|
+
#### Dota::API::Hero
|
|
47
|
+
|
|
48
|
+
```ruby
|
|
49
|
+
hero.id # => 43
|
|
50
|
+
hero.name # => "Death Prophet"
|
|
51
|
+
hero.image_url # => "http://cdn.dota2.com/apps/dota2/images/heroes/death_prophet_full.png"
|
|
52
|
+
```
|
|
46
53
|
|
|
47
|
-
|
|
54
|
+
#### Dota::API::Item
|
|
48
55
|
|
|
49
56
|
```ruby
|
|
50
57
|
item.id # => 114
|
|
@@ -52,26 +59,81 @@ item.name # => "Heart of Tarrasque"
|
|
|
52
59
|
item.image_url # => "http://cdn.dota2.com/apps/dota2/images/items/heart_lg.png"
|
|
53
60
|
```
|
|
54
61
|
|
|
55
|
-
|
|
62
|
+
#### Dota::API::Match
|
|
56
63
|
|
|
57
64
|
```ruby
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
65
|
+
match.id # => 789645621
|
|
66
|
+
match.league_id # => 600
|
|
67
|
+
match.drafts # => [Dota::API::Match::Draft, ...]
|
|
68
|
+
match.players # => [Dota::API::Match::Player, ...]
|
|
69
|
+
match.sequence # => 709365483
|
|
70
|
+
match.starts_at # => 2014-07-21 20:12:50 UTC
|
|
71
|
+
match.duration # => 908
|
|
72
|
+
match.winner # => :radiant
|
|
73
|
+
match.first_blood # => 33
|
|
74
|
+
match.positive_votes # => 34701
|
|
75
|
+
match.negative_votes # => 13291
|
|
76
|
+
match.season # => nil
|
|
77
|
+
match.human_players # => 10
|
|
78
|
+
match.cluster # => 111
|
|
79
|
+
match.mode # => 2
|
|
80
|
+
match.lobby # => 2
|
|
81
|
+
match.radiant_tower_status # => 2039
|
|
82
|
+
match.dire_tower_status # => 1974
|
|
83
|
+
match.radiant_barracks_status # => 63
|
|
84
|
+
match.dire_barracks_status # => 63
|
|
61
85
|
```
|
|
62
86
|
|
|
63
|
-
|
|
87
|
+
#### Dota::API::Match::Player
|
|
64
88
|
|
|
65
89
|
```ruby
|
|
66
|
-
|
|
90
|
+
player.id # => 98887913
|
|
91
|
+
player.hero # => Dota::API::Hero
|
|
92
|
+
player.items # => [Dota::API::Item, ...]
|
|
93
|
+
player.slot # => 0
|
|
94
|
+
player.status # => :played
|
|
95
|
+
player.level # => 11
|
|
96
|
+
player.kills # => 2
|
|
97
|
+
player.deaths # => 1
|
|
98
|
+
player.assists # => 13
|
|
99
|
+
player.last_hits # => 45
|
|
100
|
+
player.denies # => 0
|
|
101
|
+
player.gold # => 649
|
|
102
|
+
player.gold_spent # => 6670
|
|
103
|
+
player.gpm # => 437
|
|
104
|
+
player.xpm # => 460
|
|
105
|
+
player.hero_damage # => 3577
|
|
106
|
+
player.tower_damage # => 153
|
|
107
|
+
player.hero_healing # => 526
|
|
67
108
|
```
|
|
68
109
|
|
|
69
|
-
|
|
110
|
+
#### Dota::API::Match::Draft
|
|
70
111
|
|
|
71
112
|
```ruby
|
|
72
|
-
|
|
113
|
+
player.hero # => Dota::API::Hero
|
|
114
|
+
player.order # => 1
|
|
115
|
+
player.pick? # => true
|
|
73
116
|
```
|
|
74
117
|
|
|
118
|
+
#### Dota::API::League
|
|
119
|
+
|
|
120
|
+
```ruby
|
|
121
|
+
league.id # => 600
|
|
122
|
+
league.name # => "The International 2014"
|
|
123
|
+
league.description # => "The Aegis of Champions hangs in the balance. See the world's top teams battle in the International."
|
|
124
|
+
league.url # => "http://www.dota2.com/international/overview/"
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
## TODO
|
|
128
|
+
|
|
129
|
+
- Validations and error classes
|
|
130
|
+
- More configuration options
|
|
131
|
+
- Move API documentation to https://readthedocs.org/ or somewhere else
|
|
132
|
+
- Implement all Dota 2 WebAPI methods
|
|
133
|
+
- Better search filters
|
|
134
|
+
- Computed attributes such as win rates, hero usage, etc.
|
|
135
|
+
- ???
|
|
136
|
+
|
|
75
137
|
## Contributing
|
|
76
138
|
|
|
77
139
|
1. [Fork It](https://github.com/vinnicc/dota/fork)
|
data/lib/dota.rb
CHANGED
|
@@ -6,8 +6,10 @@ require 'dota/utils/inspect'
|
|
|
6
6
|
require 'dota/api/client'
|
|
7
7
|
require 'dota/api/hero'
|
|
8
8
|
require 'dota/api/item'
|
|
9
|
+
require 'dota/api/league'
|
|
9
10
|
require 'dota/api/match'
|
|
10
11
|
require 'dota/api/match/player'
|
|
12
|
+
require 'dota/api/match/draft'
|
|
11
13
|
|
|
12
14
|
module Dota
|
|
13
15
|
class << self
|
data/lib/dota/api/client.rb
CHANGED
|
@@ -4,11 +4,6 @@ require 'faraday_middleware'
|
|
|
4
4
|
module Dota
|
|
5
5
|
module API
|
|
6
6
|
class Client
|
|
7
|
-
def match(id)
|
|
8
|
-
response = do_request("GetMatchDetails", match_id: id)["result"]
|
|
9
|
-
Match.new(response) if response
|
|
10
|
-
end
|
|
11
|
-
|
|
12
7
|
def configuration
|
|
13
8
|
@configuration ||= Configuration.new
|
|
14
9
|
end
|
|
@@ -17,6 +12,26 @@ module Dota
|
|
|
17
12
|
yield configuration
|
|
18
13
|
end
|
|
19
14
|
|
|
15
|
+
def hero(id)
|
|
16
|
+
Hero.new(id)
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def item(id)
|
|
20
|
+
Item.new(id)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def match(id)
|
|
24
|
+
response = do_request("GetMatchDetails", match_id: id)["result"]
|
|
25
|
+
Match.new(response) if response
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def leagues
|
|
29
|
+
response = do_request("GetLeagueListing", language: "en")["result"]
|
|
30
|
+
if response && (leagues = response["leagues"])
|
|
31
|
+
leagues.map { |league| League.new(league) }
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
|
|
20
35
|
private
|
|
21
36
|
|
|
22
37
|
def do_request(method, options = {}, interface = "IDOTA2Match_570", method_version = "V001")
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
module Dota
|
|
2
|
+
module API
|
|
3
|
+
class League
|
|
4
|
+
include Utilities::Inspectable
|
|
5
|
+
|
|
6
|
+
def initialize(raw)
|
|
7
|
+
@raw = raw
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def id
|
|
11
|
+
raw["leagueid"]
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def name
|
|
15
|
+
raw["name"]
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def description
|
|
19
|
+
raw["description"]
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def url
|
|
23
|
+
raw["tournament_url"]
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
private
|
|
27
|
+
|
|
28
|
+
attr_reader :raw
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
data/lib/dota/api/match.rb
CHANGED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
module Dota
|
|
2
|
+
module API
|
|
3
|
+
class Match
|
|
4
|
+
class Draft
|
|
5
|
+
def initialize(raw)
|
|
6
|
+
@raw = raw
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
def order
|
|
10
|
+
raw["order"] + 1
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def pick?
|
|
14
|
+
raw["is_pick"]
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
def hero
|
|
18
|
+
Hero.new(raw["hero_id"])
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
private
|
|
22
|
+
|
|
23
|
+
attr_reader :raw
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
data/lib/dota/version.rb
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
describe Dota::API::League do
|
|
2
|
+
let(:league) do
|
|
3
|
+
VCR.use_cassette("GetLeagueListing") do
|
|
4
|
+
test_client.leagues.first
|
|
5
|
+
end
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
specify "#id" do
|
|
9
|
+
expect(league.id).to eq 1212
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
specify "#name" do
|
|
13
|
+
expect(league.name).to eq "Dota 2 Just For Fun"
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
specify "#description" do
|
|
17
|
+
expect(league.description).to eq "64 of the best Brazilian amateur teams compete to become the winner of the first Dota 2 Just For Fun tournament. "
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
specify "#url" do
|
|
21
|
+
expect(league.url).to eq "https://binarybeast.com/xDOTA21404228/"
|
|
22
|
+
end
|
|
23
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
describe Dota::API::Match::Draft do
|
|
2
|
+
let(:draft) do
|
|
3
|
+
VCR.use_cassette("GetMatchDetails") do
|
|
4
|
+
test_client.match(sample_match_id).drafts.last
|
|
5
|
+
end
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
specify "#pick?" do
|
|
9
|
+
expect(draft.pick?).to eq true
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
specify "#order" do
|
|
13
|
+
expect(draft.order).to eq 20
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
specify "#hero" do
|
|
17
|
+
expect(draft.hero).to be_a Dota::API::Hero
|
|
18
|
+
end
|
|
19
|
+
end
|
data/spec/dota/api/match_spec.rb
CHANGED
|
@@ -82,4 +82,10 @@ describe Dota::API::Match do
|
|
|
82
82
|
expect(players.count).to eq 10
|
|
83
83
|
expect(players.first).to be_a Dota::API::Match::Player
|
|
84
84
|
end
|
|
85
|
+
|
|
86
|
+
specify "#drafts" do
|
|
87
|
+
drafts = match.drafts
|
|
88
|
+
expect(drafts.count).to eq 20
|
|
89
|
+
expect(drafts.first).to be_a Dota::API::Match::Draft
|
|
90
|
+
end
|
|
85
91
|
end
|
data/spec/dota_spec.rb
CHANGED
|
@@ -17,10 +17,27 @@ describe Dota do
|
|
|
17
17
|
expect(Dota).to receive(:api).and_return(test_client)
|
|
18
18
|
end
|
|
19
19
|
|
|
20
|
+
specify "#hero" do
|
|
21
|
+
match = api.hero(43)
|
|
22
|
+
expect(match).to be_a Dota::API::Hero
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
specify "#item" do
|
|
26
|
+
match = api.item(114)
|
|
27
|
+
expect(match).to be_a Dota::API::Item
|
|
28
|
+
end
|
|
29
|
+
|
|
20
30
|
specify "#match" do
|
|
21
31
|
VCR.use_cassette("GetMatchDetails") do
|
|
22
32
|
match = api.match(sample_match_id)
|
|
23
|
-
expect(match).to be_a
|
|
33
|
+
expect(match).to be_a Dota::API::Match
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
specify "#leagues" do
|
|
38
|
+
VCR.use_cassette("GetLeagueListing") do
|
|
39
|
+
league = api.leagues.first
|
|
40
|
+
expect(league).to be_a Dota::API::League
|
|
24
41
|
end
|
|
25
42
|
end
|
|
26
43
|
end
|
|
@@ -0,0 +1,2960 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://api.steampowered.com/IDOTA2Match_570/GetLeagueListing/V001/?key=2FBBA83745F494FAE688AFB8463CD4FC&language=en
|
|
6
|
+
body:
|
|
7
|
+
encoding: US-ASCII
|
|
8
|
+
string: ''
|
|
9
|
+
headers:
|
|
10
|
+
User-Agent:
|
|
11
|
+
- Faraday v0.9.0
|
|
12
|
+
Accept-Encoding:
|
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
|
14
|
+
Accept:
|
|
15
|
+
- "*/*"
|
|
16
|
+
response:
|
|
17
|
+
status:
|
|
18
|
+
code: 200
|
|
19
|
+
message: OK
|
|
20
|
+
headers:
|
|
21
|
+
Content-Type:
|
|
22
|
+
- application/json; charset=UTF-8
|
|
23
|
+
Last-Modified:
|
|
24
|
+
- Sat, 15 Nov 2014 02:02:58 GMT
|
|
25
|
+
Date:
|
|
26
|
+
- Tue, 18 Nov 2014 13:42:19 GMT
|
|
27
|
+
Vary:
|
|
28
|
+
- Accept-Encoding
|
|
29
|
+
Content-Length:
|
|
30
|
+
- '74206'
|
|
31
|
+
Expires:
|
|
32
|
+
- Mon, 26 Jul 1997 05:00:00 GMT
|
|
33
|
+
Cache-Control:
|
|
34
|
+
- no-cache,must-revalidate
|
|
35
|
+
body:
|
|
36
|
+
encoding: UTF-8
|
|
37
|
+
string: "{\n\t\"result\": {\n\t\t\"leagues\": [\n\t\t\t{\n\t\t\t\t\"name\":
|
|
38
|
+
\"Dota 2 Just For Fun\",\n\t\t\t\t\"leagueid\": 1212,\n\t\t\t\t\"description\":
|
|
39
|
+
\"64 of the best Brazilian amateur teams compete to become the winner of the
|
|
40
|
+
first Dota 2 Just For Fun tournament. \",\n\t\t\t\t\"tournament_url\": \"https://binarybeast.com/xDOTA21404228/\",\n\t\t\t\t\"itemdef\":
|
|
41
|
+
10541\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"joinDOTA League Season 3\",\n\t\t\t\t\"leagueid\":
|
|
42
|
+
1640,\n\t\t\t\t\"description\": \"The global Dota 2 league for everyone. Featured
|
|
43
|
+
are all of the matches from division 1 and 2. There are three leagues: Europe,
|
|
44
|
+
America, and Asia. The top 10 from each league meet in the premier division.
|
|
45
|
+
$1.00 from each ticket purchased will go directly into the prizepool.\",\n\t\t\t\t\"tournament_url\":
|
|
46
|
+
\"http://www.joindota.com/en/leagues/\",\n\t\t\t\t\"itemdef\": 10742\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
47
|
+
\"Killing Spree: North America\",\n\t\t\t\t\"leagueid\": 25,\n\t\t\t\t\"description\":
|
|
48
|
+
\"Killing Spree is a perpetual King of the Hill event featuring four premier
|
|
49
|
+
teams from North America. Each team will battle their way to the top and attempt
|
|
50
|
+
to win three matches in a row for a \\\"killing spree\\\". Hosted by NEO Dota.\",\n\t\t\t\t\"tournament_url\":
|
|
51
|
+
\"http://neodota.com/?page_id=1389\",\n\t\t\t\t\"itemdef\": 15014\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
52
|
+
\"Wild Cards West\",\n\t\t\t\t\"leagueid\": 2,\n\t\t\t\t\"description\": \"Watch
|
|
53
|
+
eight of the best Dota 2 teams compete for a spot in The International\",\n\t\t\t\t\"tournament_url\":
|
|
54
|
+
\"http://www.dota2.com/tournaments/international/\",\n\t\t\t\t\"itemdef\":
|
|
55
|
+
15015\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Wild Cards East\",\n\t\t\t\t\"leagueid\":
|
|
56
|
+
3,\n\t\t\t\t\"description\": \"Watch eight of the best Dota 2 teams compete
|
|
57
|
+
for a spot in The International\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2.com/tournaments/international/\",\n\t\t\t\t\"itemdef\":
|
|
58
|
+
15016\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Defense\",\n\t\t\t\t\"leagueid\":
|
|
59
|
+
4,\n\t\t\t\t\"description\": \"The Defense is the most prestigious Dota 2
|
|
60
|
+
online tournament held by joinDOTA, powered by Razer & BenQ. Featuring 20
|
|
61
|
+
hand-selected world-class teams and four community wildcard winners $10,000
|
|
62
|
+
prize money await only the toughest and most experienced of contestants on
|
|
63
|
+
their way to the top.\",\n\t\t\t\t\"tournament_url\": \"http://www.the-defense.com/en/start\",\n\t\t\t\t\"itemdef\":
|
|
64
|
+
15018\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"It's Gosu Monthly Madness Asia\",\n\t\t\t\t\"leagueid\":
|
|
65
|
+
5,\n\t\t\t\t\"description\": \"It's Gosu Monthly Madness is a Dota 2 tournament
|
|
66
|
+
hosted by It's Gosu eSports and generously sponsored by Own3D.Tv, Razer and
|
|
67
|
+
NOS Energy Drinks. Throughout the month of July, 16 of the best teams in Asia
|
|
68
|
+
will clash and only the finalists will share a part of the prizepool of $1,000.\",\n\t\t\t\t\"tournament_url\":
|
|
69
|
+
\"http://www.itsgosu.com/game/dota2/articles/it-s-gosu-announces-monthly-madness-asia-edition_563\",\n\t\t\t\t\"itemdef\":
|
|
70
|
+
15042\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Star Series Season II Lan Final\",\n\t\t\t\t\"leagueid\":
|
|
71
|
+
6,\n\t\t\t\t\"description\": \"Star Series is one of the most prestigious
|
|
72
|
+
Dota 2 leagues held by StarLadder, and powered by Intel and Asus. The keystone
|
|
73
|
+
of Star Series is the LAN final, which is held in Kiev CyberSport Arena, Ukraine.
|
|
74
|
+
Watch the six best teams compete for the Grand Prize of $15,000 and the title
|
|
75
|
+
Star Series Champion.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.starladder.tv/news/1182\",\n\t\t\t\t\"itemdef\":
|
|
76
|
+
15047\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"BeyondTheSummit World Tour\",\n\t\t\t\t\"leagueid\":
|
|
77
|
+
7,\n\t\t\t\t\"description\": \"BeyondTheSummit World Tour features 15 of the
|
|
78
|
+
16 teams attending The International. Brought to you in association with DotaCommentaries
|
|
79
|
+
this warmup event is sure to whet your appetite as competitors from four different
|
|
80
|
+
continents compete for the $1,000 prize that awaits only the top placing team.\",\n\t\t\t\t\"tournament_url\":
|
|
81
|
+
\"http://www.dotacommentaries.com/index.php/bts-wt/\",\n\t\t\t\t\"itemdef\":
|
|
82
|
+
15049\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Prodota 2 Worldwide League\",\n\t\t\t\t\"leagueid\":
|
|
83
|
+
8,\n\t\t\t\t\"description\": \"Prodota 2 takes its tournament to the world
|
|
84
|
+
stage during the play-offs, featuring some of the most well known and talented
|
|
85
|
+
teams from around the globe. With $30,000 in prize money on the line we'll
|
|
86
|
+
find out which region of the world truly has the best of the best!\",\n\t\t\t\t\"tournament_url\":
|
|
87
|
+
\"http://www.prodota2.com/\",\n\t\t\t\t\"itemdef\": 15051\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
88
|
+
\"Machinima ECAL: Americas\",\n\t\t\t\t\"leagueid\": 9,\n\t\t\t\t\"description\":
|
|
89
|
+
\"ECAL playoffs will feature 3 teams from the international: EG, coL, and
|
|
90
|
+
aL along with up and coming teams in the competitive scene such as Quantic
|
|
91
|
+
Gaming and POTM BOTTOM. A $3,000 prize pool sponsored by Machinima will be
|
|
92
|
+
offered to the victors.\",\n\t\t\t\t\"tournament_url\": \"http://www.ecal.tv/playoffs\",\n\t\t\t\t\"itemdef\":
|
|
93
|
+
15053\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Internal\",\n\t\t\t\t\"leagueid\":
|
|
94
|
+
65000,\n\t\t\t\t\"description\": \"This is the test tournament for the systems
|
|
95
|
+
that will be used at The International. Watch the best Dota 2 teams in Bellevue
|
|
96
|
+
compete for the grand prize of being hated by their coworkers.\",\n\t\t\t\t\"tournament_url\":
|
|
97
|
+
\"http://www.dota2.com/tournaments/international/\",\n\t\t\t\t\"itemdef\":
|
|
98
|
+
15055\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Nexon Starter League\",\n\t\t\t\t\"leagueid\":
|
|
99
|
+
65007,\n\t\t\t\t\"description\": \"Nexon Korea presents its inaugural Nexon
|
|
100
|
+
Starter League (NSL), brought to you live by GOM TV. NSL will feature the
|
|
101
|
+
top 8 teams advanced from Open Qualifier as they compete for a prize pool
|
|
102
|
+
of KRW 23 million cash. The winning team will also be rewarded with an all-expenses-paid
|
|
103
|
+
trip to TI3.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.nexon.com\",\n\t\t\t\t\"itemdef\":
|
|
104
|
+
15061\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Razer Mini Madness\",\n\t\t\t\t\"leagueid\":
|
|
105
|
+
10,\n\t\t\t\t\"description\": \"Razer Mini Madness is a Dota 2 tournament
|
|
106
|
+
hosted by It's Gosu eSports and generously sponsored by Razer. Eight of the
|
|
107
|
+
best teams in Asia will compete and will try to bag the $500 prize. This tournament
|
|
108
|
+
is the last opportunity for the teams to get ready for this year's The International.\",\n\t\t\t\t\"tournament_url\":
|
|
109
|
+
\"http://www.itsgosu.com/game/dota2/articles/it-s-gosu-presents-razer-mini-madness_621\",\n\t\t\t\t\"itemdef\":
|
|
110
|
+
15063\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"AbsoluteArena King of the Hill\",\n\t\t\t\t\"leagueid\":
|
|
111
|
+
11,\n\t\t\t\t\"description\": \"AbsoluteArena King of the Hill is a tournament
|
|
112
|
+
consisting of a weekly match-up between two teams in a best-of-5 format. The
|
|
113
|
+
first win is $100, and the prize increases every week by $100. Teams are able
|
|
114
|
+
to win five games in a row ($1500) at which time the series starts over.\",\n\t\t\t\t\"tournament_url\":
|
|
115
|
+
\"http://www.absolutelegends.net/news/2069/AbsoluteArena-King-of-the-Hill-Schedule-Update\",\n\t\t\t\t\"itemdef\":
|
|
116
|
+
15065\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Corsair Summer 2013\",\n\t\t\t\t\"leagueid\":
|
|
117
|
+
57,\n\t\t\t\t\"description\": \"Corsair hosts Summer Tournament 2013 together
|
|
118
|
+
with GosuGamers, where sixteen teams will compete for the total of $10,000
|
|
119
|
+
USD.\",\n\t\t\t\t\"tournament_url\": \"http://gc.corsair.com\",\n\t\t\t\t\"itemdef\":
|
|
120
|
+
15071\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The International 2012\",\n\t\t\t\t\"leagueid\":
|
|
121
|
+
65001,\n\t\t\t\t\"description\": \"Watch the top 16 teams from around the
|
|
122
|
+
world compete in The International.\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2.com/tournaments/international2012/mainevent/results/champions/\",\n\t\t\t\t\"itemdef\":
|
|
123
|
+
15072\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"RaidCall Dota 2 League\",\n\t\t\t\t\"leagueid\":
|
|
124
|
+
12,\n\t\t\t\t\"description\": \"The RaidCall Dota 2 League is a $10,000 online
|
|
125
|
+
Dota 2 tournament series featuring the top Dota 2 teams from around the globe.
|
|
126
|
+
Broadcast four days a week for over eight weeks, the D2L (as it's commonly
|
|
127
|
+
called) is commentated live by Ayesee and invited guests.\",\n\t\t\t\t\"tournament_url\":
|
|
128
|
+
\"http://d2l.evilgeniuses.net\",\n\t\t\t\t\"itemdef\": 15075\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
129
|
+
\"Star Series Season III\",\n\t\t\t\t\"leagueid\": 13,\n\t\t\t\t\"description\":
|
|
130
|
+
\"StarLadder's Star Series is one of the most prestigious Dota 2 leagues,
|
|
131
|
+
powered by Intel & Asus and casted by v1lat and TobiWan. The keystone of Star
|
|
132
|
+
Series is the LAN final, held in Kiev CyberSport Arena, Ukraine. Watch the
|
|
133
|
+
best Dota 2 teams compete for $15,000 and the title Star Series Champion.\",\n\t\t\t\t\"tournament_url\":
|
|
134
|
+
\"http://dota2.starladder.tv\",\n\t\t\t\t\"itemdef\": 15077\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
135
|
+
\"GEST Dota 2\",\n\t\t\t\t\"leagueid\": 14,\n\t\t\t\t\"description\": \"The
|
|
136
|
+
Gigabyte E-Sports Tournament is sponsored by Gigabyte and hosted by DotaTalk.
|
|
137
|
+
The winners of six qualifiers from South-East Asia will face off against veteran
|
|
138
|
+
teams for a cash prize of $1,500 and the chance to compete against two of
|
|
139
|
+
the best Chinese teams, IG and LGD, for another $1500.\",\n\t\t\t\t\"tournament_url\":
|
|
140
|
+
\"http://www.dotatalk.com/tournaments/gest/\",\n\t\t\t\t\"itemdef\": 15081\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
141
|
+
\"Premier League\",\n\t\t\t\t\"leagueid\": 15,\n\t\t\t\t\"description\": \"Fueled
|
|
142
|
+
by joint forces of TwitchTV and SteelSeries, Season 3 is the newest edition
|
|
143
|
+
of The Premier League. Watch 10 of the best teams from both Europe and North
|
|
144
|
+
America contend for $6,000 with 5 intense matches every week for 9 weeks.
|
|
145
|
+
Commentary by TriumphOfMan.\",\n\t\t\t\t\"tournament_url\": \"www.thepremierleague.eu\",\n\t\t\t\t\"itemdef\":
|
|
146
|
+
15083\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GosuLeague\",\n\t\t\t\t\"leagueid\":
|
|
147
|
+
16,\n\t\t\t\t\"description\": \"GosuLeague delivers seasons on a monthly basis
|
|
148
|
+
where teams of all skill levels play in different divisions. The top division
|
|
149
|
+
is awarded with $5000 each month. Each team play two matches a week.\",\n\t\t\t\t\"tournament_url\":
|
|
150
|
+
\"http://play.gosugamers.net/events/48:gosuleague-season-4\",\n\t\t\t\t\"itemdef\":
|
|
151
|
+
15085\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"G-1 Championship League\",\n\t\t\t\t\"leagueid\":
|
|
152
|
+
17,\n\t\t\t\t\"description\": \"The G-1 Championship League, hosted by 17173
|
|
153
|
+
Games, is the first Dota 2 tournament in China. Exciting matches await with
|
|
154
|
+
teams like iG, LGD and DK competing for a prize pool of $50,000.\",\n\t\t\t\t\"tournament_url\":
|
|
155
|
+
\"http://media.17173.com/dota/g1/\",\n\t\t\t\t\"itemdef\": 15096\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
156
|
+
\"atoD 2\",\n\t\t\t\t\"leagueid\": 18,\n\t\t\t\t\"description\": \"atoD 2
|
|
157
|
+
features 8 top North American and European teams. Using Reverse Captain's
|
|
158
|
+
Mode, teams will surely play unconventional heroes and sabotage each other's
|
|
159
|
+
lineups. With some of the proceeds going to the prize it's the first tournament
|
|
160
|
+
to include a direct way for fans to increase the prizepool.\",\n\t\t\t\t\"tournament_url\":
|
|
161
|
+
\"\",\n\t\t\t\t\"itemdef\": 15099\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"It's
|
|
162
|
+
Gosu Asia Madness\",\n\t\t\t\t\"leagueid\": 19,\n\t\t\t\t\"description\":
|
|
163
|
+
\"It's Gosu returns with its third edition of the Asia Madness where the ten
|
|
164
|
+
best teams from Asia will be competing for a prize pool of $5,000 in a triple
|
|
165
|
+
elimination format.\",\n\t\t\t\t\"tournament_url\": \"http://www.itsgosu.com/game/dota2/articles/it-s-gosu-asia-madness-for-love-completes-the-line-up_802\",\n\t\t\t\t\"itemdef\":
|
|
166
|
+
15101\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"DreamHack Dota 2 Corsair Vengeance
|
|
167
|
+
Cup\",\n\t\t\t\t\"leagueid\": 65002,\n\t\t\t\t\"description\": \"Watch the
|
|
168
|
+
DreamHack Dota 2 Corsair Vengeance Cup at this year's Dreamhack Winter where
|
|
169
|
+
16 teams compete for the 200 000 SEK prize purse. The Grand Final is played
|
|
170
|
+
in the DreamArena Extreme in front of 1100 fans.\",\n\t\t\t\t\"tournament_url\":
|
|
171
|
+
\"www.dreamhack.se\",\n\t\t\t\t\"itemdef\": 15103\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
172
|
+
\"Star Series Season IV\",\n\t\t\t\t\"leagueid\": 20,\n\t\t\t\t\"description\":
|
|
173
|
+
\"StarLadder's Star Series is one of the most prestigious Dota 2 leagues,
|
|
174
|
+
powered by Intel & Asus and casted by v1lat and TobiWan. The keystone of Star
|
|
175
|
+
Series is the LAN final, held in Kiev CyberSport Arena, Ukraine. Watch the
|
|
176
|
+
best Dota 2 teams compete for $15,000 and the title Star Series Champion.\",\n\t\t\t\t\"tournament_url\":
|
|
177
|
+
\"http://dota2.starladder.tv\",\n\t\t\t\t\"itemdef\": 15105\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
178
|
+
\"The Defense 3\",\n\t\t\t\t\"leagueid\": 21,\n\t\t\t\t\"description\": \"The
|
|
179
|
+
Defense is back with new sponsors ROCCAT and own3D.tv. Watch 24 invited professional
|
|
180
|
+
teams and 8 teams from an open qualifier battle for a prize pool of $20,000.
|
|
181
|
+
This ticket will entitle you to over 100 broadcasted matches by Toby \\\"Tobi
|
|
182
|
+
Wan Kenobi\\\" Dawson as well as one exclusive courier.\",\n\t\t\t\t\"tournament_url\":
|
|
183
|
+
\"http://www.the-defense.com/en/start\",\n\t\t\t\t\"itemdef\": 15107\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
184
|
+
\"RaidCall Dota 2 League Season 2\",\n\t\t\t\t\"leagueid\": 22,\n\t\t\t\t\"description\":
|
|
185
|
+
\"The RaidCall Dota 2 League returns for a second $10,000 season. The top
|
|
186
|
+
twelve teams in the western world battle it out six days a week for eleven
|
|
187
|
+
total weeks live with commentary by Ayesee and Draskyl. Over 120 matches guaranteed.\",\n\t\t\t\t\"tournament_url\":
|
|
188
|
+
\"http://d2l.evilgeniuses.net\",\n\t\t\t\t\"itemdef\": 15109\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
189
|
+
\"Dota 2 The Asia\",\n\t\t\t\t\"leagueid\": 23,\n\t\t\t\t\"description\":
|
|
190
|
+
\"This December Malaysia will be the focal point for all things eSports in
|
|
191
|
+
Asia as gamers from all around the region turn their attention to what will
|
|
192
|
+
be its last major eSporting event for the year - The Games Expo (TGX) Malaysia.\",\n\t\t\t\t\"tournament_url\":
|
|
193
|
+
\"http://e-clubmalaysia.com/dota2/?page_id=2701 \",\n\t\t\t\t\"itemdef\":
|
|
194
|
+
15111\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"G-League 2012\",\n\t\t\t\t\"leagueid\":
|
|
195
|
+
24,\n\t\t\t\t\"description\": \"The famous G-League Tournament makes its Dota
|
|
196
|
+
2 debut on Dec. 25. Watch the best 8 asian teams, including IG, LGD and DK,
|
|
197
|
+
compete for a prize pool of $40,000. Hosted by GameFY\",\n\t\t\t\t\"tournament_url\":
|
|
198
|
+
\"http://gleague.gamefy.cn/\",\n\t\t\t\t\"itemdef\": 15119\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
199
|
+
\"SEA League\",\n\t\t\t\t\"leagueid\": 26,\n\t\t\t\t\"description\": \"The
|
|
200
|
+
SEA League features SEA's finest teams as they compete in several stages of
|
|
201
|
+
the tournament. Two weeks of intense action will be commentated by GoDz and
|
|
202
|
+
LD of BeyondthesummitTV.\",\n\t\t\t\t\"tournament_url\": \"http://sealeague.wordpress.com/\",\n\t\t\t\t\"itemdef\":
|
|
203
|
+
15122\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Premier League Season 4\",\n\t\t\t\t\"leagueid\":
|
|
204
|
+
27,\n\t\t\t\t\"description\": \"Watch 10 of the best teams from Europe and
|
|
205
|
+
America contend for a prize of $10,000. This ticket will entitle you to over
|
|
206
|
+
100 matches commentated by Blaze & Rainmaker and Russian commentary by Versuta.
|
|
207
|
+
Also included is the exclusive courier 'Wynchell the Wyrmeleon'.\",\n\t\t\t\t\"tournament_url\":
|
|
208
|
+
\"http://www.thepremierleague.eu\",\n\t\t\t\t\"itemdef\": 15124\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
209
|
+
\"RaidCall EMS One Spring 2013\",\n\t\t\t\t\"leagueid\": 28,\n\t\t\t\t\"description\":
|
|
210
|
+
\"The RaidCall EMS One Spring 2013 is the new premier Dota2 competition. Over
|
|
211
|
+
the course of several weeks, established teams will face up-and-coming challengers
|
|
212
|
+
in the fight for a spot in the playoffs and eventually at the live event finals,
|
|
213
|
+
competing for $39,000 in prize money.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.raidcall-emsone.com/\",\n\t\t\t\t\"itemdef\":
|
|
214
|
+
15127\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Star Series Season V\",\n\t\t\t\t\"leagueid\":
|
|
215
|
+
29,\n\t\t\t\t\"description\": \"StarLadder's StarSeries Season 5 is back!
|
|
216
|
+
Broadcast in 4 different languages with v1lat and TobiWan as headliners and
|
|
217
|
+
a grand prize of $15,000 this should be the best StarSeries yet! The keystone
|
|
218
|
+
of StarSeries is its LAN finals, held in Kiev Cybersport Arena. Includes an
|
|
219
|
+
exclusive in-game Courier.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.starladder.tv\",\n\t\t\t\t\"itemdef\":
|
|
220
|
+
15129\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"4Players League\",\n\t\t\t\t\"leagueid\":
|
|
221
|
+
65003,\n\t\t\t\t\"description\": \"The 4PL is an European online gaming league
|
|
222
|
+
that provides, besides many other events, the exciting and well known Play4Dota2
|
|
223
|
+
tournaments with teams participating from all over the world. Form your team,
|
|
224
|
+
win money or hardware prizes and meet or encounter some of the best Dota 2
|
|
225
|
+
players.\",\n\t\t\t\t\"tournament_url\": \"http://www.4pl.de\",\n\t\t\t\t\"itemdef\":
|
|
226
|
+
15131\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GEST Dota 2 - Feb and March\",\n\t\t\t\t\"leagueid\":
|
|
227
|
+
30,\n\t\t\t\t\"description\": \"The Gigabyte E-Sports Tournament is sponsored
|
|
228
|
+
by Gigabyte and hosted by DotaTalk. The winners of 8 GMPGL qualifiers from
|
|
229
|
+
South-East Asia will compete against one another for another cash prize of
|
|
230
|
+
$1500. The winners will compete against the Top Chinese Teams for another
|
|
231
|
+
$1500.\",\n\t\t\t\t\"tournament_url\": \"https://www.dotatalk.com/gest-main-coverage-page\",\n\t\t\t\t\"itemdef\":
|
|
232
|
+
15134\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Armageddon Dota 2 Grand Slam!\",\n\t\t\t\t\"leagueid\":
|
|
233
|
+
31,\n\t\t\t\t\"description\": \"The battle between the best Dota 2 teams in
|
|
234
|
+
Asia is on! Watch as they game fiercely to win a chance to be sponsored by
|
|
235
|
+
the big names in corporate alliance!\",\n\t\t\t\t\"tournament_url\": \"http://e-clubmalaysia.com/dota2/?p=3350\",\n\t\t\t\t\"itemdef\":
|
|
236
|
+
15136\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"WePlay Dota 2\",\n\t\t\t\t\"leagueid\":
|
|
237
|
+
32,\n\t\t\t\t\"description\": \"WePlay.TV proudly presents the WePlay Dota
|
|
238
|
+
2 League, brought to you by Logitech, Western Digital, and Inno3D! Beginning
|
|
239
|
+
this March, thirty-two of Western Dota's best will duke it out online for
|
|
240
|
+
$20,000 in cash & gear prizes with professional commentary from Beyond the
|
|
241
|
+
Summit and WePlay.TV.\",\n\t\t\t\t\"tournament_url\": \"http://weplay.tv/\",\n\t\t\t\t\"itemdef\":
|
|
242
|
+
15138\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"DreamHack Dota2 Invitational\",\n\t\t\t\t\"leagueid\":
|
|
243
|
+
33,\n\t\t\t\t\"description\": \"DreamHack Dota2 Invitational Features 8 of
|
|
244
|
+
the top European teams, battling online for $6000 and the opportunity to qualify
|
|
245
|
+
to DreamHack Summer Dota 2 Cup. 5 action packed weeks of content, produced
|
|
246
|
+
by The GD Studio, with commentary by Draskyl, 2GD, Wagamama, Weppas and Bruno.\",\n\t\t\t\t\"tournament_url\":
|
|
247
|
+
\"http://www.dreamhack.se/dhs13/2013/03/02/the-dreamhack-dota2-invitational/\",\n\t\t\t\t\"itemdef\":
|
|
248
|
+
15140\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"G-1 Champions League Season
|
|
249
|
+
5\",\n\t\t\t\t\"leagueid\": 34,\n\t\t\t\t\"description\": \"The 5th G-1 Championship
|
|
250
|
+
will feature an online qualifier to select the top Western team for a paid
|
|
251
|
+
flight to the LAN finals in China to face teams like iG, LGD, DK and Orange.
|
|
252
|
+
The Asia qualifiers will also use a prelim system to compete for spots at
|
|
253
|
+
the LAN finals. The prize pool exceeds $53,000.\",\n\t\t\t\t\"tournament_url\":
|
|
254
|
+
\"http://g1.2p.com/dota2/\",\n\t\t\t\t\"itemdef\": 15142\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
255
|
+
\"Netolic Pro League 2nd edition\",\n\t\t\t\t\"leagueid\": 36,\n\t\t\t\t\"description\":
|
|
256
|
+
\"16 teams, 8 from direct invitation and 8 from qualifiers, will compete for
|
|
257
|
+
$4000. The tournament will feature teams like Orange, Zenith, Vici Gaming
|
|
258
|
+
and MUFC. Commentary will be provided in English, Spanish and Portuguese.\",\n\t\t\t\t\"tournament_url\":
|
|
259
|
+
\"http://www.netolic.tv/\",\n\t\t\t\t\"itemdef\": 15148\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
260
|
+
\"AtoD 3\",\n\t\t\t\t\"leagueid\": 37,\n\t\t\t\t\"description\": \"ATOD3 is
|
|
261
|
+
the third edition of the uniquely popular Reverse-Captain's Mode tournament
|
|
262
|
+
presented by Peter \\\"HamSandwich\\\" Congdon. 12 teams from Europe and the
|
|
263
|
+
Americas battle for a part of the $1,500 prizepool. Watch unconventional strategies
|
|
264
|
+
as teams battle with less frequently played heroes.\",\n\t\t\t\t\"tournament_url\":
|
|
265
|
+
\"\",\n\t\t\t\t\"itemdef\": 15149\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"E2Max
|
|
266
|
+
L33T Championship\",\n\t\t\t\t\"leagueid\": 38,\n\t\t\t\t\"description\":
|
|
267
|
+
\"The inaugural E2Max L33T Championship (ELC) will feature a prize pool of
|
|
268
|
+
SGD13,000 cash. online and LAN qualifiers from May to July, with the Grand
|
|
269
|
+
Finals on 7th July at E2Max, Cineleisure, Singapore! ELC is presented by Cathay,
|
|
270
|
+
hosted by Rapture Gaming Network, supported by e-Club and CM Storm.\",\n\t\t\t\t\"tournament_url\":
|
|
271
|
+
\"http://www.rapturegaming.net/ELC\",\n\t\t\t\t\"itemdef\": 15151\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
272
|
+
\"GEST Dota 2 - April and May\",\n\t\t\t\t\"leagueid\": 39,\n\t\t\t\t\"description\":
|
|
273
|
+
\"The Gigabyte E-sports tournament is sponsored by Gigabyte and hosted by
|
|
274
|
+
DotaTalk. The winners of 8 GMPGL Qualifiers from South-East Asia will compete
|
|
275
|
+
against one another for another cash prize of $1500. The winners will then
|
|
276
|
+
compete against the Top Chinese Teams for another $1500.\",\n\t\t\t\t\"tournament_url\":
|
|
277
|
+
\"http://www.dotatalk.com/gest-main-coverage-page\",\n\t\t\t\t\"itemdef\":
|
|
278
|
+
15153\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"AMD Dota2 Premier League\",\n\t\t\t\t\"leagueid\":
|
|
279
|
+
40,\n\t\t\t\t\"description\": \"AMD, in partnership with DotaTalk, proudly
|
|
280
|
+
brings you the AMD Premier League. The tournament features SEA's finest teams
|
|
281
|
+
as they compete for a total prize pool of $5,000. Two months of intense action
|
|
282
|
+
will be commentated by GoDz, LD, Luminous and Blaze on BeyondthesummitTV.\",\n\t\t\t\t\"tournament_url\":
|
|
283
|
+
\"http://www.dotatalk.com/tournament/amd-dota-2-premier-league\",\n\t\t\t\t\"itemdef\":
|
|
284
|
+
15155\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The International East Qualifiers\",\n\t\t\t\t\"leagueid\":
|
|
285
|
+
65004,\n\t\t\t\t\"description\": \"Watch eight of the best Dota 2 teams compete
|
|
286
|
+
for a spot in The International\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2.com/tournaments/international/announcement/\",\n\t\t\t\t\"itemdef\":
|
|
287
|
+
15157\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The International West Qualifiers\",\n\t\t\t\t\"leagueid\":
|
|
288
|
+
65005,\n\t\t\t\t\"description\": \"Watch eight of the best Dota 2 teams compete
|
|
289
|
+
for a spot in The International\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2.com/tournaments/international/announcement/\",\n\t\t\t\t\"itemdef\":
|
|
290
|
+
15158\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Curse Dota 2 Invitational\",\n\t\t\t\t\"leagueid\":
|
|
291
|
+
41,\n\t\t\t\t\"description\": \"The Curse Dota 2 Invitational, sponsored by
|
|
292
|
+
Alienware, is an invitational bracket tournament that spans 3 weekends. 8
|
|
293
|
+
Teams were invited to compete in a double elimination format with a $10,000
|
|
294
|
+
prize pool. (1st $5,000 2nd $3,000 3rd $2,000)\",\n\t\t\t\t\"tournament_url\":
|
|
295
|
+
\"http://www.curse.com/news/dota-2/48217-team-brackets-announced-curse-dota-2-invitational\",\n\t\t\t\t\"itemdef\":
|
|
296
|
+
15160\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Super League\",\n\t\t\t\t\"leagueid\":
|
|
297
|
+
42,\n\t\t\t\t\"description\": \"Ten top teams from home and abroad compete
|
|
298
|
+
for two months in Shanghai, China for a total prize pool of 1.05 million yuan.\",\n\t\t\t\t\"tournament_url\":
|
|
299
|
+
\"http://play.gosugamers.net/events/113-dota-2-super-league\",\n\t\t\t\t\"itemdef\":
|
|
300
|
+
15165\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Pinoy Gaming Festival Summer
|
|
301
|
+
Assembly\",\n\t\t\t\t\"leagueid\": 43,\n\t\t\t\t\"description\": \"Watch 5
|
|
302
|
+
Filipino teams defend their home turf against Neolution.Orange, Neolution.International
|
|
303
|
+
and PMS|Asterisk* at the Pinoy Gaming Festival Summer Assembly 2013 for a
|
|
304
|
+
prize pool of $1,750.\",\n\t\t\t\t\"tournament_url\": \"http://www.pgf.ph/\",\n\t\t\t\t\"itemdef\":
|
|
305
|
+
15169\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Rapture Gaming Network League\",\n\t\t\t\t\"leagueid\":
|
|
306
|
+
44,\n\t\t\t\t\"description\": \"Rapture Gaming Network League 2013/2014 ticket
|
|
307
|
+
gives you access to 198 matches over 9 months of the 10 premier teams in Asia
|
|
308
|
+
vying for a prize pool of SGD19,000 cash, this is one of the biggest DOTA
|
|
309
|
+
2 leagues in Asia! Commentary in English, Filipino, Thai, and Vietnamese will
|
|
310
|
+
be provided by RGN.\",\n\t\t\t\t\"tournament_url\": \"http://www.rapturegaming.net/\",\n\t\t\t\t\"itemdef\":
|
|
311
|
+
15171\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Premier League Season 5\",\n\t\t\t\t\"leagueid\":
|
|
312
|
+
45,\n\t\t\t\t\"description\": \"In cooperation with Norton, TPL returns with
|
|
313
|
+
a new format. 8 best teams from Europe fight for entry to the $15,000 SuperCup
|
|
314
|
+
by contesting each other in smaller cups. This ticket grants you entry to
|
|
315
|
+
a total of 8 knockout tournaments, Stone Ruin HUD and the Wicked Succubus
|
|
316
|
+
evolving set.\",\n\t\t\t\t\"tournament_url\": \"http://www.thepremierleague.eu\",\n\t\t\t\t\"itemdef\":
|
|
317
|
+
15173\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"StarSeries Season VI\",\n\t\t\t\t\"leagueid\":
|
|
318
|
+
46,\n\t\t\t\t\"description\": \"Broadcast in 4 different languages with v1lat
|
|
319
|
+
and TobiWan as headliners and a grand prize of $22,500 this should be the
|
|
320
|
+
best StarSeries yet! The keystone of StarSeries is its LAN finals, held in
|
|
321
|
+
Kiev Cybersport Arena. Includes an exclusive in-game Starladder HUD Skin.\",\n\t\t\t\t\"tournament_url\":
|
|
322
|
+
\"http://dota2.starladder.tv/\",\n\t\t\t\t\"itemdef\": 15175\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
323
|
+
\"RaidCall EMS One Summer 2013\",\n\t\t\t\t\"leagueid\": 47,\n\t\t\t\t\"description\":
|
|
324
|
+
\"The RaidCall EMS One Summer 2013 features teams from all over the world
|
|
325
|
+
in a battle for 39,000 US dollars in prize money. Established teams and challengers
|
|
326
|
+
meet in four cups, followed by group stage playoffs and live event finals
|
|
327
|
+
- giving you dozens of great matches casted by TobiWan and others.\",\n\t\t\t\t\"tournament_url\":
|
|
328
|
+
\"http://dota2.raidcall-emsone.com/\",\n\t\t\t\t\"itemdef\": 15177\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
329
|
+
\"RaidCall Dota 2 League Season 3\",\n\t\t\t\t\"leagueid\": 48,\n\t\t\t\t\"description\":
|
|
330
|
+
\"The RaidCall Dota 2 League (D2L) is a 7-week online Dota 2 league featuring
|
|
331
|
+
the top eight Dota 2 teams in the West battling it out for a portion of the
|
|
332
|
+
$10,000 seasonal cash prize and the opportunity of competing live at DreamHack
|
|
333
|
+
Valencia.\",\n\t\t\t\t\"tournament_url\": \"http://www.d2l.gg/\",\n\t\t\t\t\"itemdef\":
|
|
334
|
+
15179\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Canada Cup\",\n\t\t\t\t\"leagueid\":
|
|
335
|
+
49,\n\t\t\t\t\"description\": \"The Dota 2 Canada Cup is back featuring defending
|
|
336
|
+
champions WAND and runners up AWT Happen? Casters include Kawa, NYJohn and
|
|
337
|
+
more! \",\n\t\t\t\t\"tournament_url\": \"http://dota-2.co/\",\n\t\t\t\t\"itemdef\":
|
|
338
|
+
15181\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"American Dota League\",\n\t\t\t\t\"leagueid\":
|
|
339
|
+
50,\n\t\t\t\t\"description\": \"AMERICAN DOTA LEAGUE features the best teams
|
|
340
|
+
in North and South America competing for $10,000 in a month and a half long
|
|
341
|
+
league.\",\n\t\t\t\t\"tournament_url\": \"http://americandotaleague.com/\",\n\t\t\t\t\"itemdef\":
|
|
342
|
+
15183\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Defense Season 4\",\n\t\t\t\t\"leagueid\":
|
|
343
|
+
51,\n\t\t\t\t\"description\": \"The Defense is going into its fourth season,
|
|
344
|
+
powered by EIZO and offering USD 25,000 prize money. Watch 20 of the best
|
|
345
|
+
international teams compete in a two-month long spree of action packed high-class
|
|
346
|
+
games. Ticket holders will also recieve Munk the Melyon, a fearless courier
|
|
347
|
+
that adapts to the players current faction.\",\n\t\t\t\t\"tournament_url\":
|
|
348
|
+
\"http://www.the-defense.com/\",\n\t\t\t\t\"itemdef\": 15185\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
349
|
+
\"REDBULL Esports Champion League 2013\",\n\t\t\t\t\"leagueid\": 52,\n\t\t\t\t\"description\":
|
|
350
|
+
\"24 Asian teams invited, including Orange, TongFu, Rattlesnakes, Vici Gaming,
|
|
351
|
+
Rising Stars and For.Love. 8 teams go to the offline final for a total prize
|
|
352
|
+
pool of $21,187. \",\n\t\t\t\t\"tournament_url\": \"http://www.cespc.com/\",\n\t\t\t\t\"itemdef\":
|
|
353
|
+
15187\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"DreamHack ASUS ROG Dota 2 Tournament\",\n\t\t\t\t\"leagueid\":
|
|
354
|
+
53,\n\t\t\t\t\"description\": \"DreamHack ASUS ROG Dota 2 Tournament is run
|
|
355
|
+
on the 15-17th of June at DreamHack Summer 2013, the world's largest Digitial
|
|
356
|
+
Festival. 16 teams will fight for 300 000 SEK. The tournament is supported
|
|
357
|
+
by ASUS ROG and Plantronics GameCom. Casted by Draskyl and Ayesee.\",\n\t\t\t\t\"tournament_url\":
|
|
358
|
+
\"www.dreamhack.se\",\n\t\t\t\t\"itemdef\": 15190\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
359
|
+
\"Alienware Cup - 2013 Season 1\",\n\t\t\t\t\"leagueid\": 54,\n\t\t\t\t\"description\":
|
|
360
|
+
\"Na`Vi joins all nine TI3 East teams to compete for a share of the USD 60,000
|
|
361
|
+
prize pool. The 58-78 premium games will be casted by Beyond The Summit and
|
|
362
|
+
special guests. Sponsored by Alienware and Mastercard. Organized by DPM Interactive.\",\n\t\t\t\t\"tournament_url\":
|
|
363
|
+
\"http://www.alienwarecup.com/\",\n\t\t\t\t\"itemdef\": 15192\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
364
|
+
\"The International\",\n\t\t\t\t\"leagueid\": 65006,\n\t\t\t\t\"description\":
|
|
365
|
+
\"Watch the top 16 teams from around the world compete in The International.\",\n\t\t\t\t\"tournament_url\":
|
|
366
|
+
\"http://www.dota2.com/international/announcement/\",\n\t\t\t\t\"itemdef\":
|
|
367
|
+
15406\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"CDEC Season 2-4\",\n\t\t\t\t\"leagueid\":
|
|
368
|
+
55,\n\t\t\t\t\"description\": \"CDEC is an in house league consisting if the
|
|
369
|
+
best Chinese players. Each day the top three games will be broadcasted. There
|
|
370
|
+
will also be a top 10 players match each week. This is a unique format that
|
|
371
|
+
allows you to see different pro players working together. \",\n\t\t\t\t\"tournament_url\":
|
|
372
|
+
\"http://bbs.vpgame.cn/\",\n\t\t\t\t\"itemdef\": 15196\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
373
|
+
\"AMD Dota2 Premier League Season 2\",\n\t\t\t\t\"leagueid\": 58,\n\t\t\t\t\"description\":
|
|
374
|
+
\"The highly anticipated AMD Premier League Season Two is back. Watch as SEAÃ\x82Â\x99s
|
|
375
|
+
finest teams; Orange, Zenith, Mufc, Vici Gaming and more compete for a total
|
|
376
|
+
prize pool of $5000. This one month of intense action will be brought to you
|
|
377
|
+
by DotaTalk and powered by AMD.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/amd2pl\",\n\t\t\t\t\"itemdef\":
|
|
378
|
+
15199\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GEST June and July 2013\",\n\t\t\t\t\"leagueid\":
|
|
379
|
+
59,\n\t\t\t\t\"description\": \"The Gigabyte E-Sports Tournament is sponsored
|
|
380
|
+
by Gigabyte and hosted by DotaTalk. The winners of 8 GMPGL qualifiers from
|
|
381
|
+
South-East Asia will compete against one another for another cash prize of
|
|
382
|
+
$1500. The winners will compete against the Top Chinese Teams for another
|
|
383
|
+
$1500.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/gest-main-coverage-page\",\n\t\t\t\t\"itemdef\":
|
|
384
|
+
15201\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Electronic Sports World Cup
|
|
385
|
+
2013\",\n\t\t\t\t\"leagueid\": 61,\n\t\t\t\t\"description\": \"The Electronic
|
|
386
|
+
Sports World Cup 2013 features regional online qualifying tournaments from
|
|
387
|
+
August to October 2013, culminating with the Grand Final tournament in Paris
|
|
388
|
+
from October 30 to November 3, 2013.\\r\\n\\tThe ticket comes with the ESWC
|
|
389
|
+
Diamond HUD\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://www.eswc.com/\",\n\t\t\t\t\"itemdef\":
|
|
390
|
+
15203\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Neolution GosuCup\",\n\t\t\t\t\"leagueid\":
|
|
391
|
+
60,\n\t\t\t\t\"description\": \"Neolution GosuCup is a monthly cup where 4
|
|
392
|
+
of the top Asian teams compete for a prize pool of $1000. This cup runs for
|
|
393
|
+
5 months and is hosted by GosuGamers.net.\",\n\t\t\t\t\"tournament_url\":
|
|
394
|
+
\"http://www.gosugamers.net/events/138-neolution-gosucup\",\n\t\t\t\t\"itemdef\":
|
|
395
|
+
15207\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Batalha Gamer\",\n\t\t\t\t\"leagueid\":
|
|
396
|
+
62,\n\t\t\t\t\"description\": \"The Battle Gamer (BG) is a tournament that
|
|
397
|
+
features 16 of the best Brazilian teams fighting for a prize of R $ 2,800.00.\",\n\t\t\t\t\"tournament_url\":
|
|
398
|
+
\"http://www.batalhagamer.com.br/\",\n\t\t\t\t\"itemdef\": 15212\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
399
|
+
\"Insomnia49 Dota 2 Cup\",\n\t\t\t\t\"leagueid\": 63,\n\t\t\t\t\"description\":
|
|
400
|
+
\"The Insomnia49 Dota 2 tournament will take place at Insomnia49 in Telford,
|
|
401
|
+
England. The best teams from Great Britain will compete for a share of £2,000
|
|
402
|
+
or more!\",\n\t\t\t\t\"tournament_url\": \"http://insomniagamingfestival.com/i49/tournaments/event/dota2/\",\n\t\t\t\t\"itemdef\":
|
|
403
|
+
15218\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Netolic Pro League 3rd Edition\",\n\t\t\t\t\"leagueid\":
|
|
404
|
+
64,\n\t\t\t\t\"description\": \"Netolic Pro League returns with a prize pool
|
|
405
|
+
of $2000! The tournament will have eight qualified teams compete against eight
|
|
406
|
+
invited teams!\",\n\t\t\t\t\"tournament_url\": \"http://www.netolic.tv/\",\n\t\t\t\t\"itemdef\":
|
|
407
|
+
15220\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SteelSeries Euro Cup\",\n\t\t\t\t\"leagueid\":
|
|
408
|
+
65,\n\t\t\t\t\"description\": \"Steelseries Euro Cup is an open tournament
|
|
409
|
+
where 2 of the top European teams compete for a prize pool of $1000.\",\n\t\t\t\t\"tournament_url\":
|
|
410
|
+
\"http://www.dotatalk.com/tournaments/steelseries-euro-cup-august\",\n\t\t\t\t\"itemdef\":
|
|
411
|
+
15222\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"TriniDota 2 League\",\n\t\t\t\t\"leagueid\":
|
|
412
|
+
66,\n\t\t\t\t\"description\": \"The top teams of Trinidad and Tobago compete
|
|
413
|
+
to be crowned champions!\",\n\t\t\t\t\"tournament_url\": \"http://www.ttgamingleague.com/dotaleague/\",\n\t\t\t\t\"itemdef\":
|
|
414
|
+
15224\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"MLG NA League and Full Sail
|
|
415
|
+
LAN\",\n\t\t\t\t\"leagueid\": 67,\n\t\t\t\t\"description\": \"The MLG North
|
|
416
|
+
American Online League will have the best teams in North America vie for a
|
|
417
|
+
chance to compete for $15,000 at Full Sail University.\",\n\t\t\t\t\"tournament_url\":
|
|
418
|
+
\"http://www.majorleaguegaming.com/news/mlg-fall-invitational-at-full-sail-university/\",\n\t\t\t\t\"itemdef\":
|
|
419
|
+
15226\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GEST August and September 2013\",\n\t\t\t\t\"leagueid\":
|
|
420
|
+
68,\n\t\t\t\t\"description\": \"The Gigabyte E-Sports Tournament will have
|
|
421
|
+
the winners of 8 GMPGL qualifiers from South-East Asia compete against one
|
|
422
|
+
another for a cash prize of $1500. The winners then compete against the top
|
|
423
|
+
Chinese Teams for another $1500.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/tournaments/gest-2-main-event-august\",\n\t\t\t\t\"itemdef\":
|
|
424
|
+
15228\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"StarSeries Season 7\",\n\t\t\t\t\"leagueid\":
|
|
425
|
+
69,\n\t\t\t\t\"description\": \"The new season of the legendary SLTV StarSeries
|
|
426
|
+
is here! Watch 120 matches and the Kiev Cybersport Arena LAN finals where
|
|
427
|
+
teams will compete for a total prize pool of $22,500. Caster headliners -
|
|
428
|
+
v1lat & TobiWan.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.starladder.tv/\",\n\t\t\t\t\"itemdef\":
|
|
429
|
+
15230\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"RaidCall EMS One Fall 2013\",\n\t\t\t\t\"leagueid\":
|
|
430
|
+
70,\n\t\t\t\t\"description\": \"In the Fall 2013 season of the RaidCall EMS
|
|
431
|
+
One, the world's best teams compete for a massive prize fund of $39,000 US.
|
|
432
|
+
After an online season, the eight best teams get to battle it out at the live
|
|
433
|
+
event finals. Besides lots of matches, ticket holders also receive our official
|
|
434
|
+
courier!\",\n\t\t\t\t\"tournament_url\": \"http://dota2.raidcall-emsone.com/\",\n\t\t\t\t\"itemdef\":
|
|
435
|
+
15232\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"StarSeries Season 7 - BUNDLE\",\n\t\t\t\t\"leagueid\":
|
|
436
|
+
69,\n\t\t\t\t\"description\": \"The new season of the legendary SLTV StarSeries
|
|
437
|
+
is here! Watch 120 matches and the Kiev Cybersport Arena LAN finals where
|
|
438
|
+
teams will compete for a total prize pool of $22,500. Caster headliners -
|
|
439
|
+
v1lat & TobiWan.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.starladder.tv/\",\n\t\t\t\t\"itemdef\":
|
|
440
|
+
15230\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The National\",\n\t\t\t\t\"leagueid\":
|
|
441
|
+
71,\n\t\t\t\t\"description\": \"The top Russian Dota 2 teams compete for a
|
|
442
|
+
grand prize of $2,500 and a sponsorship!\",\n\t\t\t\t\"tournament_url\": \"http://www.d2thenational.ru/\",\n\t\t\t\t\"itemdef\":
|
|
443
|
+
15235\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Telkom Do Gaming Championships\",\n\t\t\t\t\"leagueid\":
|
|
444
|
+
72,\n\t\t\t\t\"description\": \"The best of the best in South Africa meet
|
|
445
|
+
up to decide who are the 2013 Telkom DGL Champions.\",\n\t\t\t\t\"tournament_url\":
|
|
446
|
+
\"http://www.dogamingleague.co.za/\",\n\t\t\t\t\"itemdef\": 15237\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
447
|
+
\"AEGIS Gaming League\",\n\t\t\t\t\"leagueid\": 73,\n\t\t\t\t\"description\":
|
|
448
|
+
\"Four top Brazilian teams will participate in a LAN event in Campinas on
|
|
449
|
+
September 14th and 15th for a prize of R$2,000.00.\",\n\t\t\t\t\"tournament_url\":
|
|
450
|
+
\"http://www.eventoage.com.br/torneio-de-dota-2/\",\n\t\t\t\t\"itemdef\":
|
|
451
|
+
15239\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"NADota Elite League\",\n\t\t\t\t\"leagueid\":
|
|
452
|
+
74,\n\t\t\t\t\"description\": \"The most talented players in North America
|
|
453
|
+
compete for 8 weeks culminating in a 4-team double elimination all-star tournament.
|
|
454
|
+
50% of ticket profits go straight to the prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
455
|
+
\"http://neodota.com/nel/\",\n\t\t\t\t\"itemdef\": 15241\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
456
|
+
\"Defense of the Australians\",\n\t\t\t\t\"leagueid\": 75,\n\t\t\t\t\"description\":
|
|
457
|
+
\"Defense of the Australians brings you its second Dota 2 Tournament for Spring
|
|
458
|
+
2013 with players from all around Melbourne, Australia coming together to
|
|
459
|
+
compete.\",\n\t\t\t\t\"tournament_url\": \"http://www.d2t.com.au/\",\n\t\t\t\t\"itemdef\":
|
|
460
|
+
15243\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Sina Cup Supernova Dota 2 Open\",\n\t\t\t\t\"leagueid\":
|
|
461
|
+
76,\n\t\t\t\t\"description\": \"The Sina Cup Supernova Dota 2 puts two top
|
|
462
|
+
teams from the qualifiers against professional teams across Asia for a total
|
|
463
|
+
prize pool of 30,000RMB.\",\n\t\t\t\t\"tournament_url\": \"\",\n\t\t\t\t\"itemdef\":
|
|
464
|
+
15245\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SK Trophy\",\n\t\t\t\t\"leagueid\":
|
|
465
|
+
77,\n\t\t\t\t\"description\": \"Teams compete for $1,000 every other week.\",\n\t\t\t\t\"tournament_url\":
|
|
466
|
+
\"http://www.sk-gaming.com\",\n\t\t\t\t\"itemdef\": 15247\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
467
|
+
\"WePlay.TV Dota 2 League - Season 2\",\n\t\t\t\t\"leagueid\": 78,\n\t\t\t\t\"description\":
|
|
468
|
+
\"WePlay.TV is back for Season 2! This Fall, twenty of Western Dota's finest
|
|
469
|
+
will compete for $25,000 in cash prizes with commentary in 6+ languages, including
|
|
470
|
+
English commentary by Beyond the Summit. Comes with exclusive Woodchopper
|
|
471
|
+
courier and WePlay.TV HUD in-game skin.\",\n\t\t\t\t\"tournament_url\": \"http://www.weplay.tv\",\n\t\t\t\t\"itemdef\":
|
|
472
|
+
15250\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"2013 National Electronic Sports
|
|
473
|
+
Tournament\",\n\t\t\t\t\"leagueid\": 65008,\n\t\t\t\t\"description\": \"The
|
|
474
|
+
National Electronic Sports Tournament (NEST) is hosted by the Center of National
|
|
475
|
+
Sports and Chinese Sports Newspaper Agency. It is sponsored by the Hangzhou
|
|
476
|
+
Wahaha Group CO.,LTD.\",\n\t\t\t\t\"tournament_url\": \"http://nest.sports.cn/\",\n\t\t\t\t\"itemdef\":
|
|
477
|
+
15252\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Nexon Sponsorship League\",\n\t\t\t\t\"leagueid\":
|
|
478
|
+
80,\n\t\t\t\t\"description\": \"Starting in Sep 28th 2013, the Nexon Sponsorship
|
|
479
|
+
League will span three seasons with a total of KRW 300 million(USD 270k) worth
|
|
480
|
+
of sponsorship funding. Watch the top team matches of Season 1.\",\n\t\t\t\t\"tournament_url\":
|
|
481
|
+
\"http://dota2.nexon.com/\",\n\t\t\t\t\"itemdef\": 15254\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
482
|
+
\"WPC-ACE Dota 2 League\",\n\t\t\t\t\"leagueid\": 81,\n\t\t\t\t\"description\":
|
|
483
|
+
\"The World E-Sports Professional Classic is a brand new international event
|
|
484
|
+
supported by Shanghai Sports Federation and Jingrui Properties Group.\",\n\t\t\t\t\"tournament_url\":
|
|
485
|
+
\"http://www.wpc-esports.com/portal/MatchCalendar/MatchCalendarHome.aspx?ScheduleID=26\",\n\t\t\t\t\"itemdef\":
|
|
486
|
+
15256\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Perfect World Dota Academy\",\n\t\t\t\t\"leagueid\":
|
|
487
|
+
65009,\n\t\t\t\t\"description\": \"Featuring various kinds of instructive
|
|
488
|
+
matches including guides to heroes, mechanics and tactics. Perfect World Dota
|
|
489
|
+
Academy offers a perfect route for beginners to learn Dota. Also, the academy
|
|
490
|
+
periodically broadcasts exciting activities held by Perfect World.\",\n\t\t\t\t\"tournament_url\":
|
|
491
|
+
\"http://www.dota2.com.cn/\",\n\t\t\t\t\"itemdef\": 15259\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
492
|
+
\"Hero Dota: First Step\",\n\t\t\t\t\"leagueid\": 82,\n\t\t\t\t\"description\":
|
|
493
|
+
\"This tournament gives an opportunity for semi-pro and non-pro teams from
|
|
494
|
+
Russia, Ukraine, and Belarus to compete for the prize of $1,000 USD as well
|
|
495
|
+
as prizes provided by sponsors and partners. \",\n\t\t\t\t\"tournament_url\":
|
|
496
|
+
\"http://www.herodota.ru/\",\n\t\t\t\t\"itemdef\": 15261\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
497
|
+
\"CyberGamer Dota 2 Pro League\",\n\t\t\t\t\"leagueid\": 83,\n\t\t\t\t\"description\":
|
|
498
|
+
\"The top professional Australian teams fight for a $4000 AUD prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
499
|
+
\"http://www.cybergamer.com.au/pc/dota2/league/\",\n\t\t\t\t\"itemdef\": 15263\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
500
|
+
\"Serbian Weekly Dota Cup\",\n\t\t\t\t\"leagueid\": 84,\n\t\t\t\t\"description\":
|
|
501
|
+
\"A weekly Serbian tournament including all Balkan countries where top teams
|
|
502
|
+
compete for a prize.\",\n\t\t\t\t\"tournament_url\": \"http://https//www.facebook.com/Dota2Serbia\",\n\t\t\t\t\"itemdef\":
|
|
503
|
+
15266\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Copa Latinoamerica Plantronics
|
|
504
|
+
Gaming LPD\",\n\t\t\t\t\"leagueid\": 85,\n\t\t\t\t\"description\": \"8 Latin
|
|
505
|
+
American teams from a qualifier willl be competing to bring their best team
|
|
506
|
+
to represent them in this tournament. Sponsored by Plantronics.Inc and LPD.\",\n\t\t\t\t\"tournament_url\":
|
|
507
|
+
\"http://www.lpdota.com/\",\n\t\t\t\t\"itemdef\": 15268\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
508
|
+
\"SCD Tide's Wrath Season 3\",\n\t\t\t\t\"leagueid\": 86,\n\t\t\t\t\"description\":
|
|
509
|
+
\"The third season of the open registration Australian and New Zealand Dota
|
|
510
|
+
2 Tournament \\\"Tide's Wrath\\\" is upon us. Southern Cross Dota, a news
|
|
511
|
+
organisation for Dota 2 in Australia and New Zealand is running the third
|
|
512
|
+
series of an event successfully run in Australia - Tide's Wrath!\",\n\t\t\t\t\"tournament_url\":
|
|
513
|
+
\"http://southerncrossdota.com/events-2/tides-wrath-season-3/\",\n\t\t\t\t\"itemdef\":
|
|
514
|
+
15270\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"LigaBEL\",\n\t\t\t\t\"leagueid\":
|
|
515
|
+
88,\n\t\t\t\t\"description\": \"A Brazlian tournament featuring 16 of the
|
|
516
|
+
best national teams competing for a prize of R$ 500,00!\",\n\t\t\t\t\"tournament_url\":
|
|
517
|
+
\"http://www.ligabel.com.br/noticia/95/Campeonato_de_Abertura_LigaBEL_-_Evento_Principal\",\n\t\t\t\t\"itemdef\":
|
|
518
|
+
15273\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Megalodon Cup Season 1\",\n\t\t\t\t\"leagueid\":
|
|
519
|
+
89,\n\t\t\t\t\"description\": \"The Megalodon Cup features the top 8 teams
|
|
520
|
+
from Brazil competing for a total prize of R$1,000!\",\n\t\t\t\t\"tournament_url\":
|
|
521
|
+
\"http://www.megalodongaming.com/\",\n\t\t\t\t\"itemdef\": 15274\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
522
|
+
\"Rising Stars Dota League\",\n\t\t\t\t\"leagueid\": 90,\n\t\t\t\t\"description\":
|
|
523
|
+
\"Rising Stars is a tournament featuring 16 total teams. 8 teams are invited
|
|
524
|
+
(4 from Brazil and 4 from South America) and 8 more from a qualifier). The
|
|
525
|
+
top 4 teams for 2 groups of 8 teams will compete for a total prize of $500.00!\",\n\t\t\t\t\"tournament_url\":
|
|
526
|
+
\"http://https//www.facebook.com/risingstarsleague\",\n\t\t\t\t\"itemdef\":
|
|
527
|
+
15276\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"AMD Dota 2 Beginner's Challenge\",\n\t\t\t\t\"leagueid\":
|
|
528
|
+
65010,\n\t\t\t\t\"description\": \"Nexon presents the AMD Dota 2 Beginner'\x99s
|
|
529
|
+
Challenge league, a series of weekly online tournaments open for amateur teams
|
|
530
|
+
in Korea. Each team competes weekly to win prizes sponsored by AMD! The event
|
|
531
|
+
will begin on Oct 5, 2013 and run for three months including the grand finals
|
|
532
|
+
at each monthâÂ\x80Â\x99s end.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.nexon.com/\",\n\t\t\t\t\"itemdef\":
|
|
533
|
+
15278\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Fengyun Tournament\",\n\t\t\t\t\"leagueid\":
|
|
534
|
+
91,\n\t\t\t\t\"description\": \"This year's Fengyun Tournament features grassroots
|
|
535
|
+
teams competing against top Asian Dota 2 powerhouses for a prize pool of 100,000
|
|
536
|
+
RMB.\",\n\t\t\t\t\"tournament_url\": \"http://www.fengyunzhibo.com/\",\n\t\t\t\t\"itemdef\":
|
|
537
|
+
15280\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Electronic Sports Prime Dota
|
|
538
|
+
2 Cup\",\n\t\t\t\t\"leagueid\": 92,\n\t\t\t\t\"description\": \"Six invited
|
|
539
|
+
teams and two qualifier teams face off for glory and $2,000 USD. Featuring
|
|
540
|
+
Dignitas, Liquid, Rattlesnake.int, Evil Geniuses, Fnatic, and Menace!\",\n\t\t\t\t\"tournament_url\":
|
|
541
|
+
\"http://www.es-prime.com/\",\n\t\t\t\t\"itemdef\": 15282\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
542
|
+
\"Road to the Asian Cyber Games 2013 - Indian Qualifier\",\n\t\t\t\t\"leagueid\":
|
|
543
|
+
93,\n\t\t\t\t\"description\": \"The top 8 Indian teams will qualify to compete
|
|
544
|
+
in the finals where the winner will earn a spot to compete in Singapore at
|
|
545
|
+
the Asian Cyber Games 2013!\",\n\t\t\t\t\"tournament_url\": \"http://www.re-inforcement.com/play\",\n\t\t\t\t\"itemdef\":
|
|
546
|
+
15284\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"South Ural League Season 2\",\n\t\t\t\t\"leagueid\":
|
|
547
|
+
94,\n\t\t\t\t\"description\": \"Teams compete in an online competition to
|
|
548
|
+
earn a spot in the top 16 teams which compete in a LAN finals.\",\n\t\t\t\t\"tournament_url\":
|
|
549
|
+
\"http://www.dota2.lks174.ru/ii-sezon-lks.html\",\n\t\t\t\t\"itemdef\": 15286\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
550
|
+
\"CEVO Season 3\",\n\t\t\t\t\"leagueid\": 95,\n\t\t\t\t\"description\": \"CEVO
|
|
551
|
+
DOTA 2 Season 3 is an event that is open to both amateur and professional
|
|
552
|
+
players in North America. Teams compete in a 8 week regular season followed
|
|
553
|
+
by a double-elimination playoff bracket where they compete for cash prizes
|
|
554
|
+
and a chance to advance to higher skill divisions in future seasons.\",\n\t\t\t\t\"tournament_url\":
|
|
555
|
+
\"http://www.cevo.com/event/dota2/?tg=52\",\n\t\t\t\t\"itemdef\": 15288\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
556
|
+
\"Hungarian Premier League\",\n\t\t\t\t\"leagueid\": 96,\n\t\t\t\t\"description\":
|
|
557
|
+
\"32 qualifying teams and 4 invited teams compete in to earn a spot in the
|
|
558
|
+
playoffs and try to claim victory in the fifth season of the Hungarian Premier
|
|
559
|
+
League!\",\n\t\t\t\t\"tournament_url\": \"http://prodota.hu/\",\n\t\t\t\t\"itemdef\":
|
|
560
|
+
15290\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Netolic Pro League 4\",\n\t\t\t\t\"leagueid\":
|
|
561
|
+
97,\n\t\t\t\t\"description\": \"Netolic Pro League 4 brings the action once
|
|
562
|
+
again inviting the best teams out there to fight over the glory, pride and
|
|
563
|
+
prize money! Includes a pretty cool courier!\",\n\t\t\t\t\"tournament_url\":
|
|
564
|
+
\"http://www.netolic.tv/\",\n\t\t\t\t\"itemdef\": 15292\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
565
|
+
\"DotaTalk SteelSeries Oceania Cup\",\n\t\t\t\t\"leagueid\": 65011,\n\t\t\t\t\"description\":
|
|
566
|
+
\"Australian and New Zealand Dota 2 teams compete for SteelSeries Na'Vi gear
|
|
567
|
+
worth over $1000!\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/tournaments/steelseries-oceania-cup-qualifiers\",\n\t\t\t\t\"itemdef\":
|
|
568
|
+
15294\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SteelSeries Southeast Asian
|
|
569
|
+
Cup Season 3\",\n\t\t\t\t\"leagueid\": 98,\n\t\t\t\t\"description\": \"This
|
|
570
|
+
tournament is open to all teams in Southeast-Asia where the 2 top teams will
|
|
571
|
+
compete for a prize pool of $1000 and 5 Steelseries Siberia Elite Headsets!\",\n\t\t\t\t\"tournament_url\":
|
|
572
|
+
\"http://www.dotatalk.com/tournaments/steelseries-sea-cup-season-3\",\n\t\t\t\t\"itemdef\":
|
|
573
|
+
15296\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SteelSeries Euro Cup Season
|
|
574
|
+
2\",\n\t\t\t\t\"leagueid\": 99,\n\t\t\t\t\"description\": \"SteelSeries Euro
|
|
575
|
+
Cup is back for Season 2! This tournament is open to all teams in Europe where
|
|
576
|
+
it will have the top 2 teams competing for a prize pool of $1000.\",\n\t\t\t\t\"tournament_url\":
|
|
577
|
+
\"http://www.dotatalk.com/tournaments/steelseries-euro-cup-oct\",\n\t\t\t\t\"itemdef\":
|
|
578
|
+
15298\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Sunday Evening Cup Series\",\n\t\t\t\t\"leagueid\":
|
|
579
|
+
100,\n\t\t\t\t\"description\": \"The Sunday Evening Cup Series (SECS) began
|
|
580
|
+
in December 2009 and is the longest running Dota tournament series to date.
|
|
581
|
+
SECS provides an open competitive platform for North and South American teams
|
|
582
|
+
to gain real tournament experience.\",\n\t\t\t\t\"tournament_url\": \"http://www.nadota.com/secs\",\n\t\t\t\t\"itemdef\":
|
|
583
|
+
15300\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"WH Overgaming Challenge 2\",\n\t\t\t\t\"leagueid\":
|
|
584
|
+
101,\n\t\t\t\t\"description\": \"The WH Challenge 2 is the last tournament
|
|
585
|
+
in the WH League Season 2. After this, 8 team will compete for a R$1000 grand
|
|
586
|
+
prize!\",\n\t\t\t\t\"tournament_url\": \"http://www.wh-esports.com.br/site/index.php?mod=news&action=view&id=453\",\n\t\t\t\t\"itemdef\":
|
|
587
|
+
15302\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Logitech G - Free to Play\",\n\t\t\t\t\"leagueid\":
|
|
588
|
+
102,\n\t\t\t\t\"description\": \"LAN Centers all over India compete in Dota
|
|
589
|
+
2 for a total prize of 25,000 INR!\",\n\t\t\t\t\"tournament_url\": \"http://www.facebook.com/pages/Free2Play/507885392637533?ref=ts&fref=ts\",\n\t\t\t\t\"itemdef\":
|
|
590
|
+
15304\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Champion's League\",\n\t\t\t\t\"leagueid\":
|
|
591
|
+
103,\n\t\t\t\t\"description\": \"The Champions League will feature 12 teams
|
|
592
|
+
from Europe and North America fighting for $50,000! 6.25% of all ticket sales
|
|
593
|
+
will be added to the prize pool!\",\n\t\t\t\t\"tournament_url\": \"http://www.d2cl.org/\",\n\t\t\t\t\"itemdef\":
|
|
594
|
+
15306\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"HyperX D2L Season 4\",\n\t\t\t\t\"leagueid\":
|
|
595
|
+
104,\n\t\t\t\t\"description\": \"The D2L returns for its fourth season with
|
|
596
|
+
more money and more teams! Witness sixteen of the world'\x99s best Dota 2
|
|
597
|
+
teams battle it out for over $50,000 and a ticket to the Live Finals at Caesar'\x99s
|
|
598
|
+
Palace in Las Vegas!\",\n\t\t\t\t\"tournament_url\": \"http://www.d2l.gg/\",\n\t\t\t\t\"itemdef\":
|
|
599
|
+
15308\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SteelSeries Dota 2 League: Code
|
|
600
|
+
A\",\n\t\t\t\t\"leagueid\": 105,\n\t\t\t\t\"description\": \"Rising teams
|
|
601
|
+
across Asia gather together to compete for top ranks in SteelSeries Dota 2
|
|
602
|
+
League for prizes plus a chance to challenge elite teams. Includes the Vermilion
|
|
603
|
+
HUD skin!\",\n\t\t\t\t\"tournament_url\": \"\",\n\t\t\t\t\"itemdef\": 15310\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
604
|
+
\"ESP Dota 2 Cup\",\n\t\t\t\t\"leagueid\": 92,\n\t\t\t\t\"description\": \"Six
|
|
605
|
+
invited teams and two qualifier teams face off for glory and $2,000 USD. Featuring
|
|
606
|
+
Dignitas, Liquid, Rattlesnake.int, Evil Geniuses, Fnatic, and Menace!\",\n\t\t\t\t\"tournament_url\":
|
|
607
|
+
\"http://www.es-prime.com/\",\n\t\t\t\t\"itemdef\": 15282\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
608
|
+
\"Techlabs Cup Grand Final\",\n\t\t\t\t\"leagueid\": 106,\n\t\t\t\t\"description\":
|
|
609
|
+
\"Techlabs Cup Grand Final in Moscow on November 16-17 where teams compete
|
|
610
|
+
for a total prize pool of $25,000!\",\n\t\t\t\t\"tournament_url\": \"http://cybersport.techlabs.pro/\",\n\t\t\t\t\"itemdef\":
|
|
611
|
+
15313\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 by Ozone Gaming\",\n\t\t\t\t\"leagueid\":
|
|
612
|
+
107,\n\t\t\t\t\"description\": \"8 Brazilian teams battle for glory and R$4,000.00
|
|
613
|
+
in gaming equipment from Ozone Gaming.\",\n\t\t\t\t\"tournament_url\": \"http://www.nationalesl.com/br/dota2/news/230504/\",\n\t\t\t\t\"itemdef\":
|
|
614
|
+
15315\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"European Elite League\",\n\t\t\t\t\"leagueid\":
|
|
615
|
+
108,\n\t\t\t\t\"description\": \"The most talented players in Europe compete
|
|
616
|
+
in the classic league format for eight weeks, culminating in a 4-team double
|
|
617
|
+
elimination best-of-three all-star tournament for a 1,500 Euro prize pool.
|
|
618
|
+
\",\n\t\t\t\t\"tournament_url\": \"http://www.neodota.com/eel/\",\n\t\t\t\t\"itemdef\":
|
|
619
|
+
15317\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Fragbite Masters\",\n\t\t\t\t\"leagueid\":
|
|
620
|
+
109,\n\t\t\t\t\"description\": \"32 teams compete in the Fragbite Masters
|
|
621
|
+
which is an online tournament with a $30,900 prize pool for Dota 2.\",\n\t\t\t\t\"tournament_url\":
|
|
622
|
+
\"http://www.fragbite.se/masters\",\n\t\t\t\t\"itemdef\": 15319\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
623
|
+
\"SteelSeries Malaysia Cup - October\",\n\t\t\t\t\"leagueid\": 65012,\n\t\t\t\t\"description\":
|
|
624
|
+
\"This new item has no description.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/tournaments/steelseries-my-cup-october\",\n\t\t\t\t\"itemdef\":
|
|
625
|
+
15321\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Nexon Invitational Super Match\",\n\t\t\t\t\"leagueid\":
|
|
626
|
+
110,\n\t\t\t\t\"description\": \"Nexon features eight of the best international
|
|
627
|
+
teams and four from Korea facing off in an epic series of showdowns in Seoul,
|
|
628
|
+
Korea. Produced and broadcast by OnGameNet, this all-star event will run from
|
|
629
|
+
October 28 till November 25, 2013.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.nexon.com/\",\n\t\t\t\t\"itemdef\":
|
|
630
|
+
15324\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"NADota Elite League Season 2\",\n\t\t\t\t\"leagueid\":
|
|
631
|
+
111,\n\t\t\t\t\"description\": \"NADota Elite League returns for its second
|
|
632
|
+
season! The most talented teams in North America compete in the classic league
|
|
633
|
+
format for eight weeks, culminating in a 4-team double elimination all-star
|
|
634
|
+
tournament. $3,000 prize pool, 400+ games guaranteed. Hosted by IXDL. Broadcast
|
|
635
|
+
by NEO Dota.\",\n\t\t\t\t\"tournament_url\": \"http://neodota.com/nel/\",\n\t\t\t\t\"itemdef\":
|
|
636
|
+
15326\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"MLG $50,000 Dota 2 Championship\",\n\t\t\t\t\"leagueid\":
|
|
637
|
+
65013,\n\t\t\t\t\"description\": \"Consuming this ticket will make you eligible
|
|
638
|
+
for item drops while watching any MLG $50,000 Dota 2 Championship game.\",\n\t\t\t\t\"tournament_url\":
|
|
639
|
+
\"http://www.mlg.tv/\",\n\t\t\t\t\"itemdef\": 15328\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
640
|
+
\"WH Overgaming Challenge - 2\",\n\t\t\t\t\"leagueid\": 101,\n\t\t\t\t\"description\":
|
|
641
|
+
\"The WH Challenge 2 is the last tournament in the WH League Season 2. After
|
|
642
|
+
this, 8 team will compete for a R$1000 grand prize!\",\n\t\t\t\t\"tournament_url\":
|
|
643
|
+
\"http://www.wh-esports.com.br/site/index.php?mod=news&action=view&id=453\",\n\t\t\t\t\"itemdef\":
|
|
644
|
+
15302\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Nexon Invitational Super Match_\",\n\t\t\t\t\"leagueid\":
|
|
645
|
+
110,\n\t\t\t\t\"description\": \"Nexon features eight of the best international
|
|
646
|
+
teams and four from Korea facing off in an epic series of showdowns in Seoul,
|
|
647
|
+
Korea. Produced and broadcast by OnGameNet, this all-star event will run from
|
|
648
|
+
October 28 till November 25, 2013.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.nexon.com/\",\n\t\t\t\t\"itemdef\":
|
|
649
|
+
15324\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ASUS ROG DreamLeague\",\n\t\t\t\t\"leagueid\":
|
|
650
|
+
112,\n\t\t\t\t\"description\": \"ASUS ROG DreamLeague Kick-off season is sponsored
|
|
651
|
+
by ASUS ROG, ROCCAT & TV6. Starting on November 4th, 6 of the world's best
|
|
652
|
+
teams will compete in 30 league games and a playoffs at DreamHack Winter 2013
|
|
653
|
+
on November 28-30th for a $50,000 prize pool. Includes the Vestments of the
|
|
654
|
+
Iron Will Set.\",\n\t\t\t\t\"tournament_url\": \"http://www.dreamhack.se/dhw13/esport/dota2/\",\n\t\t\t\t\"itemdef\":
|
|
655
|
+
15333\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Canada Cup Season 2\",\n\t\t\t\t\"leagueid\":
|
|
656
|
+
113,\n\t\t\t\t\"description\": \"Dota 2 Canada Cup is back with Season 2.
|
|
657
|
+
Featuring some of the top talent from North and South America.\",\n\t\t\t\t\"tournament_url\":
|
|
658
|
+
\"http://www.dota-2.co/topic/9348-dota-2-canada-cup-season-2-announcement/\",\n\t\t\t\t\"itemdef\":
|
|
659
|
+
15335\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"G-League 2013\",\n\t\t\t\t\"leagueid\":
|
|
660
|
+
114,\n\t\t\t\t\"description\": \"The G-League returns with qualifying tournaments
|
|
661
|
+
for Western and Eastern teams. 8 top Chinese teams and 2 top Western teams
|
|
662
|
+
will compete for a total prize pool of 270,000 RMB ($44,000 USD)!\",\n\t\t\t\t\"tournament_url\":
|
|
663
|
+
\"http://gleague.gamefy.cn/\",\n\t\t\t\t\"itemdef\": 15337\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
664
|
+
\"IXDL: Battle of the Regions\",\n\t\t\t\t\"leagueid\": 65014,\n\t\t\t\t\"description\":
|
|
665
|
+
\"IXDL players from Australia and Southeast Asia battle it out to determine
|
|
666
|
+
who rules supreme in the Asia Pacific Region!\",\n\t\t\t\t\"tournament_url\":
|
|
667
|
+
\"http://ixdl.net/index.php/topic/9256-ixdl-battle-of-the-regions/\",\n\t\t\t\t\"itemdef\":
|
|
668
|
+
15340\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Montenegro National League\",\n\t\t\t\t\"leagueid\":
|
|
669
|
+
128,\n\t\t\t\t\"description\": \"Montenegro National League is the first professional
|
|
670
|
+
Dota 2 league in Montenegro organized by Montenegro E-Sports Association.
|
|
671
|
+
The best teams from country will compete for the championship and prizes!\",\n\t\t\t\t\"tournament_url\":
|
|
672
|
+
\"http://esscg.me/category/pcl/\",\n\t\t\t\t\"itemdef\": 15342\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
673
|
+
\"Gigabyte Premier League Season 1\",\n\t\t\t\t\"leagueid\": 131,\n\t\t\t\t\"description\":
|
|
674
|
+
\"Gigabyte in partnership with DotaTalk proudly brings you the Gigabyte Premier
|
|
675
|
+
league. It features Southeast Asia's finest teams as they compete for a total
|
|
676
|
+
prize pool of $1,500.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/tournaments/gigabyte-premier-league\",\n\t\t\t\t\"itemdef\":
|
|
677
|
+
15343\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Polish Dota 2 Online Championships\",\n\t\t\t\t\"leagueid\":
|
|
678
|
+
115,\n\t\t\t\t\"description\": \"The Polish Dota 2 Online Championships will
|
|
679
|
+
feature the top 8 Polish teams competing for 1000PLN!\",\n\t\t\t\t\"tournament_url\":
|
|
680
|
+
\"http://d2oc.com/\",\n\t\t\t\t\"itemdef\": 15348\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
681
|
+
\"Elite Clan Wars\",\n\t\t\t\t\"leagueid\": 116,\n\t\t\t\t\"description\":
|
|
682
|
+
\"This tournament consists of 32-teams in a single elimination format competing
|
|
683
|
+
for total prize pool of $475!\",\n\t\t\t\t\"tournament_url\": \"http://www.eliteclanwars.com/index.php?p=league&id=371\",\n\t\t\t\t\"itemdef\":
|
|
684
|
+
15350\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"South American Elite League\",\n\t\t\t\t\"leagueid\":
|
|
685
|
+
117,\n\t\t\t\t\"description\": \"The most talented players in South America
|
|
686
|
+
compete for $1,000 in the classic in-house league format for six weeks.\",\n\t\t\t\t\"tournament_url\":
|
|
687
|
+
\"http://neodota.com/sel/\",\n\t\t\t\t\"itemdef\": 15352\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
688
|
+
\"Australian E-Sports League\",\n\t\t\t\t\"leagueid\": 118,\n\t\t\t\t\"description\":
|
|
689
|
+
\"The Australian E-Sports League is a competitive video gaming league managed
|
|
690
|
+
by E-Sports Daily that consists of many online and offline events.\",\n\t\t\t\t\"tournament_url\":
|
|
691
|
+
\"http://www.esportsdaily.com.au/leagues\",\n\t\t\t\t\"itemdef\": 15354\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
692
|
+
\"SDL 1\",\n\t\t\t\t\"leagueid\": 119,\n\t\t\t\t\"description\": \"The SDL
|
|
693
|
+
features 48 amateur teams competing for a total prize pool of R$500 and Immortal
|
|
694
|
+
items!\",\n\t\t\t\t\"tournament_url\": \"http://shigueoleague.com/?p=21\",\n\t\t\t\t\"itemdef\":
|
|
695
|
+
15357\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Sina Cup Supernova Dota 2 Open
|
|
696
|
+
Season 2\",\n\t\t\t\t\"leagueid\": 120,\n\t\t\t\t\"description\": \"Sina Cup
|
|
697
|
+
Supernova Dota 2 Open is back for another season! In addition to the 8 invited
|
|
698
|
+
teams, 4 teams will advance through qualifiers to compete for a total prize
|
|
699
|
+
pool of 65,000RMB.\",\n\t\t\t\t\"tournament_url\": \"http://games.sina.com.cn/o/z/dota2/supernova2.shtml\",\n\t\t\t\t\"itemdef\":
|
|
700
|
+
15359\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Aerocool Dota 2 Gaming Challenge
|
|
701
|
+
Brazil\",\n\t\t\t\t\"leagueid\": 121,\n\t\t\t\t\"description\": \"The top
|
|
702
|
+
8 Brazilian teams compete for a R$1,000 prize pool and gaming equipment from
|
|
703
|
+
Aerocool!\",\n\t\t\t\t\"tournament_url\": \"http://www.nationalesl.com/br/dota2/\",\n\t\t\t\t\"itemdef\":
|
|
704
|
+
15361\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Orena\",\n\t\t\t\t\"leagueid\":
|
|
705
|
+
122,\n\t\t\t\t\"description\": \"32 of South Africa's top Dota 2 teams compete
|
|
706
|
+
for a total prize pool of R8500 and gaming hardware from SteeelSeries!\",\n\t\t\t\t\"tournament_url\":
|
|
707
|
+
\"http://orena.co.za/\",\n\t\t\t\t\"itemdef\": 15363\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
708
|
+
\"Yard Orange Festival\",\n\t\t\t\t\"leagueid\": 123,\n\t\t\t\t\"description\":
|
|
709
|
+
\"16 teams will compete for a grand prize of $1,000! 12 teams will be invited
|
|
710
|
+
and 4 will earn their spot through qualifying.\",\n\t\t\t\t\"tournament_url\":
|
|
711
|
+
\"http://www.d2yard.com/\",\n\t\t\t\t\"itemdef\": 15365\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
712
|
+
\"SLTV Star Series Season 8\",\n\t\t\t\t\"leagueid\": 124,\n\t\t\t\t\"description\":
|
|
713
|
+
\"The 8th season of the legendary SLTV StarSeries will feature best 18 teams
|
|
714
|
+
from Europe. They will compete for growing prize pool starting at $50,000.
|
|
715
|
+
$2.50 of every purchase will go to the SLTV StarSeries prize pool. Round-robin
|
|
716
|
+
online tournament and LAN finals in Kyiv Cybersport Arena.\",\n\t\t\t\t\"tournament_url\":
|
|
717
|
+
\"http://dota2.starladder.tv\",\n\t\t\t\t\"itemdef\": 15867\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
718
|
+
\"Nexon Sponsorship League Season 2 & Gama Brothers Courier\",\n\t\t\t\t\"leagueid\":
|
|
719
|
+
125,\n\t\t\t\t\"description\": \"NSL enters its second season. Top 8 teams
|
|
720
|
+
will compete for their share of KRW 100 million (USD 93,000) prize fund. NSL
|
|
721
|
+
consists of three seasons with a total of KRW 300 million (USD 267,153) sponsorship
|
|
722
|
+
funding by Nexon.\\r\\n\\t\\r\\n\\tIncludes the Gama Brothers courier!\",\n\t\t\t\t\"tournament_url\":
|
|
723
|
+
\"http://dota2.nexon.com/\",\n\t\t\t\t\"itemdef\": 15381\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
724
|
+
\"Pinoy Dota 2 Online Battle\",\n\t\t\t\t\"leagueid\": 126,\n\t\t\t\t\"description\":
|
|
725
|
+
\"Pinoy Dota delivers Philippine E-sports in your hands! This tournament features
|
|
726
|
+
2 teams with 6 qualifiers that will compete for P10,000 prize pool on December
|
|
727
|
+
9th through February 1, 2014!\",\n\t\t\t\t\"tournament_url\": \"http://www.pinoydota.net/online-battle\",\n\t\t\t\t\"itemdef\":
|
|
728
|
+
15383\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Defense of the Australians Season
|
|
729
|
+
2\",\n\t\t\t\t\"leagueid\": 127,\n\t\t\t\t\"description\": \"Defense of the
|
|
730
|
+
Australians brings you its summer 2014 tournament. Professional teams throughout
|
|
731
|
+
Australia will compete Australia wide online and in a Melbourne LAN event
|
|
732
|
+
finals. \",\n\t\t\t\t\"tournament_url\": \"http://www.d2t.com.au/\",\n\t\t\t\t\"itemdef\":
|
|
733
|
+
15385\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Razer Pinoy Cup Season 1\",\n\t\t\t\t\"leagueid\":
|
|
734
|
+
129,\n\t\t\t\t\"description\": \"The top 8 Filipino teams will compete for
|
|
735
|
+
gaming equipment from Razer worth $1,000!\",\n\t\t\t\t\"tournament_url\":
|
|
736
|
+
\"http://www.dotalegends.com/tournaments/season-1-pinoy-cup-1\",\n\t\t\t\t\"itemdef\":
|
|
737
|
+
15388\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Sudamerican Master\",\n\t\t\t\t\"leagueid\":
|
|
738
|
+
130,\n\t\t\t\t\"description\": \"This tournament will feature the top 16 South
|
|
739
|
+
American teams;' 10 invited teams and 6 qualifying teams. Chile, Peru, Argentina,
|
|
740
|
+
Brazil, Venezuela and Colombia squaring off for the award of more than $600!\",\n\t\t\t\t\"tournament_url\":
|
|
741
|
+
\"http://www.livedota.tv/sudamerican-master-by-livedota-and-battleground/\",\n\t\t\t\t\"itemdef\":
|
|
742
|
+
15390\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Winter Open\",\n\t\t\t\t\"leagueid\":
|
|
743
|
+
132,\n\t\t\t\t\"description\": \"16 teams from around the Midwest go head
|
|
744
|
+
to head in the midst of Chicago's unforgiving winter for a $2000 prize pool
|
|
745
|
+
and more! Also featuring live casting by Chicago-local Vykromond.\",\n\t\t\t\t\"tournament_url\":
|
|
746
|
+
\"http://www.teamliquid.net/forum/viewmessage.php?topic_id=435612\",\n\t\t\t\t\"itemdef\":
|
|
747
|
+
15393\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Saratov Cup Open Finals\",\n\t\t\t\t\"leagueid\":
|
|
748
|
+
133,\n\t\t\t\t\"description\": \"100 Russian teams compete for a total prize
|
|
749
|
+
of 50,000 Rubles!\",\n\t\t\t\t\"tournament_url\": \"http://dota2.thecyberwars.ru/\",\n\t\t\t\t\"itemdef\":
|
|
750
|
+
15395\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Elite Southeast Asian League\",\n\t\t\t\t\"leagueid\":
|
|
751
|
+
134,\n\t\t\t\t\"description\": \"The most talented players in Southeast Asia
|
|
752
|
+
compete individually then form teams to be crowned the champion!\",\n\t\t\t\t\"tournament_url\":
|
|
753
|
+
\"http://ixdl.net/\",\n\t\t\t\t\"itemdef\": 15397\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
754
|
+
\"Raidcall Southeast Asian Invitational League\",\n\t\t\t\t\"leagueid\": 135,\n\t\t\t\t\"description\":
|
|
755
|
+
\"Raidcall presents the Southeast Asian Invitational League, featuring 16
|
|
756
|
+
of the best teams competing for $1000!\",\n\t\t\t\t\"tournament_url\": \"http://seaileague.com/tournament/south-east-asia-invitational-league/\",\n\t\t\t\t\"itemdef\":
|
|
757
|
+
15399\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SteelSeries Southeast Asian
|
|
758
|
+
Cup Season 4\",\n\t\t\t\t\"leagueid\": 136,\n\t\t\t\t\"description\": \"Steelseries
|
|
759
|
+
Southeast Asian Cup is back for Season 4. On top of the 8 invited teams, 8
|
|
760
|
+
teams will advance through qualifiers to compete for a total prize pool of
|
|
761
|
+
$3,000 including products. \",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/tournaments/steelseries-sea-cup-4\",\n\t\t\t\t\"itemdef\":
|
|
762
|
+
15402\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SDL 2014 Season 1\",\n\t\t\t\t\"leagueid\":
|
|
763
|
+
137,\n\t\t\t\t\"description\": \"The SDL consists of 3 Amatuer and 1 Professional
|
|
764
|
+
Leagues. At the end of the season teams will compete for a total prize pool
|
|
765
|
+
of R$2500,00 (R$ 500,00 for each Amateur and R$1000,00 for the Professional)\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
766
|
+
\"http://www.shigueoleague.com/\",\n\t\t\t\t\"itemdef\": 15404\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
767
|
+
\"The International 2013 Pass\",\n\t\t\t\t\"leagueid\": 65006,\n\t\t\t\t\"description\":
|
|
768
|
+
\"Watch 2013's top 16 Dota teams from around the world compete in The International.\",\n\t\t\t\t\"tournament_url\":
|
|
769
|
+
\"http://www.dota2.com/international/announcement/\",\n\t\t\t\t\"itemdef\":
|
|
770
|
+
15406\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"European Elite League - January\",\n\t\t\t\t\"leagueid\":
|
|
771
|
+
143,\n\t\t\t\t\"description\": \"The most talented players in Europe compete
|
|
772
|
+
in the classic in-house league format.\",\n\t\t\t\t\"tournament_url\": \"http://neodota.com/eel/\",\n\t\t\t\t\"itemdef\":
|
|
773
|
+
15412\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Beneplay Cup #1\",\n\t\t\t\t\"leagueid\":
|
|
774
|
+
1359,\n\t\t\t\t\"description\": \"Amateur teams participate in the first Beneplay
|
|
775
|
+
Cup for over 2,000 Rubles!\",\n\t\t\t\t\"tournament_url\": \"http://beneplay.ru/tournament/22\",\n\t\t\t\t\"itemdef\":
|
|
776
|
+
15414\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Romania IV\",\n\t\t\t\t\"leagueid\":
|
|
777
|
+
138,\n\t\t\t\t\"description\": \"The fourth Dota 2 Romania tournament where
|
|
778
|
+
teams compete for a grand prize of over 100 Euros!\",\n\t\t\t\t\"tournament_url\":
|
|
779
|
+
\"http://forum.dota2romania.com/topic/979-d2ro-5v5-4\",\n\t\t\t\t\"itemdef\":
|
|
780
|
+
15415\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Sri Lanka Cyber Games 2013\",\n\t\t\t\t\"leagueid\":
|
|
781
|
+
65015,\n\t\t\t\t\"description\": \"SLCG has become the largest e-Sports tournament
|
|
782
|
+
in the country, and this year it aims to take the culture of games to the
|
|
783
|
+
next level. Watch top Dota 2 teams compete in the largest event in Sri Lanka!\",\n\t\t\t\t\"tournament_url\":
|
|
784
|
+
\"http://www.slcg.lk/\",\n\t\t\t\t\"itemdef\": 15417\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
785
|
+
\"League of Dota\",\n\t\t\t\t\"leagueid\": 139,\n\t\t\t\t\"description\":
|
|
786
|
+
\"Amateur tournaments hosted for the community every weekend with a $150 prize
|
|
787
|
+
pool at stake for the winner!\",\n\t\t\t\t\"tournament_url\": \"http://www.leagueofdota.com/\",\n\t\t\t\t\"itemdef\":
|
|
788
|
+
15419\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Holiday Dream Challenge\",\n\t\t\t\t\"leagueid\":
|
|
789
|
+
65017,\n\t\t\t\t\"description\": \"The largest gaming event in Greece takes
|
|
790
|
+
Dota 2 teams from around the country to compete for a grand prize of 1000
|
|
791
|
+
Euros!\",\n\t\t\t\t\"tournament_url\": \"http://www.egaming.gr/\",\n\t\t\t\t\"itemdef\":
|
|
792
|
+
15421\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"IXDL Southeast Asian Invite
|
|
793
|
+
League\",\n\t\t\t\t\"leagueid\": 65016,\n\t\t\t\t\"description\": \"Individuals
|
|
794
|
+
compete in a classic ladder format to be crowned champion in Southeast Asia!\",\n\t\t\t\t\"tournament_url\":
|
|
795
|
+
\"http://ixdl.net/index.php/forum/244-ixdl-invite-sea/\",\n\t\t\t\t\"itemdef\":
|
|
796
|
+
15422\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SteelSeries Malaysia Champions
|
|
797
|
+
Cup\",\n\t\t\t\t\"leagueid\": 140,\n\t\t\t\t\"description\": \"8 teams will
|
|
798
|
+
compete for a grand prize of $2,000 and SteelSeries devices. 7 teams will
|
|
799
|
+
be invited and 1 will earn a spot through qualifying. Malaysian powerhouse
|
|
800
|
+
teams like Orange and Titan will be joining.\",\n\t\t\t\t\"tournament_url\":
|
|
801
|
+
\"http://www.dotatalk.com/tournaments/steelseries-malaysia-champions-cup\",\n\t\t\t\t\"itemdef\":
|
|
802
|
+
15425\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Bahrain Dota 2 League\",\n\t\t\t\t\"leagueid\":
|
|
803
|
+
141,\n\t\t\t\t\"description\": \"The first ever Dota 2 League takes place
|
|
804
|
+
in Bahrain where teams will compete for a grand prize!\",\n\t\t\t\t\"tournament_url\":
|
|
805
|
+
\"https://www.facebook.com/events/670242163007973/\",\n\t\t\t\t\"itemdef\":
|
|
806
|
+
15427\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"FGCL Championship League + HUD
|
|
807
|
+
Skin\",\n\t\t\t\t\"leagueid\": 142,\n\t\t\t\t\"description\": \"Top 32 winners
|
|
808
|
+
in the group stages will be competing for a prize pool of $1000! The winners
|
|
809
|
+
get a place in FGCL StarSeries. Includes an exclusive in-game HUD Skin: Reign
|
|
810
|
+
of Maelrawn!\",\n\t\t\t\t\"tournament_url\": \"http://dota.fgcl.ru/champ/championship_league/\",\n\t\t\t\t\"itemdef\":
|
|
811
|
+
15429\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Korean Elite League - January\",\n\t\t\t\t\"leagueid\":
|
|
812
|
+
144,\n\t\t\t\t\"description\": \"The most talented players in Korea compete
|
|
813
|
+
in the classic in-house league format.\",\n\t\t\t\t\"tournament_url\": \"http://neodota.com/kel/\",\n\t\t\t\t\"itemdef\":
|
|
814
|
+
15432\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Sunday Evening Cup Series -
|
|
815
|
+
Season 2\",\n\t\t\t\t\"leagueid\": 145,\n\t\t\t\t\"description\": \"SECS is
|
|
816
|
+
back for Season 2! SECS has been around since 2009 and provides an open competitive
|
|
817
|
+
platform for North and South American teams to gain real tournament experience.\",\n\t\t\t\t\"tournament_url\":
|
|
818
|
+
\"http://nadota.com/secs\",\n\t\t\t\t\"itemdef\": 15434\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
819
|
+
\"Asian Cyber Games Dota 2 Championship 2013\",\n\t\t\t\t\"leagueid\": 146,\n\t\t\t\t\"description\":
|
|
820
|
+
\"The top Asian teams compete in the Asian Cyber Games for a total prize pool
|
|
821
|
+
of $30,000!\",\n\t\t\t\t\"tournament_url\": \"http://e-clubmalaysia.com/dota2/?page_id=3471\",\n\t\t\t\t\"itemdef\":
|
|
822
|
+
15436\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Chile Tournament\",\n\t\t\t\t\"leagueid\":
|
|
823
|
+
147,\n\t\t\t\t\"description\": \"16 teams compete to reach the grand final
|
|
824
|
+
and become the best team in Chile!\",\n\t\t\t\t\"tournament_url\": \"http://www.dotachile.cl/\",\n\t\t\t\t\"itemdef\":
|
|
825
|
+
15438\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota2.fr League\",\n\t\t\t\t\"leagueid\":
|
|
826
|
+
148,\n\t\t\t\t\"description\": \"The best teams in France compete every week
|
|
827
|
+
in the Dota 2 French League!\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2.fr/jouer/ligue\",\n\t\t\t\t\"itemdef\":
|
|
828
|
+
15442\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Macedonian Dota 2 Cup #2\",\n\t\t\t\t\"leagueid\":
|
|
829
|
+
149,\n\t\t\t\t\"description\": \"A Macedonian tournamentwhere all the Macedonian
|
|
830
|
+
teams compete for a prize!\",\n\t\t\t\t\"tournament_url\": \"https://www.facebook.com/Dota2MacedoniaCommunity\",\n\t\t\t\t\"itemdef\":
|
|
831
|
+
15444\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Challenge\",\n\t\t\t\t\"leagueid\":
|
|
832
|
+
150,\n\t\t\t\t\"description\": \"The best teams from within the United Kingdom
|
|
833
|
+
converge on February 14th for the Dota 2 Challenge.\",\n\t\t\t\t\"tournament_url\":
|
|
834
|
+
\"http://www.esl.eu/uk/dota2/5on5/dota2challengefeb2014/\",\n\t\t\t\t\"itemdef\":
|
|
835
|
+
15446\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Nexon Sponsorship League Season
|
|
836
|
+
3\",\n\t\t\t\t\"leagueid\": 151,\n\t\t\t\t\"description\": \"NSL returns for
|
|
837
|
+
its final season. Watch the top 8 teams battle it out for Nexon'Â\x99s sponsorship
|
|
838
|
+
with KRW 80 million (USD 75,000) in total prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
839
|
+
\"http://dota2.nexon.com/\",\n\t\t\t\t\"itemdef\": 15448\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
840
|
+
\"Pro Dota 2 Solo Ranked League\",\n\t\t\t\t\"leagueid\": 152,\n\t\t\t\t\"description\":
|
|
841
|
+
\"240 players fight to claim the competition with a total prize money of $350!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
842
|
+
\"http://prodota.hu/\",\n\t\t\t\t\"itemdef\": 15450\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
843
|
+
\"Assembly Winter 2014\",\n\t\t\t\t\"leagueid\": 163,\n\t\t\t\t\"description\":
|
|
844
|
+
\"Assembly returns with another Dota 2 tournament that will take place at
|
|
845
|
+
the Helsinki Exhibition & Conventin Centre. Eight teams will compete for a
|
|
846
|
+
chance at a total prize pool of 5,000 Euros!\",\n\t\t\t\t\"tournament_url\":
|
|
847
|
+
\"http://www.assembly.org/\",\n\t\t\t\t\"itemdef\": 15452\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
848
|
+
\"Logitech G - Free to Play 2\",\n\t\t\t\t\"leagueid\": 154,\n\t\t\t\t\"description\":
|
|
849
|
+
\"eSports Interactive Entertainment presents India's Biggest LAN Center Tournament
|
|
850
|
+
with a grand prize of 50,000 INR!\",\n\t\t\t\t\"tournament_url\": \"https://www.facebook.com/Free2Play.EIE\",\n\t\t\t\t\"itemdef\":
|
|
851
|
+
15454\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Hero Dota: Second Chapter\",\n\t\t\t\t\"leagueid\":
|
|
852
|
+
155,\n\t\t\t\t\"description\": \"Second season of tournament for semi-pro
|
|
853
|
+
and non-pro team from Russia, Ukraine, Belarus. Any team can prove themselves
|
|
854
|
+
fighting for the main prize of over $1,000 USD (32 thousand rubles), besides
|
|
855
|
+
for special rewards provided by sponsors and partners.\",\n\t\t\t\t\"tournament_url\":
|
|
856
|
+
\"http://herodota.ru/\",\n\t\t\t\t\"itemdef\": 15456\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
857
|
+
\"Australian E-Sports League 2014 Summer Cup\",\n\t\t\t\t\"leagueid\": 156,\n\t\t\t\t\"description\":
|
|
858
|
+
\"The 2014 Summer Cup for the Australian E-Sports League will see top teams
|
|
859
|
+
from across Australia and the Oceanic region compete for their share of AUD
|
|
860
|
+
$3,500 in cash plus sponsor prizes; with the Grand Finals held live in Sydney
|
|
861
|
+
on the 1st of March. \",\n\t\t\t\t\"tournament_url\": \"http://www.esportsdaily.com.au/events/43-dota-2-australian-esports-league-summer-cup-2014\",\n\t\t\t\t\"itemdef\":
|
|
862
|
+
15458\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Amateur Dota 2 League Season
|
|
863
|
+
1 - Playoffs\",\n\t\t\t\t\"leagueid\": 157,\n\t\t\t\t\"description\": \"Teams
|
|
864
|
+
compete in the playoffs for the first season of the Amateur Dota 2 League!\",\n\t\t\t\t\"tournament_url\":
|
|
865
|
+
\"http://amateurdota2league.com/\",\n\t\t\t\t\"itemdef\": 15460\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
866
|
+
\"Amateur Dota 2 League Season 2\",\n\t\t\t\t\"leagueid\": 158,\n\t\t\t\t\"description\":
|
|
867
|
+
\"The second season of the Amateur Dota 2 League kicks off where Amateur teams
|
|
868
|
+
compete to be crowned champions!\",\n\t\t\t\t\"tournament_url\": \"http://amateurdota2league.com/\",\n\t\t\t\t\"itemdef\":
|
|
869
|
+
15462\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Tampa eSports Winter WonderLAN
|
|
870
|
+
2014\",\n\t\t\t\t\"leagueid\": 159,\n\t\t\t\t\"description\": \"Watch amateur
|
|
871
|
+
teams from Florida compete for over $600 in cash and prizes!\",\n\t\t\t\t\"tournament_url\":
|
|
872
|
+
\"http://tampaesports.com/tampa-esports-winter-wonderlan-2014/\",\n\t\t\t\t\"itemdef\":
|
|
873
|
+
15464\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Prodota Winter Cup\",\n\t\t\t\t\"leagueid\":
|
|
874
|
+
160,\n\t\t\t\t\"description\": \"Professional Dota 2 teams compete for a grand
|
|
875
|
+
prize of $1,000 USD in the Prodota Winter Cup!\",\n\t\t\t\t\"tournament_url\":
|
|
876
|
+
\"http://prodota.ru/news/pd-cup-winter-announced/\",\n\t\t\t\t\"itemdef\":
|
|
877
|
+
15466\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SteelSeries Euro Cup Season
|
|
878
|
+
3\",\n\t\t\t\t\"leagueid\": 161,\n\t\t\t\t\"description\": \"Steelseries Euro
|
|
879
|
+
Cup is back for Season 3! This is an open tournament featuring the most talented
|
|
880
|
+
European teams competing for a $1,000 USD prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
881
|
+
\"http://www.dotatalk.com/tournaments/steelseries-euro-cup-3\",\n\t\t\t\t\"itemdef\":
|
|
882
|
+
15468\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Thursday Evening Cup Series\",\n\t\t\t\t\"leagueid\":
|
|
883
|
+
162,\n\t\t\t\t\"description\": \"The Thursday Evening Cup Series is a new
|
|
884
|
+
semipro tournament series based on SECS, the longest running DotA tournament
|
|
885
|
+
series to date. TECS provides an open competitive platform for North and South
|
|
886
|
+
American teams to gain real tournament experience.\",\n\t\t\t\t\"tournament_url\":
|
|
887
|
+
\"http://nadota.com/tecs\",\n\t\t\t\t\"itemdef\": 15470\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
888
|
+
\"Doteirao League Season 5\",\n\t\t\t\t\"leagueid\": 164,\n\t\t\t\t\"description\":
|
|
889
|
+
\"The top 8 Brazilian teams compete for a total prize pool of R$1000!\",\n\t\t\t\t\"tournament_url\":
|
|
890
|
+
\"http://www.megalodongaming.com/\",\n\t\t\t\t\"itemdef\": 15472\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
891
|
+
\"League of Dota 2\",\n\t\t\t\t\"leagueid\": 165,\n\t\t\t\t\"description\":
|
|
892
|
+
\"League of Dota is an amateur tournament series for casual and semi-competitive
|
|
893
|
+
teams and players to participate in every week. \",\n\t\t\t\t\"tournament_url\":
|
|
894
|
+
\"http://leagueofdota.com/\",\n\t\t\t\t\"itemdef\": 15474\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
895
|
+
\"CIS Carnage 2014 Ticket\",\n\t\t\t\t\"leagueid\": 166,\n\t\t\t\t\"description\":
|
|
896
|
+
\"CIS Carnage 2014 features 8 well-known CIS teams competing for a total prize
|
|
897
|
+
pool of $4,000. This ticket only gives you access to view games from CIS Carnage
|
|
898
|
+
2014.\",\n\t\t\t\t\"tournament_url\": \"http://cis-carnage.com/\",\n\t\t\t\t\"itemdef\":
|
|
899
|
+
15476\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ESP Shock Therapy Cup Ticket\",\n\t\t\t\t\"leagueid\":
|
|
900
|
+
167,\n\t\t\t\t\"description\": \"Eight of the West's top teams battle it out,
|
|
901
|
+
double-elimination style, for $10,000! Casted by BeyondtheSummit.\",\n\t\t\t\t\"tournament_url\":
|
|
902
|
+
\"http://es-prime.com/\",\n\t\t\t\t\"itemdef\": 15478\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
903
|
+
\"South Sumatera Dota 2 Amateur League 2014\",\n\t\t\t\t\"leagueid\": 168,\n\t\t\t\t\"description\":
|
|
904
|
+
\"South Sumatera Dota 2 Amateur League is a Dota 2 competition between 15
|
|
905
|
+
most talented amateur teams in the region.\",\n\t\t\t\t\"tournament_url\":
|
|
906
|
+
\"http://www.commandcentre.org/\",\n\t\t\t\t\"itemdef\": 15480\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
907
|
+
\"Hungarian Premier League Season 6\",\n\t\t\t\t\"leagueid\": 169,\n\t\t\t\t\"description\":
|
|
908
|
+
\"48 teams and four invited teams compete in the Hungarian Premier League
|
|
909
|
+
for a $150 prize.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.hu/hpl\",\n\t\t\t\t\"itemdef\":
|
|
910
|
+
15482\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Helios Esports & Logitech Gaming
|
|
911
|
+
Season 1\",\n\t\t\t\t\"leagueid\": 170,\n\t\t\t\t\"description\": \"An amateur
|
|
912
|
+
tournament to showcase the top North American and European teams competing
|
|
913
|
+
for prizes worth over $1500!\",\n\t\t\t\t\"tournament_url\": \"http://heliosesports.com/tournament/\",\n\t\t\t\t\"itemdef\":
|
|
914
|
+
15484\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Sweaty Cup\",\n\t\t\t\t\"leagueid\":
|
|
915
|
+
171,\n\t\t\t\t\"description\": \"Semi-pro teams and amateurs compete in this
|
|
916
|
+
tournament for 16,000 Rubles!\",\n\t\t\t\t\"tournament_url\": \"http://pot-cup.ru/\",\n\t\t\t\t\"itemdef\":
|
|
917
|
+
15486\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Netolic Pro League 5 West Ticket\",\n\t\t\t\t\"leagueid\":
|
|
918
|
+
176,\n\t\t\t\t\"description\": \"Netolic Pro League West 5 invites the best
|
|
919
|
+
teams and rivalries from Europe and the Americas to fight it out!\\r\\n\\t\\r\\n\\tThis
|
|
920
|
+
ticket only gives you access to view games in the Netolic Pro League 5 West.\",\n\t\t\t\t\"tournament_url\":
|
|
921
|
+
\"http://www.netolic.tv/\",\n\t\t\t\t\"itemdef\": 15488\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
922
|
+
\"Dota2VO Seasons: Frostfire\",\n\t\t\t\t\"leagueid\": 173,\n\t\t\t\t\"description\":
|
|
923
|
+
\"Teams from the CIS compete for a prize pool of $1,000+ and the title of
|
|
924
|
+
Dota2VO Champions! \",\n\t\t\t\t\"tournament_url\": \"http://dota2vo.ru/frostfire.html\",\n\t\t\t\t\"itemdef\":
|
|
925
|
+
15490\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Asian Cyber Games Invitational:
|
|
926
|
+
Best of the Best\",\n\t\t\t\t\"leagueid\": 174,\n\t\t\t\t\"description\":
|
|
927
|
+
\"Southeast Asian teams are invited to compete in the Asian Cyber Games Invitational:
|
|
928
|
+
Best of the Best tournament for a total prize pool of $3500!\",\n\t\t\t\t\"tournament_url\":
|
|
929
|
+
\"http://e-clubmalaysia.com/dota2/?p=8028\",\n\t\t\t\t\"itemdef\": 15492\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
930
|
+
\"Macedonian Elite League\",\n\t\t\t\t\"leagueid\": 175,\n\t\t\t\t\"description\":
|
|
931
|
+
\"Top players compete in two divisions in the Macedonian Elite League for
|
|
932
|
+
a prize!\",\n\t\t\t\t\"tournament_url\": \"https://www.facebook.com/Dota2MacedoniaCommunity\",\n\t\t\t\t\"itemdef\":
|
|
933
|
+
15494\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Netolic Pro League 5 East Ticket\",\n\t\t\t\t\"leagueid\":
|
|
934
|
+
177,\n\t\t\t\t\"description\": \"Netolic Pro League East 5 invites the best
|
|
935
|
+
teams and rivalries from Asia to battle it out!\\r\\n\\t\\r\\n\\tThis ticket
|
|
936
|
+
only gives you access to view games in the Netolic Pro League 5 East.\",\n\t\t\t\t\"tournament_url\":
|
|
937
|
+
\"http://www.netolic.tv/\",\n\t\t\t\t\"itemdef\": 15496\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
938
|
+
\"GamerSportPeru\",\n\t\t\t\t\"leagueid\": 178,\n\t\t\t\t\"description\":
|
|
939
|
+
\"32 teams compete in the GamerSportPeru tournament!\",\n\t\t\t\t\"tournament_url\":
|
|
940
|
+
\"http://www.gamersportperu.com/\",\n\t\t\t\t\"itemdef\": 15498\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
941
|
+
\"Pro Dota 2 Solo Ranked League Season 2\",\n\t\t\t\t\"leagueid\": 179,\n\t\t\t\t\"description\":
|
|
942
|
+
\"120 players fight to claim the competition with a total prize money of up
|
|
943
|
+
to $350!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://prodota.hu/\",\n\t\t\t\t\"itemdef\":
|
|
944
|
+
15500\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Yard White Festival Ticket\",\n\t\t\t\t\"leagueid\":
|
|
945
|
+
180,\n\t\t\t\t\"description\": \"Yard Festival is back for Yard White Festival
|
|
946
|
+
- the second tournament for non-pro teams! Six amateur teams from qualifying
|
|
947
|
+
matches will compete for $2000 with professional Dota 2 scene teams!\",\n\t\t\t\t\"tournament_url\":
|
|
948
|
+
\"http://www.d2yard.com\",\n\t\t\t\t\"itemdef\": 15502\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
949
|
+
\"SteelSeries Balkan Cup Season 1\",\n\t\t\t\t\"leagueid\": 182,\n\t\t\t\t\"description\":
|
|
950
|
+
\"The SteelSeries Balkan Cup is an open tournament featuring the most talented
|
|
951
|
+
Balkan teams competing for $1,000 USD worth of Na'Vi gaming gear.\",\n\t\t\t\t\"tournament_url\":
|
|
952
|
+
\"http://www.dotatalk.com/tournaments/steelseries-balkan-cup\",\n\t\t\t\t\"itemdef\":
|
|
953
|
+
15507\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"joinDOTA League\",\n\t\t\t\t\"leagueid\":
|
|
954
|
+
181,\n\t\t\t\t\"description\": \"The first season of the joinDOTA League features
|
|
955
|
+
over 2500 teams across the world competing in various divisions for the grand
|
|
956
|
+
prize! Each purchase of this ticket will add $0.75 to the total prize pool!\",\n\t\t\t\t\"tournament_url\":
|
|
957
|
+
\"http://www.joindota.com/en/leagues/\",\n\t\t\t\t\"itemdef\": 15517\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
958
|
+
\"Oscar Cup Tournament Season 3\",\n\t\t\t\t\"leagueid\": 183,\n\t\t\t\t\"description\":
|
|
959
|
+
\"Teams compete for a grand prize of $200 in the Oscar Cup!\",\n\t\t\t\t\"tournament_url\":
|
|
960
|
+
\"http://oscarcup.ru/\",\n\t\t\t\t\"itemdef\": 15520\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
961
|
+
\"GameLadders Dota 2 League\",\n\t\t\t\t\"leagueid\": 65018,\n\t\t\t\t\"description\":
|
|
962
|
+
\"The GameLadders Dota 2 League is a competition by GameLadders in order to
|
|
963
|
+
bring a first hand experience of online Dota 2 on a competitive level to Sri
|
|
964
|
+
Lanka.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.gameladders.lk/\",\n\t\t\t\t\"itemdef\":
|
|
965
|
+
15522\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"MLG T.K.O.\",\n\t\t\t\t\"leagueid\":
|
|
966
|
+
184,\n\t\t\t\t\"description\": \"joinDOTA and MLG team up to present the MLG
|
|
967
|
+
T.K.O.! This tournament features the top eight European and American teams
|
|
968
|
+
compete for $60,000 in an innovative knockout format!\",\n\t\t\t\t\"tournament_url\":
|
|
969
|
+
\"http://mlg.joindota.com/en/start\",\n\t\t\t\t\"itemdef\": 15524\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
970
|
+
\"Pro Gaming Tours League\",\n\t\t\t\t\"leagueid\": 185,\n\t\t\t\t\"description\":
|
|
971
|
+
\"16 teams compete in a single elimination bracket for $300!\",\n\t\t\t\t\"tournament_url\":
|
|
972
|
+
\"http://www.progamingtours.net/tournament/pgtl-na-dota-2/\",\n\t\t\t\t\"itemdef\":
|
|
973
|
+
15526\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"BoraDota\",\n\t\t\t\t\"leagueid\":
|
|
974
|
+
186,\n\t\t\t\t\"description\": \"32 teams in Brazil compete for R$600 in this
|
|
975
|
+
World Cup style format tournament!\",\n\t\t\t\t\"tournament_url\": \"http://www.boradota.com/\",\n\t\t\t\t\"itemdef\":
|
|
976
|
+
15529\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Battle of Pride: Malaysia vs.
|
|
977
|
+
Philippines\",\n\t\t\t\t\"leagueid\": 187,\n\t\t\t\t\"description\": \"An
|
|
978
|
+
open tournament where the best teams in the Philippines and Malaysia versus
|
|
979
|
+
one another. The champion brings home $500 and defends their national pride!\",\n\t\t\t\t\"tournament_url\":
|
|
980
|
+
\"http://www.dotatalk.com/tournaments/battle-of-pride-malaysia-vs-philippines\",\n\t\t\t\t\"itemdef\":
|
|
981
|
+
15532\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Champion's League Season
|
|
982
|
+
2 Ticket\",\n\t\t\t\t\"leagueid\": 196,\n\t\t\t\t\"description\": \"Champions
|
|
983
|
+
League Season 2 will feature 10 top teams from Europe and North America fighting
|
|
984
|
+
for $50,000! This ticket only gives you access to view games in the Dota 2
|
|
985
|
+
Champion's League.\",\n\t\t\t\t\"tournament_url\": \"http://www.d2cl.org/\",\n\t\t\t\t\"itemdef\":
|
|
986
|
+
15961\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota2.ru Cup #1 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
987
|
+
188,\n\t\t\t\t\"description\": \"The top teams in CIS compete in a tournament
|
|
988
|
+
for a prize of $1000!\\r\\n\\t\\r\\n\\tThis ticket only gives you access to
|
|
989
|
+
view games in the Dota2.ru Cup #1.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.ru/news/3018-anons-dota2ru-cup-1/\",\n\t\t\t\t\"itemdef\":
|
|
990
|
+
15536\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Sina Cup Supernova Season 3\",\n\t\t\t\t\"leagueid\":
|
|
991
|
+
189,\n\t\t\t\t\"description\": \"Supernova tradition continues on with rising
|
|
992
|
+
teams qualifying for chance to compete against top teams across China for
|
|
993
|
+
prize pool of 90,000RMB.\",\n\t\t\t\t\"tournament_url\": \"\",\n\t\t\t\t\"itemdef\":
|
|
994
|
+
15538\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ESPL Season 1 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
995
|
+
190,\n\t\t\t\t\"description\": \"The Electronic Sports Professionals League
|
|
996
|
+
Season One is a three month long event where amateur teams will compete every
|
|
997
|
+
week for $100 plus league points. The season will conclude with a finale comprising
|
|
998
|
+
of two professional teams and the top 6 amateur teams all competing for a
|
|
999
|
+
$5900 prize pool.\\r\\n\\t\\r\\n\\tThis ticket only gives you access to view
|
|
1000
|
+
games in the ESPL Season 1.\",\n\t\t\t\t\"tournament_url\": \"http://esp.gg/\",\n\t\t\t\t\"itemdef\":
|
|
1001
|
+
15540\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"AOC Pro Cup Season 1\",\n\t\t\t\t\"leagueid\":
|
|
1002
|
+
191,\n\t\t\t\t\"description\": \"AOC Pro Cup features the best Dota 2 teams
|
|
1003
|
+
in Southeast Asia, Korea, Japan and Oceania competing for a cash prize of
|
|
1004
|
+
$2000!\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/tournaments/aoc-pro-cup\",\n\t\t\t\t\"itemdef\":
|
|
1005
|
+
15544\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Orena Dota 2 Cup\",\n\t\t\t\t\"leagueid\":
|
|
1006
|
+
192,\n\t\t\t\t\"description\": \"32 South African teams compete for a total
|
|
1007
|
+
prize pool of R12,700 and gaming equipment from SteelSeries!\",\n\t\t\t\t\"tournament_url\":
|
|
1008
|
+
\"http://orena.co.za/dota-2-cup/\",\n\t\t\t\t\"itemdef\": 15546\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1009
|
+
\"Amateur Dota 2 League Season 3\",\n\t\t\t\t\"leagueid\": 193,\n\t\t\t\t\"description\":
|
|
1010
|
+
\"The third season of the Amateur Dota 2 League kicks off where Amateur teams
|
|
1011
|
+
compete to be crowned champions!\",\n\t\t\t\t\"tournament_url\": \"http://amateurdota2league.com/\",\n\t\t\t\t\"itemdef\":
|
|
1012
|
+
15548\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"King of the North\",\n\t\t\t\t\"leagueid\":
|
|
1013
|
+
194,\n\t\t\t\t\"description\": \"The University of Manchester E-Sports Society
|
|
1014
|
+
brings you King of the North! The online qualifier will run on February 15th
|
|
1015
|
+
and 22nd. Qualifiers are open to any teams made up from university students
|
|
1016
|
+
in the north of England and Wales. The finalists who emerge from these qualifiers
|
|
1017
|
+
will be invited to Manchester on March 19th this year to play in front of
|
|
1018
|
+
a live audience at the event.\",\n\t\t\t\t\"tournament_url\": \"http://www.uomesports.com/\",\n\t\t\t\t\"itemdef\":
|
|
1019
|
+
15550\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Ladder Dota2Chile.net Season
|
|
1020
|
+
1\",\n\t\t\t\t\"leagueid\": 195,\n\t\t\t\t\"description\": \"The teams in
|
|
1021
|
+
South America compete for 8 weeks culminating in a 8-team double elimination
|
|
1022
|
+
tournament! \",\n\t\t\t\t\"tournament_url\": \"http://dota2chile.net/index.php\",\n\t\t\t\t\"itemdef\":
|
|
1023
|
+
15552\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Korea Dota League Season 1 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1024
|
+
197,\n\t\t\t\t\"description\": \"Nexon presents all new league for 2014, in
|
|
1025
|
+
partnership with SPOTV and KeSPA. The KDL will span four seasons with a total
|
|
1026
|
+
of KRW 650 million (USD 605,000) prize pool. Watch the very first season of
|
|
1027
|
+
its kind featuring the top 10 teams in Tier 1 and 2.\",\n\t\t\t\t\"tournament_url\":
|
|
1028
|
+
\"http://dota2.nexon.com/\",\n\t\t\t\t\"itemdef\": 15553\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1029
|
+
\"Banglagamer Dota 2 Championship\",\n\t\t\t\t\"leagueid\": 65019,\n\t\t\t\t\"description\":
|
|
1030
|
+
\"The BanglaGamer Dota 2 Championship is a tournament organized by BanglaGamer.com
|
|
1031
|
+
for all Dota 2 players located in Bangladesh. This tournament is proudly sponsored
|
|
1032
|
+
by Team Group Inc. Winners will get Team products; estimated worth of $1000!\",\n\t\t\t\t\"tournament_url\":
|
|
1033
|
+
\"http://banglagamer.com/\",\n\t\t\t\t\"itemdef\": 15556\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1034
|
+
\"Bulgarian Amateur League Season One\",\n\t\t\t\t\"leagueid\": 198,\n\t\t\t\t\"description\":
|
|
1035
|
+
\"A Bulgarian League with 50 teams which will compete for 23 days for a prize!\",\n\t\t\t\t\"tournament_url\":
|
|
1036
|
+
\"http://facebook.com/dota2bg\",\n\t\t\t\t\"itemdef\": 15559\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1037
|
+
\"Sunday Evening Cup Series Season 3\",\n\t\t\t\t\"leagueid\": 199,\n\t\t\t\t\"description\":
|
|
1038
|
+
\"The Sunday Evening Cup Series (SECS) began in December 2009 and is the longest
|
|
1039
|
+
running Dota tournament series to date. SECS provides an open competitive
|
|
1040
|
+
platform for North and South American teams to gain real tournament experience.\",\n\t\t\t\t\"tournament_url\":
|
|
1041
|
+
\"http://nadota.com/secs\",\n\t\t\t\t\"itemdef\": 15561\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1042
|
+
\"GCCSL Cup Lan #1\",\n\t\t\t\t\"leagueid\": 200,\n\t\t\t\t\"description\":
|
|
1043
|
+
\"Twelve of the best teams in the Leningrad region compete for a grand prize
|
|
1044
|
+
of 16,000 Rubles!\",\n\t\t\t\t\"tournament_url\": \"http://gccsl.ru/turnir-po-dota2.html\",\n\t\t\t\t\"itemdef\":
|
|
1045
|
+
15563\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"MPGL Season 6 SEA Qualifier
|
|
1046
|
+
Ticket\",\n\t\t\t\t\"leagueid\": 201,\n\t\t\t\t\"description\": \"Mineski
|
|
1047
|
+
Pro Gaming League presents its sixth season! Teams from various countries
|
|
1048
|
+
in Southeast Asia will have their own qualifiers and the grand national champion
|
|
1049
|
+
will fly to the Phillipines to participate in the grand finals in November
|
|
1050
|
+
2014!\\r\\n\\t\\r\\n\\tThis ticket only gives you access to view games in
|
|
1051
|
+
the MPGL Season 6 SEA Qualifier.\",\n\t\t\t\t\"tournament_url\": \"http://www.mineski.net/\",\n\t\t\t\t\"itemdef\":
|
|
1052
|
+
15565\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Romania 5 - Spring Cup
|
|
1053
|
+
Ticket\",\n\t\t\t\t\"leagueid\": 202,\n\t\t\t\t\"description\": \"D2RO is
|
|
1054
|
+
back with The Spring Cup! The 5th edition features some of the most popular
|
|
1055
|
+
teams in Europe competing for a total prize of $1000 in cash. \\r\\n\\t\\r\\n\\tThis
|
|
1056
|
+
ticket only gives you access to view games in the Dota 2 Romania 5 Spring
|
|
1057
|
+
Cup.\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2romania.com/\",\n\t\t\t\t\"itemdef\":
|
|
1058
|
+
15567\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"DC Presents: The XMG Captains
|
|
1059
|
+
Draft Invitational Ticket\",\n\t\t\t\t\"leagueid\": 203,\n\t\t\t\t\"description\":
|
|
1060
|
+
\"DotaCinema presents the XMG Captains Draft Invitational! This is the first
|
|
1061
|
+
major competitive Dota 2 tournament being played in Captains Draft mode! Teams
|
|
1062
|
+
included are Alliance, Na`Vi, Fnatic, RoX.KIS, Sigma.int and Team Liquid.
|
|
1063
|
+
The teams battle for $20,000! \\r\\n\\t\\r\\n\\tThis ticket only gives you
|
|
1064
|
+
access to view games in the XMG Captains Draft Invitational.\",\n\t\t\t\t\"tournament_url\":
|
|
1065
|
+
\"http://www.dotacinema.com/\",\n\t\t\t\t\"itemdef\": 15724\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1066
|
+
\"Zotac Starleague 2014 Ticket\",\n\t\t\t\t\"leagueid\": 205,\n\t\t\t\t\"description\":
|
|
1067
|
+
\"The Zotac Starleague 2014 is the biggest Brazilian Dota 2 Tournament ever!
|
|
1068
|
+
It has the biggest prize pool in the history of Brazilian Dota (R$ 10.000,00)!
|
|
1069
|
+
After two qualifiers 32 elite teams of South America will fight for the grand
|
|
1070
|
+
prize!\",\n\t\t\t\t\"tournament_url\": \"http://zotac2014.play4dota.tv/\",\n\t\t\t\t\"itemdef\":
|
|
1071
|
+
15571\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Red Bull Battle Grounds\",\n\t\t\t\t\"leagueid\":
|
|
1072
|
+
206,\n\t\t\t\t\"description\": \"Red Bull plans to hold multiple online and
|
|
1073
|
+
live events to lead up to our grand finals at the end of the year. We aim
|
|
1074
|
+
to have coverage and promotion similar to our 2013 events circuit. \",\n\t\t\t\t\"tournament_url\":
|
|
1075
|
+
\"http://www.redbull.com/battlegrounds\",\n\t\t\t\t\"itemdef\": 15573\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1076
|
+
\"SDL 2014 Season One Finale\",\n\t\t\t\t\"leagueid\": 207,\n\t\t\t\t\"description\":
|
|
1077
|
+
\"After three amateur leagues we have the top 16 Brazilian teams fighting
|
|
1078
|
+
for the trophy and R$1000,00 of SDL, one of the biggest Leagues of South America!\",\n\t\t\t\t\"tournament_url\":
|
|
1079
|
+
\"http://www.shigueoleague.com/\",\n\t\t\t\t\"itemdef\": 15575\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1080
|
+
\"Netolic Amateur League Season 1 Ticket\",\n\t\t\t\t\"leagueid\": 208,\n\t\t\t\t\"description\":
|
|
1081
|
+
\"The Netolic Amateur League is an open tournament where teams from all around
|
|
1082
|
+
the world are welcome to join for free! Each season will consist in 4 weekends,
|
|
1083
|
+
the base prize pool for this League is $1,100.00 monthly!\\r\\n\\t\\r\\n\\tThis
|
|
1084
|
+
ticket only gives you access to view games in the Netolic Amateur League Season
|
|
1085
|
+
1.\",\n\t\t\t\t\"tournament_url\": \"http://www.netolic.tv/\",\n\t\t\t\t\"itemdef\":
|
|
1086
|
+
15577\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Copa LiveDota Chile ExpoFAN\",\n\t\t\t\t\"leagueid\":
|
|
1087
|
+
209,\n\t\t\t\t\"description\": \"The best teams in Chile compete for more
|
|
1088
|
+
than $600 at the LAN Final during the live ExpoFAN event!\",\n\t\t\t\t\"tournament_url\":
|
|
1089
|
+
\"http://livedota.tv/index.php?/page/articles.html/_/articles/copa-livedota-chile-r12\",\n\t\t\t\t\"itemdef\":
|
|
1090
|
+
15579\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Thailand Dota 2 Pro League\",\n\t\t\t\t\"leagueid\":
|
|
1091
|
+
210,\n\t\t\t\t\"description\": \"The top eight teams in Thailand compete in
|
|
1092
|
+
the first season of the Thailand Dota 2 Pro League!\",\n\t\t\t\t\"tournament_url\":
|
|
1093
|
+
\"http://dota2.e-clubthailand.com/\",\n\t\t\t\t\"itemdef\": 15581\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1094
|
+
\"Dota 2 Ireland Season 2\",\n\t\t\t\t\"leagueid\": 211,\n\t\t\t\t\"description\":
|
|
1095
|
+
\"Irish teams compete for pride and glory in the second season of the Dota
|
|
1096
|
+
2 Ireland league!\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2ireland.com/\",\n\t\t\t\t\"itemdef\":
|
|
1097
|
+
15583\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Vietnam Champion's League\",\n\t\t\t\t\"leagueid\":
|
|
1098
|
+
212,\n\t\t\t\t\"description\": \"The first professional league for Vietnam
|
|
1099
|
+
players where the best teams compete to be crowned the Dota 2 Vietnam Champions!\",\n\t\t\t\t\"tournament_url\":
|
|
1100
|
+
\"http://www.facebook.com/PewPewVN\",\n\t\t\t\t\"itemdef\": 15585\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1101
|
+
\"LerucyGaming Tournament\",\n\t\t\t\t\"leagueid\": 213,\n\t\t\t\t\"description\":
|
|
1102
|
+
\"32 teams from Indonesia compete in this tournament for a total prize pool
|
|
1103
|
+
of 6.000.000 IDR!\",\n\t\t\t\t\"tournament_url\": \"http://www.lerucygaming.com/?isi=posting&posting_seo=tournament_dota_2_indonesia\",\n\t\t\t\t\"itemdef\":
|
|
1104
|
+
15587\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Gamersportperu Season 3\",\n\t\t\t\t\"leagueid\":
|
|
1105
|
+
214,\n\t\t\t\t\"description\": \"Gamersport Peru presents Season 3 of their
|
|
1106
|
+
league where teams in Peru compete to be crowned champions!\",\n\t\t\t\t\"tournament_url\":
|
|
1107
|
+
\"http://www.gamersportperu.com/\",\n\t\t\t\t\"itemdef\": 15589\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1108
|
+
\"MSI Beat It Gaming League\",\n\t\t\t\t\"leagueid\": 215,\n\t\t\t\t\"description\":
|
|
1109
|
+
\"MSI Beat It Gaming League takes place in Indonesia where teams will compete
|
|
1110
|
+
for various prizes including cash and MSI hardware!\",\n\t\t\t\t\"tournament_url\":
|
|
1111
|
+
\"http://nixiagamer.com/msileague.html\",\n\t\t\t\t\"itemdef\": 15591\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1112
|
+
\"Steelseries Malaysia Cup - February\",\n\t\t\t\t\"leagueid\": 216,\n\t\t\t\t\"description\":
|
|
1113
|
+
\"The top eight Malaysian teams will compete for gaming equipment from Steelseries
|
|
1114
|
+
worth $1,000!\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/tournaments/steelseries-my-cup-1-2014\",\n\t\t\t\t\"itemdef\":
|
|
1115
|
+
15593\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Brunei Dota League 2014\",\n\t\t\t\t\"leagueid\":
|
|
1116
|
+
217,\n\t\t\t\t\"description\": \"The first season of the Brunei Dota League
|
|
1117
|
+
gives amateur teams an opportunity to compete and improve their game play!\",\n\t\t\t\t\"tournament_url\":
|
|
1118
|
+
\"http://dota2brunei.com/brunei-dota-league.html\",\n\t\t\t\t\"itemdef\":
|
|
1119
|
+
15595\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Thursday Evening Cup Series
|
|
1120
|
+
Season 2\",\n\t\t\t\t\"leagueid\": 218,\n\t\t\t\t\"description\": \"The Thursday
|
|
1121
|
+
Evening Cup Series returns for its second season! This semi-pro tournament
|
|
1122
|
+
series is for North and South American teams. Every week there is a best-of-1
|
|
1123
|
+
single elimination bracket, $100 winner-take-all.\",\n\t\t\t\t\"tournament_url\":
|
|
1124
|
+
\"http://nadota.com/tecs\",\n\t\t\t\t\"itemdef\": 15597\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1125
|
+
\"ICL Dota 2 LAN\",\n\t\t\t\t\"leagueid\": 219,\n\t\t\t\t\"description\":
|
|
1126
|
+
\"The Hungarian LAN Series continue with the Infinity Csarnok LAN featuring
|
|
1127
|
+
Hungarian teams competing to become champion!\",\n\t\t\t\t\"tournament_url\":
|
|
1128
|
+
\"http://lanseries.hu/\",\n\t\t\t\t\"itemdef\": 15599\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1129
|
+
\"Little Yard Festival\",\n\t\t\t\t\"leagueid\": 220,\n\t\t\t\t\"description\":
|
|
1130
|
+
\"32 teams compete in the Little Yard Festival for a total prize pool of 10,000
|
|
1131
|
+
Rubles!\",\n\t\t\t\t\"tournament_url\": \"http://vk.com/littleyardfestival\",\n\t\t\t\t\"itemdef\":
|
|
1132
|
+
15601\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"CEVO Season 4\",\n\t\t\t\t\"leagueid\":
|
|
1133
|
+
221,\n\t\t\t\t\"description\": \"CEVO Season 4 is a North American Pro-Am
|
|
1134
|
+
event where teams compete in an 8-week regular season, followed by playoffs
|
|
1135
|
+
for over $5,000 and the chance to advance to higher skill divisions in future
|
|
1136
|
+
seasons. \",\n\t\t\t\t\"tournament_url\": \"http://cevo.com/event/dota2/?tg=81\",\n\t\t\t\t\"itemdef\":
|
|
1137
|
+
15603\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Donbass Cup\",\n\t\t\t\t\"leagueid\":
|
|
1138
|
+
222,\n\t\t\t\t\"description\": \"32 teams compete in four groups for the Donbass
|
|
1139
|
+
Cup and a grand prize of 20,000 UAH!\",\n\t\t\t\t\"tournament_url\": \"http://vk.com/cyber_sports_itstep_donetsk\",\n\t\t\t\t\"itemdef\":
|
|
1140
|
+
15605\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ASUS ROG DreamLeague Season
|
|
1141
|
+
1\",\n\t\t\t\t\"leagueid\": 223,\n\t\t\t\t\"description\": \"ASUS ROG DreamLeague
|
|
1142
|
+
Season 1 is sponsored by ASUS ROG, ROCCAT & TV6. Starting on March 3rd, 2014
|
|
1143
|
+
of the world's best teams will compete in 84 league matches and the playoffs
|
|
1144
|
+
at DreamHack Summer 2014 for a $100,000 prize pool. Purchase the Compendium,
|
|
1145
|
+
increase the prize pool, and play the Fantasy League!\",\n\t\t\t\t\"tournament_url\":
|
|
1146
|
+
\"http://www.dreamhack.se/\",\n\t\t\t\t\"itemdef\": 15868\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1147
|
+
\"Pro Dota 2 Solo Ranked League Season 3 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1148
|
+
224,\n\t\t\t\t\"description\": \"Season 3 returns in the Pro Dota 2 Solo Ranked
|
|
1149
|
+
League where 240 players fight in 2 different leagues (Amateur and Semi-Pro)
|
|
1150
|
+
non-stop for 2 weeks to claim the prize up to $200!\\r\\n\\t\\r\\n\\tThis
|
|
1151
|
+
ticket only gives you access to view games in the Pro Dota 2 Solo Ranked League
|
|
1152
|
+
Season 3.\",\n\t\t\t\t\"tournament_url\": \"http://prodota.hu/\",\n\t\t\t\t\"itemdef\":
|
|
1153
|
+
15609\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Serbian Dota Premier League\",\n\t\t\t\t\"leagueid\":
|
|
1154
|
+
225,\n\t\t\t\t\"description\": \"The top teams in the Balkan compete to become
|
|
1155
|
+
champion's of the Serbian Premier League and a prize!\",\n\t\t\t\t\"tournament_url\":
|
|
1156
|
+
\"www.dota2serbia.info\",\n\t\t\t\t\"itemdef\": 15611\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1157
|
+
\"CIS Dota 2 League\",\n\t\t\t\t\"leagueid\": 226,\n\t\t\t\t\"description\":
|
|
1158
|
+
\"32 teams compete in the CIS Dota 2 League for a grand prize of $200!\",\n\t\t\t\t\"tournament_url\":
|
|
1159
|
+
\"http://cisdl.jimdo.com/\",\n\t\t\t\t\"itemdef\": 15613\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1160
|
+
\"CFC Elite Cup\",\n\t\t\t\t\"leagueid\": 227,\n\t\t\t\t\"description\": \"The
|
|
1161
|
+
CFC Elite Cup is an amateur tournament where teams will compete for a prize
|
|
1162
|
+
of $1200!\",\n\t\t\t\t\"tournament_url\": \"http://cfcdota2.umi.ru/\",\n\t\t\t\t\"itemdef\":
|
|
1163
|
+
15615\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ESL Series Brazil Season 1\",\n\t\t\t\t\"leagueid\":
|
|
1164
|
+
228,\n\t\t\t\t\"description\": \"Brazilian teams fight three days a week for
|
|
1165
|
+
three months to compete for gaming equipments from Ozone Gaming!\",\n\t\t\t\t\"tournament_url\":
|
|
1166
|
+
\"http://www.nationalesl.com/br/dota2/\",\n\t\t\t\t\"itemdef\": 15617\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1167
|
+
\"Indonesia Dota 2 League\",\n\t\t\t\t\"leagueid\": 229,\n\t\t\t\t\"description\":
|
|
1168
|
+
\"The Indonesia Dota 2 league is the countries first national Dota 2 league
|
|
1169
|
+
where teams will compete for a total prize of Rp 5,580,000.\",\n\t\t\t\t\"tournament_url\":
|
|
1170
|
+
\"http://maindota2.com/event-maindota2/\",\n\t\t\t\t\"itemdef\": 15619\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1171
|
+
\"Torresmo Legacy League\",\n\t\t\t\t\"leagueid\": 230,\n\t\t\t\t\"description\":
|
|
1172
|
+
\"The Torresmo Legacy League gives amateur teams in Brazil an opportunity
|
|
1173
|
+
to play for a $900 monthly prize pool!\",\n\t\t\t\t\"tournament_url\": \"\",\n\t\t\t\t\"itemdef\":
|
|
1174
|
+
15621\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Ro goes Pro\",\n\t\t\t\t\"leagueid\":
|
|
1175
|
+
231,\n\t\t\t\t\"description\": \"The first tournament organized by the PGL
|
|
1176
|
+
with Dota2Romania.com. 32 Romanian teams compete for a hardware worth $500!\",\n\t\t\t\t\"tournament_url\":
|
|
1177
|
+
\"http://www.dota2romania.com/\",\n\t\t\t\t\"itemdef\": 15623\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1178
|
+
\"SLTV Star Series Season 9 Ticket\",\n\t\t\t\t\"leagueid\": 232,\n\t\t\t\t\"description\":
|
|
1179
|
+
\"SLTV Star Series returns with Season 9 taking over the entire globe! Teams
|
|
1180
|
+
from China, Europe, America, & Korea will compete for a base prize pool of
|
|
1181
|
+
$80,000! This ticket only gives you access to view games in the SLTV Star
|
|
1182
|
+
Series Season 9.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.starladder.tv/\",\n\t\t\t\t\"itemdef\":
|
|
1183
|
+
15692\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"League of Dota Season 3 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1184
|
+
233,\n\t\t\t\t\"description\": \"Season 3 of League of Dota returns with a
|
|
1185
|
+
new format and revamped prize pool! Teams compete for $800 over the course
|
|
1186
|
+
of one month in daily amateur tournaments for North America and Europe. \\r\\n\\t\\r\\n\\tThis
|
|
1187
|
+
ticket only gives you access to view games in the League of Dota Season 3.\",\n\t\t\t\t\"tournament_url\":
|
|
1188
|
+
\"http://leagueofdota.com/\",\n\t\t\t\t\"itemdef\": 15627\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1189
|
+
\"deafESL Dota 2 League Season 2\",\n\t\t\t\t\"leagueid\": 234,\n\t\t\t\t\"description\":
|
|
1190
|
+
\"The deafESL brings the second season to life dedicated to the deaf community!
|
|
1191
|
+
It will stream games from two divisions composed of teams from around the
|
|
1192
|
+
world.\",\n\t\t\t\t\"tournament_url\": \"http://deafesl.com/dota/dota2-league/\",\n\t\t\t\t\"itemdef\":
|
|
1193
|
+
15629\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Monster Invitational\",\n\t\t\t\t\"leagueid\":
|
|
1194
|
+
235,\n\t\t\t\t\"description\": \"Four of the top American Dota 2 teams fight
|
|
1195
|
+
it out live in Austin, TX at SXSW for $15,000 and the title of 'Monster Invitational
|
|
1196
|
+
Champion.'\",\n\t\t\t\t\"tournament_url\": \"http://sxsw.d2l.gg/\",\n\t\t\t\t\"itemdef\":
|
|
1197
|
+
15631\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota2.ru Cup #2 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1198
|
+
236,\n\t\t\t\t\"description\": \"The best CIS Dota 2 teams will fight against
|
|
1199
|
+
each other for prize $2000!\\r\\n\\t\\r\\n\\tThis ticket only gives you access
|
|
1200
|
+
to view games in the Dota2.ru Cup #2.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.ru/news/3171-anons-dota2ru-cup-2/\",\n\t\t\t\t\"itemdef\":
|
|
1201
|
+
15633\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"EUS Pro League\",\n\t\t\t\t\"leagueid\":
|
|
1202
|
+
237,\n\t\t\t\t\"description\": \"The EUS Pro Leagues offers teams in Europe
|
|
1203
|
+
and America to compete in a month long tournament to be crowned champions.\",\n\t\t\t\t\"tournament_url\":
|
|
1204
|
+
\"http://www.eus-pro-league.com/\",\n\t\t\t\t\"itemdef\": 15635\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1205
|
+
\"Defense of the Australians Autumn Tournament\",\n\t\t\t\t\"leagueid\": 238,\n\t\t\t\t\"description\":
|
|
1206
|
+
\"The Autumn season arrives! Open qualifiers of 64 teams around Australia
|
|
1207
|
+
competing against each other until only 8 teams remain! Those teams will then
|
|
1208
|
+
battle against our top 8 teams of Summer 2014 and be crowned AustraliaâÂ\x80Â\x99s
|
|
1209
|
+
#1 team. Finals will take place at the Defense HQ in Melbourne.\",\n\t\t\t\t\"tournament_url\":
|
|
1210
|
+
\"https://www.d2t.com.au\",\n\t\t\t\t\"itemdef\": 15637\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1211
|
+
\"Ronin Dota 2 Tournament\",\n\t\t\t\t\"leagueid\": 239,\n\t\t\t\t\"description\":
|
|
1212
|
+
\"The Ronin Dota 2 Tournament is sponsored by Money Online, AyoPay and A-Z
|
|
1213
|
+
Event Organier. 64 teams will compete for the biggest pool prize in cash in
|
|
1214
|
+
Indonesia: Rp 25.000.000!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://maindota2.com/2014/02/08/1115/\",\n\t\t\t\t\"itemdef\":
|
|
1215
|
+
15639\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"WPL: CIS Open Cup Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1216
|
+
240,\n\t\t\t\t\"description\": \"Open tournament where over 500 teams will
|
|
1217
|
+
fight for the championship and a prize of $1000. This ticket only gives you
|
|
1218
|
+
access to view games in the WPL CIS: Open Cup.\",\n\t\t\t\t\"tournament_url\":
|
|
1219
|
+
\"http://dota.fgcl.ru/\",\n\t\t\t\t\"itemdef\": 15641\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1220
|
+
\"CZ-SK Dota 2 League\",\n\t\t\t\t\"leagueid\": 1002,\n\t\t\t\t\"description\":
|
|
1221
|
+
\"The first ever Czech-Slovakia league will take place over a six week period.
|
|
1222
|
+
The winner will receive prize money upon victory!\",\n\t\t\t\t\"tournament_url\":
|
|
1223
|
+
\"http://www.dota2league.cz/\",\n\t\t\t\t\"itemdef\": 15643\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1224
|
+
\"Pro Gaming Tours League March Ticket\",\n\t\t\t\t\"leagueid\": 501,\n\t\t\t\t\"description\":
|
|
1225
|
+
\"The second $300 tournament for PGTL 2014 takes place in March. The competition
|
|
1226
|
+
consists of 16 teams, the top 2 teams from our previous month and 14 teams
|
|
1227
|
+
from qualifiers. This ticket only gives you access to view games from the
|
|
1228
|
+
Pro Gaming Tours League March.\",\n\t\t\t\t\"tournament_url\": \"\",\n\t\t\t\t\"itemdef\":
|
|
1229
|
+
15644\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"South Ural League Season 3 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1230
|
+
500,\n\t\t\t\t\"description\": \"The third season of the South Ural League
|
|
1231
|
+
is upon us! The league consists of 16 teams in the pro division and 80 teams
|
|
1232
|
+
in the amateur division. The LAN finals will take place in Chelyabinsk. This
|
|
1233
|
+
ticket only gives you access to view games from the South Ural League Season
|
|
1234
|
+
3.\",\n\t\t\t\t\"tournament_url\": \"http://www.lks174.ru/\",\n\t\t\t\t\"itemdef\":
|
|
1235
|
+
15645\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Amateur Dota 2 League Season
|
|
1236
|
+
3 Invitational Ticket\",\n\t\t\t\t\"leagueid\": 503,\n\t\t\t\t\"description\":
|
|
1237
|
+
\"Sixteen amateur teams are invited from Europe and North America to compete
|
|
1238
|
+
for a prize pool starting at $500. This ticket only gives you access to view
|
|
1239
|
+
games from the Amateur Dota 2 League Season 3 Invitational.\",\n\t\t\t\t\"tournament_url\":
|
|
1240
|
+
\"http://amateurdota2league.com/\",\n\t\t\t\t\"itemdef\": 15646\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1241
|
+
\"Dota Trash Destruction\",\n\t\t\t\t\"leagueid\": 1026,\n\t\t\t\t\"description\":
|
|
1242
|
+
\"Dota Trash Destruction takes place on March 22nd, 2014 with a prize pool
|
|
1243
|
+
of $500. Eight invited teams face off against eight amateur teams who are
|
|
1244
|
+
decided by an NADota community vote.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatrash.com/destruction/\",\n\t\t\t\t\"itemdef\":
|
|
1245
|
+
15647\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Female Dota 2 Southeast Asia
|
|
1246
|
+
League Season 2\",\n\t\t\t\t\"leagueid\": 510,\n\t\t\t\t\"description\": \"A
|
|
1247
|
+
three month long league with a single-elimination BO3 playoffs for the top
|
|
1248
|
+
4 teams. FSL is open to female Dota 2 teams that play on the Southeast Asian
|
|
1249
|
+
server.\",\n\t\t\t\t\"tournament_url\": \"http://femaledota2.com/tournaments/femaledota2-sea-league/fsl-2/\",\n\t\t\t\t\"itemdef\":
|
|
1250
|
+
15649\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Astrological Sign Championship
|
|
1251
|
+
Ticket\",\n\t\t\t\t\"leagueid\": 1016,\n\t\t\t\t\"description\": \"The Astrological
|
|
1252
|
+
Sign Championship has a total price pool of 18000RMB. Games will be held every
|
|
1253
|
+
two weeks as a mini-season for twelve consecutive mini-seasons. Finals for
|
|
1254
|
+
the first seaon will be after 6 months with a game product prize worth 5000RMB.
|
|
1255
|
+
This ticket only gives you access to view games from the Astrological Sign
|
|
1256
|
+
Championships.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.uuu9.com/\",\n\t\t\t\t\"itemdef\":
|
|
1257
|
+
15651\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"MD2 Malaysia Brunei Cup Season
|
|
1258
|
+
1\",\n\t\t\t\t\"leagueid\": 512,\n\t\t\t\t\"description\": \"Malaysia Dota
|
|
1259
|
+
2 meets Brunei Dota 2. 16 teams from two countries compete to win MD2 Malaysia
|
|
1260
|
+
Brunei Cup Season 1.\",\n\t\t\t\t\"tournament_url\": \"http://malaysiadota2.com/malaysia-dota-2-malaysia-brunei-cup-season-1/\",\n\t\t\t\t\"itemdef\":
|
|
1261
|
+
15652\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"PantheonES Cup\",\n\t\t\t\t\"leagueid\":
|
|
1262
|
+
1022,\n\t\t\t\t\"description\": \"The top Dota 2 teams in Australia compete
|
|
1263
|
+
for the PantheonES CUP. Starting on the 21st and concluding on the 23rd, the
|
|
1264
|
+
tournament will put eight of the best Oceanic teams against each other to
|
|
1265
|
+
battle for a PantheonES Cup Title.\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2.com.au/\",\n\t\t\t\t\"itemdef\":
|
|
1266
|
+
15653\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GameRing Dota 2 March Cup\",\n\t\t\t\t\"leagueid\":
|
|
1267
|
+
1051,\n\t\t\t\t\"description\": \"The GameRing Dota 2 Cup will feature 64
|
|
1268
|
+
semi-pro Dota 2 teams competing for a total prize pool of 50,000 Rubles.\",\n\t\t\t\t\"tournament_url\":
|
|
1269
|
+
\"http://gamering.ru/dota-2-march-cup/\",\n\t\t\t\t\"itemdef\": 15654\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1270
|
+
\"Korean Dota 2 League Community Competition\",\n\t\t\t\t\"leagueid\": 1050,\n\t\t\t\t\"description\":
|
|
1271
|
+
\"The Korean Dota 2 Tier3 Community Competition League features amateur teams
|
|
1272
|
+
representing different DOTA 2 communities in Korea. Teams compete to earn
|
|
1273
|
+
a spot in the Tier 2 League.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.nexon.com/League/KDL/KDL_Info.aspx\",\n\t\t\t\t\"itemdef\":
|
|
1274
|
+
15655\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ElPadrinoth Latin Cup Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1275
|
+
1045,\n\t\t\t\t\"description\": \"The best 16 teams from the Latin America
|
|
1276
|
+
Region compete for a $450 prize pool. This ticket only gives you access to
|
|
1277
|
+
view games from the ElPadrinoth Latin Cup Tournament.\",\n\t\t\t\t\"tournament_url\":
|
|
1278
|
+
\"http://elpadrinoth.com/torneos/\",\n\t\t\t\t\"itemdef\": 15656\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1279
|
+
\"WVW National Electronic Sports Classic\",\n\t\t\t\t\"leagueid\": 1097,\n\t\t\t\t\"description\":
|
|
1280
|
+
\"China's top teams gather to compete for a prize pool of $25,500!\",\n\t\t\t\t\"tournament_url\":
|
|
1281
|
+
\"http://wvw.gamefy.cn/\",\n\t\t\t\t\"itemdef\": 15657\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1282
|
+
\"Dota2VO Ability Cup #1 Ticket\",\n\t\t\t\t\"leagueid\": 505,\n\t\t\t\t\"description\":
|
|
1283
|
+
\"32 teams will compete with each other for 16,000 rubles and the title of
|
|
1284
|
+
first champions of Ability Draft Mode! This ticket only gives you access to
|
|
1285
|
+
view games from the Dota2VO Ability Cup #1.\",\n\t\t\t\t\"tournament_url\":
|
|
1286
|
+
\"http://dota2vo.ru/abilitycup.html\",\n\t\t\t\t\"itemdef\": 15658\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1287
|
+
\"WD Dota 2 Pro Series Ticket\",\n\t\t\t\t\"leagueid\": 513,\n\t\t\t\t\"description\":
|
|
1288
|
+
\"DotaTalk is proud to present the Western Digital Dota 2 Pro Series. This
|
|
1289
|
+
tournament features the top eight Southeast Asian Teams that will compete
|
|
1290
|
+
for three months for $3,000! This ticket only gives you access to view games
|
|
1291
|
+
from the WD Dota 2 Pro Series.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/tournaments/wd-dota-2-pro-series\",\n\t\t\t\t\"itemdef\":
|
|
1292
|
+
15659\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"YoDota Championship Season 1\",\n\t\t\t\t\"leagueid\":
|
|
1293
|
+
1056,\n\t\t\t\t\"description\": \"YoDota presents its first season with prizes
|
|
1294
|
+
over $700.00 where 32 teams compete to fill eight qualifier slots for the
|
|
1295
|
+
finals. In the finals, there will be the eight qualifying teams plus eight
|
|
1296
|
+
invited teams competing. Commentary will be available in Spanish, Portuguese
|
|
1297
|
+
and English\",\n\t\t\t\t\"tournament_url\": \"http://www.yodota.com/?url=yodota-league\",\n\t\t\t\t\"itemdef\":
|
|
1298
|
+
15661\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"TTU eSports Spring 2014\",\n\t\t\t\t\"leagueid\":
|
|
1299
|
+
1062,\n\t\t\t\t\"description\": \"12 teams compete in the TTU e-Sport Spring
|
|
1300
|
+
2014 LAN for a prize of 1200 Euros!\",\n\t\t\t\t\"tournament_url\": \"http://www.ttu.ee/esport\",\n\t\t\t\t\"itemdef\":
|
|
1301
|
+
15662\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Star Cloud League\",\n\t\t\t\t\"leagueid\":
|
|
1302
|
+
1004,\n\t\t\t\t\"description\": \"32 amateur teams will compete for glory
|
|
1303
|
+
in the Star Cloud League.\",\n\t\t\t\t\"tournament_url\": \"http://www.star-cloud-league.com/\",\n\t\t\t\t\"itemdef\":
|
|
1304
|
+
15663\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Try Hard Cup\",\n\t\t\t\t\"leagueid\":
|
|
1305
|
+
1009,\n\t\t\t\t\"description\": \"32 amateur teams from the CIS region fighting
|
|
1306
|
+
for a $450 price pool.\",\n\t\t\t\t\"tournament_url\": \"https://vk.com/tryharddota2\",\n\t\t\t\t\"itemdef\":
|
|
1307
|
+
15664\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"UFES Dota 2 Cup Season 4\",\n\t\t\t\t\"leagueid\":
|
|
1308
|
+
1015,\n\t\t\t\t\"description\": \"32 teams from around Brazil compete for
|
|
1309
|
+
a R$750,00 prize pool.\",\n\t\t\t\t\"tournament_url\": \"https://doity.com.br/ufes-dota2-cup-season-4\",\n\t\t\t\t\"itemdef\":
|
|
1310
|
+
15665\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Prodota Spring Cup Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1311
|
+
502,\n\t\t\t\t\"description\": \"Eight professional and eight qualified teams
|
|
1312
|
+
compete in the Prodota Spring Cup for $1000! This ticket only gives you access
|
|
1313
|
+
to view games from the Prodota Spring Cup.\",\n\t\t\t\t\"tournament_url\":
|
|
1314
|
+
\"http://prodota.ru/news/pd-spring-cup-announced/\",\n\t\t\t\t\"itemdef\":
|
|
1315
|
+
15666\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota Pit League Season One Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1316
|
+
1040,\n\t\t\t\t\"description\": \"Dota Pit League features 144 semi-pro and
|
|
1317
|
+
professional teams from all over the world fighting for a $3000 prize pool.
|
|
1318
|
+
This ticket only gives you access to view games from the Dota Pit League Season
|
|
1319
|
+
One tournament.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotapit.com/\",\n\t\t\t\t\"itemdef\":
|
|
1320
|
+
15667\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"League of Polarity\",\n\t\t\t\t\"leagueid\":
|
|
1321
|
+
1048,\n\t\t\t\t\"description\": \"The top amateur teams go up against the
|
|
1322
|
+
best teams in Europe and CIS.\",\n\t\t\t\t\"tournament_url\": \"http://vk.com/gettraded2\",\n\t\t\t\t\"itemdef\":
|
|
1323
|
+
15668\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Ready 4 League Season 1\",\n\t\t\t\t\"leagueid\":
|
|
1324
|
+
1055,\n\t\t\t\t\"description\": \"Ready 4 Gaming is a Chilean organization
|
|
1325
|
+
that is focused on Dota 2. In this first season, 16 teams will fight for almost
|
|
1326
|
+
two months to become the champions!\",\n\t\t\t\t\"tournament_url\": \"http://www.ready4gaming.com/\",\n\t\t\t\t\"itemdef\":
|
|
1327
|
+
15669\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Open Community League Tournament\",\n\t\t\t\t\"leagueid\":
|
|
1328
|
+
1059,\n\t\t\t\t\"description\": \"Teams from Russia, CIS, and Europe will
|
|
1329
|
+
meet in battle for the championship league and a prize pool of 15,000 Rubles!\",\n\t\t\t\t\"tournament_url\":
|
|
1330
|
+
\"http://d2oc.jimdo.com/\",\n\t\t\t\t\"itemdef\": 15670\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1331
|
+
\"Macedonian Dota 2 Cup 3\",\n\t\t\t\t\"leagueid\": 1066,\n\t\t\t\t\"description\":
|
|
1332
|
+
\"Macedonian teams compete for a prize in the third season of the Macedonian
|
|
1333
|
+
Cup!\",\n\t\t\t\t\"tournament_url\": \"https://www.facebook.com/mkdota2\",\n\t\t\t\t\"itemdef\":
|
|
1334
|
+
15671\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Golden Esports League Season
|
|
1335
|
+
1\",\n\t\t\t\t\"leagueid\": 1070,\n\t\t\t\t\"description\": \"The first season
|
|
1336
|
+
of the Golden Esports League puts the best Swedish teams against each other
|
|
1337
|
+
over three months for 30.000SEK!\",\n\t\t\t\t\"tournament_url\": \"http://www.goldenesports.com/\",\n\t\t\t\t\"itemdef\":
|
|
1338
|
+
15672\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"WPC World Esports Professional
|
|
1339
|
+
Classic\",\n\t\t\t\t\"leagueid\": 1014,\n\t\t\t\t\"description\": \"The WPC
|
|
1340
|
+
World Esports Professional Classic is an international tournament comsisting
|
|
1341
|
+
of the top professional teams from around the globe.\",\n\t\t\t\t\"tournament_url\":
|
|
1342
|
+
\"http://www.wpc-esports.com/\",\n\t\t\t\t\"itemdef\": 15673\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1343
|
+
\"Battle of the Cities\",\n\t\t\t\t\"leagueid\": 1064,\n\t\t\t\t\"description\":
|
|
1344
|
+
\"The best teams from cities across Russia compete in the Battle of the Cities!\",\n\t\t\t\t\"tournament_url\":
|
|
1345
|
+
\"\",\n\t\t\t\t\"itemdef\": 15674\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota
|
|
1346
|
+
2 Champion's League Season 3 Ticket\",\n\t\t\t\t\"leagueid\": 1068,\n\t\t\t\t\"description\":
|
|
1347
|
+
\"Champions League Season 2 will feature the top teams from Europe and North
|
|
1348
|
+
America fighting for $50,000! This ticket only gives you access to view games
|
|
1349
|
+
in the Dota 2 Champion's League Season 3.\",\n\t\t\t\t\"tournament_url\":
|
|
1350
|
+
\"http://d2cl.org/\",\n\t\t\t\t\"itemdef\": 16033\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1351
|
+
\"Liga Argentina Dota 2\",\n\t\t\t\t\"leagueid\": 1155,\n\t\t\t\t\"description\":
|
|
1352
|
+
\"Teams will compete in the Argentina League to become champions in Argentina!\",\n\t\t\t\t\"tournament_url\":
|
|
1353
|
+
\"http://argentinaliga.foroa.org/h1-liga-argentina\",\n\t\t\t\t\"itemdef\":
|
|
1354
|
+
15676\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Netolic Amateur League Season
|
|
1355
|
+
2 Ticket\",\n\t\t\t\t\"leagueid\": 1072,\n\t\t\t\t\"description\": \"The Netolic
|
|
1356
|
+
Amateur League is an open tournament where teams from all around the world
|
|
1357
|
+
are welcome to join for free! Each season will take place over four weekends
|
|
1358
|
+
with a prize pool of $1,100! Bundle includes the Chieftain of the Warstomp
|
|
1359
|
+
Clan set!\",\n\t\t\t\t\"tournament_url\": \"http://www.netolic.tv/\",\n\t\t\t\t\"itemdef\":
|
|
1360
|
+
15677\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Nvidia Dota 2 Vietnam Tournament\",\n\t\t\t\t\"leagueid\":
|
|
1361
|
+
1081,\n\t\t\t\t\"description\": \"The Nvidia Dota 2 Vietnam Tournament will
|
|
1362
|
+
feature 32 Vietnamese Dota 2 teams competing to prove which team is the best
|
|
1363
|
+
in Vietnam.\",\n\t\t\t\t\"tournament_url\": \"http://www.rgn.vn/\",\n\t\t\t\t\"itemdef\":
|
|
1364
|
+
15678\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"DotaTalk Open Cup\",\n\t\t\t\t\"leagueid\":
|
|
1365
|
+
1088,\n\t\t\t\t\"description\": \"An open Dota 2 tournament where anyone can
|
|
1366
|
+
enter. The winning team takes home the $500 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
1367
|
+
\"http://www.dotatalk.com/tournaments/dotatalk-open-cup\",\n\t\t\t\t\"itemdef\":
|
|
1368
|
+
15679\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"joinDOTA League Season 2\",\n\t\t\t\t\"leagueid\":
|
|
1369
|
+
1175,\n\t\t\t\t\"description\": \"The global Dota 2 league for everyone. Featured
|
|
1370
|
+
are all of the matches from the premier divison, and some of the games from
|
|
1371
|
+
the other divisions. Each ticket sold will add $1.00 to the prize pool!\",\n\t\t\t\t\"tournament_url\":
|
|
1372
|
+
\"http://www.joindota.com/en/leagues/\",\n\t\t\t\t\"itemdef\": 15680\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1373
|
+
\"Steelseries Malaysia Cup March\",\n\t\t\t\t\"leagueid\": 1094,\n\t\t\t\t\"description\":
|
|
1374
|
+
\"The top eight Malaysian teams will compete for gaming equipment from Steelseries
|
|
1375
|
+
worth $1,000!\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/tournaments/steelseries-malaysia-cup-2-2014\",\n\t\t\t\t\"itemdef\":
|
|
1376
|
+
15681\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"PinoyDota Online Battle Season
|
|
1377
|
+
2 Ticket\",\n\t\t\t\t\"leagueid\": 1018,\n\t\t\t\t\"description\": \"PinoyDotA
|
|
1378
|
+
Online Battle Season 2 returns with amateur teams facing up against local
|
|
1379
|
+
top teams. The top six amateur qualifying teams and two invited top teams
|
|
1380
|
+
which will compete for P20,000 prize pool sponsored & powered by Razer & E-Club.
|
|
1381
|
+
This ticket only gives you access to view games in the PinoyDota Online Battle
|
|
1382
|
+
Season 2.\",\n\t\t\t\t\"tournament_url\": \"http://www.pinoydota.net/online-battle-season-2\",\n\t\t\t\t\"itemdef\":
|
|
1383
|
+
15682\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Excellent Moscow Cup Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1384
|
+
1003,\n\t\t\t\t\"description\": \"The first Excellent Moscow Cup puts the
|
|
1385
|
+
best teams in Europe competing for a prize pool of $20,000! This ticket only
|
|
1386
|
+
gives you access to view games from the Excellent Moscow Cup.\",\n\t\t\t\t\"tournament_url\":
|
|
1387
|
+
\"http://excellentmd2.com\",\n\t\t\t\t\"itemdef\": 15683\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1388
|
+
\"Pro Dota 2 Solo Ranked League Season 4\",\n\t\t\t\t\"leagueid\": 1113,\n\t\t\t\t\"description\":
|
|
1389
|
+
\"Season 4 returns for the Pro Dota 2 Solo Ranked League where 240 players
|
|
1390
|
+
fight in 2 different leagues (Amateur and Semi-Pro) non-stop for 2 weeks to
|
|
1391
|
+
claim the prize up to $200! \",\n\t\t\t\t\"tournament_url\": \"http://prodota.hu/\",\n\t\t\t\t\"itemdef\":
|
|
1392
|
+
15684\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Evolution Esports League Season
|
|
1393
|
+
1\",\n\t\t\t\t\"leagueid\": 1077,\n\t\t\t\t\"description\": \"The first season
|
|
1394
|
+
of the Evolution Esports League pits 64 amateur teams to compete for a chance
|
|
1395
|
+
to win $1000.\",\n\t\t\t\t\"tournament_url\": \"http://www.vk.com/evoel\",\n\t\t\t\t\"itemdef\":
|
|
1396
|
+
15685\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Main Dota 2 Champion Tournament\",\n\t\t\t\t\"leagueid\":
|
|
1397
|
+
1106,\n\t\t\t\t\"description\": \"The Main Dota 2 Champion tournament is a
|
|
1398
|
+
double elimination format with prize pool RP 2.520.000.\",\n\t\t\t\t\"tournament_url\":
|
|
1399
|
+
\"http://maindota2.com/maindota2-champion-league/\",\n\t\t\t\t\"itemdef\":
|
|
1400
|
+
15686\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota4You Cup Season 1\",\n\t\t\t\t\"leagueid\":
|
|
1401
|
+
1090,\n\t\t\t\t\"description\": \"The first Dota4You Cup takes CIS teams that
|
|
1402
|
+
will compete for a prize of more than $600!\",\n\t\t\t\t\"tournament_url\":
|
|
1403
|
+
\"http://vk.com/dota4you\",\n\t\t\t\t\"itemdef\": 15687\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1404
|
+
\"WPL Champions League Season 2 Ticket\",\n\t\t\t\t\"leagueid\": 1085,\n\t\t\t\t\"description\":
|
|
1405
|
+
\"Eight of the best teams in Europe in addition with two wild card teams compete
|
|
1406
|
+
for a price pool of $3,000. This ticket only gives you access to view games
|
|
1407
|
+
from the WPL Champions League Seaon 2.\",\n\t\t\t\t\"tournament_url\": \"http://dota.fgcl.ru/\",\n\t\t\t\t\"itemdef\":
|
|
1408
|
+
15688\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SDL 2014 Season 2\",\n\t\t\t\t\"leagueid\":
|
|
1409
|
+
1119,\n\t\t\t\t\"description\": \"One tournament per month for three months!
|
|
1410
|
+
Each one will have more than 40 South American Teams fighting for a place
|
|
1411
|
+
on SDL Professional with a total prize pool of R$ 2500,00\",\n\t\t\t\t\"tournament_url\":
|
|
1412
|
+
\"http://www.shigueoleague.com/\",\n\t\t\t\t\"itemdef\": 15689\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1413
|
+
\"FACTME Dota 2 Online Tournament Season 2\",\n\t\t\t\t\"leagueid\": 1058,\n\t\t\t\t\"description\":
|
|
1414
|
+
\"The FACTME Dota 2 Online Tournaments is a round-robin competition where
|
|
1415
|
+
the top 4 teams will advance to the playoffs. Teams are competing for a prize
|
|
1416
|
+
pool of 1,000 Pesos!\",\n\t\t\t\t\"tournament_url\": \"\",\n\t\t\t\t\"itemdef\":
|
|
1417
|
+
15690\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"BoraDota 2nd Edition\",\n\t\t\t\t\"leagueid\":
|
|
1418
|
+
1089,\n\t\t\t\t\"description\": \"The BoraDota 2nd edition Brazilian Cup consists
|
|
1419
|
+
of 64 teams divided into 16 groups competing for a R$2,000 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
1420
|
+
\"http://www.boradota.com/\",\n\t\t\t\t\"itemdef\": 15691\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1421
|
+
\"SLTV Star Series Season 9 Ticket - No Contribution\",\n\t\t\t\t\"leagueid\":
|
|
1422
|
+
232,\n\t\t\t\t\"description\": \"SLTV Star Series returns with Season 9 taking
|
|
1423
|
+
over the entire globe! Teams from China, Europe, America, & Korea will compete
|
|
1424
|
+
for a base prize pool of $80,000! This ticket only gives you access to view
|
|
1425
|
+
games in the SLTV Star Series Season 9.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.starladder.tv/\",\n\t\t\t\t\"itemdef\":
|
|
1426
|
+
15692\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Inaugural\",\n\t\t\t\t\"leagueid\":
|
|
1427
|
+
1124,\n\t\t\t\t\"description\": \"12 of the best teams from SEA, Korea, and
|
|
1428
|
+
Oceania will battle it out for their share of the $3,000 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
1429
|
+
\"http://inaugural.beyondthesummit.tv/\",\n\t\t\t\t\"itemdef\": 15693\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1430
|
+
\"AMD D2M League\",\n\t\t\t\t\"leagueid\": 1034,\n\t\t\t\t\"description\":
|
|
1431
|
+
\"The AMD D2M League league consists of two parts: the qualifier division
|
|
1432
|
+
and then the professional division. This tournament is proudly supported and
|
|
1433
|
+
sponsored by AMD and e-ClubMalaysia. Teams will compete for $1,000 and 15
|
|
1434
|
+
Lockless Luckboxes.\",\n\t\t\t\t\"tournament_url\": \"http://dota2my.com/news/amd-d2m-tournament\",\n\t\t\t\t\"itemdef\":
|
|
1435
|
+
15694\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Learn 2 Play Australian Masters\",\n\t\t\t\t\"leagueid\":
|
|
1436
|
+
1093,\n\t\t\t\t\"description\": \"The Learn 2 Play Australian Masters will
|
|
1437
|
+
feature the best Australian teams fighting to be the crowned the number one
|
|
1438
|
+
team in the country!\",\n\t\t\t\t\"tournament_url\": \"\",\n\t\t\t\t\"itemdef\":
|
|
1439
|
+
15695\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Gamersportperu Season 4\",\n\t\t\t\t\"leagueid\":
|
|
1440
|
+
1046,\n\t\t\t\t\"description\": \"40 teams will compete in the fourth season
|
|
1441
|
+
of Gamersportperu to become National Champions!\",\n\t\t\t\t\"tournament_url\":
|
|
1442
|
+
\"http://www.gamersportperu.com/\",\n\t\t\t\t\"itemdef\": 15696\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1443
|
+
\"Techlabs Moscow Cup 2014 Ticket\",\n\t\t\t\t\"leagueid\": 1118,\n\t\t\t\t\"description\":
|
|
1444
|
+
\"The Techlabs Cup returns with a prize pool of $20,000 up for grabs. Featuring
|
|
1445
|
+
both established and upcoming teams, the tournament will showcase what the
|
|
1446
|
+
CIS region has to offer. This ticket only gives you access to view games in
|
|
1447
|
+
the Techlabs Moscow Cup 2014 tournament.\",\n\t\t\t\t\"tournament_url\": \"http://cybersport.techlabs.pro/ru/events/2014/10\",\n\t\t\t\t\"itemdef\":
|
|
1448
|
+
15697\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Digital Wars Online Season 2\",\n\t\t\t\t\"leagueid\":
|
|
1449
|
+
1122,\n\t\t\t\t\"description\": \"The Digital Wars Online Season 2 is an online
|
|
1450
|
+
gaming tournament for Indian Dota 2 Community where teams will compete for
|
|
1451
|
+
a prize pool of Rs. 50,000!\",\n\t\t\t\t\"tournament_url\": \"http://forum.esports.co.in/\",\n\t\t\t\t\"itemdef\":
|
|
1452
|
+
15698\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Beijing University Dota 2 League\",\n\t\t\t\t\"leagueid\":
|
|
1453
|
+
1107,\n\t\t\t\t\"description\": \"Beijing University hosts the first Dota
|
|
1454
|
+
2 league where teams will compete to become champions!\",\n\t\t\t\t\"tournament_url\":
|
|
1455
|
+
\"http://www.bjuea.cn/\",\n\t\t\t\t\"itemdef\": 15699\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1456
|
+
\"Copa Argentina\",\n\t\t\t\t\"leagueid\": 1129,\n\t\t\t\t\"description\":
|
|
1457
|
+
\"The best Argentinian teams will compete for over $800 in prizes! The Argentinean
|
|
1458
|
+
Cup will be covered by Livedota, the biggest Latin American Dota Community.
|
|
1459
|
+
\",\n\t\t\t\t\"tournament_url\": \"http://www.livedota.tv/shop/liga/\",\n\t\t\t\t\"itemdef\":
|
|
1460
|
+
15700\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"POT Spain League\",\n\t\t\t\t\"leagueid\":
|
|
1461
|
+
1117,\n\t\t\t\t\"description\": \"The top eight teams from Spain will compete
|
|
1462
|
+
for a prize of 100 Euros!\",\n\t\t\t\t\"tournament_url\": \"http://dota2pot.com/presentamos-spain-steel-1/\",\n\t\t\t\t\"itemdef\":
|
|
1463
|
+
15701\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"FES League: Championship Kick-Off
|
|
1464
|
+
Season\",\n\t\t\t\t\"leagueid\": 1142,\n\t\t\t\t\"description\": \"The top
|
|
1465
|
+
16 teams from around the United Kingdom will compete in this new UK Dota 2
|
|
1466
|
+
League to become champions!\",\n\t\t\t\t\"tournament_url\": \"http://fluffyspoonesports.com/\",\n\t\t\t\t\"itemdef\":
|
|
1467
|
+
15702\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota Trash King of the Hill\",\n\t\t\t\t\"leagueid\":
|
|
1468
|
+
1148,\n\t\t\t\t\"description\": \"Dota Trash King of the Hill takes place
|
|
1469
|
+
every Wednesday. The King of the Hill faces the challenger selected by Dota
|
|
1470
|
+
Trash staff in a best of three format where $100 will go to the winner.\",\n\t\t\t\t\"tournament_url\":
|
|
1471
|
+
\"http://www.dotatrash.com/dota-trash-weekly-showmatch/\",\n\t\t\t\t\"itemdef\":
|
|
1472
|
+
15703\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Megalodon Cup Season 2 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1473
|
+
1084,\n\t\t\t\t\"description\": \"The top 16 teams in South America compete
|
|
1474
|
+
in the second season of the Megalodon Cup for R$1200! This ticket only gives
|
|
1475
|
+
you access to view games in the Megalodon Cup Season 2.\",\n\t\t\t\t\"tournament_url\":
|
|
1476
|
+
\"http://www.megalodongaming.com.br/\",\n\t\t\t\t\"itemdef\": 15705\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1477
|
+
\"The Vas'Avi Amateur Cup Season 1\",\n\t\t\t\t\"leagueid\": 1160,\n\t\t\t\t\"description\":
|
|
1478
|
+
\"The Vas'Avi Amateur Cup provides experience for those up and coming teams
|
|
1479
|
+
to compete for an $800 prize pool!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
1480
|
+
\"http://www.vasavigaming.us/\",\n\t\t\t\t\"itemdef\": 15706\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1481
|
+
\"Hungarian Premier League Season 7\",\n\t\t\t\t\"leagueid\": 1096,\n\t\t\t\t\"description\":
|
|
1482
|
+
\"The biggest event of Hungary countinues! Teams will fight for three weeks
|
|
1483
|
+
to be at the LAN FINAL and claim the prize pool!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
1484
|
+
\"\",\n\t\t\t\t\"itemdef\": 15707\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ESL
|
|
1485
|
+
Brazil Rei de Mesa Ticket\",\n\t\t\t\t\"leagueid\": 1108,\n\t\t\t\t\"description\":
|
|
1486
|
+
\"Teams from Brazil fight to decide who's becomes the Dota 2 Brazilian king.
|
|
1487
|
+
After the rise of the first king every week a new contestant appears from
|
|
1488
|
+
a qualifier and tries to become the new king. Everytime the king team wins
|
|
1489
|
+
they will receive prizes from Ozone Gaming. This ticket only gives you access
|
|
1490
|
+
to view games in the ESL Brazil Rei de Mesa.\",\n\t\t\t\t\"tournament_url\":
|
|
1491
|
+
\"http://www.nationalesl.com/br/dota2/\",\n\t\t\t\t\"itemdef\": 15708\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1492
|
+
\"D2L Western Challenge\",\n\t\t\t\t\"leagueid\": 1135,\n\t\t\t\t\"description\":
|
|
1493
|
+
\"Eight of the world's best Dota 2 teams from the west return to the D2L for
|
|
1494
|
+
over $50,000! Each ticket purchased will increase the prize pool by $2.50!\",\n\t\t\t\t\"tournament_url\":
|
|
1495
|
+
\"http://www.d2l.gg/\",\n\t\t\t\t\"itemdef\": 15959\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1496
|
+
\"League of Polarity Season 2\",\n\t\t\t\t\"leagueid\": 1139,\n\t\t\t\t\"description\":
|
|
1497
|
+
\"The top amateur teams go up against the best teams in Europe and CIS in
|
|
1498
|
+
the second season of the League of Polarity!\",\n\t\t\t\t\"tournament_url\":
|
|
1499
|
+
\"http://vk.com/gettraded2\",\n\t\t\t\t\"itemdef\": 15710\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1500
|
+
\"RedLine Amateur League\",\n\t\t\t\t\"leagueid\": 1137,\n\t\t\t\t\"description\":
|
|
1501
|
+
\"Ten amateur teams will compete in the first ever RedLine Amateur League
|
|
1502
|
+
for $5,000. This league is free to spectate!\",\n\t\t\t\t\"tournament_url\":
|
|
1503
|
+
\"http://www.insgg.weebly.com/\",\n\t\t\t\t\"itemdef\": 15711\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1504
|
+
\"ASUS ROG Dota 2 Cup\",\n\t\t\t\t\"leagueid\": 1151,\n\t\t\t\t\"description\":
|
|
1505
|
+
\"The ASUS ROG Dota 2 Cup will take place at the Insomnia51 Gaming Festival.
|
|
1506
|
+
Up to 64 teams will compete for a total prize pool of up to £5,000!\",\n\t\t\t\t\"tournament_url\":
|
|
1507
|
+
\"http://insomniagamingfestival.com/i51/tournaments/event-byoc/dota2/\",\n\t\t\t\t\"itemdef\":
|
|
1508
|
+
15712\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"League of Dota Season 4 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1509
|
+
1131,\n\t\t\t\t\"description\": \"League of Dota returns with 10 North American
|
|
1510
|
+
amateur tournaments playing over the course of one month. Teams compete for
|
|
1511
|
+
$400 three times a week. This ticket only gives you access to view games from
|
|
1512
|
+
League of Dota Season 4.\",\n\t\t\t\t\"tournament_url\": \"http://leagueofdota.com/\",\n\t\t\t\t\"itemdef\":
|
|
1513
|
+
15713\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"CFC Tournament 5\",\n\t\t\t\t\"leagueid\":
|
|
1514
|
+
1149,\n\t\t\t\t\"description\": \"32 teams compete in a double elimination
|
|
1515
|
+
tournament for a $300 prize pool!\",\n\t\t\t\t\"tournament_url\": \"http://vk.com/topic-60120228_29972247\",\n\t\t\t\t\"itemdef\":
|
|
1516
|
+
15715\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"DreamHack Bucharest 2014 Invitation
|
|
1517
|
+
Ticket\",\n\t\t\t\t\"leagueid\": 1123,\n\t\t\t\t\"description\": \"Four of
|
|
1518
|
+
the top Dota 2 teams from around the word compete during the DreamHack Bucharest
|
|
1519
|
+
2014 Invitiational Tournament. The base prize pool is $25,000 and increased
|
|
1520
|
+
by $2.50 for each ticket sold! This ticket only gives you access to view games
|
|
1521
|
+
from DreamHack Bucharest 2014.\",\n\t\t\t\t\"tournament_url\": \"http://www.dreamhack.ro/\",\n\t\t\t\t\"itemdef\":
|
|
1522
|
+
15911\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Sweaty Cup 2 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1523
|
+
1069,\n\t\t\t\t\"description\": \"32 semi-pro and professional teams participate
|
|
1524
|
+
in the 2nd season of the Sweaty Tournament with a $1,200 prize pool. This
|
|
1525
|
+
ticket only gives access to view games from the Sweaty Cup 2 Tournament.\",\n\t\t\t\t\"tournament_url\":
|
|
1526
|
+
\"http://pot-cup.ru/\",\n\t\t\t\t\"itemdef\": 15717\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1527
|
+
\"CIS Dota 2 League Season 2 Ticket\",\n\t\t\t\t\"leagueid\": 1075,\n\t\t\t\t\"description\":
|
|
1528
|
+
\"16 semi-pro teams compete for a $200 prize pool. This ticket only gives
|
|
1529
|
+
access to view games from the CIS Dota 2 League Season 2.\",\n\t\t\t\t\"tournament_url\":
|
|
1530
|
+
\"http://cisdl.jimdo.com/\",\n\t\t\t\t\"itemdef\": 15718\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1531
|
+
\"GameRing Dota 2 Female League\",\n\t\t\t\t\"leagueid\": 1152,\n\t\t\t\t\"description\":
|
|
1532
|
+
\"This six week long tournament is female only competing for a prize pool
|
|
1533
|
+
of 50,000 RUB.\",\n\t\t\t\t\"tournament_url\": \"http://gamering.ru/grl-dota-2-female/\",\n\t\t\t\t\"itemdef\":
|
|
1534
|
+
15719\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Ivory Tower League\",\n\t\t\t\t\"leagueid\":
|
|
1535
|
+
1098,\n\t\t\t\t\"description\": \"The Ivory Tower League puts different schools
|
|
1536
|
+
of Beijing University fighting to become champions!\",\n\t\t\t\t\"tournament_url\":
|
|
1537
|
+
\"http://www.51esport.com/\",\n\t\t\t\t\"itemdef\": 15720\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1538
|
+
\"Asian Cyber Games: Call for the Beauties\",\n\t\t\t\t\"leagueid\": 1162,\n\t\t\t\t\"description\":
|
|
1539
|
+
\"The first Asian Cyber Games all female Dota 2 tournament where teams compete
|
|
1540
|
+
for a total prize pool of $1800!\",\n\t\t\t\t\"tournament_url\": \"http://e-clubmalaysia.com/dota2/?p=8660\",\n\t\t\t\t\"itemdef\":
|
|
1541
|
+
15721\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Fragbite Masters 2014\",\n\t\t\t\t\"leagueid\":
|
|
1542
|
+
1127,\n\t\t\t\t\"description\": \"Fragbite Masters 2014 consists of twelve
|
|
1543
|
+
professional teams competing alongside a bracket open to amateur teams for
|
|
1544
|
+
a prize pool of over 200,000 SEK.\",\n\t\t\t\t\"tournament_url\": \"http://www.fragbite.se/masters\",\n\t\t\t\t\"itemdef\":
|
|
1545
|
+
15722\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Defense of the Australians Season
|
|
1546
|
+
3 Ticket\",\n\t\t\t\t\"leagueid\": 1120,\n\t\t\t\t\"description\": \"Season
|
|
1547
|
+
3 brings you an open qualifier with 64 teams from around Australia competing
|
|
1548
|
+
against each other. The top eight teams advance to battle the top eight teams
|
|
1549
|
+
from Season 2 to claim the title as the #1 team in Australia. This ticket
|
|
1550
|
+
only gives you access to view games from the Defense of the Australians Season
|
|
1551
|
+
3 League.\",\n\t\t\t\t\"tournament_url\": \"https://www.d2t.com.au/\",\n\t\t\t\t\"itemdef\":
|
|
1552
|
+
15723\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"XMG Captains Draft Invitational
|
|
1553
|
+
Ticket - No Contribution\",\n\t\t\t\t\"leagueid\": 203,\n\t\t\t\t\"description\":
|
|
1554
|
+
\"DotaCinema presents the XMG Captains Draft Invitational! This is the first
|
|
1555
|
+
major competitive Dota 2 tournament being played in Captains Draft mode! Teams
|
|
1556
|
+
included are Alliance, Na`Vi, Fnatic, RoX.KIS, Sigma.int and Team Liquid.
|
|
1557
|
+
The teams battle for $20,000! \\r\\n\\t\\r\\n\\tThis ticket only gives you
|
|
1558
|
+
access to view games in the XMG Captains Draft Invitational.\",\n\t\t\t\t\"tournament_url\":
|
|
1559
|
+
\"http://www.dotacinema.com/\",\n\t\t\t\t\"itemdef\": 15724\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1560
|
+
\"American Dota League Season 2 Ticket\",\n\t\t\t\t\"leagueid\": 1100,\n\t\t\t\t\"description\":
|
|
1561
|
+
\"Some of the best teams from North and South America compete for a $10,000
|
|
1562
|
+
prize pool. This ticket only gives access to view games from the American
|
|
1563
|
+
Dota 2 League Season 2 tournament.\",\n\t\t\t\t\"tournament_url\": \"http://americandotaleague.com/\",\n\t\t\t\t\"itemdef\":
|
|
1564
|
+
15725\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"K-Cup Dota 2 Amateur League
|
|
1565
|
+
Season 1\",\n\t\t\t\t\"leagueid\": 1115,\n\t\t\t\t\"description\": \"A community
|
|
1566
|
+
based tournament with Amateur Teams from China compete for the $150 prize
|
|
1567
|
+
pool.\",\n\t\t\t\t\"tournament_url\": \"http://www.vpgame.com/league/3.html\",\n\t\t\t\t\"itemdef\":
|
|
1568
|
+
15726\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"League of Dota Season 4 Europe\",\n\t\t\t\t\"leagueid\":
|
|
1569
|
+
1194,\n\t\t\t\t\"description\": \"League of Dota returns with a fourth season
|
|
1570
|
+
for amateur European teams! Teams compete in 10 tournaments over one month
|
|
1571
|
+
for a total prize pool of $400.\",\n\t\t\t\t\"tournament_url\": \"http://leagueofdota.com/\",\n\t\t\t\t\"itemdef\":
|
|
1572
|
+
15727\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Balkan Championship Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1573
|
+
1111,\n\t\t\t\t\"description\": \"The first Balkan Championship will show
|
|
1574
|
+
you the top teams from seven countries - two teams from six Balkan countries
|
|
1575
|
+
and the top four teams from Bulgaria which will compete for $1,000 base prize
|
|
1576
|
+
pool and chance to represent their countries. This ticket only gives access
|
|
1577
|
+
to view games from the Balkan Championship.\",\n\t\t\t\t\"tournament_url\":
|
|
1578
|
+
\"http://balkandota.net/\",\n\t\t\t\t\"itemdef\": 15728\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1579
|
+
\"Logitech G Challenge\",\n\t\t\t\t\"leagueid\": 1191,\n\t\t\t\t\"description\":
|
|
1580
|
+
\"An open tournament for all the best teams in Malaysia to compete for a total
|
|
1581
|
+
prize pool of $2,000 cash including gear from Logitech!\",\n\t\t\t\t\"tournament_url\":
|
|
1582
|
+
\"http://e-clubmalaysia.com/dota2/?p=9960\",\n\t\t\t\t\"itemdef\": 15730\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1583
|
+
\"Steelseries Oceania Cup Season 3\",\n\t\t\t\t\"leagueid\": 1192,\n\t\t\t\t\"description\":
|
|
1584
|
+
\"The 2014 Steelseries Oceania Cup will see top teams from across Australia
|
|
1585
|
+
and the Oceanic region compete for Dota 2 gear worth $1,000.\",\n\t\t\t\t\"tournament_url\":
|
|
1586
|
+
\"http://www.dotatalk.com/tournaments/steelseries-oceania-cup\",\n\t\t\t\t\"itemdef\":
|
|
1587
|
+
15731\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Pro Gaming Tours League April\",\n\t\t\t\t\"leagueid\":
|
|
1588
|
+
1211,\n\t\t\t\t\"description\": \"The third $300 Monthly tournament of PGTL
|
|
1589
|
+
2014. Top two teams qualify for the $3,500+ Grand Finals later this year.\",\n\t\t\t\t\"tournament_url\":
|
|
1590
|
+
\"http://www.progamingtours.net/dota-2/pgtl-2014-overview/\",\n\t\t\t\t\"itemdef\":
|
|
1591
|
+
15732\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SCL Double Dash Tournament\",\n\t\t\t\t\"leagueid\":
|
|
1592
|
+
1202,\n\t\t\t\t\"description\": \"Amateur Dota 2 Tournament of the Star Cloud
|
|
1593
|
+
League. Free and Open for everyone with a total prize pool of over 150$ in
|
|
1594
|
+
two weeks!\",\n\t\t\t\t\"tournament_url\": \"http://www.star-cloud-league.com/\",\n\t\t\t\t\"itemdef\":
|
|
1595
|
+
15733\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Hero Dota: Third Chapter\",\n\t\t\t\t\"leagueid\":
|
|
1596
|
+
1104,\n\t\t\t\t\"description\": \"The top semi-pro teams from the CIS region
|
|
1597
|
+
compete for a $3500 prize pool. This ticket only gives you access to view
|
|
1598
|
+
games from the Hero Dota: Third Chapter Tournament.\",\n\t\t\t\t\"tournament_url\":
|
|
1599
|
+
\"http://herodota.ru/\",\n\t\t\t\t\"itemdef\": 15734\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1600
|
+
\"IGL Star Dota 2 Championship\",\n\t\t\t\t\"leagueid\": 1182,\n\t\t\t\t\"description\":
|
|
1601
|
+
\"The IGL Star Dota 2 Championship takes 48 Indonesian teams in a two stage
|
|
1602
|
+
tournament where they will compete for a total prize pool of Rp 5,600,000.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
1603
|
+
\"http://dota2tvindo.com/iglstar-dota-2-championship-25-april-4-mei-2014/\",\n\t\t\t\t\"itemdef\":
|
|
1604
|
+
15735\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Malaysian Amateur Dota 2 League\",\n\t\t\t\t\"leagueid\":
|
|
1605
|
+
1208,\n\t\t\t\t\"description\": \"Amateur League for Malaysian Community to
|
|
1606
|
+
play competitively. At least 16 teams will play against each other every week
|
|
1607
|
+
for a prize pool of 100 MYR.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"https://www.facebook.com/groups/dotawek/\",\n\t\t\t\t\"itemdef\":
|
|
1608
|
+
15736\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Corsair Asia Cup\",\n\t\t\t\t\"leagueid\":
|
|
1609
|
+
1177,\n\t\t\t\t\"description\": \"Corsair proudly brings you the Corsair Asia
|
|
1610
|
+
Cup Season 1. Watch as the finest teams; Titan, Arrow, Orange.eSports, Mineski,
|
|
1611
|
+
Zephyr, Scythe.SG and more teams from Korea and China compete for a total
|
|
1612
|
+
prize pool of $5,000.\",\n\t\t\t\t\"tournament_url\": \"http://www.corsair-asiacup.com/\",\n\t\t\t\t\"itemdef\":
|
|
1613
|
+
15737\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"VietDOTA League Season 1\",\n\t\t\t\t\"leagueid\":
|
|
1614
|
+
1185,\n\t\t\t\t\"description\": \"VietDOTA League Season 1 is an online tournament
|
|
1615
|
+
for 32 teams with a double elimination format to chose the best six teams
|
|
1616
|
+
in Vietnam. They will compete for a prize pool of $1000!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
1617
|
+
\"http://dota2shop.vn/vietdotaleague/\",\n\t\t\t\t\"itemdef\": 15738\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1618
|
+
\"Steelseries Malaysia Cup April\",\n\t\t\t\t\"leagueid\": 1230,\n\t\t\t\t\"description\":
|
|
1619
|
+
\"The top eight Malaysia teams will compete for gaming equipment from Steelseries
|
|
1620
|
+
worth $1,000!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/tournaments/steelseries-my-cup-3-2014\",\n\t\t\t\t\"itemdef\":
|
|
1621
|
+
15739\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Torneos Dota Latino Season 1\",\n\t\t\t\t\"leagueid\":
|
|
1622
|
+
1145,\n\t\t\t\t\"description\": \"The first season of the Torneos Dota Latino
|
|
1623
|
+
league puts 32 teams competing in an online tournament to be crowned champions.\",\n\t\t\t\t\"tournament_url\":
|
|
1624
|
+
\"http://www.sebasnet.com/\",\n\t\t\t\t\"itemdef\": 15740\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1625
|
+
\"fastDOTA Season 1\",\n\t\t\t\t\"leagueid\": 1166,\n\t\t\t\t\"description\":
|
|
1626
|
+
\"Up to 16 teams will compete in the first season of fastDOTA for up to a
|
|
1627
|
+
total prize pool of 3200 Rubles.\",\n\t\t\t\t\"tournament_url\": \"http://fastdota.org/tournaments/get/1\",\n\t\t\t\t\"itemdef\":
|
|
1628
|
+
15741\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Korea Dota 2 League Season 2
|
|
1629
|
+
Ticket\",\n\t\t\t\t\"leagueid\": 1242,\n\t\t\t\t\"description\": \"Nexon presents
|
|
1630
|
+
the second of KDL with SpoTV and KeSPA, Newly promoted teams have joined each
|
|
1631
|
+
respective tier. The KDL spans four seasons with a total of KRW 650 million
|
|
1632
|
+
($638,506) worth of prize money. Watch the very second season of its kind
|
|
1633
|
+
featuring the top 10 teams in tier 1 and 2.\",\n\t\t\t\t\"tournament_url\":
|
|
1634
|
+
\"http://dota2.nexon.com/\",\n\t\t\t\t\"itemdef\": 15742\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1635
|
+
\"Exp Dota Cup Season 1\",\n\t\t\t\t\"leagueid\": 1238,\n\t\t\t\t\"description\":
|
|
1636
|
+
\"This brand new league has 32 teams compete to earn a spot in the second
|
|
1637
|
+
season and a $50 prize!\",\n\t\t\t\t\"tournament_url\": \"http://vk.com/dt2tour\",\n\t\t\t\t\"itemdef\":
|
|
1638
|
+
15743\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Korea Dota League Tier 3 Season
|
|
1639
|
+
2\",\n\t\t\t\t\"leagueid\": 1246,\n\t\t\t\t\"description\": \"Dota 2 KDL Tier
|
|
1640
|
+
3 is composed of the AMD Dota 2 Amateur League, PC Bang League, and Community
|
|
1641
|
+
Competition League. The best teams in these leagues will receive KDL Tier
|
|
1642
|
+
points and have chance to advance to Tier 2.\",\n\t\t\t\t\"tournament_url\":
|
|
1643
|
+
\"http://dota2.nexon.com/League/KDL/KDL_Season2_01.aspx\",\n\t\t\t\t\"itemdef\":
|
|
1644
|
+
15744\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Hardway League Season 1\",\n\t\t\t\t\"leagueid\":
|
|
1645
|
+
1203,\n\t\t\t\t\"description\": \"24 semi-pro and professional teams from
|
|
1646
|
+
the CIS region will fight for a $600 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
1647
|
+
\"http://vk.com/hardwayleagues\",\n\t\t\t\t\"itemdef\": 15745\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1648
|
+
\"SteelSeries Indonesia DX Dota 2 Tournament\",\n\t\t\t\t\"leagueid\": 1183,\n\t\t\t\t\"description\":
|
|
1649
|
+
\"The first series of DX Indonesia Dota 2 Tournament. This tournament consist
|
|
1650
|
+
of 96 teams from Indonesia competing for $1200 prize pool!\",\n\t\t\t\t\"tournament_url\":
|
|
1651
|
+
\"http://forum.esportsprime.com/threads/steelseries-id-dx-dota-2-tournament-online.379/\",\n\t\t\t\t\"itemdef\":
|
|
1652
|
+
15746\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Summit Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1653
|
+
1157,\n\t\t\t\t\"description\": \"The Summit is a global Dota 2 event! Top
|
|
1654
|
+
teams from Europe, America, & Asia will fight to qualify via online play.
|
|
1655
|
+
The best four teams will fly to LA to challenge invited teams Na'Vi & DK on
|
|
1656
|
+
LAN for a base prize pool of $80,000! This ticket only gives you access to
|
|
1657
|
+
view games in The Summit.\",\n\t\t\t\t\"tournament_url\": \"http://summit.beyondthesummit.tv/\",\n\t\t\t\t\"itemdef\":
|
|
1658
|
+
15922\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ESL One Frankfurt 2014\",\n\t\t\t\t\"leagueid\":
|
|
1659
|
+
1248,\n\t\t\t\t\"description\": \"On June 28th and 29th, eight of the best
|
|
1660
|
+
teams from around the world travel to Frankfurt, Germany to battle it out
|
|
1661
|
+
for the $150,000+ prize pool. Purchase the Compendium, increase the prize
|
|
1662
|
+
pool, and receive stretch goal items. The stretch goals include Battle Point
|
|
1663
|
+
Booster, HUD, Loading Screen, Earthshaker Totem, and a unique Lifestealer
|
|
1664
|
+
Set!\",\n\t\t\t\t\"tournament_url\": \"http://www.esl-one.com/dota2/frankfurt-2014/\",\n\t\t\t\t\"itemdef\":
|
|
1665
|
+
15820\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota2.fr League Season 5\",\n\t\t\t\t\"leagueid\":
|
|
1666
|
+
1240,\n\t\t\t\t\"description\": \"The best teams in France compete in the
|
|
1667
|
+
fifth season of the Dota2.fr League. The best teams will receive hardware
|
|
1668
|
+
prizes from Plantronics!\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2.fr/jouer/ligue\",\n\t\t\t\t\"itemdef\":
|
|
1669
|
+
15749\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Spanish Dota 2 Pro Series\",\n\t\t\t\t\"leagueid\":
|
|
1670
|
+
1258,\n\t\t\t\t\"description\": \"The Spanish Dota 2 Pro Series is the first
|
|
1671
|
+
\ professional league for Dota 2 in Spain created with the 8 best teams from
|
|
1672
|
+
Spain!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://www.proleague.es/\",\n\t\t\t\t\"itemdef\":
|
|
1673
|
+
15750\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Esports Champion League\",\n\t\t\t\t\"leagueid\":
|
|
1674
|
+
1116,\n\t\t\t\t\"description\": \"Twelve of the top teams from China compete
|
|
1675
|
+
for the 100,000RMB prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://fight.pcgames.com.cn/fightspecial/ecl/\",\n\t\t\t\t\"itemdef\":
|
|
1676
|
+
15751\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"DreamBar Dota 2 League\",\n\t\t\t\t\"leagueid\":
|
|
1677
|
+
1220,\n\t\t\t\t\"description\": \"An elite Dota 2 League based in China were
|
|
1678
|
+
teams compete each season for the 1,000RMB prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
1679
|
+
\"http://www.vpgame.com/league/17.html\",\n\t\t\t\t\"itemdef\": 15752\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1680
|
+
\"POT Spain League 2\",\n\t\t\t\t\"leagueid\": 1178,\n\t\t\t\t\"description\":
|
|
1681
|
+
\"Twelve teams from around Spain compete in the POT Spain League Season 2
|
|
1682
|
+
for a 100 Euro prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://dota2pot.com/\",\n\t\t\t\t\"itemdef\":
|
|
1683
|
+
15753\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Arts of War Open\",\n\t\t\t\t\"leagueid\":
|
|
1684
|
+
1134,\n\t\t\t\t\"description\": \"The Arts of War Open is an event in Honduras
|
|
1685
|
+
which has ten teams competing to become champions.\",\n\t\t\t\t\"tournament_url\":
|
|
1686
|
+
\"https://www.facebook.com/gamehack2k14\",\n\t\t\t\t\"itemdef\": 15754\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1687
|
+
\"Crazy Cup #1\",\n\t\t\t\t\"leagueid\": 1073,\n\t\t\t\t\"description\": \"CIS
|
|
1688
|
+
teams compete in a tournament which features two unique modes: Ability Draft
|
|
1689
|
+
and Reverse Draft! Teams will fight for a prize pool of 6000 Rubles!\",\n\t\t\t\t\"tournament_url\":
|
|
1690
|
+
\"http://dota2.ru/news/3263-anons-crazy-cup-1/\",\n\t\t\t\t\"itemdef\": 15755\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1691
|
+
\"NADota Elite League Season 3\",\n\t\t\t\t\"leagueid\": 1262,\n\t\t\t\t\"description\":
|
|
1692
|
+
\"The most talented players in North America compete in the classic in-house
|
|
1693
|
+
league format.\",\n\t\t\t\t\"tournament_url\": \"http://nadota.com/\",\n\t\t\t\t\"itemdef\":
|
|
1694
|
+
15756\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Serbian Charity Cup\",\n\t\t\t\t\"leagueid\":
|
|
1695
|
+
1261,\n\t\t\t\t\"description\": \"Up to 32 teams from Serbia will compete
|
|
1696
|
+
in a tournament where all the money gathered will be going to charity!\",\n\t\t\t\t\"tournament_url\":
|
|
1697
|
+
\"http://www.dota2serbia.info/\",\n\t\t\t\t\"itemdef\": 15757\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1698
|
+
\"Russian Dota Cup #1\",\n\t\t\t\t\"leagueid\": 1259,\n\t\t\t\t\"description\":
|
|
1699
|
+
\"The Russian Dota Cup features 32 amateur teams competing for a prize pool
|
|
1700
|
+
of $250!\",\n\t\t\t\t\"tournament_url\": \"http://grew.tv/russian-dota-cup-1/\",\n\t\t\t\t\"itemdef\":
|
|
1701
|
+
15758\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Donbass Cyber League\",\n\t\t\t\t\"leagueid\":
|
|
1702
|
+
1255,\n\t\t\t\t\"description\": \"Amateur teams in Ukraine will compete for
|
|
1703
|
+
a total prize pool of 1,000 Hryvnia!\",\n\t\t\t\t\"tournament_url\": \"http://vk.com/dcl2014\",\n\t\t\t\t\"itemdef\":
|
|
1704
|
+
15759\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Star Cloud League Season 2\",\n\t\t\t\t\"leagueid\":
|
|
1705
|
+
1234,\n\t\t\t\t\"description\": \"The second season of the Star Cloud League
|
|
1706
|
+
now has two different skill classes with a total prize pool of over $400.
|
|
1707
|
+
It is free and open for everybody!\",\n\t\t\t\t\"tournament_url\": \"http://www.star-cloud-league.com/\",\n\t\t\t\t\"itemdef\":
|
|
1708
|
+
15761\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Cold Spring Season 2\",\n\t\t\t\t\"leagueid\":
|
|
1709
|
+
1260,\n\t\t\t\t\"description\": \"Amateur and semi-professional teams from
|
|
1710
|
+
Europe and the CIS are fighting for a prize of $500!\",\n\t\t\t\t\"tournament_url\":
|
|
1711
|
+
\"http://168466.myflexbe.com/\",\n\t\t\t\t\"itemdef\": 15763\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1712
|
+
\"Vicara Gaming Open\",\n\t\t\t\t\"leagueid\": 1209,\n\t\t\t\t\"description\":
|
|
1713
|
+
\"The Vicara Gaming Open is an open bracket tournament! Teams will compete
|
|
1714
|
+
in a qualifier and the top three teams will be invited to the invitational
|
|
1715
|
+
to play against professional teams such as 4FC, Monomaniac and mYi.\",\n\t\t\t\t\"tournament_url\":
|
|
1716
|
+
\"http://vicaragaming.com/tournaments/vicara-gaming-tournament/\",\n\t\t\t\t\"itemdef\":
|
|
1717
|
+
15764\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Weekly Dota 2 Tournaments Season
|
|
1718
|
+
1\",\n\t\t\t\t\"leagueid\": 1224,\n\t\t\t\t\"description\": \"The Weekly Dota
|
|
1719
|
+
2 Tournaments features amateur teams that participate in qualifiers on Monday
|
|
1720
|
+
and Thursday. Winners of the qualifiers move on to play in the finals on Saturday.
|
|
1721
|
+
First place receives $25 and second place receives $10.\",\n\t\t\t\t\"tournament_url\":
|
|
1722
|
+
\"http://weeklydota2tournament.com/\",\n\t\t\t\t\"itemdef\": 15765\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1723
|
+
\"Rostov on Don Amateur Championship\",\n\t\t\t\t\"leagueid\": 1265,\n\t\t\t\t\"description\":
|
|
1724
|
+
\"20 teams will compete from the Rostov region for a prize pool of 10,000
|
|
1725
|
+
Rubles!\",\n\t\t\t\t\"tournament_url\": \"http://rostovdotachampionship.jimdo.com/\",\n\t\t\t\t\"itemdef\":
|
|
1726
|
+
15766\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The International 2014\",\n\t\t\t\t\"leagueid\":
|
|
1727
|
+
600,\n\t\t\t\t\"description\": \"The Aegis of Champions hangs in the balance.
|
|
1728
|
+
See the world's top teams battle in the International.\",\n\t\t\t\t\"tournament_url\":
|
|
1729
|
+
\"http://www.dota2.com/international/overview/\",\n\t\t\t\t\"itemdef\": 15768\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1730
|
+
\"Macedonian Dota 2 Cup 4\",\n\t\t\t\t\"leagueid\": 1249,\n\t\t\t\t\"description\":
|
|
1731
|
+
\"Macedonian teams compete for items in the fourth season of the Macedonian
|
|
1732
|
+
Cup!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"https://www.facebook.com/mkdota2\",\n\t\t\t\t\"itemdef\":
|
|
1733
|
+
15771\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"MarsTV Dota Elite Invitational\",\n\t\t\t\t\"leagueid\":
|
|
1734
|
+
1418,\n\t\t\t\t\"description\": \"The first and second places from CN Qualifer
|
|
1735
|
+
for the International will face up four invited Chinese top teams in Huaxi,
|
|
1736
|
+
the top village in China.\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2.com.cn/event/201405/mdl/\",\n\t\t\t\t\"itemdef\":
|
|
1737
|
+
15772\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"NACDEC\",\n\t\t\t\t\"leagueid\":
|
|
1738
|
+
1253,\n\t\t\t\t\"description\": \"The Chinese Dota Elite Community invades
|
|
1739
|
+
North America! This in-house league lets players compete every 2 weeks in
|
|
1740
|
+
competitive Dota 2!\",\n\t\t\t\t\"tournament_url\": \"http://www.vpgame.com/league/9.html\",\n\t\t\t\t\"itemdef\":
|
|
1741
|
+
15773\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Balkan Dota 2 Premier Cup\",\n\t\t\t\t\"leagueid\":
|
|
1742
|
+
1087,\n\t\t\t\t\"description\": \"20 of the teams from Balkan region will
|
|
1743
|
+
battle it out for their share of the $200 prize pool. More than 100 matches!\",\n\t\t\t\t\"tournament_url\":
|
|
1744
|
+
\"http://dotaleague.webnode.hu/\",\n\t\t\t\t\"itemdef\": 15774\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1745
|
+
\"Sunt CDEC New Star Cup\",\n\t\t\t\t\"leagueid\": 1284,\n\t\t\t\t\"description\":
|
|
1746
|
+
\"New Star is the continuation of traditional selection mode, the new team
|
|
1747
|
+
through the online registration will challenge pro teams which include DK,
|
|
1748
|
+
iG, LGD, VG and fight for 100000RMB price pool.\",\n\t\t\t\t\"tournament_url\":
|
|
1749
|
+
\"http://www.vpgame.com/\",\n\t\t\t\t\"itemdef\": 15775\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1750
|
+
\"Semipro Evening Cup Series Season 1\",\n\t\t\t\t\"leagueid\": 1304,\n\t\t\t\t\"description\":
|
|
1751
|
+
\"SECS began in December 2009 and is the longest running Dota tournament series
|
|
1752
|
+
to date. There is open registration and cash prize every week!\",\n\t\t\t\t\"tournament_url\":
|
|
1753
|
+
\"http://semiprodota.com/\",\n\t\t\t\t\"itemdef\": 15776\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1754
|
+
\"League of Dota NA Season 5\",\n\t\t\t\t\"leagueid\": 1235,\n\t\t\t\t\"description\":
|
|
1755
|
+
\"League of Dota returns with 10 amateur tournaments for North America played
|
|
1756
|
+
over the course of one month. Teams compete for cash prizes two times a week
|
|
1757
|
+
in single elimination tournaments.\",\n\t\t\t\t\"tournament_url\": \"http://leagueofdota.com/\",\n\t\t\t\t\"itemdef\":
|
|
1758
|
+
15777\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"League of Dota EU Season 5\",\n\t\t\t\t\"leagueid\":
|
|
1759
|
+
1236,\n\t\t\t\t\"description\": \"League of Dota returns with 10 amateur tournaments
|
|
1760
|
+
for Europe played over the course of one month. Teams compete for cash prizes
|
|
1761
|
+
two times a week in single elimination tournaments.\",\n\t\t\t\t\"tournament_url\":
|
|
1762
|
+
\"http://leagueofdota.com/\",\n\t\t\t\t\"itemdef\": 15778\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1763
|
+
\"deafESL Cup Europe Season 1\",\n\t\t\t\t\"leagueid\": 1275,\n\t\t\t\t\"description\":
|
|
1764
|
+
\"The deafESL behind the first season in a tournament made Ã\x82Â\x80Ã\x82Â\x8Bfor
|
|
1765
|
+
the deaf community returns with the first season for the European division!
|
|
1766
|
+
Weekly tournaments take place in a single eliminiation format, all matches
|
|
1767
|
+
are a best of one and the grand final is best of three.\",\n\t\t\t\t\"tournament_url\":
|
|
1768
|
+
\"http://deafesl.com/dota/\",\n\t\t\t\t\"itemdef\": 15779\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1769
|
+
\"deafESL Cup America Season 1\",\n\t\t\t\t\"leagueid\": 1274,\n\t\t\t\t\"description\":
|
|
1770
|
+
\"The deafESL behind the first season in a tournament made Â\x80Â\x8Bfor the
|
|
1771
|
+
deaf community returns with the first season for the American division! Weekly
|
|
1772
|
+
tournaments take place in a single eliminiation format, all matches are a
|
|
1773
|
+
best of one and the grand final is best of three.\",\n\t\t\t\t\"tournament_url\":
|
|
1774
|
+
\"http://deafesl.com/dota/\",\n\t\t\t\t\"itemdef\": 15780\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1775
|
+
\"Silver Dota League\",\n\t\t\t\t\"leagueid\": 1232,\n\t\t\t\t\"description\":
|
|
1776
|
+
\"A South american league that help the teams to gain points in the rankings
|
|
1777
|
+
of Dota 2 Brazlian teams made by fans!\",\n\t\t\t\t\"tournament_url\": \"http://www.silver-dota2.com/\",\n\t\t\t\t\"itemdef\":
|
|
1778
|
+
15781\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Cybercup Dota 2 League\",\n\t\t\t\t\"leagueid\":
|
|
1779
|
+
1309,\n\t\t\t\t\"description\": \"16 teams will compete in the Cybercap Dota
|
|
1780
|
+
2 League for a total prize pool of 1,000,000 Rubles!\",\n\t\t\t\t\"tournament_url\":
|
|
1781
|
+
\"http://cybercap.jimdo.com/\",\n\t\t\t\t\"itemdef\": 15782\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1782
|
+
\"D2TV League Season 1\",\n\t\t\t\t\"leagueid\": 1204,\n\t\t\t\t\"description\":
|
|
1783
|
+
\"D2TV League Season 1 is an Amateur League where 16 teams will compete for
|
|
1784
|
+
a prize of 1000 Yuan. \",\n\t\t\t\t\"tournament_url\": \"http://www.dbdota2.com/forum.php?gid=42\",\n\t\t\t\t\"itemdef\":
|
|
1785
|
+
15783\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Gold Rush\",\n\t\t\t\t\"leagueid\":
|
|
1786
|
+
1328,\n\t\t\t\t\"description\": \"Gold Rush is a series of tournaments with
|
|
1787
|
+
a monthly prize of 350 Euros for the winner!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
1788
|
+
\"http://www.dota2league.cz/\",\n\t\t\t\t\"itemdef\": 15784\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1789
|
+
\"Rampage Dota 2 League Season 2\",\n\t\t\t\t\"leagueid\": 1314,\n\t\t\t\t\"description\":
|
|
1790
|
+
\"Rampage Dota 2 League is a free online tournament where teams all over India
|
|
1791
|
+
can participate for the prize pool of $400!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
1792
|
+
\"http://www.netzonegaming.com/rd2l\",\n\t\t\t\t\"itemdef\": 15785\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1793
|
+
\"Dotafreak Amateur League\",\n\t\t\t\t\"leagueid\": 1223,\n\t\t\t\t\"description\":
|
|
1794
|
+
\"16 Malaysian teams will compete to be crowned champions and win RM100!\",\n\t\t\t\t\"tournament_url\":
|
|
1795
|
+
\"http://dotafreak.com/dotafreak-amateur-league/\",\n\t\t\t\t\"itemdef\":
|
|
1796
|
+
15786\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Gamersportperu Season 5\",\n\t\t\t\t\"leagueid\":
|
|
1797
|
+
1206,\n\t\t\t\t\"description\": \"Top teams will compete in the fifth season
|
|
1798
|
+
of Gamersportperu to become National Champions!\",\n\t\t\t\t\"tournament_url\":
|
|
1799
|
+
\"http://www.gamersportperu.com/\",\n\t\t\t\t\"itemdef\": 15787\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1800
|
+
\"Ollin League Season 1\",\n\t\t\t\t\"leagueid\": 1303,\n\t\t\t\t\"description\":
|
|
1801
|
+
\"The top teams in Mexico compete for a prize of 2,000 MXN!\",\n\t\t\t\t\"tournament_url\":
|
|
1802
|
+
\"http://ollin-gaming.com/gaming/torneos/ollin-league/\",\n\t\t\t\t\"itemdef\":
|
|
1803
|
+
15788\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Elite Battle Season 1\",\n\t\t\t\t\"leagueid\":
|
|
1804
|
+
1269,\n\t\t\t\t\"description\": \"Semi-professional teams will compete in
|
|
1805
|
+
the Elite Battle Season 1 which features Ability Draft and a prize of $100!\",\n\t\t\t\t\"tournament_url\":
|
|
1806
|
+
\"http://vk.com/dt2tourna\",\n\t\t\t\t\"itemdef\": 15790\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1807
|
+
\"Angel's Tournament\",\n\t\t\t\t\"leagueid\": 1335,\n\t\t\t\t\"description\":
|
|
1808
|
+
\"Amateur teams from Russia will compete in Angel's Tournament for over 800
|
|
1809
|
+
rare items!\",\n\t\t\t\t\"tournament_url\": \"https://vk.com/topic-54461125_30012322\",\n\t\t\t\t\"itemdef\":
|
|
1810
|
+
15791\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Federal League Season 1\",\n\t\t\t\t\"leagueid\":
|
|
1811
|
+
1337,\n\t\t\t\t\"description\": \"The first season of the Federal League allows
|
|
1812
|
+
teams in Europe to compete in different divisions to become champions!\",\n\t\t\t\t\"tournament_url\":
|
|
1813
|
+
\"http://www.federal-league.net/\",\n\t\t\t\t\"itemdef\": 15792\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1814
|
+
\"SteelSeries UUU9 League\",\n\t\t\t\t\"leagueid\": 1245,\n\t\t\t\t\"description\":
|
|
1815
|
+
\"The SteelSeries UUU9 League is an open tournament for new and experienced
|
|
1816
|
+
teams. The top teams in China have been invited to compete for the 17,000RMB
|
|
1817
|
+
prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.uuu9.com/201404/466471.shtml\",\n\t\t\t\t\"itemdef\":
|
|
1818
|
+
15793\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota4You Cup Season 2\",\n\t\t\t\t\"leagueid\":
|
|
1819
|
+
1237,\n\t\t\t\t\"description\": \"CIS teams in the second season will compete
|
|
1820
|
+
for a prize of more than $1000!\",\n\t\t\t\t\"tournament_url\": \"http://vk.com/dota4you\",\n\t\t\t\t\"itemdef\":
|
|
1821
|
+
15796\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"UFES Dota 2 Cup Season #5\",\n\t\t\t\t\"leagueid\":
|
|
1822
|
+
1341,\n\t\t\t\t\"description\": \"Up to 64 South American teams compete for
|
|
1823
|
+
grand prize!\",\n\t\t\t\t\"tournament_url\": \"https://www.facebook.com/UFESDota2Cup\",\n\t\t\t\t\"itemdef\":
|
|
1824
|
+
15797\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"AEGIS Gaming League 2\",\n\t\t\t\t\"leagueid\":
|
|
1825
|
+
1189,\n\t\t\t\t\"description\": \"The largest attendance Dota 2 tournament
|
|
1826
|
+
in Brazil is back this time teams will be competing for R$ 20,000!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
1827
|
+
\"http://dota.aegisgamingleague.com.br/\",\n\t\t\t\t\"itemdef\": 15798\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1828
|
+
\"CZ-SK Dota 2 League Season 1\",\n\t\t\t\t\"leagueid\": 1338,\n\t\t\t\t\"description\":
|
|
1829
|
+
\"The first season of Czech-Slovakia league will take place over a two month
|
|
1830
|
+
period and the winner will receive prize money!\",\n\t\t\t\t\"tournament_url\":
|
|
1831
|
+
\"http://www.dota2league.cz/\",\n\t\t\t\t\"itemdef\": 15799\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1832
|
+
\"HueBR Cup Season 1\",\n\t\t\t\t\"leagueid\": 1308,\n\t\t\t\t\"description\":
|
|
1833
|
+
\"32 teams will compete for the HueBR Cup trophy and a prize of R$ 650!\",\n\t\t\t\t\"tournament_url\":
|
|
1834
|
+
\"https://www.facebook.com/pages/HueBR-Cup/236535323220194\",\n\t\t\t\t\"itemdef\":
|
|
1835
|
+
15800\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"UK Dota 2 Challenge\",\n\t\t\t\t\"leagueid\":
|
|
1836
|
+
1348,\n\t\t\t\t\"description\": \"The ESL brings you the Dota 2 Challenge
|
|
1837
|
+
putting the top teams from the United Kingdom to compete for 3000 pounds!\",\n\t\t\t\t\"tournament_url\":
|
|
1838
|
+
\"http://www.esl.eu/uk/dota2/\",\n\t\t\t\t\"itemdef\": 15801\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1839
|
+
\"Defense of the Arabians\",\n\t\t\t\t\"leagueid\": 1243,\n\t\t\t\t\"description\":
|
|
1840
|
+
\"The first Defense of the Arabians takes the top Middle Eastern teams to
|
|
1841
|
+
compete for a prize and to become champions!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
1842
|
+
\"https://www.facebook.com/events/378795128927339/?ref_notif_type=plan_mall_activity&source=1\",\n\t\t\t\t\"itemdef\":
|
|
1843
|
+
15802\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dao1st Invitational Cup\",\n\t\t\t\t\"leagueid\":
|
|
1844
|
+
1298,\n\t\t\t\t\"description\": \"The Dao1st Invitational Cup consists of
|
|
1845
|
+
8 amateur teams competing for $500 and a Jade Medal!\",\n\t\t\t\t\"tournament_url\":
|
|
1846
|
+
\"http://dao1st.com/\",\n\t\t\t\t\"itemdef\": 15803\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1847
|
+
\"Battle of Central Europe\",\n\t\t\t\t\"leagueid\": 1361,\n\t\t\t\t\"description\":
|
|
1848
|
+
\"64 registered teams will face off to participate in the finals along with
|
|
1849
|
+
the 8 invited pro teams. They will fight to claim the $500 prize pool!\",\n\t\t\t\t\"tournament_url\":
|
|
1850
|
+
\"http://dota2leagues.eu/boce\",\n\t\t\t\t\"itemdef\": 15804\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1851
|
+
\"DotaTalk DatBet Championship\",\n\t\t\t\t\"leagueid\": 1229,\n\t\t\t\t\"description\":
|
|
1852
|
+
\"16 of the best Dota2 teams in Southeast Asia, Korea, and Oceania competing
|
|
1853
|
+
for a cash prize of $3000!\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/tournaments/dotatalk-datbet-championship\",\n\t\t\t\t\"itemdef\":
|
|
1854
|
+
15805\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Gloom Dota Season 3\",\n\t\t\t\t\"leagueid\":
|
|
1855
|
+
1289,\n\t\t\t\t\"description\": \"16 semi-pro teams will participate in the
|
|
1856
|
+
third season of Gloom Dota for a total prize pool of 3000 Rubles!\",\n\t\t\t\t\"tournament_url\":
|
|
1857
|
+
\"https://vk.com/gloomdota\",\n\t\t\t\t\"itemdef\": 15806\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1858
|
+
\"SLTVTour Season 3\",\n\t\t\t\t\"leagueid\": 1370,\n\t\t\t\t\"description\":
|
|
1859
|
+
\"SLTV Tour returns with teams competing in a round-robin format for a cash
|
|
1860
|
+
prize!\",\n\t\t\t\t\"tournament_url\": \"https://vk.com/dota2sltvtour\",\n\t\t\t\t\"itemdef\":
|
|
1861
|
+
15807\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Good Play SEA Invitational\",\n\t\t\t\t\"leagueid\":
|
|
1862
|
+
1301,\n\t\t\t\t\"description\": \"Featuring 10 of the top teams in Southeast
|
|
1863
|
+
Asia battling it out in the Good Play SEA Invitational for a RM 20,000 prize
|
|
1864
|
+
pool. All games will be casted by Beyond the Summit.\",\n\t\t\t\t\"tournament_url\":
|
|
1865
|
+
\"http://www.goodplaygaming.com/announcement-good-play-sea-invitational.html\",\n\t\t\t\t\"itemdef\":
|
|
1866
|
+
15808\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"LeadersLeague Spring Cup Season
|
|
1867
|
+
1 Ticket\",\n\t\t\t\t\"leagueid\": 1270,\n\t\t\t\t\"description\": \"16 teams
|
|
1868
|
+
compete in the first season of the LeadersLeague Spring Cup for a prize pool
|
|
1869
|
+
of 35,000 Rubles! This ticket only gives you access to view games in the LeadersLeague
|
|
1870
|
+
Spring Cup Season 1.\",\n\t\t\t\t\"tournament_url\": \"http://vk.com/leadersleague\",\n\t\t\t\t\"itemdef\":
|
|
1871
|
+
15809\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Samsung Dota 2 Pro League\",\n\t\t\t\t\"leagueid\":
|
|
1872
|
+
1357,\n\t\t\t\t\"description\": \"The Cybergamer Pro League allows professional
|
|
1873
|
+
teams to compete for a prize pool which grows the more teams that participate!\",\n\t\t\t\t\"tournament_url\":
|
|
1874
|
+
\"http://au.cybergamer.com/games/20/pc/Dota-2/\",\n\t\t\t\t\"itemdef\": 15810\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1875
|
+
\"Stella Champ\",\n\t\t\t\t\"leagueid\": 1381,\n\t\t\t\t\"description\": \"Amateur
|
|
1876
|
+
teams in CIS countries will face off for a prize of 200 rare items!\",\n\t\t\t\t\"tournament_url\":
|
|
1877
|
+
\"http://vk.com/club_stella_champ\",\n\t\t\t\t\"itemdef\": 15811\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1878
|
+
\"Liga Livedota Chile\",\n\t\t\t\t\"leagueid\": 1382,\n\t\t\t\t\"description\":
|
|
1879
|
+
\"The first league from LiveDota allows teams from Chile to participate for
|
|
1880
|
+
two months to become champions and receive a cash prize!\",\n\t\t\t\t\"tournament_url\":
|
|
1881
|
+
\"http://livedota.tv/index.php?/topic/65-liga-chilena-organizada-por-livedodotatv/\",\n\t\t\t\t\"itemdef\":
|
|
1882
|
+
15812\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"fastDOTA Solo Ranked\",\n\t\t\t\t\"leagueid\":
|
|
1883
|
+
1378,\n\t\t\t\t\"description\": \"32 players from Russia participate in the
|
|
1884
|
+
fastDOTA Solo Ranked tournament for a prize! \",\n\t\t\t\t\"tournament_url\":
|
|
1885
|
+
\"http://fastdota.org/solo\",\n\t\t\t\t\"itemdef\": 15813\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1886
|
+
\"Private Games Brazil Girls Volume 1\",\n\t\t\t\t\"leagueid\": 1395,\n\t\t\t\t\"description\":
|
|
1887
|
+
\"The first female Dota 2 tournament in Brazil where teams will compete for
|
|
1888
|
+
a cash prize and treasure keys!\",\n\t\t\t\t\"tournament_url\": \"http://privategamesbr.com.br/\",\n\t\t\t\t\"itemdef\":
|
|
1889
|
+
15814\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Troll's Treasure\",\n\t\t\t\t\"leagueid\":
|
|
1890
|
+
1316,\n\t\t\t\t\"description\": \"A series of tournaments are played and the
|
|
1891
|
+
winners will receive a prize!\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2league.cz/\",\n\t\t\t\t\"itemdef\":
|
|
1892
|
+
15815\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"FGCL Fight Club: Promote Season\",\n\t\t\t\t\"leagueid\":
|
|
1893
|
+
1311,\n\t\t\t\t\"description\": \"Eight invited professional teams and eight
|
|
1894
|
+
qualifying teams compete in Promote Season of Fight Club for $1,000!\",\n\t\t\t\t\"tournament_url\":
|
|
1895
|
+
\"http://dota.fgcl.ru/champ/fc_promote_cup/\",\n\t\t\t\t\"itemdef\": 15816\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1896
|
+
\"National Esports League\",\n\t\t\t\t\"leagueid\": 1376,\n\t\t\t\t\"description\":
|
|
1897
|
+
\"32 teams will compete in the first season of the National Esport League
|
|
1898
|
+
in the Dota 2 Super Cup for $250!\",\n\t\t\t\t\"tournament_url\": \"http://vk.com/nlcsport.dota\",\n\t\t\t\t\"itemdef\":
|
|
1899
|
+
15817\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Mad Moon Summoning Cup Season
|
|
1900
|
+
1\",\n\t\t\t\t\"leagueid\": 1379,\n\t\t\t\t\"description\": \"Over 32 teams
|
|
1901
|
+
from Europe are fighting for a prize.\",\n\t\t\t\t\"tournament_url\": \"http://madmoon.weebly.com/\",\n\t\t\t\t\"itemdef\":
|
|
1902
|
+
15818\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Bounty Hunter Series Ticket\",\n\t\t\t\t\"leagueid\":
|
|
1903
|
+
1244,\n\t\t\t\t\"description\": \"The Dota 2 King of the Hill Bounty Hunter
|
|
1904
|
+
Series returns! Two invited teams teams to go head-to-head for a chance to
|
|
1905
|
+
win $1000. This ticket only gives you access to view games in the Bounty Hunter
|
|
1906
|
+
Series.\",\n\t\t\t\t\"tournament_url\": \"http://www.hitbox.tv/bountyhunterseries\",\n\t\t\t\t\"itemdef\":
|
|
1907
|
+
15819\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ESL One Frankfurt 2014 Premium
|
|
1908
|
+
Ticket\",\n\t\t\t\t\"leagueid\": 1248,\n\t\t\t\t\"description\": \"On June
|
|
1909
|
+
28th and 29th, eight of the best teams from around the world travel to Frankfurt,
|
|
1910
|
+
Germany to battle it out for the $150,000+ prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
1911
|
+
\"http://www.esl-one.com/dota2/frankfurt-2014/\",\n\t\t\t\t\"itemdef\": 15820\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1912
|
+
\"First Arrival Dota 2 Tournament Season 1\",\n\t\t\t\t\"leagueid\": 1374,\n\t\t\t\t\"description\":
|
|
1913
|
+
\"A double elimination tournament where teams will compete for treasure keys
|
|
1914
|
+
in Dota 2!\",\n\t\t\t\t\"tournament_url\": \"http://form.jotform.me/form/41351180429449?\",\n\t\t\t\t\"itemdef\":
|
|
1915
|
+
15822\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"YoDota Championship Season 2
|
|
1916
|
+
Ticket\",\n\t\t\t\t\"leagueid\": 1358,\n\t\t\t\t\"description\": \"32 teams
|
|
1917
|
+
from South America compete to earn one of eight qualifying spots in the second
|
|
1918
|
+
season of the YoDota Championship. The qualifiers will fight against eight
|
|
1919
|
+
invited teams for over $700 in prizes! This ticket only gives you access to
|
|
1920
|
+
view games from the YoDota Championship Season 2 league.\",\n\t\t\t\t\"tournament_url\":
|
|
1921
|
+
\"http://www.yodota.com/?url=cseason2\",\n\t\t\t\t\"itemdef\": 15823\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1922
|
+
\"GG League Ticket\",\n\t\t\t\t\"leagueid\": 1296,\n\t\t\t\t\"description\":
|
|
1923
|
+
\"32 professional and semi-professional teams battle it out for the $1000
|
|
1924
|
+
prize pool. This ticket gives access to view games from the GG League and
|
|
1925
|
+
the Force Hook for Pudge.\",\n\t\t\t\t\"tournament_url\": \"http://www.goodgaming.pro/\",\n\t\t\t\t\"itemdef\":
|
|
1926
|
+
15824\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Bulgarian Amateur League Season
|
|
1927
|
+
Two\",\n\t\t\t\t\"leagueid\": 1273,\n\t\t\t\t\"description\": \"This is the
|
|
1928
|
+
second season for the Bulgarian Amateur League. It's an open league with up
|
|
1929
|
+
to 50 teams competing for a prize.\",\n\t\t\t\t\"tournament_url\": \"http://dota2-bg.net/\",\n\t\t\t\t\"itemdef\":
|
|
1930
|
+
15825\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dream of Dota - The Final Season\",\n\t\t\t\t\"leagueid\":
|
|
1931
|
+
1195,\n\t\t\t\t\"description\": \"This is the last season of the Dream of
|
|
1932
|
+
Dota League.\",\n\t\t\t\t\"tournament_url\": \"http://dreamofdota.bl.ee/\",\n\t\t\t\t\"itemdef\":
|
|
1933
|
+
15826\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Techlabs Cup 2014 Season 2 Minsk\",\n\t\t\t\t\"leagueid\":
|
|
1934
|
+
1362,\n\t\t\t\t\"description\": \"The Techlabs Cup returns for the 2nd Season.
|
|
1935
|
+
Some of the top amateur teams from around the CIS region compete for a $10,000
|
|
1936
|
+
prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://cybersport.techlabs.pro/ru/events/2014/11\",\n\t\t\t\t\"itemdef\":
|
|
1937
|
+
15827\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Cyberfight Season 1\",\n\t\t\t\t\"leagueid\":
|
|
1938
|
+
1428,\n\t\t\t\t\"description\": \"12 teams will compete in the first season
|
|
1939
|
+
of CyberFight for up to a total prize pool of $200!\",\n\t\t\t\t\"tournament_url\":
|
|
1940
|
+
\"http://cyberfight.tv/news/view/1501\",\n\t\t\t\t\"itemdef\": 15828\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1941
|
+
\"Malaysian's Hall of Fame League Season 1\",\n\t\t\t\t\"leagueid\": 1340,\n\t\t\t\t\"description\":
|
|
1942
|
+
\"A league for Malaysian's teams to play competitively for a prize pool of
|
|
1943
|
+
1000 MYR! The top 4 teams will receive a slot for the next season.\",\n\t\t\t\t\"tournament_url\":
|
|
1944
|
+
\"https://www.facebook.com/d2mhof\",\n\t\t\t\t\"itemdef\": 15829\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1945
|
+
\"MSi Masters\",\n\t\t\t\t\"leagueid\": 1391,\n\t\t\t\t\"description\": \"The
|
|
1946
|
+
ESAU MSi Masters is a professional tournament compiling Australia's most talented
|
|
1947
|
+
players. Eight final teams will compete for the title and $3,000.\",\n\t\t\t\t\"tournament_url\":
|
|
1948
|
+
\"http://esau.com.au/\",\n\t\t\t\t\"itemdef\": 15830\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1949
|
+
\"Dota 2 Tester League\",\n\t\t\t\t\"leagueid\": 1388,\n\t\t\t\t\"description\":
|
|
1950
|
+
\"Teams from China will compete in the Dota 2 Tester League for 31,000 Yuan!\",\n\t\t\t\t\"tournament_url\":
|
|
1951
|
+
\"http://www.dota2tester.com/thread-156119-1-1.html\",\n\t\t\t\t\"itemdef\":
|
|
1952
|
+
15831\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Cabeca Dota 2 League\",\n\t\t\t\t\"leagueid\":
|
|
1953
|
+
1352,\n\t\t\t\t\"description\": \"24 teams will compete in the Cabeca Dota
|
|
1954
|
+
2 League to become champions!\",\n\t\t\t\t\"tournament_url\": \"http://cabeca-dota-2-league.webnode.com/\",\n\t\t\t\t\"itemdef\":
|
|
1955
|
+
15832\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Watch 4 Dota Tournament\",\n\t\t\t\t\"leagueid\":
|
|
1956
|
+
1324,\n\t\t\t\t\"description\": \"The Watch 4 Dota tournament allows 32 teams
|
|
1957
|
+
to compete for a prize of $50!\",\n\t\t\t\t\"tournament_url\": \"http://w4d.tv/\",\n\t\t\t\t\"itemdef\":
|
|
1958
|
+
15833\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Torneo Tecnobar De Dota 2\",\n\t\t\t\t\"leagueid\":
|
|
1959
|
+
1408,\n\t\t\t\t\"description\": \"The Giant Rocket League pits 8 teams against
|
|
1960
|
+
each other to compete at a LAN Final at TecnoBar!\",\n\t\t\t\t\"tournament_url\":
|
|
1961
|
+
\"http://www.giantrocket.com.ar/\",\n\t\t\t\t\"itemdef\": 15834\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1962
|
+
\"OVS Dota 2 LAN\",\n\t\t\t\t\"leagueid\": 1403,\n\t\t\t\t\"description\":
|
|
1963
|
+
\"The top Hungarian teams compete in a double bracket elimination tournament
|
|
1964
|
+
where the winners will compete at a LAN finals!\",\n\t\t\t\t\"tournament_url\":
|
|
1965
|
+
\"http://www.excello.net/tournament/5040/dota-2-ovs-lan/\",\n\t\t\t\t\"itemdef\":
|
|
1966
|
+
15835\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"MSI Beat IT GosuCup Asia\",\n\t\t\t\t\"leagueid\":
|
|
1967
|
+
1264,\n\t\t\t\t\"description\": \"GosuCup Asia welcomes invites top Asian
|
|
1968
|
+
teams to compete alongside amateurs in the $2,000 MSI Beat IT GosuCup!\",\n\t\t\t\t\"tournament_url\":
|
|
1969
|
+
\"http://www.gosugamers.net/dota2/events/208-msi-beat-it-gosucup-asia\",\n\t\t\t\t\"itemdef\":
|
|
1970
|
+
15836\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Krabick Cup Season 2\",\n\t\t\t\t\"leagueid\":
|
|
1971
|
+
1339,\n\t\t\t\t\"description\": \"16 teams will battle it out in the Krabick
|
|
1972
|
+
Cup Season 2 for a total prize of 3200 Rubles!\",\n\t\t\t\t\"tournament_url\":
|
|
1973
|
+
\"http://lives-cheat.ru/blog\",\n\t\t\t\t\"itemdef\": 15837\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1974
|
+
\"MSI Beat IT 2014\",\n\t\t\t\t\"leagueid\": 1350,\n\t\t\t\t\"description\":
|
|
1975
|
+
\"This year, MSI Beat IT includes Dota 2 and presents an opportunity to anyone
|
|
1976
|
+
out there to take part in the event through the open qualifiers and face off
|
|
1977
|
+
best Dota 2 teams in the world with a $44,000 prize pool! Each ticket purchased
|
|
1978
|
+
adds $1.50 to the prize pool!\",\n\t\t\t\t\"tournament_url\": \"http://beatit.msi.com/\",\n\t\t\t\t\"itemdef\":
|
|
1979
|
+
15838\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Angel's Tournament Season 2\",\n\t\t\t\t\"leagueid\":
|
|
1980
|
+
1429,\n\t\t\t\t\"description\": \"Amateur teams compete once again in Angel's
|
|
1981
|
+
Tournament for $50 and rare items!\",\n\t\t\t\t\"tournament_url\": \"https://vk.com/topic-54461125_30100773\",\n\t\t\t\t\"itemdef\":
|
|
1982
|
+
15839\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"PAGE Premier League\",\n\t\t\t\t\"leagueid\":
|
|
1983
|
+
1441,\n\t\t\t\t\"description\": \"104 team compete for $8,500 in the PAGE
|
|
1984
|
+
Premier League!\",\n\t\t\t\t\"tournament_url\": \"http://maindota2.com/ppl\",\n\t\t\t\t\"itemdef\":
|
|
1985
|
+
15840\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"PowerPlay Philippine Dota 2
|
|
1986
|
+
Invitational\",\n\t\t\t\t\"leagueid\": 1366,\n\t\t\t\t\"description\": \"The
|
|
1987
|
+
top 10 Filipino Dota 2 teams, 8 invited and 2 through open qualifiers, battle
|
|
1988
|
+
it out for a prize pool of P50,000!\",\n\t\t\t\t\"tournament_url\": \"http://www.facebook.com/pages/PowerPlay-E-Sports/1444478082464380\",\n\t\t\t\t\"itemdef\":
|
|
1989
|
+
15841\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Cup Season 2\",\n\t\t\t\t\"leagueid\":
|
|
1990
|
+
1402,\n\t\t\t\t\"description\": \"The second season of the Dota 2 Cup puts
|
|
1991
|
+
20 teams against each other to compete for a prize pool of $300!\",\n\t\t\t\t\"tournament_url\":
|
|
1992
|
+
\"http://dota2cup.com/\",\n\t\t\t\t\"itemdef\": 15842\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
1993
|
+
\"Possible Heroes Cup Season 1\",\n\t\t\t\t\"leagueid\": 1535,\n\t\t\t\t\"description\":
|
|
1994
|
+
\"16 teams will compete for a prize pool of 300 rare items in the first season
|
|
1995
|
+
of the Possible Heroes Cup!\",\n\t\t\t\t\"tournament_url\": \"http://possibleheroes.ru/\",\n\t\t\t\t\"itemdef\":
|
|
1996
|
+
15843\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Kaliningrad Dota 2 Open Championship\",\n\t\t\t\t\"leagueid\":
|
|
1997
|
+
1417,\n\t\t\t\t\"description\": \"The Kaliningrad Dota 2 Open Championship
|
|
1998
|
+
is a free online league with a LAN finale in Kaliningrad for a prize of 15,000
|
|
1999
|
+
Rubles!\",\n\t\t\t\t\"tournament_url\": \"http://portal-club.net/kaliningrad-dota-2-open-championship/\",\n\t\t\t\t\"itemdef\":
|
|
2000
|
+
15844\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Logitech G - Free to Play 3\",\n\t\t\t\t\"leagueid\":
|
|
2001
|
+
1384,\n\t\t\t\t\"description\": \"India's Biggest LAN Tournament is back for
|
|
2002
|
+
a 3rd season. This open tournament takes place in a LAN environment where
|
|
2003
|
+
teams compete for the 130,000 INR Prize Pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2004
|
+
\"http://forum.esports.co.in/forum/announcements/tournament-announcements/336-logitech-g-free2play#post336\",\n\t\t\t\t\"itemdef\":
|
|
2005
|
+
15845\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GEST Dota 2 - SEA\",\n\t\t\t\t\"leagueid\":
|
|
2006
|
+
1432,\n\t\t\t\t\"description\": \"Watch the best Dota 2 teams from South-East
|
|
2007
|
+
Asia battle it out for the $2,000 prize pool and to earn their spot in the
|
|
2008
|
+
GEST Challenge.\",\n\t\t\t\t\"tournament_url\": \"https://www.facebook.com/gestdota2\",\n\t\t\t\t\"itemdef\":
|
|
2009
|
+
15847\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"AsacsPLAY League Season 1\",\n\t\t\t\t\"leagueid\":
|
|
2010
|
+
1420,\n\t\t\t\t\"description\": \"The AsacsPLAY League Season 1 is an amateur
|
|
2011
|
+
league which allows new teams to compete for a prize. \",\n\t\t\t\t\"tournament_url\":
|
|
2012
|
+
\"http://www.asacsplay.me/\",\n\t\t\t\t\"itemdef\": 15850\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2013
|
+
\"Finnish Dota League\",\n\t\t\t\t\"leagueid\": 1346,\n\t\t\t\t\"description\":
|
|
2014
|
+
\"The first season of the Finnish Dota 2 League provides Finnish teams a platform
|
|
2015
|
+
to develop Finnish eSports to the next level!\",\n\t\t\t\t\"tournament_url\":
|
|
2016
|
+
\"\",\n\t\t\t\t\"itemdef\": 15851\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota
|
|
2017
|
+
2 Cebu League Season 5\",\n\t\t\t\t\"leagueid\": 1415,\n\t\t\t\t\"description\":
|
|
2018
|
+
\"Season 5 of the Dota 2 Cebu League gives Cebu's Dota 2 Amateur Teams a chance
|
|
2019
|
+
to battle it out to be the league champion!\",\n\t\t\t\t\"tournament_url\":
|
|
2020
|
+
\"http://dota2cebu.com/\",\n\t\t\t\t\"itemdef\": 15852\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2021
|
+
\"Torresmo Legacy League 2nd Edition\",\n\t\t\t\t\"leagueid\": 1397,\n\t\t\t\t\"description\":
|
|
2022
|
+
\"Th second season of the Torresmo Legacy League gives amateur teams in Brazil
|
|
2023
|
+
an opportunity to play for a prize pool!\",\n\t\t\t\t\"tournament_url\": \"http://www.torresmolegacyleague.com/\",\n\t\t\t\t\"itemdef\":
|
|
2024
|
+
15853\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Amateur Dota 2 League Season
|
|
2025
|
+
4\",\n\t\t\t\t\"leagueid\": 1446,\n\t\t\t\t\"description\": \"The fourth season
|
|
2026
|
+
of the Amateur Dota 2 League kicks off where Amateur teams compete to receive
|
|
2027
|
+
prize pools depending on the tier they are in! (Prize pools are $100, $50
|
|
2028
|
+
and items)\",\n\t\t\t\t\"tournament_url\": \"http://amateurdota2league.com/\",\n\t\t\t\t\"itemdef\":
|
|
2029
|
+
15854\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota Legends\",\n\t\t\t\t\"leagueid\":
|
|
2030
|
+
1445,\n\t\t\t\t\"description\": \"This is an international league for our
|
|
2031
|
+
top teams where they compete for a prize pool starting at $500 per region.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2032
|
+
\"http://amateurdota2league.com/\",\n\t\t\t\t\"itemdef\": 15855\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2033
|
+
\"SLTVTour Season 4\",\n\t\t\t\t\"leagueid\": 1467,\n\t\t\t\t\"description\":
|
|
2034
|
+
\"SLTV Tour returns with teams competing in a round-robin format for a cash
|
|
2035
|
+
prize!\",\n\t\t\t\t\"tournament_url\": \"https://vk.com/dota2sltvtour\",\n\t\t\t\t\"itemdef\":
|
|
2036
|
+
15856\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GEMplay Challenge Season 1\",\n\t\t\t\t\"leagueid\":
|
|
2037
|
+
1475,\n\t\t\t\t\"description\": \"GEMplay Challenge Season 1 pits teams from
|
|
2038
|
+
around the world against each other for 200 Euros!\",\n\t\t\t\t\"tournament_url\":
|
|
2039
|
+
\"http://www.gem.mk/\",\n\t\t\t\t\"itemdef\": 15857\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2040
|
+
\"Lima Five Peru Dota 2 Tournament\",\n\t\t\t\t\"leagueid\": 1297,\n\t\t\t\t\"description\":
|
|
2041
|
+
\"32 South American amateur teams compete in a tournament for a cash prize\",\n\t\t\t\t\"tournament_url\":
|
|
2042
|
+
\"http://limafiveperulfp.wix.com/limafiveperu\",\n\t\t\t\t\"itemdef\": 15858\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2043
|
+
\"Intercollegiate Dota 2 Online Tournament\",\n\t\t\t\t\"leagueid\": 1396,\n\t\t\t\t\"description\":
|
|
2044
|
+
\"This is a competitive Esports league to all university students across the
|
|
2045
|
+
Philippines with an over-all prize pool of around 15,000 Pesos.\",\n\t\t\t\t\"tournament_url\":
|
|
2046
|
+
\"http://e-clubmalaysia.com/dota2/?p=10833\",\n\t\t\t\t\"itemdef\": 15859\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2047
|
+
\"SELF Entertainment League Season 1\",\n\t\t\t\t\"leagueid\": 1409,\n\t\t\t\t\"description\":
|
|
2048
|
+
\"The top 16 teams in Latin America will compete in the first season of the
|
|
2049
|
+
SELF Entertainment League for $150!\",\n\t\t\t\t\"tournament_url\": \"http://selfent.com/\",\n\t\t\t\t\"itemdef\":
|
|
2050
|
+
15860\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Brazilian Dota League\",\n\t\t\t\t\"leagueid\":
|
|
2051
|
+
1421,\n\t\t\t\t\"description\": \"20 teams will compete in the first season
|
|
2052
|
+
of the Brazilian Dota League for a total prize pool of R$350!\",\n\t\t\t\t\"tournament_url\":
|
|
2053
|
+
\"http://www.campeonato.dota2.com.br/\",\n\t\t\t\t\"itemdef\": 15862\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2054
|
+
\"Copa Sand King Peru\",\n\t\t\t\t\"leagueid\": 1466,\n\t\t\t\t\"description\":
|
|
2055
|
+
\"64 teams will compete for the Sand King Cup and over 2000 Soles in prizes!\",\n\t\t\t\t\"tournament_url\":
|
|
2056
|
+
\"https://www.facebook.com/events/311174659039745/\",\n\t\t\t\t\"itemdef\":
|
|
2057
|
+
15863\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Vietnam eSports Champions League
|
|
2058
|
+
2014\",\n\t\t\t\t\"leagueid\": 1400,\n\t\t\t\t\"description\": \"eSportsviet.vn
|
|
2059
|
+
presents the Vietnam eSports Champions League 2014! The top four teams from
|
|
2060
|
+
Vietnam and Southeast Asia will be battlings for $1400 and more!\",\n\t\t\t\t\"tournament_url\":
|
|
2061
|
+
\"http://esportsviet.vn/\",\n\t\t\t\t\"itemdef\": 15864\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2062
|
+
\"HSL: Summer Academic Showdown\",\n\t\t\t\t\"leagueid\": 1452,\n\t\t\t\t\"description\":
|
|
2063
|
+
\"High school teams from US/Canada will compete to earn one of 13 qualifying
|
|
2064
|
+
spots in the Summer Academic Showdown. These teams will be pitted against
|
|
2065
|
+
3 collegiate teams with the top four teams earning cash prizes.\",\n\t\t\t\t\"tournament_url\":
|
|
2066
|
+
\"http://dota2.hsstarleague.com/SAS/\",\n\t\t\t\t\"itemdef\": 15865\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2067
|
+
\"MSI BeatIT RGN League SEA Qualifier\",\n\t\t\t\t\"leagueid\": 1423,\n\t\t\t\t\"description\":
|
|
2068
|
+
\"South East Asia Qualifiers of the MSI Beat IT where teams compete for $5,000
|
|
2069
|
+
total cash prizes plus travel and accommodation for the winner to the Global
|
|
2070
|
+
Finals in Taiwan in November.\",\n\t\t\t\t\"tournament_url\": \"http://www.rapturegaming.net/msibeatitrgnleague/\",\n\t\t\t\t\"itemdef\":
|
|
2071
|
+
15866\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SLTV Star Series Season 8 -
|
|
2072
|
+
No Contribution\",\n\t\t\t\t\"leagueid\": 124,\n\t\t\t\t\"description\": \"The
|
|
2073
|
+
8th season of the legendary SLTV StarSeries will feature best 18 teams from
|
|
2074
|
+
Europe.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.starladder.tv\",\n\t\t\t\t\"itemdef\":
|
|
2075
|
+
15867\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ASUS ROG DreamLeague Season
|
|
2076
|
+
1 - No Contribution\",\n\t\t\t\t\"leagueid\": 223,\n\t\t\t\t\"description\":
|
|
2077
|
+
\"ASUS ROG DreamLeague Season 1 is sponsored by ASUS ROG, ROCCAT & TV6. Starting
|
|
2078
|
+
on March 3rd, 2014 of the world's best teams will compete in 84 league matches
|
|
2079
|
+
and the playoffs at DreamHack Summer 2014 for a $100,000 prize pool. \",\n\t\t\t\t\"tournament_url\":
|
|
2080
|
+
\"http://www.dreamhack.se/\",\n\t\t\t\t\"itemdef\": 15868\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2081
|
+
\"AD2L Season 4 WTS 1v1\",\n\t\t\t\t\"leagueid\": 1447,\n\t\t\t\t\"description\":
|
|
2082
|
+
\"Home of the AD2L's Weekend Tournament Series featuring a 1v1 mid and the
|
|
2083
|
+
Alternative Tournament Series for friendly tournaments using Valve's newest
|
|
2084
|
+
game modes.\",\n\t\t\t\t\"tournament_url\": \"http://amateurdota2league.com/\",\n\t\t\t\t\"itemdef\":
|
|
2085
|
+
15909\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Invasion of Comrades Vol. 1\",\n\t\t\t\t\"leagueid\":
|
|
2086
|
+
1456,\n\t\t\t\t\"description\": \"Teams from Europe compete in 4 tournaments
|
|
2087
|
+
where each tournament has a prize pool of 1500 Rubles!\",\n\t\t\t\t\"tournament_url\":
|
|
2088
|
+
\"http://comradeteam.tk/\",\n\t\t\t\t\"itemdef\": 15910\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2089
|
+
\"DreamHack Bucharest 2014 Invitation Ticket - No Contribution\",\n\t\t\t\t\"leagueid\":
|
|
2090
|
+
1123,\n\t\t\t\t\"description\": \"Four of the top Dota 2 teams from around
|
|
2091
|
+
the word compete during the DreamHack Bucharest 2014 Invitiational Tournament.
|
|
2092
|
+
The base prize pool is $25,000 and increased by $2.50 for each ticket sold!
|
|
2093
|
+
This ticket only gives you access to view games from DreamHack Bucharest 2014.\",\n\t\t\t\t\"tournament_url\":
|
|
2094
|
+
\"http://www.dreamhack.ro/\",\n\t\t\t\t\"itemdef\": 15911\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2095
|
+
\"Perfect World Dota Academy 2\",\n\t\t\t\t\"leagueid\": 1448,\n\t\t\t\t\"description\":
|
|
2096
|
+
\"Featuring various kinds of instructive matches including guides to heroes,
|
|
2097
|
+
mechanics and tactics. Perfect World Dota Academy offers a perfect route for
|
|
2098
|
+
beginners to learn Dota. Also, the academy periodically broadcasts exciting
|
|
2099
|
+
activities held by Perfect World.\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2.com.cn/event/201309/academy/index.htm\",\n\t\t\t\t\"itemdef\":
|
|
2100
|
+
15912\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Nvidia Dota 2 Vietnam Tournament
|
|
2101
|
+
Season 2\",\n\t\t\t\t\"leagueid\": 1501,\n\t\t\t\t\"description\": \"The 2nd
|
|
2102
|
+
season of the NVIDIA DOTA 2 Vietnam Tournament is back! Catch the action of
|
|
2103
|
+
the local Vietnamese teams as they battle it out for cash prizes!\",\n\t\t\t\t\"tournament_url\":
|
|
2104
|
+
\"http://rgn.vn/nvidiadota2/\",\n\t\t\t\t\"itemdef\": 15913\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2105
|
+
\"Wars of Fortune Season 1\",\n\t\t\t\t\"leagueid\": 1469,\n\t\t\t\t\"description\":
|
|
2106
|
+
\"The first season of Wars of Fortune puts 16 teams against each other fighting
|
|
2107
|
+
for 3600 Rubles!\",\n\t\t\t\t\"tournament_url\": \"http://vk.com/caolu\",\n\t\t\t\t\"itemdef\":
|
|
2108
|
+
15914\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Balkan Floods Charity Cup\",\n\t\t\t\t\"leagueid\":
|
|
2109
|
+
1508,\n\t\t\t\t\"description\": \"Raising money for Croatia, Serbia and Bosnia,
|
|
2110
|
+
countries that got hit by heavy floods.\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2serbia.info/\",\n\t\t\t\t\"itemdef\":
|
|
2111
|
+
15915\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Russian Dota League Season 1\",\n\t\t\t\t\"leagueid\":
|
|
2112
|
+
1503,\n\t\t\t\t\"description\": \"The Russian Dota League emerges with 16
|
|
2113
|
+
teams competing for 4000 Rubles!\",\n\t\t\t\t\"tournament_url\": \"http://vk.com/russiandotaleague\",\n\t\t\t\t\"itemdef\":
|
|
2114
|
+
15916\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Razer Gate Dota 2 Champions
|
|
2115
|
+
League #1\",\n\t\t\t\t\"leagueid\": 1511,\n\t\t\t\t\"description\": \"The
|
|
2116
|
+
top 8 teams in Vietnam compete for over $1000 in prizes!\",\n\t\t\t\t\"tournament_url\":
|
|
2117
|
+
\"http://gate.vn/giai-dau/35-razer-gate-dota2-champions-league-1.html\",\n\t\t\t\t\"itemdef\":
|
|
2118
|
+
15917\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Pudge Cup\",\n\t\t\t\t\"leagueid\":
|
|
2119
|
+
1500,\n\t\t\t\t\"description\": \"8 teams will participate in the first ever
|
|
2120
|
+
Pudge Cup where it will be a 5v5 mid as everyone playing Pudge. Teams compete
|
|
2121
|
+
for a prize and to be crowned champions!\",\n\t\t\t\t\"tournament_url\": \"https://vk.com/gloomdota\",\n\t\t\t\t\"itemdef\":
|
|
2122
|
+
15918\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"BoraDota Stars\",\n\t\t\t\t\"leagueid\":
|
|
2123
|
+
1478,\n\t\t\t\t\"description\": \"The best teams in South America compete
|
|
2124
|
+
in the BoraDota Stars for a prize pool of R$1,500!\",\n\t\t\t\t\"tournament_url\":
|
|
2125
|
+
\"http://www.boradota.com/\",\n\t\t\t\t\"itemdef\": 15919\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2126
|
+
\"Techno Int DX Dota 2 Tournament\",\n\t\t\t\t\"leagueid\": 1490,\n\t\t\t\t\"description\":
|
|
2127
|
+
\"The second series of DX Indonesia Dota 2 Tournament. This tournament consist
|
|
2128
|
+
of 96 teams from Indonesia competing for a $2,000 prize pool. This tournament
|
|
2129
|
+
is proudly sponsored by Intel Indonesia.\",\n\t\t\t\t\"tournament_url\": \"http://forum.esportsprime.com/threads/techno-int-dx-dota-2-tournament-iespa.508/\",\n\t\t\t\t\"itemdef\":
|
|
2130
|
+
15920\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Aceh Dota Classic\",\n\t\t\t\t\"leagueid\":
|
|
2131
|
+
1383,\n\t\t\t\t\"description\": \"Aceh Dota Classic Tournament is a Dota 2
|
|
2132
|
+
competition between 8 most talented amateur teams in the region competing
|
|
2133
|
+
for a prizepool of over $400!\",\n\t\t\t\t\"tournament_url\": \"http://id-primegames.com/\",\n\t\t\t\t\"itemdef\":
|
|
2134
|
+
15921\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Summit Ticket - No Contribution\",\n\t\t\t\t\"leagueid\":
|
|
2135
|
+
1157,\n\t\t\t\t\"description\": \"The Summit is a global Dota 2 event! Top
|
|
2136
|
+
teams from Europe, America, & Asia will fight to qualify via online play.
|
|
2137
|
+
The best four teams will fly to LA to challenge invited teams Na'Vi & DK on
|
|
2138
|
+
LAN for a base prize pool of $80,000! This ticket only gives you access to
|
|
2139
|
+
view games in The Summit.\",\n\t\t\t\t\"tournament_url\": \"http://summit.beyondthesummit.tv/\",\n\t\t\t\t\"itemdef\":
|
|
2140
|
+
15922\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"MVP Phoenix Exhibition Matches\",\n\t\t\t\t\"leagueid\":
|
|
2141
|
+
1524,\n\t\t\t\t\"description\": \"MVP Phoenix plays a series of warm-up matches
|
|
2142
|
+
against top Southeast Asian and Chinese teams to prepare for The International
|
|
2143
|
+
2014. These are free to spectate!\",\n\t\t\t\t\"tournament_url\": \"http://dota2.nexon.com/\",\n\t\t\t\t\"itemdef\":
|
|
2144
|
+
15923\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Guf Australia Winter Regional\",\n\t\t\t\t\"leagueid\":
|
|
2145
|
+
1495,\n\t\t\t\t\"description\": \"The Guf Australia $1600 Winter Regional
|
|
2146
|
+
is a swiss format tournament played at Guf LAN Centres around Australia with
|
|
2147
|
+
a total prize pool of $1,600 AUD on the 22nd of June!\",\n\t\t\t\t\"tournament_url\":
|
|
2148
|
+
\"http://www.guf.com.au/\",\n\t\t\t\t\"itemdef\": 15924\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2149
|
+
\"Australian Esports League 2014 Winter Cup\",\n\t\t\t\t\"leagueid\": 1063,\n\t\t\t\t\"description\":
|
|
2150
|
+
\"The 2014 Winter Cup for the Australian E-Sports League will see top teams
|
|
2151
|
+
from across Australia and the Oceanic region compete for their share of AUD
|
|
2152
|
+
$5,000 in cash plus sponsor prizes! The Grand Finalswill be held live in Sydney
|
|
2153
|
+
on the 1st of March.\",\n\t\t\t\t\"tournament_url\": \"http://www.esportsdaily.com.au/leagues/dota-2-cup\",\n\t\t\t\t\"itemdef\":
|
|
2154
|
+
15925\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Super Battle of the Cities\",\n\t\t\t\t\"leagueid\":
|
|
2155
|
+
1522,\n\t\t\t\t\"description\": \"32 teams across Russian cities compete for
|
|
2156
|
+
a prize of $2000!\",\n\t\t\t\t\"tournament_url\": \"http://битвагородов.рф\",\n\t\t\t\t\"itemdef\":
|
|
2157
|
+
15926\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GEST Challenge Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2158
|
+
1407,\n\t\t\t\t\"description\": \"Watch as the best teams in China and SEA
|
|
2159
|
+
battle it out for a prize pool of 10,000USD. Sponsored by Gigabyte. Commentary
|
|
2160
|
+
will be provided by Beyondthesummit. This ticket will only give you access
|
|
2161
|
+
to view games from the GEST Challenge.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotatalk.com/\",\n\t\t\t\t\"itemdef\":
|
|
2162
|
+
15927\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Z Sword League Season 1\",\n\t\t\t\t\"leagueid\":
|
|
2163
|
+
1542,\n\t\t\t\t\"description\": \"More than 100 teams compete in the first
|
|
2164
|
+
season of the Z Sword League in China. Professional teams HGT, LGD.CDEC, TongFu,
|
|
2165
|
+
Speedgaming.cn, and Orenda will participate in the exhibition matches.\",\n\t\t\t\t\"tournament_url\":
|
|
2166
|
+
\"http://weibo.com/u/5173020358\",\n\t\t\t\t\"itemdef\": 15929\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2167
|
+
\"CSPL Dota 2 League Season 1\",\n\t\t\t\t\"leagueid\": 1547,\n\t\t\t\t\"description\":
|
|
2168
|
+
\"The first season of continuous battle where more than 500 different players
|
|
2169
|
+
will fight for a prize and the title of champion!\",\n\t\t\t\t\"tournament_url\":
|
|
2170
|
+
\"http://cspl.ru/\",\n\t\t\t\t\"itemdef\": 15930\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2171
|
+
\"E-SPOT Dota 2 Rare Challenge\",\n\t\t\t\t\"leagueid\": 1555,\n\t\t\t\t\"description\":
|
|
2172
|
+
\"E-SPOT Dota 2 Rare Challenge is a tournament that consists of 16 or 32 teams
|
|
2173
|
+
which compete on a weekly basis in order to win rare items and monetary prizes.\",\n\t\t\t\t\"tournament_url\":
|
|
2174
|
+
\"http://www.e-spotd2c.com/\",\n\t\t\t\t\"itemdef\": 15931\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2175
|
+
\"Krabick Cup Season 3\",\n\t\t\t\t\"leagueid\": 1504,\n\t\t\t\t\"description\":
|
|
2176
|
+
\"16 teams from CIS countries will participate in the Krabick Cup #3 for the
|
|
2177
|
+
prize pool of 3200 Rubles!\",\n\t\t\t\t\"tournament_url\": \"http://lives-cheat.ru/blog\",\n\t\t\t\t\"itemdef\":
|
|
2178
|
+
15932\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 QC\",\n\t\t\t\t\"leagueid\":
|
|
2179
|
+
1325,\n\t\t\t\t\"description\": \"The Dota 2 QC league puts amateur teams
|
|
2180
|
+
against each other allowing a platform for upcoming talents to showcase themselves.\",\n\t\t\t\t\"tournament_url\":
|
|
2181
|
+
\"http://www.dota2quebec.com/\",\n\t\t\t\t\"itemdef\": 15933\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2182
|
+
\"Japan Dota Cup\",\n\t\t\t\t\"leagueid\": 1528,\n\t\t\t\t\"description\":
|
|
2183
|
+
\"Amateur teams in Japan compete to become champions of the first Japan Dota
|
|
2184
|
+
Cup!\",\n\t\t\t\t\"tournament_url\": \"\",\n\t\t\t\t\"itemdef\": 15934\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2185
|
+
\"Spanish Dota 2 Pro Series Finals\",\n\t\t\t\t\"leagueid\": 1489,\n\t\t\t\t\"description\":
|
|
2186
|
+
\"The finals of the Dota 2 Pro Series are the biggest event of Dota 2 in Spain.
|
|
2187
|
+
The live event will take place in Madrid from June 27th-29th.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2188
|
+
\"http://www.proleague.es/\",\n\t\t\t\t\"itemdef\": 15935\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2189
|
+
\"Dota 2 Cup Season 3\",\n\t\t\t\t\"leagueid\": 1517,\n\t\t\t\t\"description\":
|
|
2190
|
+
\"Dota 2 Cup returns with amateur and semi-pro tournaments for Europe, played
|
|
2191
|
+
over the course of one month. Teams compete for cash prizes in our 5v5 and
|
|
2192
|
+
1v1 Tournaments.\",\n\t\t\t\t\"tournament_url\": \"http://dota2cup.com/\",\n\t\t\t\t\"itemdef\":
|
|
2193
|
+
15936\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Battle Arena Tournament\",\n\t\t\t\t\"leagueid\":
|
|
2194
|
+
1643,\n\t\t\t\t\"description\": \"The Battle Arena Tournament is an invite
|
|
2195
|
+
only league. Some of the top amateur teams from around Europe battle for the
|
|
2196
|
+
€200 prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://www.battlearena.es/\",\n\t\t\t\t\"itemdef\":
|
|
2197
|
+
15937\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Latino Cup Season 2\",\n\t\t\t\t\"leagueid\":
|
|
2198
|
+
1616,\n\t\t\t\t\"description\": \"Dota 2 Latino enters its second season with
|
|
2199
|
+
support from DreamLive TV and will feature 32 Latin American teams competing
|
|
2200
|
+
for a grand prize of $300!\",\n\t\t\t\t\"tournament_url\": \"http://dota2latino.com/\",\n\t\t\t\t\"itemdef\":
|
|
2201
|
+
15938\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Canada Cup Season 3 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2202
|
+
1493,\n\t\t\t\t\"description\": \"The Canada Cup is back! Featuring some of
|
|
2203
|
+
the finest teams from North and South America. This ticket only gives you
|
|
2204
|
+
access to view games from the Dota 2 Canada Cup Season 3.\",\n\t\t\t\t\"tournament_url\":
|
|
2205
|
+
\"http://www.dota2.ca/\",\n\t\t\t\t\"itemdef\": 15939\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2206
|
+
\"Gamersportperu Season 6\",\n\t\t\t\t\"leagueid\": 1592,\n\t\t\t\t\"description\":
|
|
2207
|
+
\"32 teams will compete in the sixth season of Gamersportperu with a prize
|
|
2208
|
+
pool of 2,000 Peruvian Nuevos!\",\n\t\t\t\t\"tournament_url\": \"http://www.gamersportperu.com/\",\n\t\t\t\t\"itemdef\":
|
|
2209
|
+
15940\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Balkan Challenger\",\n\t\t\t\t\"leagueid\":
|
|
2210
|
+
1608,\n\t\t\t\t\"description\": \"Dota 2 Serbia brings you the Balkan Challenger
|
|
2211
|
+
where teams from Europe will compete for a prize pool and Logitech Gaming
|
|
2212
|
+
Gear in value of $800!\",\n\t\t\t\t\"tournament_url\": \"http://dota2.rs/\",\n\t\t\t\t\"itemdef\":
|
|
2213
|
+
15941\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"KUL Gaming Cup\",\n\t\t\t\t\"leagueid\":
|
|
2214
|
+
1560,\n\t\t\t\t\"description\": \"The first KUL Gaming Cup has Balkan teams
|
|
2215
|
+
compete against each other for a prize!\",\n\t\t\t\t\"tournament_url\": \"http://www.kul-gamingcup.tk/\",\n\t\t\t\t\"itemdef\":
|
|
2216
|
+
15942\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"BenQ Southeast Asian Go4Dota2
|
|
2217
|
+
Cups\",\n\t\t\t\t\"leagueid\": 1566,\n\t\t\t\t\"description\": \"Dota 2 teams
|
|
2218
|
+
will get the chance to win as much as $750 every month. Go4Dota2 weekly cups
|
|
2219
|
+
occur every Sunday.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://go4dota2.com/\",\n\t\t\t\t\"itemdef\":
|
|
2220
|
+
15943\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Just For Fun 3\",\n\t\t\t\t\"leagueid\":
|
|
2221
|
+
1561,\n\t\t\t\t\"description\": \"Just For Fun pits 128 teams agains teach
|
|
2222
|
+
other competing for a prize of R$500!\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2jff.com/\",\n\t\t\t\t\"itemdef\":
|
|
2223
|
+
15944\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dotamax Cup\",\n\t\t\t\t\"leagueid\":
|
|
2224
|
+
1570,\n\t\t\t\t\"description\": \"Dotamax Cup contains 16 amateur teams competing
|
|
2225
|
+
for a prize pool of 2400 Yuan!\",\n\t\t\t\t\"tournament_url\": \"http://dotamax.com/league/max/\",\n\t\t\t\t\"itemdef\":
|
|
2226
|
+
15945\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Still Alive\",\n\t\t\t\t\"leagueid\":
|
|
2227
|
+
1568,\n\t\t\t\t\"description\": \"16 teams from the CIS meet in the tournament
|
|
2228
|
+
Still Alive and will fight for the prize of 100 rare items!\",\n\t\t\t\t\"tournament_url\":
|
|
2229
|
+
\"http://stillalivecup.3dn.ru/\",\n\t\t\t\t\"itemdef\": 15946\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2230
|
+
\"Dota 2 Persian League\",\n\t\t\t\t\"leagueid\": 1574,\n\t\t\t\t\"description\":
|
|
2231
|
+
\"16 best teams compete in the first Dota 2 Persian League for a prize pool
|
|
2232
|
+
of $200!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2persian.ir/\",\n\t\t\t\t\"itemdef\":
|
|
2233
|
+
15947\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SDL 2014 Season 3\",\n\t\t\t\t\"leagueid\":
|
|
2234
|
+
1654,\n\t\t\t\t\"description\": \"32 teams from South America will compete
|
|
2235
|
+
for a prize pool of R$2,000 in the third season of the SDL!\",\n\t\t\t\t\"tournament_url\":
|
|
2236
|
+
\"http://www.shigueoleague.com/\",\n\t\t\t\t\"itemdef\": 15953\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2237
|
+
\"Stella Champ Season 2\",\n\t\t\t\t\"leagueid\": 1577,\n\t\t\t\t\"description\":
|
|
2238
|
+
\"Amateur teams in CIS countries will compete for a prize pool of 1600 Hryvnia!\",\n\t\t\t\t\"tournament_url\":
|
|
2239
|
+
\"http://stella-champ.jimdo.com/\",\n\t\t\t\t\"itemdef\": 15954\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2240
|
+
\"D2LPR Season 1\",\n\t\t\t\t\"leagueid\": 1579,\n\t\t\t\t\"description\":
|
|
2241
|
+
\"Sixteen teams compete in the first D2LPR for a cash prize!\",\n\t\t\t\t\"tournament_url\":
|
|
2242
|
+
\"http://d2lpr.do.am/\",\n\t\t\t\t\"itemdef\": 15955\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2243
|
+
\"PKDota presents The Inaugural\",\n\t\t\t\t\"leagueid\": 1565,\n\t\t\t\t\"description\":
|
|
2244
|
+
\"20 of Pakistan's best teams will face off to claim items as the prize!\",\n\t\t\t\t\"tournament_url\":
|
|
2245
|
+
\"http://www.pkdota.com/forums/Thread-PK-Dota-s-The-Inaugural-5-v-5-dota-2-tournament-Details-inside\",\n\t\t\t\t\"itemdef\":
|
|
2246
|
+
15956\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"CEVO Season 5 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2247
|
+
1587,\n\t\t\t\t\"description\": \"CEVO Season 5 is a North American Pro-Am
|
|
2248
|
+
event where teams compete in an 8-week regular season, followed by Playoffs
|
|
2249
|
+
for over $1,000 and the chance to advance to higher skill divisions in future
|
|
2250
|
+
seasons. This ticket only gives you access to view games from CEVO Season
|
|
2251
|
+
5.\",\n\t\t\t\t\"tournament_url\": \"http://cevo.com/event/dota2/?tg=105\",\n\t\t\t\t\"itemdef\":
|
|
2252
|
+
15957\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Torneos Dota Latino Season 2\",\n\t\t\t\t\"leagueid\":
|
|
2253
|
+
1465,\n\t\t\t\t\"description\": \"64 teams from South America will compete
|
|
2254
|
+
in the second season of the TDL for a prize pool of $450!\",\n\t\t\t\t\"tournament_url\":
|
|
2255
|
+
\"http://www.torneosdotalatino.com/\",\n\t\t\t\t\"itemdef\": 15958\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2256
|
+
\"D2L Western Challenge - No Contribution\",\n\t\t\t\t\"leagueid\": 1135,\n\t\t\t\t\"description\":
|
|
2257
|
+
\"Eight of the world's best Dota 2 teams from the west return to the D2L for
|
|
2258
|
+
over $50,000!\",\n\t\t\t\t\"tournament_url\": \"http://www.d2l.gg/\",\n\t\t\t\t\"itemdef\":
|
|
2259
|
+
15959\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Aiyou Joy League\",\n\t\t\t\t\"leagueid\":
|
|
2260
|
+
1601,\n\t\t\t\t\"description\": \"The Aiyou Joy League is a free league to
|
|
2261
|
+
spectate event where all players are encouraged to participate!\",\n\t\t\t\t\"tournament_url\":
|
|
2262
|
+
\"http://g.aiyou.com/dota2\",\n\t\t\t\t\"itemdef\": 15960\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2263
|
+
\"Dota 2 Champion's League Season 2 Ticket - No Contribution\",\n\t\t\t\t\"leagueid\":
|
|
2264
|
+
196,\n\t\t\t\t\"description\": \"Champions League Season 2 will feature 10
|
|
2265
|
+
top teams from Europe and North America fighting for $50,000! This ticket
|
|
2266
|
+
only gives you access to view games in the Dota 2 Champion's League.\",\n\t\t\t\t\"tournament_url\":
|
|
2267
|
+
\"http://www.d2cl.org/\",\n\t\t\t\t\"itemdef\": 15961\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2268
|
+
\"World Esports Championship\",\n\t\t\t\t\"leagueid\": 1663,\n\t\t\t\t\"description\":
|
|
2269
|
+
\"The World Esport Championships 2014 is a professional e-sports tournament
|
|
2270
|
+
organized by D8TV. The Grand Finals will take place in the city of Hangzhou,
|
|
2271
|
+
China and teams will compete for a prize pool over $150,000.\",\n\t\t\t\t\"tournament_url\":
|
|
2272
|
+
\"http://wec.d8tv.com/\",\n\t\t\t\t\"itemdef\": 15963\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2273
|
+
\"NADota Elite League August\",\n\t\t\t\t\"leagueid\": 1667,\n\t\t\t\t\"description\":
|
|
2274
|
+
\"The most talented players in North America compete in the classic inhouse
|
|
2275
|
+
league format for four weeks.\",\n\t\t\t\t\"tournament_url\": \"http://neodota.com/nel\",\n\t\t\t\t\"itemdef\":
|
|
2276
|
+
15964\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Ossetia Open Cup Season 1\",\n\t\t\t\t\"leagueid\":
|
|
2277
|
+
1673,\n\t\t\t\t\"description\": \"Teams will compete in the first Ossetia
|
|
2278
|
+
Open Cup for a prize pool of 50,000 Rubles!\",\n\t\t\t\t\"tournament_url\":
|
|
2279
|
+
\"http://ossetianopencup.besaba.com/\",\n\t\t\t\t\"itemdef\": 15965\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2280
|
+
\"Inter-Cafe Championship - Powered by Logitech G\",\n\t\t\t\t\"leagueid\":
|
|
2281
|
+
1658,\n\t\t\t\t\"description\": \"The Inter-Cafe Championship will take 10
|
|
2282
|
+
cafes from India to participate in qualifiers. The winners from the qualifiers
|
|
2283
|
+
will take part in the grand finals on September 27-28th for 50,000 INR and
|
|
2284
|
+
Logitech Gaming Gear!\",\n\t\t\t\t\"tournament_url\": \"http://forum.esports.co.in/\",\n\t\t\t\t\"itemdef\":
|
|
2285
|
+
15966\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Prime DX Dota 2 Master Tournament\",\n\t\t\t\t\"leagueid\":
|
|
2286
|
+
1683,\n\t\t\t\t\"description\": \"The third series of DX Indonesia Dota 2
|
|
2287
|
+
Tournament. The tournament consists of 16 top teams in Indonesia and will
|
|
2288
|
+
compete for $1000 prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://forum.esportsprime.com/threads/the-prime-dx-master-dota-2-tournament-iespa.573/\",\n\t\t\t\t\"itemdef\":
|
|
2289
|
+
15967\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Battle 4 Arcana\",\n\t\t\t\t\"leagueid\":
|
|
2290
|
+
1671,\n\t\t\t\t\"description\": \"Battle 4 Arcana is an online tournament
|
|
2291
|
+
where winners get in game items worth $200 as a prize!\",\n\t\t\t\t\"tournament_url\":
|
|
2292
|
+
\"http://netzonegaming.com/rd2l/battle4arcana\",\n\t\t\t\t\"itemdef\": 15968\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2293
|
+
\"Gladius Dota 2\",\n\t\t\t\t\"leagueid\": 1814,\n\t\t\t\t\"description\":
|
|
2294
|
+
\"South American teams compete in Gladius for $150!\",\n\t\t\t\t\"tournament_url\":
|
|
2295
|
+
\"http://austin-p-k.wix.com/tgd2\",\n\t\t\t\t\"itemdef\": 15969\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2296
|
+
\"Korea Dota League Tier 3 Season 3\",\n\t\t\t\t\"leagueid\": 1670,\n\t\t\t\t\"description\":
|
|
2297
|
+
\"Dota 2 KDL Tier 3 is composed of AMD Dota 2 Amateur League and PC bang League.
|
|
2298
|
+
The best teams in Tier 3 leagues will receive KDL Tier points and have chance
|
|
2299
|
+
to advance to Tier 2.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.nexon.com/League/KDL/KDL_Season3_01.aspx\",\n\t\t\t\t\"itemdef\":
|
|
2300
|
+
15970\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Korea Dota League Season 3 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2301
|
+
1669,\n\t\t\t\t\"description\": \"Nexon presents the third season of KDL with
|
|
2302
|
+
SpotTV and KeSPA. Newly promoted teams have joined each respective tier. The
|
|
2303
|
+
KDL will span four seasons with a total of KRW 650 million (USD $605,000)
|
|
2304
|
+
prize pool. Watch the very second season of its kind featuring the top 10
|
|
2305
|
+
teams in tier 1 and 2! This ticket only gives you access to view games from
|
|
2306
|
+
the Korea Dota League Season 3.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.nexon.com/\",\n\t\t\t\t\"itemdef\":
|
|
2307
|
+
15971\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"UCL Moscow Cup\",\n\t\t\t\t\"leagueid\":
|
|
2308
|
+
1637,\n\t\t\t\t\"description\": \"Students from varies universities in Moscow
|
|
2309
|
+
will compete in the first season of the University Cyber League for 50,000
|
|
2310
|
+
Rubles!\",\n\t\t\t\t\"tournament_url\": \"http://unileague.ru/\",\n\t\t\t\t\"itemdef\":
|
|
2311
|
+
15972\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GrossuCup Season 1\",\n\t\t\t\t\"leagueid\":
|
|
2312
|
+
1655,\n\t\t\t\t\"description\": \"Teams from South America will compete in
|
|
2313
|
+
the first season of the GrossuCup for a prize pool of $450!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2314
|
+
\"http://www.grossugamers.com/\",\n\t\t\t\t\"itemdef\": 15973\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2315
|
+
\"GEMplay Challenge Season 2\",\n\t\t\t\t\"leagueid\": 1701,\n\t\t\t\t\"description\":
|
|
2316
|
+
\"GEMplay Challenge Season 2 puts the best teams from the Balkan region against
|
|
2317
|
+
each other for 2000 Euros!\",\n\t\t\t\t\"tournament_url\": \"http://www.gemplay.mk/\",\n\t\t\t\t\"itemdef\":
|
|
2318
|
+
15974\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"OnArt Cup\",\n\t\t\t\t\"leagueid\":
|
|
2319
|
+
1713,\n\t\t\t\t\"description\": \"The first OnArt Cup will have 64 teams divided
|
|
2320
|
+
into 16 groups fighting for a prize pool of R$ 4.000,00!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2321
|
+
\"http://www.boradota.com/\",\n\t\t\t\t\"itemdef\": 15975\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2322
|
+
\"Indonesia Game Show 2014 Dota 2 Tournament\",\n\t\t\t\t\"leagueid\": 1672,\n\t\t\t\t\"description\":
|
|
2323
|
+
\"The Indonesia Game Show hosts a Dota 2 tournament where the prize pool is
|
|
2324
|
+
$600 and the champion of this tournament will represent Indonesia in IeSF
|
|
2325
|
+
Asia Championshiop Cebu 2014.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://ligagame.com/esports/index.php?threads/indonesia-game-show-dota-2-tournament.45/\",\n\t\t\t\t\"itemdef\":
|
|
2326
|
+
15976\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Aorus Corsair Dota 2 Clash by
|
|
2327
|
+
NGL\",\n\t\t\t\t\"leagueid\": 1728,\n\t\t\t\t\"description\": \"The Aorus
|
|
2328
|
+
Corsair Dota 2 Clash hosted by the NAG Gaming League is 4 online qualifiers
|
|
2329
|
+
followed by the LAN Grand Final at Africa's Biggest Gaming Expo and LAN!\",\n\t\t\t\t\"tournament_url\":
|
|
2330
|
+
\"http://www.nagleague.co.za/\",\n\t\t\t\t\"itemdef\": 15977\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2331
|
+
\"SCL New Star Tournament\",\n\t\t\t\t\"leagueid\": 1702,\n\t\t\t\t\"description\":
|
|
2332
|
+
\"The new tournament from the Star Cloud League. The event is 4 weeks of Dota
|
|
2333
|
+
matches at 2 skill levels!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://www.star-cloud-league.com/\",\n\t\t\t\t\"itemdef\":
|
|
2334
|
+
15978\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"CZ-SK Dota 2 League Season 2
|
|
2335
|
+
Ticket\",\n\t\t\t\t\"leagueid\": 1708,\n\t\t\t\t\"description\": \"The second
|
|
2336
|
+
season of Czech-Slovakia league will take place over a two months period.
|
|
2337
|
+
The winner will receive prize money upon victory! This ticket only gives you
|
|
2338
|
+
access to viewing games from the CZ-SK Dota 2 League Season 2 event.\",\n\t\t\t\t\"tournament_url\":
|
|
2339
|
+
\"http://www.dota2league.cz/\",\n\t\t\t\t\"itemdef\": 15979\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2340
|
+
\"Flux Dota 2 Tournament\",\n\t\t\t\t\"leagueid\": 1722,\n\t\t\t\t\"description\":
|
|
2341
|
+
\"Flux Dota 2 Tournament is a Dota 2 Competition consisting of 64 teams competing
|
|
2342
|
+
for a prize pool of over $950!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://www.maindota2.com/sekilas-esport/flux-dota-2-tournament/\",\n\t\t\t\t\"itemdef\":
|
|
2343
|
+
15980\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The /vg/ Masters\",\n\t\t\t\t\"leagueid\":
|
|
2344
|
+
1345,\n\t\t\t\t\"description\": \"An amateur league in which teams from 4chan's
|
|
2345
|
+
/vg/ board face off against each other to see who is the ultimate champion
|
|
2346
|
+
of the /vg/ dota community!\",\n\t\t\t\t\"tournament_url\": \"http://thevgmasters.com/\",\n\t\t\t\t\"itemdef\":
|
|
2347
|
+
15981\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Community Crackdown Tournament
|
|
2348
|
+
#2\",\n\t\t\t\t\"leagueid\": 1399,\n\t\t\t\t\"description\": \"The Community
|
|
2349
|
+
Crackdown Tournament #2 is a community driven tournament for amateur teams
|
|
2350
|
+
in New Zealand.\",\n\t\t\t\t\"tournament_url\": \"http://aspectofgaming.co.nz/d2cc2-tournament/\",\n\t\t\t\t\"itemdef\":
|
|
2351
|
+
15982\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Kings of LAN\",\n\t\t\t\t\"leagueid\":
|
|
2352
|
+
1734,\n\t\t\t\t\"description\": \"Game Edge hosts the Kings of LAN in Sri
|
|
2353
|
+
Lanka. Amateur teams will compete for a prize!\",\n\t\t\t\t\"tournament_url\":
|
|
2354
|
+
\"http://gamer.lk/index.php/topic,25927.0.html\",\n\t\t\t\t\"itemdef\": 15983\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2355
|
+
\"CSPL: Dota 2 Pro League\",\n\t\t\t\t\"leagueid\": 1699,\n\t\t\t\t\"description\":
|
|
2356
|
+
\"The first season of the CSPL Dota 2 Pro League has top players from Russia
|
|
2357
|
+
compete to become champions!\",\n\t\t\t\t\"tournament_url\": \"http://cspl.ru/index.php?ind=mixes&type=dota2\",\n\t\t\t\t\"itemdef\":
|
|
2358
|
+
15984\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Top Europe Challenge Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2359
|
+
1693,\n\t\t\t\t\"description\": \"The Top Europe Challenge is a round robin
|
|
2360
|
+
tournament featuring professional teams from Europe competing for a prize
|
|
2361
|
+
pool of $1,000! This ticket only gives you access to view games from the Top
|
|
2362
|
+
Europe Challenge.\",\n\t\t\t\t\"tournament_url\": \"http://dota2pot.com/top-europe-challenge/\",\n\t\t\t\t\"itemdef\":
|
|
2363
|
+
15985\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"i league Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2364
|
+
1709,\n\t\t\t\t\"description\": \"IMBATV present a new league where amateur
|
|
2365
|
+
teams are able to compete with top teams from all over the world. The best
|
|
2366
|
+
teams from the amateur tournament will face the professional team. In the
|
|
2367
|
+
final stage the top 8 teams will compete in Shanghai,China. This ticket only
|
|
2368
|
+
gives you access to view games from the i-League event.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2369
|
+
\"http://v.imbatv.cn/\",\n\t\t\t\t\"itemdef\": 15986\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2370
|
+
\"D2TV League Season 2\",\n\t\t\t\t\"leagueid\": 1733,\n\t\t\t\t\"description\":
|
|
2371
|
+
\"D2TV League Season 2 is an Amateur League where 16 teams will compete for
|
|
2372
|
+
a prize of 1000 Yuan. \",\n\t\t\t\t\"tournament_url\": \"http://www.dbdota2.com/forum.php?gid=42\",\n\t\t\t\t\"itemdef\":
|
|
2373
|
+
15987\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"NADota Elite League September\",\n\t\t\t\t\"leagueid\":
|
|
2374
|
+
1800,\n\t\t\t\t\"description\": \"The most talented players in North America
|
|
2375
|
+
compete in the classic in-house league format for four weeks.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2376
|
+
\"http://neodota.com/nel\",\n\t\t\t\t\"itemdef\": 15988\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2377
|
+
\"VPGAME\",\n\t\t\t\t\"leagueid\": 1751,\n\t\t\t\t\"description\": \"The purpose
|
|
2378
|
+
of the VP gambling tournament is to increase the cooperation between VP games
|
|
2379
|
+
and Dota 2 in order for users to casually enjoy the game of Dota 2 through
|
|
2380
|
+
the format of a tournament.\",\n\t\t\t\t\"tournament_url\": \"http://www.vpgame.com/topic/tieba\",\n\t\t\t\t\"itemdef\":
|
|
2381
|
+
15989\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Golden Esports League Season
|
|
2382
|
+
2\",\n\t\t\t\t\"leagueid\": 1755,\n\t\t\t\t\"description\": \"The top Swedish
|
|
2383
|
+
teams compete over 3 months for 30,000 SEK!\",\n\t\t\t\t\"tournament_url\":
|
|
2384
|
+
\"http://www.goldenesports.com/\",\n\t\t\t\t\"itemdef\": 15990\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2385
|
+
\"ASUS ROG Insomnia52 Dota 2 Cup\",\n\t\t\t\t\"leagueid\": 1748,\n\t\t\t\t\"description\":
|
|
2386
|
+
\"Insomnia52 hosts their biggest Dota 2 tournament of the year: the ASUS ROG
|
|
2387
|
+
Dota 2 Cup. Teams from across Europe will compete at the UKâ\x80\x99s biggest
|
|
2388
|
+
gaming festival, bringing you three full days of heated action culminating
|
|
2389
|
+
in a Main Stage Final. With £6,500 on the line, each team will be pulling
|
|
2390
|
+
out all the stops to be crowned the greatest Dota 2 team in Britain.\",\n\t\t\t\t\"tournament_url\":
|
|
2391
|
+
\"http://insomniagamingfestival.com/i52/tournaments/event-byoc/dota2/\",\n\t\t\t\t\"itemdef\":
|
|
2392
|
+
15991\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"PAGE Esports Club League\",\n\t\t\t\t\"leagueid\":
|
|
2393
|
+
1775,\n\t\t\t\t\"description\": \"PAGE Esports Club League is the Indonesia's
|
|
2394
|
+
national Dota 2 league where teams will compete for a total prize of $600!\",\n\t\t\t\t\"tournament_url\":
|
|
2395
|
+
\"http://www.maindota2.com/pecl/\",\n\t\t\t\t\"itemdef\": 15992\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2396
|
+
\"Liga Dotera Venezolana\",\n\t\t\t\t\"leagueid\": 1736,\n\t\t\t\t\"description\":
|
|
2397
|
+
\"16 teams compete in this league in a round robin format for items and a
|
|
2398
|
+
prize!\",\n\t\t\t\t\"tournament_url\": \"http://www.cdven.com.ve/torneos/ldv3.php\",\n\t\t\t\t\"itemdef\":
|
|
2399
|
+
15993\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Semipro Cup Series Season 52\",\n\t\t\t\t\"leagueid\":
|
|
2400
|
+
1774,\n\t\t\t\t\"description\": \"The Semipro Cup Series are cash prize tournaments
|
|
2401
|
+
with open registration for North and South American teams.\",\n\t\t\t\t\"tournament_url\":
|
|
2402
|
+
\"http://semiprodota.com/\",\n\t\t\t\t\"itemdef\": 15994\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2403
|
+
\"D2INT Southeast Asia Dota 2 Cup\",\n\t\t\t\t\"leagueid\": 1878,\n\t\t\t\t\"description\":
|
|
2404
|
+
\"The D2INT Southeast Asia Dota 2 Cup invites all amateur players to face
|
|
2405
|
+
off against each other in eight qualifier matches to face professional and
|
|
2406
|
+
semi professional teams in the finals.\",\n\t\t\t\t\"tournament_url\": \"http://www.heliosesports.com/helios-esports-x-sea-dota-2-tournament/\",\n\t\t\t\t\"itemdef\":
|
|
2407
|
+
15995\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Excellent Moscow Cup Season
|
|
2408
|
+
2 Ticket\",\n\t\t\t\t\"leagueid\": 1761,\n\t\t\t\t\"description\": \"The top
|
|
2409
|
+
teams in the world compete for $60,000 in the Excellent Moscow Cup Season
|
|
2410
|
+
2! This ticket only gives you access to view games from the Excellent Moscow
|
|
2411
|
+
Cup Season 2 league.\",\n\t\t\t\t\"tournament_url\": \"http://emcup.tv/\",\n\t\t\t\t\"itemdef\":
|
|
2412
|
+
15997\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Electro Dota 2 League Season
|
|
2413
|
+
1\",\n\t\t\t\t\"leagueid\": 1796,\n\t\t\t\t\"description\": \"Sixteen teams
|
|
2414
|
+
compete from Russia and CIS countries for 3,200 Rubles!\",\n\t\t\t\t\"tournament_url\":
|
|
2415
|
+
\"http://electrodl.ru/\",\n\t\t\t\t\"itemdef\": 15998\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2416
|
+
\"ProveYourSkillz Tier 1: South America\",\n\t\t\t\t\"leagueid\": 1791,\n\t\t\t\t\"description\":
|
|
2417
|
+
\"ProveYourSkillz is a free to watch and free to play league where teams compete
|
|
2418
|
+
for prizes.\",\n\t\t\t\t\"tournament_url\": \"http://proveyourskillz.com/\",\n\t\t\t\t\"itemdef\":
|
|
2419
|
+
15999\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"CSPL: Dota 2 League Season 2\",\n\t\t\t\t\"leagueid\":
|
|
2420
|
+
1650,\n\t\t\t\t\"description\": \"The second season of the CSPL Dota 2 League
|
|
2421
|
+
continues where more than a thousand different players will fight for a prize
|
|
2422
|
+
and the title of champion!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://cspl.ru/index.php?ind=mixes&type=dota2\",\n\t\t\t\t\"itemdef\":
|
|
2423
|
+
16000\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Barganizer Online Tournament\",\n\t\t\t\t\"leagueid\":
|
|
2424
|
+
1805,\n\t\t\t\t\"description\": \"The first online tournament organized by
|
|
2425
|
+
Barganizer for amateur teams to compete from Indonesia!\",\n\t\t\t\t\"tournament_url\":
|
|
2426
|
+
\"http://barganizer.net/\",\n\t\t\t\t\"itemdef\": 16001\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2427
|
+
\"MSI Southeast Asian Dragon Battle\",\n\t\t\t\t\"leagueid\": 1839,\n\t\t\t\t\"description\":
|
|
2428
|
+
\"The Southeast Asian Dragon Battle features the best teams in Southeast Asia
|
|
2429
|
+
competing for $3,000!. This event is sponsored by MSI and Adata.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2430
|
+
\"http://seadragonbattle.com/\",\n\t\t\t\t\"itemdef\": 16002\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2431
|
+
\"SLTV Star Series Season 10 Ticket\",\n\t\t\t\t\"leagueid\": 1803,\n\t\t\t\t\"description\":
|
|
2432
|
+
\"This October marks the 10th anniversary of Starladder's original Star Series.
|
|
2433
|
+
In Season 10, the world's strongest teams will face off and compete for the
|
|
2434
|
+
right to mark down their names in the history books as champions. This ticket
|
|
2435
|
+
only gives you access to view games from SLTV Star Series Season 10.\",\n\t\t\t\t\"tournament_url\":
|
|
2436
|
+
\"http://dota2.starladder.tv/\",\n\t\t\t\t\"itemdef\": 16003\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2437
|
+
\"Dota 2 Champion's League Season 4 Ticket\",\n\t\t\t\t\"leagueid\": 1712,\n\t\t\t\t\"description\":
|
|
2438
|
+
\"The Dota 2 Champion's League is back with Season 4! The top teams will compete
|
|
2439
|
+
for $50,000 plus $2.50 from each bundle sold! This ticket only gives you access
|
|
2440
|
+
to view games from Dota 2 Champion's League Season 4.\",\n\t\t\t\t\"tournament_url\":
|
|
2441
|
+
\"http://d2cl.org/\",\n\t\t\t\t\"itemdef\": 16004\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2442
|
+
\"Dota Regions\",\n\t\t\t\t\"leagueid\": 1674,\n\t\t\t\t\"description\": \"Dota
|
|
2443
|
+
Regions is a tournament where 16 top semi-pro/pro teams compete for a $1,500
|
|
2444
|
+
cash prize!\",\n\t\t\t\t\"tournament_url\": \"http://www.dotaregions.com/\",\n\t\t\t\t\"itemdef\":
|
|
2445
|
+
16005\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ElPadrinoth American Cup\",\n\t\t\t\t\"leagueid\":
|
|
2446
|
+
1735,\n\t\t\t\t\"description\": \"Six professional and Ten qualifying teams
|
|
2447
|
+
will fight for the $2000 prize pool. The ElPadrinoth American Cup is the second
|
|
2448
|
+
ElPadrinoth League following up the Latin Cup but now extends the qualifier
|
|
2449
|
+
to all of America.\",\n\t\t\t\t\"tournament_url\": \"http://elpadrinoth.com/torneos/\",\n\t\t\t\t\"itemdef\":
|
|
2450
|
+
16006\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"2014 National Electronic Sports
|
|
2451
|
+
Tournament Ticket\",\n\t\t\t\t\"leagueid\": 1523,\n\t\t\t\t\"description\":
|
|
2452
|
+
\"The 2014 National Electronic Sports Tournament has 16 teams compete in a
|
|
2453
|
+
qualifying round where one of them will go to an 8 team grand final for a
|
|
2454
|
+
$160,000 prize pool! This ticket only gives you access to view games from
|
|
2455
|
+
the 2014 National Electronic Sports Tournament!\",\n\t\t\t\t\"tournament_url\":
|
|
2456
|
+
\"http://nest.sports.cn/\",\n\t\t\t\t\"itemdef\": 16007\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2457
|
+
\"PinoyDota Online Battle Season 3\",\n\t\t\t\t\"leagueid\": 1818,\n\t\t\t\t\"description\":
|
|
2458
|
+
\"PinoyDota Online Battle is back! Now on its 3rd season seven qualifying
|
|
2459
|
+
amateur teams will face the defending champion MSI-EvoGT.TRIC for a P40,000
|
|
2460
|
+
prize pool!\",\n\t\t\t\t\"tournament_url\": \"http://www.pinoydota.net/online-battle-season-3\",\n\t\t\t\t\"itemdef\":
|
|
2461
|
+
16008\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"CS KMUTT Dota 2 League\",\n\t\t\t\t\"leagueid\":
|
|
2462
|
+
1820,\n\t\t\t\t\"description\": \"This is a free to spectate league for the
|
|
2463
|
+
Computer Science department at KMUTT University.\",\n\t\t\t\t\"tournament_url\":
|
|
2464
|
+
\"http://challonge.com/CS_KMUTT_Dota2_League\",\n\t\t\t\t\"itemdef\": 16009\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2465
|
+
\"Megalodon Starters League Season 1\",\n\t\t\t\t\"leagueid\": 1741,\n\t\t\t\t\"description\":
|
|
2466
|
+
\"Teams participate in the first season of the Megalodon Starters League for
|
|
2467
|
+
cash and hardware prizes!\",\n\t\t\t\t\"tournament_url\": \"http://www.megalodongaming.com/megalodon-starters-league/\",\n\t\t\t\t\"itemdef\":
|
|
2468
|
+
16010\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Translational\",\n\t\t\t\t\"leagueid\":
|
|
2469
|
+
1842,\n\t\t\t\t\"description\": \"A free to spectate yearly tournament organized
|
|
2470
|
+
with the help of the volunteer translators on Steam Translation.\",\n\t\t\t\t\"tournament_url\":
|
|
2471
|
+
\"http://translation.steampowered.com/tt14.php\",\n\t\t\t\t\"itemdef\": 16011\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2472
|
+
\"KESL Season 1\",\n\t\t\t\t\"leagueid\": 1849,\n\t\t\t\t\"description\":
|
|
2473
|
+
\"Turkish E-sports scene reveils the first season of the KONTAKT Electronic
|
|
2474
|
+
Sports League where teams will battle for a $4000 prize pool.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2475
|
+
\"http://kesl.tv/season1/dota2/\",\n\t\t\t\t\"itemdef\": 16012\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2476
|
+
\"VietDOTA League Season 2\",\n\t\t\t\t\"leagueid\": 1846,\n\t\t\t\t\"description\":
|
|
2477
|
+
\"VietDOTA League Season 2 is an online tournament that contains of three
|
|
2478
|
+
tiers: Premier League, Amateur League and Girl Dota Showmatch. All compete
|
|
2479
|
+
for a prize pool of $1000!\",\n\t\t\t\t\"tournament_url\": \"http://dota2shop.vn/vdleague2/\",\n\t\t\t\t\"itemdef\":
|
|
2480
|
+
16013\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Japan Dota Cup #2\",\n\t\t\t\t\"leagueid\":
|
|
2481
|
+
1859,\n\t\t\t\t\"description\": \"Teams from Japan will compete in the second
|
|
2482
|
+
Japan Dota Cup to become champions!\",\n\t\t\t\t\"tournament_url\": \"http://japandota.com/tournament/\",\n\t\t\t\t\"itemdef\":
|
|
2483
|
+
16014\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Persian Gulf Cup Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2484
|
+
1706,\n\t\t\t\t\"description\": \"The Persian Gulf Cup pits the best teams
|
|
2485
|
+
from the Persian Gulf region against each other for a prize pool of $1000!
|
|
2486
|
+
This ticket only gives you access to view games from the Persian Gulf Cup.\",\n\t\t\t\t\"tournament_url\":
|
|
2487
|
+
\"http://dota2persian.ir/\",\n\t\t\t\t\"itemdef\": 16015\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2488
|
+
\"ESL One New York 2014\",\n\t\t\t\t\"leagueid\": 1886,\n\t\t\t\t\"description\":
|
|
2489
|
+
\"On the 9th and 10th of October, ESL will be transforming the Theatre at
|
|
2490
|
+
Madison Square Garden into the place to be for Dota fans from all over the
|
|
2491
|
+
world. The event will feature eight teams from three different regions. 4
|
|
2492
|
+
European, 3 North American and one Chinese team will make their way through
|
|
2493
|
+
the qualifiers and secure themselves a spot for the finals in New York!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2494
|
+
\"http://www.esl-one.com/dota2/new-york-2014/\",\n\t\t\t\t\"itemdef\": 16017\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2495
|
+
\"Rise of the Myrimidons\",\n\t\t\t\t\"leagueid\": 1764,\n\t\t\t\t\"description\":
|
|
2496
|
+
\"Hungarian teams compete to receive a sponsorship and a $1500 prize pool!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2497
|
+
\"http://doclermyrmidons.com/\",\n\t\t\t\t\"itemdef\": 16018\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2498
|
+
\"Bulgarian Amateur League Season 3\",\n\t\t\t\t\"leagueid\": 1868,\n\t\t\t\t\"description\":
|
|
2499
|
+
\"This is the third season for the Bulgarian Amateur League. It's an open
|
|
2500
|
+
league with up to 50 teams competing for a prize.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2501
|
+
\"http://dota2-bg.net/tournament/BAL3\",\n\t\t\t\t\"itemdef\": 16019\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2502
|
+
\"Sina Cup Season 5\",\n\t\t\t\t\"leagueid\": 1869,\n\t\t\t\t\"description\":
|
|
2503
|
+
\"The fifth season of the Sina Cup has Chinese teams competing for a prize
|
|
2504
|
+
pool of 100,000 Yuan!\",\n\t\t\t\t\"tournament_url\": \"http://games.sina.com.cn/o/z/dota2/2014-08-20/1741565004.shtml\",\n\t\t\t\t\"itemdef\":
|
|
2505
|
+
16020\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Battle of Central Europe Season
|
|
2506
|
+
2\",\n\t\t\t\t\"leagueid\": 1757,\n\t\t\t\t\"description\": \"In the Battle
|
|
2507
|
+
of Central Europe 64 registered teams compete to qualify with 8 invited teams
|
|
2508
|
+
for a $500 prize pool!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://dota2leagues.eu/boce\",\n\t\t\t\t\"itemdef\":
|
|
2509
|
+
16021\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"European Elite League September\",\n\t\t\t\t\"leagueid\":
|
|
2510
|
+
1875,\n\t\t\t\t\"description\": \"The most talented players in Europe compete
|
|
2511
|
+
in the classic inhouse league format for four weeks.\",\n\t\t\t\t\"tournament_url\":
|
|
2512
|
+
\"http://neodota.com/eel/\",\n\t\t\t\t\"itemdef\": 16022\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2513
|
+
\"E-Spot Dota 2 Challenge\",\n\t\t\t\t\"leagueid\": 1864,\n\t\t\t\t\"description\":
|
|
2514
|
+
\"The E-Spot Dota 2 Challenge is a tournament consisting of 16 teams which
|
|
2515
|
+
compete for a prize pool of 160 Euros!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2516
|
+
\"http://www.e-spotd2c.com/\",\n\t\t\t\t\"itemdef\": 16023\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2517
|
+
\"Game Show Dota 2 League\",\n\t\t\t\t\"leagueid\": 1887,\n\t\t\t\t\"description\":
|
|
2518
|
+
\"On 11-13 September six European teams will compete for the prize pool of
|
|
2519
|
+
$50,000. The tournament will be casted in six languages. Final matches will
|
|
2520
|
+
be played at DreamHack Moscow.\",\n\t\t\t\t\"tournament_url\": \"http://dreamhack.ru/\",\n\t\t\t\t\"itemdef\":
|
|
2521
|
+
16024\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Revival E-Sports Dota 2 Open
|
|
2522
|
+
Tournament\",\n\t\t\t\t\"leagueid\": 1893,\n\t\t\t\t\"description\": \"The
|
|
2523
|
+
first series of the Revival E-Sports Dota 2 Open Tournament featuring 32 amateur
|
|
2524
|
+
to semi-pro Indonesian teams who will complete for a prize pool of IDR 3,000,000.\",\n\t\t\t\t\"tournament_url\":
|
|
2525
|
+
\"http://www.revivalesports.com/\",\n\t\t\t\t\"itemdef\": 16025\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2526
|
+
\"SCL 1v1 Mirror Series\",\n\t\t\t\t\"leagueid\": 1750,\n\t\t\t\t\"description\":
|
|
2527
|
+
\"Are you the best? Show us your skills in the new 1v1 Mirror Series of the
|
|
2528
|
+
Star Cloud League.\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://www.star-cloud-league.com/\",\n\t\t\t\t\"itemdef\":
|
|
2529
|
+
16026\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"TP Anatolian Cup\",\n\t\t\t\t\"leagueid\":
|
|
2530
|
+
1905,\n\t\t\t\t\"description\": \"The first tournament in Turkey by dota2lig.com.There
|
|
2531
|
+
will be 8 teams from Turkey competing for a $500 prize pool!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2532
|
+
\"http://www.dota2lig.com/\",\n\t\t\t\t\"itemdef\": 16027\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2533
|
+
\"URUDota Cup Season 1\",\n\t\t\t\t\"leagueid\": 1937,\n\t\t\t\t\"description\":
|
|
2534
|
+
\"The best teams from South America will compete in the first URUDota Cup
|
|
2535
|
+
for a prize pool of $175!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://www.urudota.com/\",\n\t\t\t\t\"itemdef\":
|
|
2536
|
+
16028\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Lima Five Peru Season 6\",\n\t\t\t\t\"leagueid\":
|
|
2537
|
+
1935,\n\t\t\t\t\"description\": \"32 South American teams compete in the 6th
|
|
2538
|
+
season of the Lima Five Peru for a cash prize!\",\n\t\t\t\t\"tournament_url\":
|
|
2539
|
+
\"http://www.limafiveperu.com/\",\n\t\t\t\t\"itemdef\": 16029\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2540
|
+
\"Nvidia Game24 Invitational\",\n\t\t\t\t\"leagueid\": 1950,\n\t\t\t\t\"description\":
|
|
2541
|
+
\"Celebrate PC gaming with a 24 hour gaming extravaganza. Four of the best
|
|
2542
|
+
Western teams in the world fight it in in a single-elimination, best-of-five
|
|
2543
|
+
bracket all for $15,000!\",\n\t\t\t\t\"tournament_url\": \"http://game24.nvidia.com/#/info\",\n\t\t\t\t\"itemdef\":
|
|
2544
|
+
16030\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"UGC Dota 2 League\",\n\t\t\t\t\"leagueid\":
|
|
2545
|
+
1798,\n\t\t\t\t\"description\": \"Top teams and players in Season 2 will battle
|
|
2546
|
+
for up to a $2000 prize pool for our top skill divisions.\",\n\t\t\t\t\"tournament_url\":
|
|
2547
|
+
\"http://www.ugcleague.com/home_dota2.cfm\",\n\t\t\t\t\"itemdef\": 16031\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2548
|
+
\"OGSeries Dota 2 Online #1\",\n\t\t\t\t\"leagueid\": 1913,\n\t\t\t\t\"description\":
|
|
2549
|
+
\"Teams from Spain compete in the first OGSeries Dota 2 Online tournament
|
|
2550
|
+
for 250 Euros!\",\n\t\t\t\t\"tournament_url\": \"http://www.ogseries.tv/dota2/news/13/ogseries-dota-2-online-1/\",\n\t\t\t\t\"itemdef\":
|
|
2551
|
+
16032\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Champion's League Season
|
|
2552
|
+
3 Ticket - No Contribution\",\n\t\t\t\t\"leagueid\": 1068,\n\t\t\t\t\"description\":
|
|
2553
|
+
\"Champions League Season 2 will feature the top teams from Europe and North
|
|
2554
|
+
America fighting for $50,000! This ticket only gives you access to view games
|
|
2555
|
+
in the Dota 2 Champion's League Season 3.\",\n\t\t\t\t\"tournament_url\":
|
|
2556
|
+
\"http://d2cl.org/\",\n\t\t\t\t\"itemdef\": 16033\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2557
|
+
\"Crashgame League\",\n\t\t\t\t\"leagueid\": 1739,\n\t\t\t\t\"description\":
|
|
2558
|
+
\"16 Iranian teams will clash over the Price of $400 in the first Crashgame
|
|
2559
|
+
Tournament!\",\n\t\t\t\t\"tournament_url\": \"http://www.crashgame2.com/\",\n\t\t\t\t\"itemdef\":
|
|
2560
|
+
16035\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Battle of America\",\n\t\t\t\t\"leagueid\":
|
|
2561
|
+
1829,\n\t\t\t\t\"description\": \"In the Battle of America 64 registered teams
|
|
2562
|
+
will qualify to compete against 8 invited teams and fight to claim the $500
|
|
2563
|
+
prize pool!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://dota2leagues.eu/boa/\",\n\t\t\t\t\"itemdef\":
|
|
2564
|
+
16036\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"DOTA2PK Tournament Season 2\",\n\t\t\t\t\"leagueid\":
|
|
2565
|
+
1957,\n\t\t\t\t\"description\": \"Top teams of Pakistan battle it out to win
|
|
2566
|
+
a prize pool!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://dota2pk.com/\",\n\t\t\t\t\"itemdef\":
|
|
2567
|
+
16037\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GG Latin League\",\n\t\t\t\t\"leagueid\":
|
|
2568
|
+
1969,\n\t\t\t\t\"description\": \"Eight qualified teams will compete at a
|
|
2569
|
+
main event for more than $1500 in prizes!\",\n\t\t\t\t\"tournament_url\":
|
|
2570
|
+
\"http://www.ggstoreperu.com/#!gglatinleague/c9qb\",\n\t\t\t\t\"itemdef\":
|
|
2571
|
+
16038\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota Pit League Season 2 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2572
|
+
1942,\n\t\t\t\t\"description\": \"The top teams are going to compete against
|
|
2573
|
+
each other for $75,000. This ticket only gives you access to view games from
|
|
2574
|
+
Dota Pit Season 2.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotapit.com/\",\n\t\t\t\t\"itemdef\":
|
|
2575
|
+
16039\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Yard Red Festival\",\n\t\t\t\t\"leagueid\":
|
|
2576
|
+
1925,\n\t\t\t\t\"description\": \"The Yard Red Festival is the third charity
|
|
2577
|
+
event supporting the Red Cross. The best teams in Europe and CIS will compete
|
|
2578
|
+
for the $5,000 prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://progl.ru/yard_red_festival\",\n\t\t\t\t\"itemdef\":
|
|
2579
|
+
16040\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"BG-D2CB League Season 2\",\n\t\t\t\t\"leagueid\":
|
|
2580
|
+
1944,\n\t\t\t\t\"description\": \"This is the second season for the BG-D2CB
|
|
2581
|
+
League. The top teams from Bangladesh battle it out for the $650 prize pool.
|
|
2582
|
+
League is free to spectate but you can purchase to the ticket to show your
|
|
2583
|
+
support.\",\n\t\t\t\t\"tournament_url\": \"http://banglagamer.com/content.php\",\n\t\t\t\t\"itemdef\":
|
|
2584
|
+
16041\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota International Clan Wars
|
|
2585
|
+
- Season 1\",\n\t\t\t\t\"leagueid\": 1964,\n\t\t\t\t\"description\": \"This
|
|
2586
|
+
is an open tournament where teams from South-East Asia compete for over $150
|
|
2587
|
+
in in-game items.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotainternational.com/\",\n\t\t\t\t\"itemdef\":
|
|
2588
|
+
16042\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Eternal League Season 1\",\n\t\t\t\t\"leagueid\":
|
|
2589
|
+
1883,\n\t\t\t\t\"description\": \"This is the first season of the Eternal
|
|
2590
|
+
League where some of the best teams from Indonesia compete for the $400 prize
|
|
2591
|
+
pool.\",\n\t\t\t\t\"tournament_url\": \"http://dota2tourney.com/tourney/eternal/eternal.php\",\n\t\t\t\t\"itemdef\":
|
|
2592
|
+
16043\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Prime Dota 2 Tournament
|
|
2593
|
+
Season 1\",\n\t\t\t\t\"leagueid\": 1974,\n\t\t\t\t\"description\": \"The Prime
|
|
2594
|
+
is an Indoesia tournament that is open to everyone. Teams compete for the
|
|
2595
|
+
15 million Rupiah prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://www.maindota2.com/events/theprime-season-1/\",\n\t\t\t\t\"itemdef\":
|
|
2596
|
+
16044\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Barganizer Online Tournament
|
|
2597
|
+
Season 2\",\n\t\t\t\t\"leagueid\": 1978,\n\t\t\t\t\"description\": \"The second
|
|
2598
|
+
online tournament organized by Barganizer. 96 amateur teams from Indonesia
|
|
2599
|
+
compete for the $1200 prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://barganizer.net/\",\n\t\t\t\t\"itemdef\":
|
|
2600
|
+
16045\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Oem Dota Camp\",\n\t\t\t\t\"leagueid\":
|
|
2601
|
+
1971,\n\t\t\t\t\"description\": \"The top four teams from the region compete
|
|
2602
|
+
for the R$1,000 prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://www.megalodongaming.com/oem-dota-camp/\",\n\t\t\t\t\"itemdef\":
|
|
2603
|
+
16046\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Arsenal of Carpathians\",\n\t\t\t\t\"leagueid\":
|
|
2604
|
+
2002,\n\t\t\t\t\"description\": \"The Arsenal of Carpathians consists of the
|
|
2605
|
+
teams being split into two divisions. The top three teams move up to the top
|
|
2606
|
+
division and will compete for the £25,000 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2607
|
+
\"http://www.dota2.hu/aoc/index.php\",\n\t\t\t\t\"itemdef\": 16047\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2608
|
+
\"Master Gaming Series Dota 2 Tournament\",\n\t\t\t\t\"leagueid\": 1988,\n\t\t\t\t\"description\":
|
|
2609
|
+
\"This two-series tournament has the largest prize pool in Indonesia. The
|
|
2610
|
+
top teams from the region compete for the 100,000,000 IDR prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2611
|
+
\"http://qeon.co.id/news/detail/1856\",\n\t\t\t\t\"itemdef\": 16048\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2612
|
+
\"Mazoku League\",\n\t\t\t\t\"leagueid\": 1984,\n\t\t\t\t\"description\":
|
|
2613
|
+
\"Some of the best teams in South America face off to prove themselves as
|
|
2614
|
+
the best amateur team in the region.\",\n\t\t\t\t\"tournament_url\": \"http://www.grossugamers.com/grossu-gamers/dota-2/mazoku-league-por-grossu-gamers-season-1/\",\n\t\t\t\t\"itemdef\":
|
|
2615
|
+
16049\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"OGSeries Dota 2 Online Season
|
|
2616
|
+
2\",\n\t\t\t\t\"leagueid\": 2009,\n\t\t\t\t\"description\": \"Some of the
|
|
2617
|
+
top Spanish teams compete for the $250 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2618
|
+
\"http://www.ogseries.tv/dota2/\",\n\t\t\t\t\"itemdef\": 16050\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2619
|
+
\"Gigabyte Windforce Dota 2 Cup\",\n\t\t\t\t\"leagueid\": 2020,\n\t\t\t\t\"description\":
|
|
2620
|
+
\"The Gigabyte Windforce Cup features the best teams in South-East Asia competing
|
|
2621
|
+
for a total prize pool of $3,000.\",\n\t\t\t\t\"tournament_url\": \"http://dotatalk.com/windforcecup/\",\n\t\t\t\t\"itemdef\":
|
|
2622
|
+
16051\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"AD2L Season 5\",\n\t\t\t\t\"leagueid\":
|
|
2623
|
+
2040,\n\t\t\t\t\"description\": \"The 5th season of the Amateur Dota 2 League
|
|
2624
|
+
is an open league where players compete for in-game items.\",\n\t\t\t\t\"tournament_url\":
|
|
2625
|
+
\"http://amateurdota2league.com/\",\n\t\t\t\t\"itemdef\": 16052\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2626
|
+
\"Watch 4 Dota Tournament Season 2\",\n\t\t\t\t\"leagueid\": 2043,\n\t\t\t\t\"description\":
|
|
2627
|
+
\"The Watch 4 Dota Tournament is an open tournament where teams compete for
|
|
2628
|
+
the 3,000 Rubles prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://w4d.tv/\",\n\t\t\t\t\"itemdef\":
|
|
2629
|
+
16053\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Cyber Gaming Indonesia Competition
|
|
2630
|
+
Season 2\",\n\t\t\t\t\"leagueid\": 2008,\n\t\t\t\t\"description\": \"64 teams
|
|
2631
|
+
from Indonesia compete for the $680 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2632
|
+
\"http://neogamers.net/event/cyber-gaming-indonesia-competition-season-2/\",\n\t\t\t\t\"itemdef\":
|
|
2633
|
+
16054\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ArtCyber Season 1\",\n\t\t\t\t\"leagueid\":
|
|
2634
|
+
2039,\n\t\t\t\t\"description\": \"The ArtCyber Season 1 is an open tournament
|
|
2635
|
+
where teams compete for the 4,500 Ruble prize pool and a spot in the top bracket
|
|
2636
|
+
of season 2.\",\n\t\t\t\t\"tournament_url\": \"http://artcyber.3dn.ru/\",\n\t\t\t\t\"itemdef\":
|
|
2637
|
+
16055\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Zo-Zo Cup #1\",\n\t\t\t\t\"leagueid\":
|
|
2638
|
+
1994,\n\t\t\t\t\"description\": \"The first amateur league for CIS players.
|
|
2639
|
+
The teams compete for the 10,000 Rubles prize pool and 500 rare items.\",\n\t\t\t\t\"tournament_url\":
|
|
2640
|
+
\"http://zo-zo.ru/\",\n\t\t\t\t\"itemdef\": 16056\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2641
|
+
\"Mexican Cup\",\n\t\t\t\t\"leagueid\": 1943,\n\t\t\t\t\"description\": \"The
|
|
2642
|
+
top teams from Meixco are invited to prove they are the top team from the
|
|
2643
|
+
region.\",\n\t\t\t\t\"tournament_url\": \"http://mexicancup.theleagueladders.com/\",\n\t\t\t\t\"itemdef\":
|
|
2644
|
+
16058\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Copa Black Fyre - Season 1\",\n\t\t\t\t\"leagueid\":
|
|
2645
|
+
1993,\n\t\t\t\t\"description\": \"32 teams compete for the R$1,500 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2646
|
+
\"http://www.thebfstudio.com.br/\",\n\t\t\t\t\"itemdef\": 16059\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2647
|
+
\"Macedonian Dota 2 Cup 5\",\n\t\t\t\t\"leagueid\": 2001,\n\t\t\t\t\"description\":
|
|
2648
|
+
\"Macedonian teams compete for items in the fifth season of the Macedonian
|
|
2649
|
+
Cup!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"https://www.facebook.com/mkdota2\",\n\t\t\t\t\"itemdef\":
|
|
2650
|
+
16060\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"TEvent Dota 2 Season 1 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2651
|
+
2017,\n\t\t\t\t\"description\": \"This open tournament contains 64 teams from
|
|
2652
|
+
Central Russia competing for the rights to call themselves the best team in
|
|
2653
|
+
the region. This ticket only gives you access to view games from TEvent Season
|
|
2654
|
+
1.\",\n\t\t\t\t\"tournament_url\": \"http://tevent.net/\",\n\t\t\t\t\"itemdef\":
|
|
2655
|
+
16061\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GrossuCup Season 2\",\n\t\t\t\t\"leagueid\":
|
|
2656
|
+
2028,\n\t\t\t\t\"description\": \"Teams from South America compete in the
|
|
2657
|
+
primary season of the GrossuCup for the $450 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2658
|
+
\"http://www.grossugamers.com/\",\n\t\t\t\t\"itemdef\": 16062\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2659
|
+
\"Code62 Open Cup Season 2\",\n\t\t\t\t\"leagueid\": 1999,\n\t\t\t\t\"description\":
|
|
2660
|
+
\"16 team compete in this open tournament for an invite to the next Open Cup
|
|
2661
|
+
and to get a part of the 2,000,000+ RP prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2662
|
+
\"http://code62gaming.blogspot.com/\",\n\t\t\t\t\"itemdef\": 16063\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2663
|
+
\"SLTV Pro Series Season X\",\n\t\t\t\t\"leagueid\": 2051,\n\t\t\t\t\"description\":
|
|
2664
|
+
\"The 10th anniversary of Starladder's original Pro Series. 32 teams will
|
|
2665
|
+
fight for a chance to play with best Dota 2 teams in the world in StarSeries
|
|
2666
|
+
Season 11. \\r\\n\\t\",\n\t\t\t\t\"tournament_url\": \"http://dota2.starladder.tv/\",\n\t\t\t\t\"itemdef\":
|
|
2667
|
+
16064\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"AD2L Season 5 Inhouse League\",\n\t\t\t\t\"leagueid\":
|
|
2668
|
+
2047,\n\t\t\t\t\"description\": \"The 5th season of the Ameteur Dota 2 In-House
|
|
2669
|
+
League\",\n\t\t\t\t\"tournament_url\": \"http://amateurdota2league.com\",\n\t\t\t\t\"itemdef\":
|
|
2670
|
+
16065\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Summit 2 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2671
|
+
1936,\n\t\t\t\t\"description\": \"The Summit 2 is the long-awaited sequel
|
|
2672
|
+
to a global Dota 2 event! The world's best teams will fight online for 4 slots
|
|
2673
|
+
at the LAN Finals this December, where they will challenge Evil Geniuses and
|
|
2674
|
+
another invited team for $100,000+. This ticket only gives you access to view
|
|
2675
|
+
games from The Summit 2.\",\n\t\t\t\t\"tournament_url\": \"http://summit.beyondthesummit.tv/\",\n\t\t\t\t\"itemdef\":
|
|
2676
|
+
16066\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"DotaCinema XMG Captains Draft
|
|
2677
|
+
2.0 Ticket\",\n\t\t\t\t\"leagueid\": 2140,\n\t\t\t\t\"description\": \"DotaCinema
|
|
2678
|
+
presents the second version of their popular Captains Draft tournament. Eight
|
|
2679
|
+
of the best western teams battle in the unique Captains Draft mode, from which
|
|
2680
|
+
its limited hero pool is sure to keep team captains on their toes. 25% of
|
|
2681
|
+
each bundle will contribute to the prizepool. The bundle contains a full compendium,
|
|
2682
|
+
DotaTV ticket, Lich set, Mirana mount, special emotes and much more!\",\n\t\t\t\t\"tournament_url\":
|
|
2683
|
+
\"http://www.dotacinema.com/\",\n\t\t\t\t\"itemdef\": 16067\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2684
|
+
\"Arabian Dota League\",\n\t\t\t\t\"leagueid\": 2067,\n\t\t\t\t\"description\":
|
|
2685
|
+
\"The first online League in the Middle East. The top Arabian teams compete
|
|
2686
|
+
for the 10,000 dirhams prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://www.arabdota.com\",\n\t\t\t\t\"itemdef\":
|
|
2687
|
+
16068\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"World Cyber Arena\",\n\t\t\t\t\"leagueid\":
|
|
2688
|
+
2045,\n\t\t\t\t\"description\": \"World Cyber Arena is an invite only tournament
|
|
2689
|
+
with LAN Finals taking place in Yinchuan, China. Four teams from China and
|
|
2690
|
+
four foreign teams compete for the $470,000 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2691
|
+
\"http://www.wca.com.cn/\",\n\t\t\t\t\"itemdef\": 16070\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2692
|
+
\"Defense of the Australians Spring 2014\",\n\t\t\t\t\"leagueid\": 2084,\n\t\t\t\t\"description\":
|
|
2693
|
+
\"Australia's most popular tournament brings you it's 2014 Spring Season.
|
|
2694
|
+
The final four teams will be competing live at the Defense HQ in Melbourne
|
|
2695
|
+
for the $1,500 AU prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://www.d2t.com.au/\",\n\t\t\t\t\"itemdef\":
|
|
2696
|
+
16071\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Digital Wars Online\",\n\t\t\t\t\"leagueid\":
|
|
2697
|
+
2046,\n\t\t\t\t\"description\": \"Digial Wars Online is an open tournament.
|
|
2698
|
+
Teams compete for the 25,000 INR prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2699
|
+
\"http://forum.esports.co.in/forum/announcements/tournament-announcements/362-digital-wars-online-season-iii-powered-by-benq\",\n\t\t\t\t\"itemdef\":
|
|
2700
|
+
16072\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"League of Dota Season 6 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2701
|
+
1970,\n\t\t\t\t\"description\": \"League of Dota returns for a 6th season,
|
|
2702
|
+
featuring $1000 in cash prizes spread across 16 tournaments for North American
|
|
2703
|
+
and European teams. Sponsored by GameVox. The ticket only gives you access
|
|
2704
|
+
to view games from League of Dota Season 6.\",\n\t\t\t\t\"tournament_url\":
|
|
2705
|
+
\"http://leagueofdota.com/\",\n\t\t\t\t\"itemdef\": 16073\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2706
|
+
\"Telkom Gaming Championships 2014\",\n\t\t\t\t\"leagueid\": 1933,\n\t\t\t\t\"description\":
|
|
2707
|
+
\"South Africa's top teams compete for prizes valuing R170,000.\",\n\t\t\t\t\"tournament_url\":
|
|
2708
|
+
\"http://www.dogamingleague.co.za/\",\n\t\t\t\t\"itemdef\": 16074\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2709
|
+
\"JoinDota League Season 4\",\n\t\t\t\t\"leagueid\": 1980,\n\t\t\t\t\"description\":
|
|
2710
|
+
\"Over 2,500 people participate in the JoinDota League. The top 10 teams from
|
|
2711
|
+
each division will be invited to compete in the Premiere Division.\",\n\t\t\t\t\"tournament_url\":
|
|
2712
|
+
\"http://www.joindota.com/en/leagues/\",\n\t\t\t\t\"itemdef\": 16075\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2713
|
+
\"Circuito LVP Dota 2\",\n\t\t\t\t\"leagueid\": 1939,\n\t\t\t\t\"description\":
|
|
2714
|
+
\"Some of the best teams in Spain compete for the 3,500 Euro prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2715
|
+
\"http://www.lvp.es/\",\n\t\t\t\t\"itemdef\": 16076\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2716
|
+
\"Exp Solo Cup Season 1\",\n\t\t\t\t\"leagueid\": 1956,\n\t\t\t\t\"description\":
|
|
2717
|
+
\"32 players will compete for the top spot and 1,600 rubles prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2718
|
+
\"http://edcso.bl.ee/\",\n\t\t\t\t\"itemdef\": 16077\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2719
|
+
\"Tactic Hive League Season 1\",\n\t\t\t\t\"leagueid\": 1776,\n\t\t\t\t\"description\":
|
|
2720
|
+
\"Tactic Hive League is designed for semi-professionals and amateur Dota 2
|
|
2721
|
+
gamers. Tactic Hive is a ladder where players can have fun, compete and win
|
|
2722
|
+
prizes. Teams compete for the $2,000 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2723
|
+
\"http://www.tactichive.com/\",\n\t\t\t\t\"itemdef\": 16078\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2724
|
+
\"Dota2VO Ability Cup #2 Ticket\",\n\t\t\t\t\"leagueid\": 2000,\n\t\t\t\t\"description\":
|
|
2725
|
+
\"The second season of the Dota2VO Ability Cup. The top teams from EU compete
|
|
2726
|
+
for the $300 prize pool. This ticket only gives you access to view games from
|
|
2727
|
+
Dota2VO Ability Cup.\",\n\t\t\t\t\"tournament_url\": \"http://dota2vo.ru/ability-cup/en/\",\n\t\t\t\t\"itemdef\":
|
|
2728
|
+
16080\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Impact Gaming Season 1\",\n\t\t\t\t\"leagueid\":
|
|
2729
|
+
2031,\n\t\t\t\t\"description\": \"The battle between the best Dota 2 teams
|
|
2730
|
+
in Pakistan in on! Watch as they game fiercely to win the grand cash prize
|
|
2731
|
+
and a chance to be sponsored by the big names in corporate alliance to compete
|
|
2732
|
+
Internationally.\",\n\t\t\t\t\"tournament_url\": \"http://www.impact-gaming.org/\",\n\t\t\t\t\"itemdef\":
|
|
2733
|
+
16081\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"STG League Season One\",\n\t\t\t\t\"leagueid\":
|
|
2734
|
+
2012,\n\t\t\t\t\"description\": \"16 Amateur teams compete for300+ rare in-game
|
|
2735
|
+
items.\",\n\t\t\t\t\"tournament_url\": \"http://www.stg-league.ml/\",\n\t\t\t\t\"itemdef\":
|
|
2736
|
+
16082\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Vietnam eSports Champions League
|
|
2737
|
+
Season 2\",\n\t\t\t\t\"leagueid\": 2013,\n\t\t\t\t\"description\": \"The top
|
|
2738
|
+
teams in Vietnam compete for a spot in the WECG and to be crowned the top
|
|
2739
|
+
team from Vietnam.\",\n\t\t\t\t\"tournament_url\": \"http://esportsviet.vn/vecl\",\n\t\t\t\t\"itemdef\":
|
|
2740
|
+
16083\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"DotaPy #2: Encore\",\n\t\t\t\t\"leagueid\":
|
|
2741
|
+
2042,\n\t\t\t\t\"description\": \"This is the second season of the DotaPy
|
|
2742
|
+
League.\",\n\t\t\t\t\"tournament_url\": \"http://dotapy.com/\",\n\t\t\t\t\"itemdef\":
|
|
2743
|
+
16084\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"WECG Korea National Final\",\n\t\t\t\t\"leagueid\":
|
|
2744
|
+
2058,\n\t\t\t\t\"description\": \"Some of the top teams compete to earn a
|
|
2745
|
+
spot in the WECG Grand Finals.\",\n\t\t\t\t\"tournament_url\": \"http://wecg.com/\",\n\t\t\t\t\"itemdef\":
|
|
2746
|
+
16085\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Vake Female Tournament\",\n\t\t\t\t\"leagueid\":
|
|
2747
|
+
2112,\n\t\t\t\t\"description\": \"16 of the top female Dota 2 teams from CIS
|
|
2748
|
+
and Europe compete for the 8,000 ruble prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2749
|
+
\"http://vakefemale.jimdo.com/\",\n\t\t\t\t\"itemdef\": 16086\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2750
|
+
\"ESL Think Fast Razer League Ticket\",\n\t\t\t\t\"leagueid\": 2061,\n\t\t\t\t\"description\":
|
|
2751
|
+
\"Teams compete in this open tournament to earn their spot in the Think Fast
|
|
2752
|
+
Razer League Playoffs. This ticket only grants access to view games from the
|
|
2753
|
+
ESL Think Fast Razer League.\",\n\t\t\t\t\"tournament_url\": \"http://www.senseyeesports.com/esl-think-fast-razer-league-by-senseye-esports/\",\n\t\t\t\t\"itemdef\":
|
|
2754
|
+
16087\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"VIP Dota 2 Tournament\",\n\t\t\t\t\"leagueid\":
|
|
2755
|
+
2075,\n\t\t\t\t\"description\": \"The first offline tournament organized by
|
|
2756
|
+
Barganizer. Teams compete for the $200 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2757
|
+
\"http://barganizer.net/\",\n\t\t\t\t\"itemdef\": 16088\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2758
|
+
\"PKDota's Weekend Showdown\",\n\t\t\t\t\"leagueid\": 2069,\n\t\t\t\t\"description\":
|
|
2759
|
+
\"The top 8 teams from Pakistan battle to claim themselves as the top team
|
|
2760
|
+
in Pakistan and their part of the prize pool. Buy the ticket to show your
|
|
2761
|
+
support and increase the prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://www.pkdota.com/\",\n\t\t\t\t\"itemdef\":
|
|
2762
|
+
16089\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Copa Chile 2 Expogeek\",\n\t\t\t\t\"leagueid\":
|
|
2763
|
+
2077,\n\t\t\t\t\"description\": \"Chile's largest tournament where the top
|
|
2764
|
+
teams from Chile compete for the $1,300 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2765
|
+
\"http://livedota.tv/?p=1800\",\n\t\t\t\t\"itemdef\": 16090\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2766
|
+
\"Synergy League Season 1 Ticket\",\n\t\t\t\t\"leagueid\": 1934,\n\t\t\t\t\"description\":
|
|
2767
|
+
\"The top teams from Europe, South-East Asia, and China compete for the $50,000+
|
|
2768
|
+
prize pool. This ticket only grants access to view games from the Synergy
|
|
2769
|
+
League Season 1.\",\n\t\t\t\t\"tournament_url\": \"http://synergyleague.ru/\",\n\t\t\t\t\"itemdef\":
|
|
2770
|
+
16091\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"HyperX D2L Season 5\",\n\t\t\t\t\"leagueid\":
|
|
2771
|
+
2096,\n\t\t\t\t\"description\": \"The HyperX D2L's fifth season is a two month
|
|
2772
|
+
Dota 2 league featuring sixteen of the world's best gaming teams battling
|
|
2773
|
+
it out for four spots at the over fifty thousand dollar Live Finals event
|
|
2774
|
+
at Caesars Palace in Las Vegas during CES 2015. Buy now to show your support
|
|
2775
|
+
and increase the prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://www.d2l.gg/\",\n\t\t\t\t\"itemdef\":
|
|
2776
|
+
16092\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Secondary Pro League\",\n\t\t\t\t\"leagueid\":
|
|
2777
|
+
2119,\n\t\t\t\t\"description\": \"Dota 2 Secondary Pro League is organized
|
|
2778
|
+
by Perfect World with the cooperation with MarsTV. The tournament will have
|
|
2779
|
+
top Chinese amateur teams through national qualifiers, who will advance to
|
|
2780
|
+
LAN final to compete in a round robin format before becoming tomorrow stars
|
|
2781
|
+
in Dota scene.\",\n\t\t\t\t\"tournament_url\": \"http://www.dota2.com.cn/event/201408/dspl/index.htm\",\n\t\t\t\t\"itemdef\":
|
|
2782
|
+
16093\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"G-League 2014\",\n\t\t\t\t\"leagueid\":
|
|
2783
|
+
2032,\n\t\t\t\t\"description\": \"G-League 2014 brings you 50 teams competing
|
|
2784
|
+
for the $45,000 prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://gleague.gamefy.cn/\",\n\t\t\t\t\"itemdef\":
|
|
2785
|
+
16094\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Electro DCL Season 2\",\n\t\t\t\t\"leagueid\":
|
|
2786
|
+
2085,\n\t\t\t\t\"description\": \"Amateur teams from CIS countries will compete
|
|
2787
|
+
for cash prizes and rare items.\",\n\t\t\t\t\"tournament_url\": \"http://electrodl.ru/\",\n\t\t\t\t\"itemdef\":
|
|
2788
|
+
16095\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Korea Dota League Season 4 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2789
|
+
2057,\n\t\t\t\t\"description\": \"Nexon presents the fourth season of KDL
|
|
2790
|
+
with SpotTV and KeSPA. Newly promoted teams have joined each respective tier.
|
|
2791
|
+
The KDL will span four seasons with a total of KRW 650 million (USD 605,000)
|
|
2792
|
+
prize pool. Watch the fourth season of KDL featuring the top 10 teams from
|
|
2793
|
+
the tier 1 and 2 leagues. This ticket only gives you access to view games
|
|
2794
|
+
from KDL Season 4.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.nexon.com/\",\n\t\t\t\t\"itemdef\":
|
|
2795
|
+
16096\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota 2 Starter League\",\n\t\t\t\t\"leagueid\":
|
|
2796
|
+
2066,\n\t\t\t\t\"description\": \"The first season of the Dota 2 Starter league
|
|
2797
|
+
consits of some of the best teams from South American.\",\n\t\t\t\t\"tournament_url\":
|
|
2798
|
+
\"http://www.dota2esports.net/\",\n\t\t\t\t\"itemdef\": 16097\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2799
|
+
\"GDL Season 4\",\n\t\t\t\t\"leagueid\": 2056,\n\t\t\t\t\"description\": \"GDL
|
|
2800
|
+
Season 4 is oriented towards the strongest Russian teams. The prize pool is
|
|
2801
|
+
$3000. Two divisions (AM and PRO) ane available on the ticket. The LAN final
|
|
2802
|
+
of the PRO division will take place in the city of Chelyabinsk.\",\n\t\t\t\t\"tournament_url\":
|
|
2803
|
+
\"http://www.lks174.ru/\",\n\t\t\t\t\"itemdef\": 16098\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2804
|
+
\"Persia Grand League\",\n\t\t\t\t\"leagueid\": 2030,\n\t\t\t\t\"description\":
|
|
2805
|
+
\"8 of the best teams from the region compete over 14 days for in-game items.\",\n\t\t\t\t\"tournament_url\":
|
|
2806
|
+
\"http://www.dota2club.ir/\",\n\t\t\t\t\"itemdef\": 16099\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2807
|
+
\"KDL Season 4 - Tier 3\",\n\t\t\t\t\"leagueid\": 2059,\n\t\t\t\t\"description\":
|
|
2808
|
+
\"Dota 2 KDL Tier 3 is composed of the AMD Dota 2 Amateur League and the PC
|
|
2809
|
+
bang League. The best teams in Tier 3 leagues will receive KDL Tier points
|
|
2810
|
+
and have chance to advance to Tier 2.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.nexon.com/League/KDL/KDL_Season4_01.aspx\",\n\t\t\t\t\"itemdef\":
|
|
2811
|
+
16100\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"MOL Dota 2 Tournament\",\n\t\t\t\t\"leagueid\":
|
|
2812
|
+
2082,\n\t\t\t\t\"description\": \"The top two teams of the MOL Dota 2 Tournament
|
|
2813
|
+
will represent Indonesia at the Game Master 2014 Malaysia.\",\n\t\t\t\t\"tournament_url\":
|
|
2814
|
+
\"http://barganizer.net/\",\n\t\t\t\t\"itemdef\": 16101\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2815
|
+
\"Dota 2 Gonzaga Festival\",\n\t\t\t\t\"leagueid\": 2142,\n\t\t\t\t\"description\":
|
|
2816
|
+
\"Gonzaga Amateur festival presents Amateur Dota 2 teams from Indonesia.\",\n\t\t\t\t\"tournament_url\":
|
|
2817
|
+
\"http://www.maindota2.com/events/gonzaga-fest/\",\n\t\t\t\t\"itemdef\": 16102\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2818
|
+
\"GG League Season 2 Ticket\",\n\t\t\t\t\"leagueid\": 2019,\n\t\t\t\t\"description\":
|
|
2819
|
+
\"16 professional teams compete for the $1,500 prize pool. This ticket only
|
|
2820
|
+
gives you access to view games from the GG League Season 2.\",\n\t\t\t\t\"tournament_url\":
|
|
2821
|
+
\"http://www.goodgaming.pro/\",\n\t\t\t\t\"itemdef\": 16103\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2822
|
+
\"SDL 2014 Season 4\",\n\t\t\t\t\"leagueid\": 2094,\n\t\t\t\t\"description\":
|
|
2823
|
+
\"64 of the best teams from the region fight for the prize and glory at the
|
|
2824
|
+
last season of SDL 2014.\",\n\t\t\t\t\"tournament_url\": \"http://www.shigueoleague.com/\",\n\t\t\t\t\"itemdef\":
|
|
2825
|
+
16104\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Electro Dota 2 League - Season
|
|
2826
|
+
2\",\n\t\t\t\t\"leagueid\": 2083,\n\t\t\t\t\"description\": \"16 teams battle
|
|
2827
|
+
it out for the 6,400 ruble prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://electrodl.ru/\",\n\t\t\t\t\"itemdef\":
|
|
2828
|
+
16105\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Exp Dota Cup Season 2\",\n\t\t\t\t\"leagueid\":
|
|
2829
|
+
2095,\n\t\t\t\t\"description\": \"16 teams compete for the 5,000 ruble prize
|
|
2830
|
+
pool.\",\n\t\t\t\t\"tournament_url\": \"http://edcso.bl.ee/\",\n\t\t\t\t\"itemdef\":
|
|
2831
|
+
16106\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Exp Solo Cup Season 2\",\n\t\t\t\t\"leagueid\":
|
|
2832
|
+
2101,\n\t\t\t\t\"description\": \"32 players compete for a 1,600 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2833
|
+
\"http://edcso.bl.ee/\",\n\t\t\t\t\"itemdef\": 16107\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2834
|
+
\"GCDL Season 8\",\n\t\t\t\t\"leagueid\": 2090,\n\t\t\t\t\"description\":
|
|
2835
|
+
\"With Kings of LAN DOTA 2 done and dusted, Gamer.LK is proud to present Season
|
|
2836
|
+
8 of the Gamer.LK Clans DOTA 2 League (GCDL). The GCDL is the longest running
|
|
2837
|
+
online league of its kind in Sri Lanka!\",\n\t\t\t\t\"tournament_url\": \"http://gamer.lk/gcdl/\",\n\t\t\t\t\"itemdef\":
|
|
2838
|
+
16108\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"deafESL League Season 3\",\n\t\t\t\t\"leagueid\":
|
|
2839
|
+
2073,\n\t\t\t\t\"description\": \"The deafESL behind the third season in a
|
|
2840
|
+
tournament made for the deaf community, bringing teams from around the world.\",\n\t\t\t\t\"tournament_url\":
|
|
2841
|
+
\"http://dota2.deafesl.com/tournaments/league/\",\n\t\t\t\t\"itemdef\": 16109\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2842
|
+
\"Dota2Feed 1v1 Solo Mid Cup\",\n\t\t\t\t\"leagueid\": 1898,\n\t\t\t\t\"description\":
|
|
2843
|
+
\"32 players from the CIS region compete for over 100 Rare in-game items.\",\n\t\t\t\t\"tournament_url\":
|
|
2844
|
+
\"http://d2feed.my1.ru/\",\n\t\t\t\t\"itemdef\": 16110\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2845
|
+
\"Dota2FP Atlantic\",\n\t\t\t\t\"leagueid\": 2054,\n\t\t\t\t\"description\":
|
|
2846
|
+
\"Up to 50 teams compete for the $50 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2847
|
+
\"http://facepunch.com/showthread.php?t=1425920\",\n\t\t\t\t\"itemdef\": 16111\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2848
|
+
\"CSPL.RU Dota 2 League Season 2\",\n\t\t\t\t\"leagueid\": 2091,\n\t\t\t\t\"description\":
|
|
2849
|
+
\"The second season of the lasting battle, where more than 500 players will
|
|
2850
|
+
compete for the prize and the championship title!\\r\\n\\t\",\n\t\t\t\t\"tournament_url\":
|
|
2851
|
+
\"http://www.cspl.ru/\",\n\t\t\t\t\"itemdef\": 16112\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2852
|
+
\"Deadly Gaming Cup Season 1\",\n\t\t\t\t\"leagueid\": 2076,\n\t\t\t\t\"description\":
|
|
2853
|
+
\"12 invited and professional teams compete for hte $5,000 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2854
|
+
\"http://dgm-cup.tk/\",\n\t\t\t\t\"itemdef\": 16113\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2855
|
+
\"D2LPR Season 2\",\n\t\t\t\t\"leagueid\": 2004,\n\t\t\t\t\"description\":
|
|
2856
|
+
\"16 teams compete for cash prizes.\",\n\t\t\t\t\"tournament_url\": \"http://www.d2lpr.do.am/\",\n\t\t\t\t\"itemdef\":
|
|
2857
|
+
16114\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Silver Dota League 2\",\n\t\t\t\t\"leagueid\":
|
|
2858
|
+
2110,\n\t\t\t\t\"description\": \"The Silver Dota League is an Amateur league
|
|
2859
|
+
featuring more than 100 South American teams competing for in-game items and
|
|
2860
|
+
a cash prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://www.silver-dota2.com/\",\n\t\t\t\t\"itemdef\":
|
|
2861
|
+
16115\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota Regions: Season 2 Ticket\",\n\t\t\t\t\"leagueid\":
|
|
2862
|
+
2044,\n\t\t\t\t\"description\": \"Dota Regions just completed a successful
|
|
2863
|
+
season one, with excited fans and happy players. 16 top teams compete for
|
|
2864
|
+
a cash prize split 5 ways. Last season we handed out cash prizes and distributed
|
|
2865
|
+
item giveaways! We were covered on JoinDota and GosuGamers match tickers and
|
|
2866
|
+
were one of the top viewed channels regarding Dota 2 while live on twitch.
|
|
2867
|
+
This season we plan to introduce new ideas to generate more excitement among
|
|
2868
|
+
fans and players! This bundle grants the Empress of the Sea Naga Siren Set
|
|
2869
|
+
and access to view games from Dota Regions: Season 2 league.\",\n\t\t\t\t\"tournament_url\":
|
|
2870
|
+
\"http://www.dotaregions.com/\",\n\t\t\t\t\"itemdef\": 16116\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2871
|
+
\"Uprise Champions Cup Season 1\",\n\t\t\t\t\"leagueid\": 2080,\n\t\t\t\t\"description\":
|
|
2872
|
+
\"Some of the top teams from the CIS region fight for their spot in the Uprise
|
|
2873
|
+
Championship Finals.\",\n\t\t\t\t\"tournament_url\": \"http://uccup.ru/\",\n\t\t\t\t\"itemdef\":
|
|
2874
|
+
16117\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"MPGL Gigabyte 2014 Finals\",\n\t\t\t\t\"leagueid\":
|
|
2875
|
+
2050,\n\t\t\t\t\"description\": \"The completion of the year long event with
|
|
2876
|
+
all qualified teams gathering for an all expense paid trip to Manila for a
|
|
2877
|
+
2 day event of non-stop Dota 2 action. Purchase the ticket to help increase
|
|
2878
|
+
the prize pool!\",\n\t\t\t\t\"tournament_url\": \"http://mpgl.mineski.net/\",\n\t\t\t\t\"itemdef\":
|
|
2879
|
+
16119\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Wars of Fortune Season 2\",\n\t\t\t\t\"leagueid\":
|
|
2880
|
+
2070,\n\t\t\t\t\"description\": \"Second season of the tournament Wars of
|
|
2881
|
+
Fortune. 16 teams compete for the 6,400 ruble prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2882
|
+
\"http://catchersofluck.wix.com/warsoffortune\",\n\t\t\t\t\"itemdef\": 16120\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2883
|
+
\"Battle of Central Europe Season 3 Ticket\",\n\t\t\t\t\"leagueid\": 2125,\n\t\t\t\t\"description\":
|
|
2884
|
+
\"16 best teams in Europe compete for the $30,000 prize pool and decide who
|
|
2885
|
+
is the best! This ticket only gives you access to view games from the Battle
|
|
2886
|
+
of Central Europe Season 3.\",\n\t\t\t\t\"tournament_url\": \"http://dota2leagues.eu/boce\",\n\t\t\t\t\"itemdef\":
|
|
2887
|
+
16121\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Dota2.Net Cup #1\",\n\t\t\t\t\"leagueid\":
|
|
2888
|
+
2139,\n\t\t\t\t\"description\": \"Dota2.net Cup is a new tournament featuring
|
|
2889
|
+
semi-pro teams from the CIS region competing for a 15,000 ruble prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2890
|
+
\"http://dota2.net/\",\n\t\t\t\t\"itemdef\": 16122\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2891
|
+
\"CZ-SK Dota 2 League Season 3\",\n\t\t\t\t\"leagueid\": 2106,\n\t\t\t\t\"description\":
|
|
2892
|
+
\"The third season of Czech-Slovakia league will take place over a two months
|
|
2893
|
+
period. The winner will receive prize money upon victory!\",\n\t\t\t\t\"tournament_url\":
|
|
2894
|
+
\"http://www.dota2league.cz/\",\n\t\t\t\t\"itemdef\": 16123\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2895
|
+
\"Stellar: University of the Philippines Engineering Cup 2014\",\n\t\t\t\t\"leagueid\":
|
|
2896
|
+
2055,\n\t\t\t\t\"description\": \"The Dota 2 event of the annual Engineering
|
|
2897
|
+
Cup of the University of the Philippines.\",\n\t\t\t\t\"tournament_url\":
|
|
2898
|
+
\"http://eleet.ph\",\n\t\t\t\t\"itemdef\": 16124\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2899
|
+
\"Trash Tier Inhouse League\",\n\t\t\t\t\"leagueid\": 2154,\n\t\t\t\t\"description\":
|
|
2900
|
+
\"Casuals and amateurs come together for a 30 day league with no prize except
|
|
2901
|
+
pride in their hearts. \",\n\t\t\t\t\"tournament_url\": \"http://www.reddit.com/r/redditdota2league/new/\",\n\t\t\t\t\"itemdef\":
|
|
2902
|
+
16125\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The Battle Fury 2014\",\n\t\t\t\t\"leagueid\":
|
|
2903
|
+
2105,\n\t\t\t\t\"description\": \"The Battle Fury 2014 consists of16 teams
|
|
2904
|
+
from Latin American competing for $5,000 in prizes.\",\n\t\t\t\t\"tournament_url\":
|
|
2905
|
+
\"http://thebattlefury.com\",\n\t\t\t\t\"itemdef\": 16126\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2906
|
+
\"Battle of America #2 Ticket\",\n\t\t\t\t\"leagueid\": 2126,\n\t\t\t\t\"description\":
|
|
2907
|
+
\"64 registered teams will compete in the qualifying round for their entry
|
|
2908
|
+
into the main event. The winners fight the 8 invited teams for the $5,000
|
|
2909
|
+
prize pool. This bundle grants the Savvy Tarsus Ward and access to view games
|
|
2910
|
+
from the Battle of America #2 League.\",\n\t\t\t\t\"tournament_url\": \"http://dota2leagues.eu/boa/\",\n\t\t\t\t\"itemdef\":
|
|
2911
|
+
16127\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"The 6th e-Sports World Championship
|
|
2912
|
+
Baku 2014\",\n\t\t\t\t\"leagueid\": 2079,\n\t\t\t\t\"description\": \"The
|
|
2913
|
+
annual International Competition of e-Sports which the International Sport
|
|
2914
|
+
Society approves. All member federations under IeSF participate in this World
|
|
2915
|
+
Championship. DOTA 2 is a main game title in e-Sports World Championship which
|
|
2916
|
+
national representative teams such as Newbee and MVP participate.\",\n\t\t\t\t\"tournament_url\":
|
|
2917
|
+
\"http://www.ie-sf.org\",\n\t\t\t\t\"itemdef\": 16130\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2918
|
+
\"SUQA Winter Solo Cup\",\n\t\t\t\t\"leagueid\": 2124,\n\t\t\t\t\"description\":
|
|
2919
|
+
\"Open tournament where 64 players compete for the $150 prize pool.\",\n\t\t\t\t\"tournament_url\":
|
|
2920
|
+
\"http://dota2.imatch.tv/\",\n\t\t\t\t\"itemdef\": 16131\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2921
|
+
\"On Art Jam Game Cup\",\n\t\t\t\t\"leagueid\": 2168,\n\t\t\t\t\"description\":
|
|
2922
|
+
\"The four best teams from the qualifiers advance to the finals to compete
|
|
2923
|
+
for the R$3,000 prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://onart.net.br/\",\n\t\t\t\t\"itemdef\":
|
|
2924
|
+
16132\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GameGod Games Arena DOTA 2 Championship\",\n\t\t\t\t\"leagueid\":
|
|
2925
|
+
2179,\n\t\t\t\t\"description\": \"India's largest DOTA 2 Tournament \\\"GameGod
|
|
2926
|
+
Games Arena\\\" powered by MTS and organized by NODWIN Gaming will be held
|
|
2927
|
+
from 14th to 16th Nov, 2014. The total prize pool for the main event is USD
|
|
2928
|
+
$16,000 split between top 64 teams in cash prize with the Champion winning
|
|
2929
|
+
USD $5000 as first place prize.\",\n\t\t\t\t\"tournament_url\": \"http://beta.esl.asia/in/dota2\",\n\t\t\t\t\"itemdef\":
|
|
2930
|
+
16134\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"OGSeries Dota 2 Online Season
|
|
2931
|
+
3\",\n\t\t\t\t\"leagueid\": 2133,\n\t\t\t\t\"description\": \"The top Spanish
|
|
2932
|
+
players compete for the €250 prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://www.ogseries.tv/dota2/\",\n\t\t\t\t\"itemdef\":
|
|
2933
|
+
16135\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ASUS ROG DreamLeague Season
|
|
2934
|
+
2\",\n\t\t\t\t\"leagueid\": 2190,\n\t\t\t\t\"description\": \"16 of the world's
|
|
2935
|
+
best teams will compete in over 120 league matches and playoffs at DreamHack
|
|
2936
|
+
Winter 2014, $100,000 prize pool. Purchase the Ticket to extend the prize
|
|
2937
|
+
pool! This ticket grants access to Phase 2 and 3 of DreamLeague Season 2.\",\n\t\t\t\t\"tournament_url\":
|
|
2938
|
+
\"\",\n\t\t\t\t\"itemdef\": 16136\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"SLTV
|
|
2939
|
+
Star Series Season 11 Ticket\",\n\t\t\t\t\"leagueid\": 2158,\n\t\t\t\t\"description\":
|
|
2940
|
+
\"The 11th Season of SLTV's own StarSeries. The best teams in the world compete
|
|
2941
|
+
in one of the largest Dota 2 Tournaments around for the $80,000+ prize pool.
|
|
2942
|
+
This ticket only gives you access to view games from SLTV StarSeries Season
|
|
2943
|
+
11.\",\n\t\t\t\t\"tournament_url\": \"http://dota2.starladder.tv/\",\n\t\t\t\t\"itemdef\":
|
|
2944
|
+
16139\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"Coliseum League\",\n\t\t\t\t\"leagueid\":
|
|
2945
|
+
2165,\n\t\t\t\t\"description\": \"32 teams compete for the top spot in the
|
|
2946
|
+
first Coliseum League.\",\n\t\t\t\t\"tournament_url\": \"http://www.dotacoliseum.com.br\",\n\t\t\t\t\"itemdef\":
|
|
2947
|
+
16140\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"GameEdge DOTA 2 Champion's League\",\n\t\t\t\t\"leagueid\":
|
|
2948
|
+
2197,\n\t\t\t\t\"description\": \"The biggest DOTA 2 tournament in Sri Lanka,
|
|
2949
|
+
organized by GameEdge Gaming Centre in collaboration with GLD Studios.\",\n\t\t\t\t\"tournament_url\":
|
|
2950
|
+
\"http://dota2.gameedge.lk/\",\n\t\t\t\t\"itemdef\": 16141\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\":
|
|
2951
|
+
\"HueBR Cup Season 2\",\n\t\t\t\t\"leagueid\": 2127,\n\t\t\t\t\"description\":
|
|
2952
|
+
\"The best amateur teams from Brazil compete for the top spot in teh HueBR
|
|
2953
|
+
Cup Season 2.\",\n\t\t\t\t\"tournament_url\": \"http://brcup.wix.com/huebr\",\n\t\t\t\t\"itemdef\":
|
|
2954
|
+
16142\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"name\": \"ProDota League\",\n\t\t\t\t\"leagueid\":
|
|
2955
|
+
2136,\n\t\t\t\t\"description\": \"Players will compete for the 3,000+ ruble
|
|
2956
|
+
prize pool.\",\n\t\t\t\t\"tournament_url\": \"http://ixdl.net/index.php/forum/366-prodota-league/\",\n\t\t\t\t\"itemdef\":
|
|
2957
|
+
16144\n\t\t\t}\n\t\t]\n\t\t\n\t}\n}"
|
|
2958
|
+
http_version:
|
|
2959
|
+
recorded_at: Tue, 18 Nov 2014 13:42:20 GMT
|
|
2960
|
+
recorded_with: VCR 2.9.3
|