Module: Eve::API::Services::Map
- Defined in:
- lib/eve/api/services/map.rb
Instance Method Summary collapse
-
#fac_war_systems ⇒ Object
(also: #contested_systems)
Returns the sovereignty status of all solar systems.
-
#jumps ⇒ Object
Returns the sovereignty status of all solar systems.
-
#kills ⇒ Object
Returns the sovereignty status of all solar systems.
-
#sovereignty ⇒ Object
Returns the sovereignty status of all solar systems.
Instance Method Details
#fac_war_systems ⇒ Object Also known as: contested_systems
Returns the sovereignty status of all solar systems. Warning: This is a lot of data!
Returns an object with a single “solar_systems” array. Each element in the array contains:
solar_system_id
solar_system_name
contested (boolean)
39 |
# File 'lib/eve/api/services/map.rb', line 39 def fac_war_systems; request('map', :fac_war_systems); end |
#jumps ⇒ Object
Returns the sovereignty status of all solar systems. Warning: This is a lot of data!
Returns an object with a single “solar_systems” array. Each element in the array contains:
solar_system_id
ship_jumps (number)
29 |
# File 'lib/eve/api/services/map.rb', line 29 def jumps; request('map', :jumps); end |
#kills ⇒ Object
Returns the sovereignty status of all solar systems. Warning: This is a lot of data!
Returns an object with a single “solar_systems” array. Each element in the array contains:
solar_system_id
ship_kills (number)
faction_kills (number)
pod_kills (number)
22 |
# File 'lib/eve/api/services/map.rb', line 22 def kills; request('map', :kills); end |
#sovereignty ⇒ Object
Returns the sovereignty status of all solar systems. Warning: This is a lot of data!
Returns an object with a single “solar_systems” array. Each element in the array contains:
solar_system_id
alliance_id
faction_id
corporation_id
solar_system_name
13 |
# File 'lib/eve/api/services/map.rb', line 13 def sovereignty; request('map', :sovereignty); end |