All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.bselzer.gw2.v2.model.template.equipment.EquipmentTemplatePvp.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.template.equipment

import com.bselzer.gw2.v2.model.item.ItemId
import com.bselzer.gw2.v2.model.pvp.amulet.PvpAmuletId
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

// TODO replace with PvpEquipment in character?
@Serializable
data class EquipmentTemplatePvp(
    /**
     * The id of the PvP amulet.
     * @see the wiki
     */
    @SerialName("amulet")
    val amuletId: PvpAmuletId = PvpAmuletId(),

    /**
     * The id of the PvP rune.
     * @see the wiki
     */
    @SerialName("rune")
    val runeId: ItemId = ItemId(),

    /**
     * The ids of the PvP sigils. An id is null if it is not selected.
     *
     * Order: primary weapon sigil 1, secondary weapon sigil 1, primary weapon sigil 2, secondary weapon sigil 2
     * @see the wiki
     */
    @SerialName("sigils")
    val sigilIds: List = emptyList()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy