smite_ruby 1.4.3 → 1.4.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +60 -0
  3. data/README.md +35 -21
  4. data/lib/smite.rb +18 -14
  5. data/lib/smite/client.rb +95 -13
  6. data/lib/smite/data_transform.rb +8 -8
  7. data/lib/smite/game.rb +43 -30
  8. data/lib/smite/getgods.json +151 -0
  9. data/lib/smite/god.rb +1 -1
  10. data/lib/smite/god_rank.rb +1 -1
  11. data/lib/smite/god_stats.rb +11 -13
  12. data/lib/smite/item.rb +18 -4
  13. data/lib/smite/motd.rb +19 -0
  14. data/lib/smite/object.rb +2 -1
  15. data/lib/smite/player.rb +20 -35
  16. data/lib/smite/queue.rb +19 -0
  17. data/lib/smite/recent_match.rb +18 -0
  18. data/lib/smite/recommended_items.rb +22 -0
  19. data/smite_ruby.gemspec +4 -2
  20. data/spec/ability_spec.rb +7 -0
  21. data/spec/achievements_spec.rb +7 -0
  22. data/spec/client_spec.rb +52 -0
  23. data/spec/data_transform_spec.rb +7 -0
  24. data/spec/friend_spec.rb +7 -0
  25. data/spec/game_spec.rb +200 -0
  26. data/spec/god_rank_spec.rb +7 -0
  27. data/spec/god_spec.rb +57 -0
  28. data/spec/god_stats_spec.rb +7 -0
  29. data/spec/item_effect_spec.rb +7 -0
  30. data/spec/item_spec.rb +85 -0
  31. data/spec/match_spec.rb +7 -0
  32. data/spec/player_spec.rb +76 -0
  33. data/spec/responses/createsession.json +1 -0
  34. data/spec/responses/getachievements.json +11 -0
  35. data/spec/responses/getdataused.json +1 -0
  36. data/spec/responses/getesportsproleaguedetails.json +1 -0
  37. data/spec/responses/getfriends.json +44 -0
  38. data/spec/responses/getgodranks.json +71 -0
  39. data/spec/responses/getgodrecommendeditems.json +1 -0
  40. data/spec/responses/getgods.json +461 -0
  41. data/spec/responses/getitems.json +118 -0
  42. data/spec/responses/getleagueleaderboard.json +1 -0
  43. data/spec/responses/getleagueseasons.json +1 -0
  44. data/spec/responses/getmatchdetails.json +1 -0
  45. data/spec/responses/getmatchhistory.json +61 -0
  46. data/spec/responses/getmatchidsbyqueue.json +1 -0
  47. data/spec/responses/getmatchplayerdetails.json +1 -0
  48. data/spec/responses/getmotd.json +37 -0
  49. data/spec/responses/getplayer.json +57 -0
  50. data/spec/responses/getplayerstatus.json +1 -0
  51. data/spec/responses/getqueuestats.json +1 -0
  52. data/spec/responses/getsearchteams.json +1 -0
  53. data/spec/responses/getteamdetails.json +1 -0
  54. data/spec/responses/getteamplayers.json +1 -0
  55. data/spec/responses/gettopmatches.json +1 -0
  56. data/spec/responses/testsession.json +1 -0
  57. data/spec/shared_examples/smite_object.rb +17 -0
  58. data/spec/spec_helper.rb +51 -0
  59. metadata +75 -2
