esi v0.1.1 ESI.API.Dogma

Summary

Functions

Get information on a dogma attribute

Get a list of dogma attribute ids

Get information on a dogma effect

Get a list of dogma effect ids

Functions

attribute(attribute_id)
attribute(attribute_id :: integer) :: ESI.Request.t

Get information on a dogma attribute.

Response Example

Information about a dogma attribute:

%{"attribute_id" => 20, "default_value" => 1,
  "description" => "Factor by which topspeed increases.",
  "display_name" => "Maximum Velocity Bonus", "high_is_good" => true,
  "icon_id" => 1389, "name" => "speedFactor", "published" => true,
  "unit_id" => 124}

Swagger Source

This function was generated from the following Swagger operation:

  • operationIdget_dogma_attributes_attribute_id
  • path/dogma/attributes/{attribute_id}/

View on ESI Site

attributes()
attributes() :: ESI.Request.t

Get a list of dogma attribute ids.

Response Example

A list of dogma attribute ids:

[1, 2, 3]

Swagger Source

This function was generated from the following Swagger operation:

  • operationIdget_dogma_attributes
  • path/dogma/attributes/

View on ESI Site

effect(effect_id)
effect(effect_id :: integer) :: ESI.Request.t

Get information on a dogma effect.

Response Example

Information about a dogma effect:

%{"description" => "Requires a high power slot.",
  "display_name" => "High power", "effect_category" => 0, "effect_id" => 12,
  "icon_id" => 293, "name" => "hiPower", "post_expression" => 131,
  "pre_expression" => 131, "published" => true}

Swagger Source

This function was generated from the following Swagger operation:

  • operationIdget_dogma_effects_effect_id
  • path/dogma/effects/{effect_id}/

View on ESI Site

effects()
effects() :: ESI.Request.t

Get a list of dogma effect ids.

Response Example

A list of dogma effect ids:

[1, 2, 3]

Swagger Source

This function was generated from the following Swagger operation:

  • operationIdget_dogma_effects
  • path/dogma/effects/

View on ESI Site