GW2v2PvpAmulet

@Serializable
data class GW2v2PvpAmulet(val id: Int, 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: Int, name: String, icon: String, attributes: GW2v2PvpAmulet.Stats)

Types

Link copied to clipboard
@Serializable
data class Stats(val agonyResistance: Int? = null, val boonDuration: Int? = null, val conditionDamage: Int? = null, val conditionDuration: Int? = null, val critDamage: Int? = null, val healing: Int? = null, val power: Int? = null, val precision: Int? = null, val toughness: Int? = null, val vitality: Int? = 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: Int

This field holds the amulet's ID.

Link copied to clipboard

This field holds the amulet's localized name.