13 lines
217 B
TypeScript
13 lines
217 B
TypeScript
export const FrameType: { [key: number]: string } = {
|
|
0: 'Normal',
|
|
1: 'Magic',
|
|
2: 'Rare',
|
|
3: 'Unique',
|
|
4: 'Gem',
|
|
5: 'Currency',
|
|
6: 'Divination Card',
|
|
7: 'Quest Item',
|
|
8: 'Prophecy',
|
|
9: 'Relic',
|
|
};
|