GW2v2PvpAmulet

@Serializable
data class GW2v2PvpAmulet(val id: Long, val name: String, val icon: String, val attributes: GW2v2PvpAmulet.Stats)

Information about a PvP amulet.

Parameters

id

the amulet's ID

name

the amulet's localized name

icon

a render service URL for the amulet's icon

attributes

the amulet's stats

Constructors

Link copied to clipboard
constructor(id: Long, name: String, icon: String, attributes: GW2v2PvpAmulet.Stats)

Types

Link copied to clipboard
@Serializable
data class Stats(val agonyResistance: Long? = null, val boonDuration: Long? = null, val conditionDamage: Long? = null, val conditionDuration: Long? = null, val critDamage: Long? = null, val healing: Long? = null, val power: Long? = null, val precision: Long? = null, val toughness: Long? = null, val vitality: Long? = null)

Information about an amulet's stats.

Properties

Link copied to clipboard

This field holds the amulet's stats.

Link copied to clipboard

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

Link copied to clipboard
val id: Long

This field holds the amulet's ID.

Link copied to clipboard

This field holds the amulet's localized name.