API:2/wvw/abilities

From Guild Wars 2 Wiki
< API:2‎ | wvw
Jump to navigationJump to search

/v2/wvw/abilities

HTTP method
GET
Format
json
API version
version 2
Release date
2016-09-29
Scope
none
Optional
none

This resource returns information about the available abilities in the World versus World game mode.

Endpoints

  • None - Request the list of all available abilities ids.
  • id - (Optional) Request the abilities for the specified id. Cannot be used when specifying the ids parameter.

Parameters

  • lang – (Optional) Request localized information.
  • ids - (Optional; Comma Delimited List|all) Request an array of abilities for the specified ids or all abilities. Cannot be used when accessing the id endpoint.

Response

For each requested abilities id, an object with the following properties is returned:

  • id (integer) (default/null value: 0) - The id of the abilities.
  • name (string) (default/null value: "") - The given name for the WvW ability.
  • description (string) (default/null value: "") - The given description for the WvW ability.
  • icon (string) (default/null value: "") - The uri for the ability's icon.
  • ranks (array) -
    • cost (integer) (default/null value: 0) - The cost in WvW experience points to purchase the ability.
    • effect (string) (default/null value: "") - The effect given to players for obtaining the given ability rank.


Examples

https://api.guildwars2.com/v2/wvw/abilities

[
   2,
   3,
   ...,
   23,
   24
 ]

https://api.guildwars2.com/v2/wvw/abilities/2

 {
   "id": 2,
   "name": "Guard Killer",
   "description": "Increases damage to enemy guards",
   "icon": "https://render.guildwars2.com/file/C5E6E906927E2C6311036C11F1306CCF57CBF259/544537.png",
   "ranks": [
       {
           "cost": 1,
           "effect": "4% damage to guards"
       },
       {
           "cost": 3,
           "effect": "8% (total) damage to guards"
       },
       {
           "cost": 6,
           "effect": "12% (total) damage to guards"
       },
       {
           "cost": 10,
           "effect": "16% (total) damage to guards. All Guard Killer bonuses now also affect enemy lords and supervisors."
       },
       {
           "cost": 15,
           "effect": "20% (total) damage to guards, lords, and supervisors. Gain 50% of your endurance back after killing guards, lords, and supervisors."
       }
   ]
 }

https://api.guildwars2.com/v2/wvw/abilities?ids=4,24&lang=es

 [
   {
       "id": 4,
       "name": "Azote del mercenario",
       "description": "Aumenta el daño y la defensa contra mercenarios enemigos.",
       "icon": "https://render.guildwars2.com/file/33E377E353512ACD4AB52F4DEFA41B58EF73A92D/544538.png",
       "ranks": [
           {
               "cost": 1,
               "effect": "4 % de aumento al daño y defensa contra mercenarios"
           },
           {
               "cost": 2,
               "effect": "8 % de aumento al daño y defensa contra mercenarios (total)"
           },
           {
               "cost": 3,
               "effect": "12 % de aumento al daño y defensa contra mercenarios (total)"
           },
           {
               "cost": 4,
               "effect": "16 % de aumento al daño y defensa contra mercenarios (total)"
           },
           {
               "cost": 5,
               "effect": "20 % de aumento al daño y defensa contra mercenarios (total)"
           }
       ]
   },
   {
       "id": 24,
       "name": "Maestro de las provisiones",
       "description": "Mejora tu habilidad para reunir botín y da acceso a las mercancías del suministrador portátil.",
       "icon": "https://render.guildwars2.com/file/0DD75CD712BC0BB74A4B2A0C19C0E25063339497/1424246.png",
       "ranks": [
           {
               "cost": 1,
               "effect": "Te permite comprar un suministrador portátil a cualquier proveedor WvW. Este objeto te permite comprar planos de armas de asedio en cualquier parte."
           },
           {
               "cost": 3,
               "effect": "También te permite comprar artimañas y trampas al suministrador portátil."
           },
           {
               "cost": 6,
               "effect": "También te permite comprar comida y consumibles de apoyo al suministrador portátil."
           },
           {
               "cost": 10,
               "effect": "Aprende a saquear a los enemigos caídos automáticamente."
           },
           {
               "cost": 15,
               "effect": "Aumenta el número de insignias de honor que encuentras cuando desvalijas a los enemigos caídos."
           },
           {
               "cost": 20,
               "effect": "Desbloquea recetas, sellos y runas de Heart of Thorns para el comerciante de la notaría de hazañas."
           }
       ]
   }
 ]