Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/venipa/teyvat-utilities


https://github.com/venipa/teyvat-utilities

genshin genshin-impact genshinimpact teyvat

Last synced: 13 days ago
JSON representation

Awesome Lists containing this project

README

        

# teyvat - genshin impact utilities

## Build Setup

```bash
# 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](https://nuxtjs.org).

## Writing new Weapon entries

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

```markdown
---
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%
---
```