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

commonMain.com.bselzer.gw2.v2.model.skill.fact.SkillAttributeAdjustFact.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.skill.fact

import com.bselzer.gw2.v2.model.enumeration.wrapper.AttributeName
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
@SerialName("AttributeAdjust")
data class SkillAttributeAdjustFact(
    /**
     * The amount the [target] attribute is adjusted by for a level 80 character.
     */
    @SerialName("value")
    val value: Int = 0,

    /**
     * The name of the attribute to adjust.
     */
    @SerialName("target")
    val target: AttributeName = AttributeName()
) : SkillFact()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy