NekoDrone / relictify-api

Backend API service for Relictify.
https://relictify-api.vercel.app
0 stars 1 forks source link

Missing characters after 1.5 #19

Open NekoDrone opened 1 month ago

NekoDrone commented 1 month ago

Issue

Currently, the database is only populated for characters up to Honkai: Star Rail version 1.5.

From each character's listing on the Honkai: Star Rail fandom, we will need the following information for the following characters:

Data type

You may find this template under ./helpers/characters.ts.

The full type definition is here:

interface CharacterInfo {
    element: CombatElement,
    name: string,
    path: CharPath,
    rarity: number,
    starting_hp: number,
    starting_atk: number,
    starting_def: number,
    starting_spd: number,
}

The characters requiring this information are:

Additionally, please ensure the the file at ./helpers/characters.ts is updated with the new characters as well.

Acceptance Criteria

The issue is resolved when the characters listed above have their initial data populated in both the database and in the reference file.

NekoDrone commented 1 month ago

See #22.