@@ -0,0 +1,7 @@
1
+ require 'spec_helper'
2
+
3
+ RSpec.describe Smite::Match do
4
+ it 'tests' do
5
+
6
+ end
7
+ end
@@ -0,0 +1,76 @@
1
+ require 'spec_helper'
2
+
3
+ RSpec.describe Smite::Player do
4
+ let(:player) { Smite::Game.player('adapting') }
5
+ let(:smite_obj) { player }
6
+
7
+ before { Smite::Game.authenticate!(1234, 'ABCD') }
8
+
9
+ describe '#friends' do
10
+ it 'only includes friends with a non-empty name' do
11
+ expect(player.friends.count).to eq(5)
12
+ player.friends.each do |friend|
13
+ expect(friend.name).not_to be_empty
14
+ end
15
+ end
16
+
17
+ it 'creates new Smite::Friend objects' do
18
+ expect(player.friends.count).to eq(5)
19
+ player.friends.each do |friend|
20
+ expect(friend.class).to eq(Smite::Friend)
21
+ end
22
+ end
23
+
24
+ it 'caches the friends' do
25
+ player.friends
26
+ expect(Smite::Game.client).not_to receive(:friends)
27
+ expect(Smite::Friend).not_to receive(:new)
28
+ player.friends
29
+ end
30
+ end
31
+
32
+ describe '#god_ranks' do
33
+ it 'creates new Smite::GodRank objects' do
34
+ player.god_ranks.each do |god_rank|
35
+ expect(god_rank.class).to eq(Smite::GodRank)
36
+ end
37
+ end
38
+
39
+ it 'caches the god_ranks' do
40
+ player.god_ranks
41
+ expect(Smite::Game.client).not_to receive(:god_ranks)
42
+ expect(Smite::GodRank).not_to receive(:new)
43
+ player.god_ranks
44
+ end
45
+ end
46
+
47
+ describe '#match_history' do
48
+ it 'creates new Smite::RecentMatch objects' do
49
+ player.match_history.each do |match|
50
+ expect(match.class).to eq(Smite::RecentMatch)
51
+ end
52
+ end
53
+
54
+ it 'caches the match_history' do
55
+ player.match_history
56
+ expect(Smite::Game.client).not_to receive(:match_history)
57
+ expect(Smite::RecentMatch).not_to receive(:new)
58
+ player.match_history
59
+ end
60
+ end
61
+
62
+ describe '#achievements' do
63
+ it 'creates new Smite::Achievements objects' do
64
+ expect(player.achievements.class).to eq(Smite::Achievements)
65
+ end
66
+
67
+ it 'caches the achievements' do
68
+ player.achievements
69
+ expect(Smite::Game.client).not_to receive(:achievements)
70
+ expect(Smite::Achievements).not_to receive(:new)
71
+ player.achievements
72
+ end
73
+ end
74
+
75
+ it_behaves_like 'a Smite::Object'
76
+ end
@@ -0,0 +1 @@
1
+ { "session_id" : "ABCD" }
@@ -0,0 +1,11 @@
1
+ {
2
+ "DoubleKills" : 5281,
3
+ "FirstBloods" : 1433,
4
+ "Id" : 2784051,
5
+ "Name" : "Adapting",
6
+ "PentaKills" : 21,
7
+ "QuadraKills" : 137,
8
+ "TowerKills" : 5188,
9
+ "TripleKills" : 803,
10
+ "ret_msg" : null
11
+ }
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,44 @@
1
+ [
2
+ {
3
+ "account_id" : "3224325",
4
+ "avatar_url" : "http://app.smitegame.com/playeravatar/?id=11557",
5
+ "name" : "aBROcalypse",
6
+ "player_id" : "241202",
7
+ "ret_msg" : null
8
+ },
9
+ {
10
+ "account_id" : "0",
11
+ "avatar_url" : "",
12
+ "name" : "",
13
+ "player_id" : "0",
14
+ "ret_msg" : null
15
+ },
16
+ {
17
+ "account_id" : "11943457",
18
+ "avatar_url" : "",
19
+ "name" : "Adopting",
20
+ "player_id" : "5723367",
21
+ "ret_msg" : null
22
+ },
23
+ {
24
+ "account_id" : "1433690",
25
+ "avatar_url" : "http://app.smitegame.com/playeravatar/?id=9714",
26
+ "name" : "Advert",
27
+ "player_id" : "544721",
28
+ "ret_msg" : null
29
+ },
30
+ {
31
+ "account_id" : "4495607",
32
+ "avatar_url" : "http://app.smitegame.com/playeravatar/?id=9795",
33
+ "name" : "Aengy",
34
+ "player_id" : "872738",
35
+ "ret_msg" : null
36
+ },
37
+ {
38
+ "account_id" : "2508306",
39
+ "avatar_url" : "http://app.smitegame.com/playeravatar/?id=10282",
40
+ "name" : "Aiurz",
41
+ "player_id" : "96255",
42
+ "ret_msg" : null
43
+ }
44
+ ]
@@ -0,0 +1,71 @@
1
+ [
2
+ {"Rank" : 10, "Worshippers" : 4524, "god" : "Thor", "god_id" : "1779", "player_id" : "2784051", "ret_msg" : null },
3
+ {"Rank" : 10, "Worshippers" : 4332, "god" : "Mercury", "god_id" : "1941", "player_id" : "2784051", "ret_msg" : null },
4
+ {"Rank" : 10, "Worshippers" : 2124, "god" : "Freya", "god_id" : "1784", "player_id" : "2784051", "ret_msg" : null },
5
+ {"Rank" : 10, "Worshippers" : 2012, "god" : "Hun Batz", "god_id" : "1673", "player_id" : "2784051", "ret_msg" : null },
6
+ {"Rank" : 10, "Worshippers" : 1886, "god" : "Kali", "god_id" : "1649", "player_id" : "2784051", "ret_msg" : null },
7
+ {"Rank" : 10, "Worshippers" : 1705, "god" : "Poseidon", "god_id" : "1881", "player_id" : "2784051", "ret_msg" : null },
8
+ {"Rank" : 10, "Worshippers" : 1680, "god" : "Chronos", "god_id" : "1920", "player_id" : "2784051", "ret_msg" : null },
9
+ {"Rank" : 10, "Worshippers" : 1670, "god" : "Thanatos", "god_id" : "1943", "player_id" : "2784051", "ret_msg" : null },
10
+ {"Rank" : 10, "Worshippers" : 1652, "god" : "Anhur", "god_id" : "1773", "player_id" : "2784051", "ret_msg" : null },
11
+ {"Rank" : 10, "Worshippers" : 1576, "god" : "Fenrir", "god_id" : "1843", "player_id" : "2784051", "ret_msg" : null },
12
+ {"Rank" : 10, "Worshippers" : 1565, "god" : "He Bo", "god_id" : "1674", "player_id" : "2784051", "ret_msg" : null },
13
+ {"Rank" : 10, "Worshippers" : 1556, "god" : "Loki", "god_id" : "1797", "player_id" : "2784051", "ret_msg" : null },
14
+ {"Rank" : 10, "Worshippers" : 1392, "god" : "Ne Zha", "god_id" : "1915", "player_id" : "2784051", "ret_msg" : null },
15
+ {"Rank" : 10, "Worshippers" : 1313, "god" : "Nemesis", "god_id" : "1980", "player_id" : "2784051", "ret_msg" : null },
16
+ {"Rank" : 10, "Worshippers" : 1260, "god" : "Apollo", "god_id" : "1899", "player_id" : "2784051", "ret_msg" : null },
17
+ {"Rank" : 10, "Worshippers" : 1191, "god" : "Bellona", "god_id" : "2047", "player_id" : "2784051", "ret_msg" : null },
18
+ {"Rank" : 10, "Worshippers" : 1176, "god" : "Serqet", "god_id" : "2005", "player_id" : "2784051", "ret_msg" : null },
19
+ {"Rank" : 10, "Worshippers" : 1108, "god" : "Tyr", "god_id" : "1924", "player_id" : "2784051", "ret_msg" : null },
20
+ {"Rank" : 10, "Worshippers" : 1074, "god" : "Ullr", "god_id" : "1991", "player_id" : "2784051", "ret_msg" : null },
21
+ {"Rank" : 10, "Worshippers" : 1073, "god" : "Zeus", "god_id" : "1672", "player_id" : "2784051", "ret_msg" : null },
22
+ {"Rank" : 10, "Worshippers" : 1033, "god" : "Ao Kuang", "god_id" : "2034", "player_id" : "2784051", "ret_msg" : null },
23
+ {"Rank" : 9, "Worshippers" : 965, "god" : "Bakasura", "god_id" : "1755", "player_id" : "2784051", "ret_msg" : null },
24
+ {"Rank" : 9, "Worshippers" : 931, "god" : "Vamana", "god_id" : "1723", "player_id" : "2784051", "ret_msg" : null },
25
+ {"Rank" : 9, "Worshippers" : 898, "god" : "Hercules", "god_id" : "1848", "player_id" : "2784051", "ret_msg" : null },
26
+ {"Rank" : 8, "Worshippers" : 835, "god" : "Vulcan", "god_id" : "1869", "player_id" : "2784051", "ret_msg" : null },
27
+ {"Rank" : 8, "Worshippers" : 820, "god" : "Awilix", "god_id" : "2037", "player_id" : "2784051", "ret_msg" : null },
28
+ {"Rank" : 7, "Worshippers" : 779, "god" : "Osiris", "god_id" : "2000", "player_id" : "2784051", "ret_msg" : null },
29
+ {"Rank" : 7, "Worshippers" : 767, "god" : "Ra", "god_id" : "1698", "player_id" : "2784051", "ret_msg" : null },
30
+ {"Rank" : 7, "Worshippers" : 728, "god" : "Bastet", "god_id" : "1678", "player_id" : "2784051", "ret_msg" : null },
31
+ {"Rank" : 6, "Worshippers" : 629, "god" : "Arachne", "god_id" : "1699", "player_id" : "2784051", "ret_msg" : null },
32
+ {"Rank" : 5, "Worshippers" : 524, "god" : "Agni", "god_id" : "1737", "player_id" : "2784051", "ret_msg" : null },
33
+ {"Rank" : 5, "Worshippers" : 520, "god" : "Isis", "god_id" : "1918", "player_id" : "2784051", "ret_msg" : null },
34
+ {"Rank" : 5, "Worshippers" : 516, "god" : "Scylla", "god_id" : "1988", "player_id" : "2784051", "ret_msg" : null },
35
+ {"Rank" : 5, "Worshippers" : 501, "god" : "Rama", "god_id" : "2002", "player_id" : "2784051", "ret_msg" : null },
36
+ {"Rank" : 5, "Worshippers" : 483, "god" : "Anubis", "god_id" : "1668", "player_id" : "2784051", "ret_msg" : null },
37
+ {"Rank" : 4, "Worshippers" : 430, "god" : "Xbalanque", "god_id" : "1864", "player_id" : "2784051", "ret_msg" : null },
38
+ {"Rank" : 3, "Worshippers" : 322, "god" : "Janus", "god_id" : "1999", "player_id" : "2784051", "ret_msg" : null },
39
+ {"Rank" : 3, "Worshippers" : 302, "god" : "Hades", "god_id" : "1676", "player_id" : "2784051", "ret_msg" : null },
40
+ {"Rank" : 3, "Worshippers" : 297, "god" : "Artemis", "god_id" : "1748", "player_id" : "2784051", "ret_msg" : null },
41
+ {"Rank" : 3, "Worshippers" : 277, "god" : "Chang'e", "god_id" : "1921", "player_id" : "2784051", "ret_msg" : null },
42
+ {"Rank" : 3, "Worshippers" : 272, "god" : "Ah Muzen Cab", "god_id" : "1956", "player_id" : "2784051", "ret_msg" : null },
43
+ {"Rank" : 3, "Worshippers" : 264, "god" : "Cupid", "god_id" : "1778", "player_id" : "2784051", "ret_msg" : null },
44
+ {"Rank" : 3, "Worshippers" : 260, "god" : "Ymir", "god_id" : "1670", "player_id" : "2784051", "ret_msg" : null },
45
+ {"Rank" : 2, "Worshippers" : 224, "god" : "Kukulkan", "god_id" : "1677", "player_id" : "2784051", "ret_msg" : null },
46
+ {"Rank" : 2, "Worshippers" : 220, "god" : "Zhong Kui", "god_id" : "1926", "player_id" : "2784051", "ret_msg" : null },
47
+ {"Rank" : 2, "Worshippers" : 216, "god" : "Chaac", "god_id" : "1966", "player_id" : "2784051", "ret_msg" : null },
48
+ {"Rank" : 2, "Worshippers" : 192, "god" : "Guan Yu", "god_id" : "1763", "player_id" : "2784051", "ret_msg" : null },
49
+ {"Rank" : 2, "Worshippers" : 190, "god" : "Ratatoskr", "god_id" : "2063", "player_id" : "2784051", "ret_msg" : null },
50
+ {"Rank" : 2, "Worshippers" : 180, "god" : "Nu Wa", "god_id" : "1958", "player_id" : "2784051", "ret_msg" : null },
51
+ {"Rank" : 2, "Worshippers" : 164, "god" : "Hel", "god_id" : "1718", "player_id" : "2784051", "ret_msg" : null },
52
+ {"Rank" : 1, "Worshippers" : 142, "god" : "Hou Yi", "god_id" : "2040", "player_id" : "2784051", "ret_msg" : null },
53
+ {"Rank" : 1, "Worshippers" : 126, "god" : "Bacchus", "god_id" : "1809", "player_id" : "2784051", "ret_msg" : null },
54
+ {"Rank" : 1, "Worshippers" : 126, "god" : "Odin", "god_id" : "1669", "player_id" : "2784051", "ret_msg" : null },
55
+ {"Rank" : 1, "Worshippers" : 116, "god" : "Neith", "god_id" : "1872", "player_id" : "2784051", "ret_msg" : null },
56
+ {"Rank" : 1, "Worshippers" : 110, "god" : "Sun Wukong", "god_id" : "1944", "player_id" : "2784051", "ret_msg" : null },
57
+ {"Rank" : 1, "Worshippers" : 88, "god" : "Ares", "god_id" : "1782", "player_id" : "2784051", "ret_msg" : null },
58
+ {"Rank" : 1, "Worshippers" : 83, "god" : "Nox", "god_id" : "2036", "player_id" : "2784051", "ret_msg" : null },
59
+ {"Rank" : 1, "Worshippers" : 82, "god" : "Medusa", "god_id" : "2051", "player_id" : "2784051", "ret_msg" : null },
60
+ {"Rank" : 1, "Worshippers" : 75, "god" : "Aphrodite", "god_id" : "1898", "player_id" : "2784051", "ret_msg" : null },
61
+ {"Rank" : 1, "Worshippers" : 64, "god" : "Cabrakan", "god_id" : "2008", "player_id" : "2784051", "ret_msg" : null },
62
+ {"Rank" : 1, "Worshippers" : 62, "god" : "Athena", "god_id" : "1919", "player_id" : "2784051", "ret_msg" : null },
63
+ {"Rank" : 1, "Worshippers" : 60, "god" : "Xing Tian", "god_id" : "2072", "player_id" : "2784051", "ret_msg" : null },
64
+ {"Rank" : 1, "Worshippers" : 59, "god" : "Sylvanus", "god_id" : "2030", "player_id" : "2784051", "ret_msg" : null },
65
+ {"Rank" : 1, "Worshippers" : 58, "god" : "Geb", "god_id" : "1978", "player_id" : "2784051", "ret_msg" : null },
66
+ {"Rank" : 1, "Worshippers" : 50, "god" : "Sobek", "god_id" : "1747", "player_id" : "2784051", "ret_msg" : null },
67
+ {"Rank" : 1, "Worshippers" : 50, "god" : "Sol", "god_id" : "2074", "player_id" : "2784051", "ret_msg" : null },
68
+ {"Rank" : 0, "Worshippers" : 38, "god" : "Chiron", "god_id" : "2075", "player_id" : "2784051", "ret_msg" : null },
69
+ {"Rank" : 0, "Worshippers" : 19, "god" : "Ravana", "god_id" : "2065", "player_id" : "2784051", "ret_msg" : null },
70
+ {"Rank" : 0, "Worshippers" : 7, "god" : "Ah Puch", "god_id" : "2056", "player_id" : "2784051", "ret_msg" : null }
71
+ ]
@@ -0,0 +1,461 @@
1
+ [
2
+ {
3
+ "Ability1" : "Noxious Fumes",
4
+ "Ability2" : "Flame Wave",
5
+ "Ability3" : "Path of Flames",
6
+ "Ability4" : "Rain Fire",
7
+ "Ability5" : "Combustion",
8
+ "AbilityId1" : 7812,
9
+ "AbilityId2" : 7811,
10
+ "AbilityId3" : 7818,
11
+ "AbilityId4" : 7824,
12
+ "AbilityId5" : 7822,
13
+ "Ability_1" :
14
+ {"Description" :
15
+ {"itemDescription" :
16
+ {"cooldown" : "12s",
17
+ "cost" : "60/70/80/90/100",
18
+ "description" :
19
+ "Agni summons a cloud of noxious fumes at his ground target location, doing damage every second. Firing any of Agni's abilities into the fumes detonates the gas, Stunning all enemies in the radius.",
20
+ "menuitems" :
21
+ [{"description" : "Ability:", "value" : "Ground Target"},
22
+ {"description" : "Affects:", "value" : "Enemy"},
23
+ {"description" : "Damage:", "value" : "Magical"},
24
+ {"description" : "Radius:", "value" : "20"}],
25
+ "rankitems" :
26
+ [{"description" : "Damage per Tick:", "value" : "10/20/30/40/50 (+5% of your Magical Power)"},
27
+ {"description" : "Fumes Duration:", "value" : "10s"},
28
+ {"description" : "Stun Duration:", "value" : "1s"}],
29
+ "secondaryDescription" : ""}},
30
+ "Id" : 7812,
31
+ "Summary" : "Noxious Fumes",
32
+ "URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1737_78121.jpg"},
33
+ "Ability_2" :
34
+ {"Description" :
35
+ {"itemDescription" :
36
+ {"cooldown" : "15/14/13/12/11s",
37
+ "cost" : "60/70/80/90/100",
38
+ "description" : "Agni summons a wave of fire in front of him that scorches all enemies in its path. Ignites Noxious Fumes.",
39
+ "menuitems" :
40
+ [{"description" : "Ability:", "value" : "Line"},
41
+ {"description" : "Affects:", "value" : "Enemy"},
42
+ {"description" : "Damage:", "value" : "Magical"}],
43
+ "rankitems" : [{"description" : "Damage:", "value" : "90/140/190/240/290 (+50% of your Magical Power)"}],
44
+ "secondaryDescription" : ""}},
45
+ "Id" : 7811,
46
+ "Summary" : "Flame Wave",
47
+ "URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1737_78111.jpg"},
48
+ "Ability_3" :
49
+ {"Description" :
50
+ {"itemDescription" :
51
+ {"cooldown" : "15s",
52
+ "cost" : "70/75/80/85/90",
53
+ "description" :
54
+ "Agni blazes a path forward in a quick dash, leaving flames trailing behind him. Any enemies passing through the flames catch fire and burn for damage every .5s for 2s. Ignites Noxious Fumes. Agni is immune to Knockback while dashing.",
55
+ "menuitems" :
56
+ [{"description" : "Ability:", "value" : "Dash"},
57
+ {"description" : "Affects:", "value" : "Enemy"},
58
+ {"description" : "Damage:", "value" : "Magical"}],
59
+ "rankitems" :
60
+ [{"description" : "Damage per Tick:", "value" : "20/30/40/50/60 (+15% of your Magical Power)"},
61
+ {"description" : "Path Duration:", "value" : "3s"}],
62
+ "secondaryDescription" : ""}},
63
+ "Id" : 7818,
64
+ "Summary" : "Path of Flames",
65
+ "URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1737_78181.jpg"},
66
+ "Ability_4" :
67
+ {"Description" :
68
+ {"itemDescription" :
69
+ {"cooldown" : "Dependent on Halos",
70
+ "cost" : "0",
71
+ "description" :
72
+ "Every 20 seconds, Agni gains a flaming halo that can be expended to summon a giant meteor at his ground target location. He can summon 1 every .8 seconds. Ignites Noxious Fumes.",
73
+ "menuitems" :
74
+ [{"description" : "Ability:", "value" : "Ground Target"},
75
+ {"description" : "Affects:", "value" : "Enemy"},
76
+ {"description" : "Damage:", "value" : "Magical"},
77
+ {"description" : "Radius:", "value" : "20"}],
78
+ "rankitems" :
79
+ [{"description" : "Damage:", "value" : "160/195/230/265/300 (+60% of your Magical Power)"},
80
+ {"description" : "Max Halos:", "value" : "3"}],
81
+ "secondaryDescription" : ""}},
82
+ "Id" : 7824,
83
+ "Summary" : "Rain Fire",
84
+ "URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1737_78241.jpg"},
85
+ "Ability_5" :
86
+ {"Description" :
87
+ {"itemDescription" :
88
+ {"cooldown" : "",
89
+ "cost" : "",
90
+ "description" :
91
+ "After hitting with 4 Basic Attacks, Agni will gain a Buff. On the next cast of Flame Wave or Rain Fire, all enemies hit by those abilities will be additionally set ablaze, taking damage every .5s for 3s.",
92
+ "menuitems" : [{"description" : "Affects:", "value" : "Enemy"}, {"description" : "Damage:", "value" : "Magical"}],
93
+ "rankitems" : [{"description" : "Damage per Tick:", "value" : "5 (+10% of your Magical Power)"}],
94
+ "secondaryDescription" : ""}},
95
+ "Id" : 7822,
96
+ "Summary" : "Combustion",
97
+ "URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1737_78221.jpg"},
98
+ "AttackSpeed" : 0.86,
99
+ "AttackSpeedPerLevel" : 0.009,
100
+ "Cons" : "",
101
+ "HP5PerLevel" : 0.47,
102
+ "Health" : 360,
103
+ "HealthPerFive" : 7,
104
+ "HealthPerLevel" : 71,
105
+ "Lore" : "There are few elements as destructive or as purifying as fire. Agni, God of Fire, is the embodiment of both of these qualities, with a head for each.\\n\\nThough the source of his origin warrants debate - for there are many tales of his parentage ranging from two simple sticks rubbed together, to the cosmic energy that made all things at the beginning of time - Agni is a pivotal and important God with many duties to the Pantheon. He is the twin brother to Indra, God of the Heavens and Rains and chief among warriors. Conversely, Agni is chief among priests, acting as messenger between mortals and Gods. Every Hindu ritual and prayer is performed in front of a fire of some kind, so Agni carries the words and sacrifices, traveling between the Earth and the Heavens. He is welcome in every home and every hearth and much beloved by the Faithful.\\n\\nThrough his flames, Agni provides heat and light, but also cleanses impurities. Smoke from his pyres create the air and hold the Heavens aloft. The sun, a source of fire itself, brings life-giving energy to the world, and his lightning streaks the sky during storms.\\n\\nFor all his kindness and service, Agni has two faces. One is the face of kindness and purity, turned towards the people and Gods. His other face, grim and resolute, guides the God of Fire, to play his role in the cosmic cycle of creation and destruction, to burn and blacken all the atrocities of the world to ash.",
106
+ "MP5PerLevel" : 0.37,
107
+ "MagicProtection" : 30,
108
+ "MagicProtectionPerLevel" : 0,
109
+ "MagicalPower" : 170,
110
+ "MagicalPowerPerLevel" : 7.5,
111
+ "Mana" : 255,
112
+ "ManaPerFive" : 4.7,
113
+ "ManaPerLevel" : 45,
114
+ "Name" : "Agni",
115
+ "OnFreeRotation" : "true",
116
+ "Pantheon" : "Hindu",
117
+ "PhysicalPower" : 0,
118
+ "PhysicalPowerPerLevel" : 0,
119
+ "PhysicalProtection" : 11,
120
+ "PhysicalProtectionPerLevel" : 2.6,
121
+ "Pros" : " High Area Damage",
122
+ "Roles" : " Mage",
123
+ "Speed" : 350,
124
+ "Title" : "God of Fire",
125
+ "Type" : " Ranged, Magical",
126
+ "abilityDescription1" : {},
127
+ "abilityDescription2" : {},
128
+ "abilityDescription3" : {},
129
+ "abilityDescription4" : {},
130
+ "abilityDescription5" : {},
131
+ "basicAttack" :
132
+ {"itemDescription" :
133
+ {"cooldown" : "",
134
+ "cost" : "",
135
+ "description" : "",
136
+ "menuitems" :
137
+ [{"description" : "Damage:", "value" : "34 + 1.5/Lvl (+20% of Magical Power)"}, {"description" : "Progression:", "value" : "None"}],
138
+ "rankitems" : [],
139
+ "secondaryDescription" : ""}},
140
+ "godAbility1_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1737_78121.jpg",
141
+ "godAbility2_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1737_78111.jpg",
142
+ "godAbility3_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1737_78181.jpg",
143
+ "godAbility4_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1737_78241.jpg",
144
+ "godAbility5_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1737_78221.jpg",
145
+ "godCard_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/standardagni_card.jpg",
146
+ "godIcon_URL" : "http://hirezstudios.blob.core.windows.net/sitefinity/smite-god-icons/1737.jpg",
147
+ "id" : 1737,
148
+ "latestGod" : "n",
149
+ "ret_msg" : null
150
+ },
151
+ {
152
+ "Ability1" : "Charge Prey",
153
+ "Ability2" : "Tail Whip",
154
+ "Ability3" : "Sickening Strike",
155
+ "Ability4" : "Lurking in the Waters",
156
+ "Ability5" : "Blessing of the Nile",
157
+ "AbilityId1" : 7946,
158
+ "AbilityId2" : 7949,
159
+ "AbilityId3" : 7951,
160
+ "AbilityId4" : 7947,
161
+ "AbilityId5" : 7952,
162
+ "Ability_1" :
163
+ {"Description" :
164
+ {"itemDescription" :
165
+ {"cooldown" : "15s",
166
+ "cost" : "70/75/80/85/90",
167
+ "description" :
168
+ "Sobek charges forward at a frenzied pace. If Sobek hits an enemy, he does damage and throws the enemy behind himself. Sobek is immune to knockups while dashing.",
169
+ "menuitems" :
170
+ [{"description" : "Ability:", "value" : "Dash"},
171
+ {"description" : "Affects:", "value" : "Enemy"},
172
+ {"description" : "Damage:", "value" : "Magical"}],
173
+ "rankitems" : [{"description" : "Damage:", "value" : "70/110/150/190/230 (+50% of your magical power)"}],
174
+ "secondaryDescription" : ""}},
175
+ "Id" : 7946,
176
+ "Summary" : "Charge Prey",
177
+ "URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1747_7946.jpg"},
178
+ "Ability_2" :
179
+ {"Description" :
180
+ {"itemDescription" :
181
+ {"cooldown" : "12s",
182
+ "cost" : "70/80/90/100/110",
183
+ "description" : "Sobek whips around in a circle, knocking enemies back and doing damage.",
184
+ "menuitems" :
185
+ [{"description" : "Ability:", "value" : "Area"},
186
+ {"description" : "Affects:", "value" : "Enemy"},
187
+ {"description" : "Damage:", "value" : "Magical"},
188
+ {"description" : "Radius:", "value" : "20"}],
189
+ "rankitems" : [{"description" : "Damage:", "value" : "80/125/170/215/260 (+40% of your magical power)"}],
190
+ "secondaryDescription" : ""}},
191
+ "Id" : 7949,
192
+ "Summary" : "Tail Whip",
193
+ "URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1747_7949.jpg"},
194
+ "Ability_3" :
195
+ {"Description" :
196
+ {"itemDescription" :
197
+ {"cooldown" : "13s",
198
+ "cost" : "60/65/70/75/80",
199
+ "description" :
200
+ "Sobek does an axe attack that damages all enemies in front of him and lowers their healing received. In addition, Sobek heals for each enemy hit, up to 3.",
201
+ "menuitems" :
202
+ [{"description" : "Ability:", "value" : "Cone"},
203
+ {"description" : "Affects:", "value" : "Enemy"},
204
+ {"description" : "Damage:", "value" : "Magical"}],
205
+ "rankitems" :
206
+ [{"description" : "Damage:", "value" : "60/100/140/180/220 (+30% of your magical power)"},
207
+ {"description" : "Healing Reduction:", "value" : "50%"},
208
+ {"description" : "Healing Reduction Lifetime:", "value" : "4s"},
209
+ {"description" : "Heal:", "value" : "20/30/40/50/60 (+10% of your magical power)"}],
210
+ "secondaryDescription" : ""}},
211
+ "Id" : 7951,
212
+ "Summary" : "Sickening Strike",
213
+ "URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1747_7951.jpg"},
214
+ "Ability_4" :
215
+ {"Description" :
216
+ {"itemDescription" :
217
+ {"cooldown" : "90s",
218
+ "cost" : "80/90/100/110/120",
219
+ "description" :
220
+ "Sobek submerges himself, where he gains 30% protections, regens mana, is immune to crowd control and he slows all enemies. When Sobek emerges, he damages all enemies in the radius. Cancelling the ability decreases the damage.",
221
+ "menuitems" :
222
+ [{"description" : "Ability:", "value" : "Area"},
223
+ {"description" : "Affects:", "value" : "Enemy"},
224
+ {"description" : "Damage:", "value" : "Magical"},
225
+ {"description" : "Radius:", "value" : "30"}],
226
+ "rankitems" :
227
+ [{"description" : "Damage:", "value" : "350/500/650/800/950 (+80% of your magical power)"},
228
+ {"description" : "Submerge Slow:", "value" : "20/25/30/35/40%"},
229
+ {"description" : "Submerge Lifetime:", "value" : "4s"},
230
+ {"description" : "Submerge Mana Regen:", "value" : "10% per second"}],
231
+ "secondaryDescription" : ""}},
232
+ "Id" : 7947,
233
+ "Summary" : "Lurking in the Waters",
234
+ "URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1747_7947.jpg"},
235
+ "Ability_5" :
236
+ {"Description" :
237
+ {"itemDescription" :
238
+ {"cooldown" : "",
239
+ "cost" : "",
240
+ "description" : "Sobek's basic attacks and abilities that hit an enemy grant him protections for a short time.",
241
+ "menuitems" : [{"description" : "Ability:", "value" : "Buff"}, {"description" : "Affects:", "value" : "Self"}],
242
+ "rankitems" :
243
+ [{"description" : "Protections:", "value" : "7"},
244
+ {"description" : "Lifetime:", "value" : "3s"},
245
+ {"description" : "Max Stacks:", "value" : "3"}],
246
+ "secondaryDescription" : ""}},
247
+ "Id" : 7952,
248
+ "Summary" : "Blessing of the Nile",
249
+ "URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1747_7952.jpg"},
250
+ "AttackSpeed" : 0.85,
251
+ "AttackSpeedPerLevel" : 0.012,
252
+ "Cons" : "",
253
+ "HP5PerLevel" : 0.75,
254
+ "Health" : 490,
255
+ "HealthPerFive" : 6,
256
+ "HealthPerLevel" : 81,
257
+ "Lore" :
258
+ "Hunter, guardian, destroyer, menace; the Crocodile God, Sobek, swims where the Nile takes him and owes allegiance to no one.\\n\\nSome say that Sobek was there when only the Dark Waters existed, so he helped create the world. Some say that Sobek made the Nile with his sweat and protects those that travel it if they pay him tribute, otherwise he destroys them. Some say that Sobek ushers the worthy dead down the Nile to the afterlife and aids in their rebirth, restoring sight and strength. Some say he is evil and hateful, ravaging those along the shores and terrorizing villages. Sobek, in truth, is all of these things and none.\\n\\nSobek is not a God of good or evil, of benevolence or malice, but a God of solitary neutrality, unless disturbed; a God that tends to his mighty river and performs his responsibilities to passing souls. The rest of the time, he does what he wishes. For his protection to the living and the dead, he is to be worshipped and respected. For his power, ferocity, and ruthlessness, he is to be rightfully feared.",
259
+ "MP5PerLevel" : 0.43,
260
+ "MagicProtection" : 30,
261
+ "MagicProtectionPerLevel" : 0.9,
262
+ "MagicalPower" : 190,
263
+ "MagicalPowerPerLevel" : 7.5,
264
+ "Mana" : 210,
265
+ "ManaPerFive" : 4.5,
266
+ "ManaPerLevel" : 35,
267
+ "Name" : "Sobek",
268
+ "OnFreeRotation" : "",
269
+ "Pantheon" : "Egyptian",
270
+ "PhysicalPower" : 0,
271
+ "PhysicalPowerPerLevel" : 0,
272
+ "PhysicalProtection" : 19,
273
+ "PhysicalProtectionPerLevel" : 3,
274
+ "Pros" : " High Crowd Control, High Defense",
275
+ "Roles" : " Guardian",
276
+ "Speed" : 365,
277
+ "Title" : "God of the Nile",
278
+ "Type" : " Melee, Magical",
279
+ "abilityDescription1" : {},
280
+ "abilityDescription2" : {},
281
+ "abilityDescription3" : {},
282
+ "abilityDescription4" : {},
283
+ "abilityDescription5" : {},
284
+ "basicAttack" :
285
+ {"itemDescription" :
286
+ {"cooldown" : "",
287
+ "cost" : "",
288
+ "description" : "",
289
+ "menuitems" :
290
+ [{"description" : "Damage:", "value" : "38 + 1.5/Lvl (+20% of Magical Power)"}, {"description" : "Progression:", "value" : "None"}],
291
+ "rankitems" : [],
292
+ "secondaryDescription" : ""}},
293
+ "godAbility1_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1747_7946.jpg",
294
+ "godAbility2_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1747_7949.jpg",
295
+ "godAbility3_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1747_7951.jpg",
296
+ "godAbility4_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1747_7947.jpg",
297
+ "godAbility5_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/1747_7952.jpg",
298
+ "godCard_URL" : "https://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/standardsobek_card.jpg",
299
+ "godIcon_URL" : "http://hirezstudios.blob.core.windows.net/sitefinity/smite-god-icons/1747.jpg",
300
+ "id" : 1747,
301
+ "latestGod" : "n",
302
+ "ret_msg" : null
303
+ },
304
+ {
305
+ "Ability1" : "Sickle Strike",
306
+ "Ability2" : "Spirit Flail",
307
+ "Ability3" : "Judgement Tether",
308
+ "Ability4" : "Lord of the Afterlife",
309
+ "Ability5" : "Fragmented",
310
+ "AbilityId1" : 9946,
311
+ "AbilityId2" : 9947,
312
+ "AbilityId3" : 9953,
313
+ "AbilityId4" : 10000,
314
+ "AbilityId5" : 9973,
315
+ "Ability_1" :
316
+ {"Description" :
317
+ {"itemDescription" :
318
+ {"cooldown" : "5s",
319
+ "cost" : "30",
320
+ "description" :
321
+ "Osiris throws his Sickle forward. It stops at the first enemy hit, dealing damage and slowing them. The Sickle remains for the duration of the slow.",
322
+ "menuitems" :
323
+ [{"description" : "Ability:", "value" : "Line"},
324
+ {"description" : "Affects:", "value" : "Enemies"},
325
+ {"description" : "Damage:", "value" : "Physical"},
326
+ {"description" : "Range:", "value" : "55"}],
327
+ "rankitems" :
328
+ [{"description" : "Damage:", "value" : "60/100/140/180/220 (+30% of your physical power)"},
329
+ {"description" : "Slow Duration:", "value" : "3s"},
330
+ {"description" : "Slow:", "value" : "20%"}],
331
+ "secondaryDescription" : ""}},
332
+ "Id" : 9946,
333
+ "Summary" : "Sickle Strike",
334
+ "URL" : "http://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/2000_9946.jpg"},
335
+ "Ability_2" :
336
+ {"Description" :
337
+ {"itemDescription" :
338
+ {"cooldown" : "10s",
339
+ "cost" : "50/55/60/65/70",
340
+ "description" :
341
+ "Osiris imbues his flail with spiritual energy, striking at the target ground location. Enemies hit take damage, and Osiris gains movement speed. If an enemy is under the effect of Sickle Strike, the target slow is increased in power and duration.",
342
+ "menuitems" :
343
+ [{"description" : "Ability:", "value" : "Ground Target"},
344
+ {"description" : "Affects:", "value" : "Enemies"},
345
+ {"description" : "Damage:", "value" : "Physical"},
346
+ {"description" : "Radius:", "value" : "15"}],
347
+ "rankitems" :
348
+ [{"description" : "Damage:", "value" : "80/130/180/230/280 (+50% of your physical power)"},
349
+ {"description" : "Sickle Slow Increase:", "value" : "40% for 3s."},
350
+ {"description" : "Speed Buff:", "value" : "20% for 3s."}],
351
+ "secondaryDescription" : ""}},
352
+ "Id" : 9947,
353
+ "Summary" : "Spirit Flail",
354
+ "URL" : "http://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/2000_9947.jpg"},
355
+ "Ability_3" :
356
+ {"Description" :
357
+ {"itemDescription" :
358
+ {"cooldown" : "18s ",
359
+ "cost" : "60/65/70/75/80",
360
+ "description" :
361
+ "Osiris flings out mummy wraps, tethering himself to all nearby enemy gods. Targets hit deal reduced damage over the next 4s. The tether can be broken by targets moving far enough away from Osiris. Targets still in range when the duration expires are stunned.",
362
+ "menuitems" :
363
+ [{"description" : "Ability:", "value" : "Area"},
364
+ {"description" : "Affects:", "value" : "Enemy Gods"},
365
+ {"description" : "Radius:", "value" : "35"}],
366
+ "rankitems" :
367
+ [{"description" : "Damage Reduction:", "value" : "10/15/20/25/30% + 5% per second."},
368
+ {"description" : "Stun Duration:", "value" : "1.4s "}],
369
+ "secondaryDescription" : ""}},
370
+ "Id" : 9953,
371
+ "Summary" : "Judgement Tether",
372
+ "URL" : "http://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/2000_9953.jpg"},
373
+ "Ability_4" :
374
+ {"Description" :
375
+ {"itemDescription" :
376
+ {"cooldown" : "90",
377
+ "cost" : "100",
378
+ "description" :
379
+ "Osiris sheds any remaining fragments, gaining the benefit of his passive, and leaps forward. Osiris targets all enemy gods in the landing area, and rips a fragment of their spirits out, dealing damage and preventing them from healing. Targets are rooted for 0.4s during the attack. Enemy minions in the target area also take damage.",
380
+ "menuitems" :
381
+ [{"description" : "Ability:", "value" : "Leap"},
382
+ {"description" : "Affects:", "value" : "Enemies"},
383
+ {"description" : "Damage:", "value" : "Physical"},
384
+ {"description" : "Area:", "value" : "15"}],
385
+ "rankitems" :
386
+ [{"description" : "Damage:", "value" : "220/320/420/520/620 (80% of your physical power)"},
387
+ {"description" : "Healing Reduction:", "value" : "100%"},
388
+ {"description" : "Duration:", "value" : "6s"}],
389
+ "secondaryDescription" : ""}},
390
+ "Id" : 10000,
391
+ "Summary" : "Lord of the Afterlife",
392
+ "URL" : "http://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/2000_10000.jpg"},
393
+ "Ability_5" :
394
+ {"Description" :
395
+ {"itemDescription" :
396
+ {"cooldown" : "",
397
+ "cost" : "",
398
+ "description" :
399
+ "Each time Osiris uses an ability he burns away a fragment of his body, gaining physical damage mitigation for each missing fragment. After losing 8 fragments, he becomes his spirit form. He may walk through enemies and enemy blockers, and his basic attacks do not incur a movement penalty. This effect lasts for 6 successful basic attacks.",
400
+ "menuitems" : [{"description" : "Ability:", "value" : "Passive"}, {"description" : "Affects:", "value" : "Self"}],
401
+ "rankitems" : [{"description" : "Physical Damage Mitigation:", "value" : "2% per missing fragment"}],
402
+ "secondaryDescription" : ""}},
403
+ "Id" : 9973,
404
+ "Summary" : "Fragmented",
405
+ "URL" : "http://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/2000_9973.jpg"},
406
+ "AttackSpeed" : 1,
407
+ "AttackSpeedPerLevel" : 0.014,
408
+ "Cons" : "",
409
+ "HP5PerLevel" : 0.8,
410
+ "Health" : 475,
411
+ "HealthPerFive" : 6,
412
+ "HealthPerLevel" : 85,
413
+ "Lore" :
414
+ "Never has there been, nor shall there be a king more perfect than Osiris. Son of the Earth God, Geb, Osiris was divine royalty by birth, and all the land his birthright. Benevolence and prosperity were the hallmarks of his reign. Would that he had been left to shape the world, but the jealousy of his brother, Set, changed the course of fate.\\n\\nSeeking to usurp the throne, Set deceived and murdered his brother, tearing his body to pieces and casting them across the land. Isis, Osiris’ wife, secretly fled while Set plunged the kingdom into darkness. For years she toiled to reassemble her husband while his spirit form, his Ba, endured. Yet for all her searching, she could not find every part of him, and Isis was forced to reanimate Osiris without. Though not strong enough to defy Set in this incomplete form, Osiris gave Isis a son that would topple the tyrant Set and restore balance to Egypt.\\n\\nWhat remains of Osiris is a fragment of what he once was. Robbed of his crown over the earth, he now governs the realm of the dead with the same benevolence he ruled the living. But darkness looms again, and though broken, Osiris refuses to sit idly by. Mustering the last of his strength and spirit, Osiris seeks to change the course of fate, this time for the light over darkness.",
415
+ "MP5PerLevel" : 0.39,
416
+ "MagicProtection" : 30,
417
+ "MagicProtectionPerLevel" : 0.9,
418
+ "MagicalPower" : 0,
419
+ "MagicalPowerPerLevel" : 0,
420
+ "Mana" : 230,
421
+ "ManaPerFive" : 4.7,
422
+ "ManaPerLevel" : 40,
423
+ "Name" : "Osiris",
424
+ "OnFreeRotation" : "",
425
+ "Pantheon" : "Egyptian",
426
+ "PhysicalPower" : 39,
427
+ "PhysicalPowerPerLevel" : 2.25,
428
+ "PhysicalProtection" : 17,
429
+ "PhysicalProtectionPerLevel" : 3,
430
+ "Pros" : " High Defense, High Attack Speed",
431
+ "Roles" : " Warrior",
432
+ "Speed" : 375,
433
+ "Title" : "Broken God of the Afterlife",
434
+ "Type" : " Melee, Physical",
435
+ "abilityDescription1" : {},
436
+ "abilityDescription2" : {},
437
+ "abilityDescription3" : {},
438
+ "abilityDescription4" : {},
439
+ "abilityDescription5" : {},
440
+ "basicAttack" :
441
+ {"itemDescription" :
442
+ {"cooldown" : "",
443
+ "cost" : "",
444
+ "description" : "",
445
+ "menuitems" :
446
+ [{"description" : "Damage:", "value" : "39 + 2.25/Lvl (+100% of Physical Power)"},
447
+ {"description" : "Progression:", "value" : "0.5/1/0.5/1x damage. The last two attacks hit all enemies in the melee area."}],
448
+ "rankitems" : [],
449
+ "secondaryDescription" : ""}},
450
+ "godAbility1_URL" : "http://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/2000_9946.jpg",
451
+ "godAbility2_URL" : "http://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/2000_9947.jpg",
452
+ "godAbility3_URL" : "http://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/2000_9953.jpg",
453
+ "godAbility4_URL" : "http://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/2000_10000.jpg",
454
+ "godAbility5_URL" : "http://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/2000_9973.jpg",
455
+ "godCard_URL" : "http://hzweb.hi-rezgame.net/smite-web/wp-content/uploads/2015/05/standardosiris_card.jpg",
456
+ "godIcon_URL" : "http://hirezstudios.blob.core.windows.net/sitefinity/smite-god-icons/2000.jpg",
457
+ "id" : 2000,
458
+ "latestGod" : "n",
459
+ "ret_msg" : null
460
+ }
461
+ ]