fix: ts format에서 하한값 기준으로 수정

This commit is contained in:
2022-04-07 03:03:38 +09:00
parent ad89dd0ffb
commit 0a3c98ec5a
2 changed files with 27 additions and 25 deletions
+14 -13
View File
@@ -1,19 +1,20 @@
import bs from 'binary-search';
const hornorMap: [number, string][] = [
[640, '전무'],
[2560, '무명'],
[5760, '신동'],
[10240, '약간'],
[16000, '평범'],
[23040, '지역적'],
[31360, '전국적'],
[40960, '세계적'],
[45000, '유명'],
[51840, '명사'],
[55000, '호걸'],
[64000, '효웅'],
[77440, '영웅'],
[0, '전무'],
[640, '무명'],
[2560, '신동'],
[5760, '약간'],
[10240, '평범'],
[16000, '지역적'],
[23040, '전국적'],
[31360, '세계적'],
[40960, '유명'],
[45000, '명사'],
[51840, '호걸'],
[55000, '효웅'],
[64000, '영웅'],
[77440, '구세주'],
]
export function formatHonor(experience: number): string {