diff --git a/web-next/components/AccountTools.tsx b/web-next/components/AccountTools.tsx index f207e00..a81b082 100644 --- a/web-next/components/AccountTools.tsx +++ b/web-next/components/AccountTools.tsx @@ -30,8 +30,12 @@ export function AccountTools({ isAdmin }: { isAdmin: boolean }) { { href: '/change-faction', icon: 'change-faction-icon', label: t('svcChangeFaction'), desc: t('svcChangeFactionDesc') }, { href: '/level-up', icon: 'level-up-icon', label: t('svcLevelUp'), desc: t('svcLevelUpDesc') }, { href: '/gold', icon: 'gold-icon', label: t('svcGold'), desc: t('svcGoldDesc') }, + { href: '/quest', icon: 'quest-icon', label: t('svcQuest'), desc: t('svcQuestDesc') }, { href: '/transfer', icon: 'tranfer-char-icon', label: t('svcTransfer'), desc: t('svcTransferDesc') }, - { href: '/battlepay', icon: 'store-icon', label: t('svcStore'), desc: t('svcStoreDesc') }, + { href: '/restore-character', icon: 'restore-icon', label: t('svcRestoreChar'), desc: t('svcRestoreCharDesc') }, + { href: '/restore-items', icon: 'prox-icon', label: t('svcRestoreItems'), desc: t('svcRestoreItemsDesc') }, + { href: '/store', icon: 'store-icon', label: t('svcStoreItems'), desc: t('svcStoreItemsDesc') }, + { href: '/send-gift', icon: 'send-gift-icon', label: t('svcSendGift'), desc: t('svcSendGiftDesc') }, ] const historyTools: Tool[] = [ { href: '/points-history', icon: 'pointsh-icon', label: t('svcPointsHistory'), desc: t('svcPointsHistoryDesc') }, diff --git a/web-next/messages/en.json b/web-next/messages/en.json index b3f2953..ee19373 100644 --- a/web-next/messages/en.json +++ b/web-next/messages/en.json @@ -125,7 +125,17 @@ "svcBanHistory": "Ban history", "svcBanHistoryDesc": "Check your account's sanctions", "svcSecurityHistory": "Security history", - "svcSecurityHistoryDesc": "Check your account's security" + "svcSecurityHistoryDesc": "Check your account's security", + "svcQuest": "Quest tracker", + "svcQuestDesc": "Help with important quest chains", + "svcRestoreChar": "Restore character", + "svcRestoreCharDesc": "Restore a deleted character", + "svcRestoreItems": "Restore items", + "svcRestoreItemsDesc": "Restore deleted items", + "svcStoreItems": "Store", + "svcStoreItemsDesc": "Get all kinds of items", + "svcSendGift": "Send gift", + "svcSendGiftDesc": "Send gifts to your friends" }, "SelectAccount": { "title": "Select your game account", diff --git a/web-next/messages/es.json b/web-next/messages/es.json index 61ee58b..a0ba51f 100644 --- a/web-next/messages/es.json +++ b/web-next/messages/es.json @@ -125,7 +125,17 @@ "svcBanHistory": "Historial de sanciones", "svcBanHistoryDesc": "Revisa las sanciones de tu cuenta", "svcSecurityHistory": "Historial de seguridad", - "svcSecurityHistoryDesc": "Revisa la seguridad de tu cuenta" + "svcSecurityHistoryDesc": "Revisa la seguridad de tu cuenta", + "svcQuest": "Rastreador de misiones", + "svcQuestDesc": "Ayuda con cadenas de misiones importantes", + "svcRestoreChar": "Recuperar personaje", + "svcRestoreCharDesc": "Restaura un personaje borrado", + "svcRestoreItems": "Recuperar ítems", + "svcRestoreItemsDesc": "Restaura objetos borrados", + "svcStoreItems": "Tienda", + "svcStoreItemsDesc": "Adquiere objetos de todo tipo", + "svcSendGift": "Enviar regalo", + "svcSendGiftDesc": "Envía regalos a tus amigos" }, "SelectAccount": { "title": "Selecciona tu cuenta de juego", diff --git a/web-next/public/nw-themes/nw-ryu/nw-css/novawow-style.css b/web-next/public/nw-themes/nw-ryu/nw-css/novawow-style.css index 006a333..c856845 100644 --- a/web-next/public/nw-themes/nw-ryu/nw-css/novawow-style.css +++ b/web-next/public/nw-themes/nw-ryu/nw-css/novawow-style.css @@ -879,7 +879,7 @@ textarea:focus, select:focus, input[type=password]:focus, input[type=number]:foc /* acc icons */ .acc-icon { - background-image: url(../nw-images/nw-icons/account-icons.webp); + background-image: url(../nw-images/nw-icons/account-icons.png); display: table-cell; width: 80px; height: 68px; @@ -902,6 +902,10 @@ textarea:focus, select:focus, input[type=password]:focus, input[type=number]:foc } .promo-icon { + background-position: -174px -928px; +} + +.send-gift-icon { background-position: -424px -553px; } diff --git a/web-next/public/nw-themes/nw-ryu/nw-images/nw-icons/account-icons.png b/web-next/public/nw-themes/nw-ryu/nw-images/nw-icons/account-icons.png new file mode 100644 index 0000000..b983568 Binary files /dev/null and b/web-next/public/nw-themes/nw-ryu/nw-images/nw-icons/account-icons.png differ