feat: 기본 내정보 카드

- 아직 bar가 없음
This commit is contained in:
2022-04-26 03:23:13 +09:00
parent f429ac5ff2
commit bdd4879e1c
4 changed files with 304 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
export function nextExpLevelRemain(exp: number, expLevel: number): [number, number] {
if (exp < 1000) {
return [exp - expLevel * 100, 100]
}
const expBase = 10 * expLevel ** 2;
const expNext = 10 * (expLevel + 1) ** 2;
return [exp - expBase, expNext - expBase];
}