Skip to content

Venipa/teyvat-utilities

Repository files navigation

teyvat - genshin impact utilities

Build Setup

# install dependencies
$ yarn install

# serve with hot reload at localhost:3000
$ yarn dev

# build for production and launch server
$ yarn build
$ yarn start

# generate static project
$ yarn generate

For detailed explanation on how things work, check out Nuxt.js docs.

Writing new Weapon entries

We are currently just using these properties for displaying information on their respective pages.

---
id: (optional, uuid generated by me)
name: (required, item name)
category: (required, item category)
series: (required, item series)
rarity: (required, item rarity - star rating)
source: (required, item source - wish = gacha)
description: (required, item description)
imageUrl: (required, item poster url or your image of the item posted in "/images/weapons/[item name].png")
secondaryLabel: (required, secondary item stat - example: Attack, Crit. Chance & many more)
stats: (optional, upgrade levels for the item 20, 40, 50, 60, 70, 80 & 90)
  level:
    20:
      attack: 122
      secondary: 19.1%
    ...
    90:
      attack: 608
      secondary: 49.6%
---