📖
genshin_panel_doc
  • Introduction
  • Install
  • Character
    • Create a Character
    • Supported Character
    • Character Args
  • Weapon
    • Create a Weapon
    • Supported Weapon
  • Artifact
    • Create Artifact
    • Artifact Set Names
    • Artifact Position(Slot) Names
    • Artifact Tag(Stat) Names
  • Attribute
    • Build Attribute
    • Attribute Properties
  • Other
    • Custom Weapon
    • Custom Artifact Effect Rate
Powered by GitBook
On this page

Was this helpful?

  1. Attribute

Build Attribute

Example

const app = require("genshin_panel");

let attribute = new app.AttributeBuilder()
    .character(keqing)
    .weapon(weapon)
    .artifact(art1)
    .artifact(art2)
    .artifact(art3)
    .artifact(art4)
    .artifact(art5)
    .build()
;
PreviousAttributeNextAttribute Properties

Last updated 3 years ago

Was this helpful?