GW2v2WvwAbility

@Serializable
data class GW2v2WvwAbility(val id: GW2WvwAbilityId, val name: String, val description: String, val icon: String, val ranks: List<GW2v2WvwAbility.Rank>)

Information about an ability in the World versus World game mode.

Parameters

id

the ID of the ability

name

the ability's localized name

description

the ability's localized description

icon

a render service URL for the ability's icon

ranks

the ability's ranks

Constructors

Link copied to clipboard
constructor(id: GW2WvwAbilityId, name: String, description: String, icon: String, ranks: List<GW2v2WvwAbility.Rank>)

Types

Link copied to clipboard
@Serializable
data class Rank(val cost: Int, val effect: String)

Information about an ability's rank.

Properties

Link copied to clipboard

This field holds the ability's localized description.

Link copied to clipboard

This field holds a render service URL for the ability's icon.

Link copied to clipboard

This field holds the ID of the ability.

Link copied to clipboard

This field holds the ability's localized name.

Link copied to clipboard

This field holds the ability's ranks.