rarity was changed from Normal to Quest #800

This commit is contained in:
Alexander Drozdov
2022-12-21 12:54:11 +02:00
parent 0d031392b1
commit 49f2d1ea5c
5 changed files with 5 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ export default {
RARITY_GEM: '寶石',
RARITY_CURRENCY: '通貨',
RARITY_DIVCARD: '命運卡',
RARITY_QUEST: 'Quest',
MAP_TIER: '地圖階級: ',
RARITY: '稀有度: ',
ITEM_CLASS: '物品種類: ',

View File

@@ -8,6 +8,7 @@ export default {
RARITY_GEM: 'Gem',
RARITY_CURRENCY: 'Currency',
RARITY_DIVCARD: 'Divination Card',
RARITY_QUEST: 'Quest',
MAP_TIER: 'Map Tier: ',
RARITY: 'Rarity: ',
ITEM_CLASS: 'Item Class: ',

View File

@@ -8,6 +8,7 @@ export default {
RARITY_GEM: 'Камень',
RARITY_CURRENCY: 'Валюта',
RARITY_DIVCARD: 'Гадальная карта',
RARITY_QUEST: 'Quest',
MAP_TIER: 'Уровень карты: ',
RARITY: 'Редкость: ',
ITEM_CLASS: 'Класс предмета: ',

View File

@@ -93,6 +93,7 @@ export interface TranslationDict {
RARITY_GEM: string
RARITY_CURRENCY: string
RARITY_DIVCARD: string
RARITY_QUEST: string
MAP_TIER: string
RARITY: string
ITEM_CLASS: string

View File

@@ -298,6 +298,7 @@ function parseNamePlate (section: string[]) {
item.category = ItemCategory.Gem
break
case _$.RARITY_NORMAL:
case _$.RARITY_QUEST:
item.rarity = ItemRarity.Normal
break
case _$.RARITY_MAGIC: