API talk:2/skills

From Guild Wars 2 Wiki
Jump to navigationJump to search

Feedback 2016/01/07[edit]

I ran a few tests on the exposed skills:

  • traited_facts and facts are optional.
  • text always appears in facts. (didn't manage to find a fact that didn't have text)
  • type in facts was one of:
    • AttributeAdjust
    • Buff
    • ComboField
    • ComboFinisher
    • Damage
    • Distance
    • Duration
    • Heal
    • HealingAdjust
    • NoData
    • Number
    • Percent
    • PrefixedBuff
    • Radius
    • Range
    • Recharge
    • Time
    • Unblockable
    • BuffConversion - This type didn't exist in my check.
Duration

https://api.guildwars2.com/v2/skills/21778

{
  "text": "Venom Duration",
  "type": "Duration",
  "icon": "https://render.guildwars2.com/file/7B2193ACCF77E56C13E608191B082D68AA0FAA71/156659.png",
  "duration": 30
}
  • duration (number) - The duration in seconds.
Heal

https://api.guildwars2.com/v2/skills/25492

{
  "text": "Healing",
  "type": "Heal",
  "icon": "https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF63D4378/156662.png",
  "hit_count": 1
}
  • hit_count (number) - the number of times this heal hits, I think?
HealingAdjust

https://api.guildwars2.com/v2/skills/10612

{
  "text": "Healing",
  "type": "HealingAdjust",
  "icon": "https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF6
3D4378/156662.png",
  "hit_count": 1
}

https://api.guildwars2.com/v2/skills/10640

{
  "text": "Pulse Heal",
  "type": "HealingAdjust",
  "icon": "https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF6
3D4378/156662.png",
  "hit_count": 1
}

https://api.guildwars2.com/v2/skills/21815

{
  "text": "Initial Self Heal",
  "type": "HealingAdjust",
  "icon": "https://render.guildwars2.com/file/D4347C52157B040943051D7E09DEAD7AF6
3D4378/156662.png",
  "hit_count": 1
}
  • hit_count (number) - the number of times this heal hits, I think?

Build ID: 56668 --BryghtShadow (talk) 03:10, 7 January 2016 (UTC)

Fixed, added, adjusted, etc. Pretty sure I copied that list of facts over from the /v2/traits API, thus the inclusion of BuffConversion and missing a few of the others. Thanks for the help! Eearslya (talk) 12:30, 7 January 2016 (UTC)