> For the complete documentation index, see [llms.txt](https://wormtql.gitbook.io/genshin-panel-doc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wormtql.gitbook.io/genshin-panel-doc/master.md).

# Introduction

## genshin\_panel

## Quick Stark

```javascript
const genshin = require("genshin_panel");

// keqing, level 80, without ascension, constellation 0
let keqing = new genshin.Character("keqing", 80, false, 0);
// the black sword, level 90, without ascension, refine 2
let weapon = new genshin.Weapon("heijian", 90, false, 2);

let art1 = new app.ArtifactBuilder()
    .setName("thunderingFury")
    .position("flower")
    .mainTag("lifeStatic", 4780)
    .tag("critical", 0.086)
    .tag("elementalMastery", 21)
    .tag("attackPercentage", 0.099)
    .tag("defendStatic", 39)
    .build()
;
```
