MWI_Toolkit

提供全局i18n数据和数据抓取能力,供其他脚本调用

// ==UserScript==
// @name         MWI_Toolkit
// @namespace    http://tampermonkey.net/
// @version      3.0.1
// @description  提供全局i18n数据和数据抓取能力,供其他脚本调用
// @author       zqzhang1996
// @match        https://www.milkywayidle.com/*
// @match        https://test.milkywayidle.com/*
// @grant        none
// @run-at       document-body
// @license MIT
// ==/UserScript==

(function () {
    'use strict';

    if (window.MWI_Toolkit_I18N) { return; }

    const oriGet = Object.getOwnPropertyDescriptor(MessageEvent.prototype, "data").get;
    Object.defineProperty(MessageEvent.prototype, "data", {
        get: function () {
            const socket = this.currentTarget;
            if (!(socket instanceof WebSocket) ||
                (socket.url.indexOf("api.milkywayidle.com/ws") === -1 && socket.url.indexOf("api-test.milkywayidle.com/ws") === -1)) {
                return oriGet.call(this);
            }
            const message = oriGet.call(this);
            Object.defineProperty(this, "data", { value: message }); // Anti-loop
            try {
                const obj = JSON.parse(message);
                if (obj && obj.type === "init_character_data") {
                    window.MWI_Toolkit_init_character_data = obj;
                    window.MWI_Toolkit_init_client_data = JSON.parse(localStorage.getItem("initClientData"));
                }
            } catch (e) { }
            return message;
        }
    });

    window.MWI_Toolkit_I18N = {
        /**
         * 根据 itemHrid 获取物品名
         * @param {string} itemHrid 形如 "/items/xxx"
         * @param {string} [lang="zh"] 语言代码,可选,默认 zh
         * @returns {string} 物品名,未找到返回 itemHrid
         */
        getItemName(itemHrid, lang = "zh") {
            try {
                return this.i18nData?.options?.resources?.[lang]?.translation?.itemNames?.[itemHrid] || itemHrid;
            } catch (e) {
                return itemHrid;
            }
        },

        // 请将你的i18n json内容粘贴到Data属性下
        i18nData: {
            "options": {
                "debug": false,
                "initImmediate": true,
                "ns": [
                    "translation"
                ],
                "defaultNS": [
                    "translation"
                ],
                "fallbackLng": [
                    "en"
                ],
                "fallbackNS": false,
                "supportedLngs": false,
                "nonExplicitSupportedLngs": false,
                "load": "all",
                "preload": false,
                "simplifyPluralSuffix": true,
                "keySeparator": ".",
                "nsSeparator": ":",
                "pluralSeparator": "_",
                "contextSeparator": "_",
                "partialBundledLanguages": false,
                "saveMissing": false,
                "updateMissing": false,
                "saveMissingTo": "fallback",
                "saveMissingPlurals": true,
                "missingKeyHandler": false,
                "missingInterpolationHandler": false,
                "postProcess": false,
                "postProcessPassResolved": false,
                "returnNull": true,
                "returnEmptyString": true,
                "returnObjects": false,
                "joinArrays": false,
                "returnedObjectHandler": false,
                "parseMissingKeyHandler": false,
                "appendNamespaceToMissingKey": false,
                "appendNamespaceToCIMode": false,
                "interpolation": {
                    "escapeValue": false,
                    "prefix": "{{",
                    "suffix": "}}",
                    "formatSeparator": ",",
                    "unescapePrefix": "-",
                    "nestingPrefix": "$t(",
                    "nestingSuffix": ")",
                    "nestingOptionsSeparator": ",",
                    "maxReplaces": 1000,
                    "skipOnVariables": true
                },
                "resources": {
                    "en": {
                        "translation": {
                            "global": {
                                "gameName": "Milky Way Idle"
                            },
                            "modalProvider": {
                                "ok": "OK",
                                "cancel": "Cancel",
                                "yes": "Yes",
                                "no": "No"
                            },
                            "actionsUtil": {
                                "itemNotAvailable": "[Item not available]",
                                "doingNothing": "Doing nothing...",
                                "partySuffix": " (Party)"
                            },
                            "characterItemsUtil": {
                                "mainHand": "Main Hand",
                                "offHand": "Off Hand",
                                "back": "Back",
                                "head": "Head",
                                "charm": "Charm",
                                "body": "Body",
                                "legs": "Legs",
                                "hands": "Hands",
                                "feet": "Feet",
                                "pouch": "Pouch",
                                "neck": "Necklace",
                                "earrings": "Earrings",
                                "ring": "Ring",
                                "trinket": "Trinket",
                                "milkingTool": "Milking Tool",
                                "foragingTool": "Foraging Tool",
                                "woodcuttingTool": "Wood-Cutting Tool",
                                "cheesesmithingTool": "Cheese-Smithing Tool",
                                "craftingTool": "Crafting Tool",
                                "tailoringTool": "Tailoring Tool",
                                "cookingTool": "Cooking Tool",
                                "brewingTool": "Brewing Tool",
                                "alchemyTool": "Alchemy Tool",
                                "enhancingTool": "Enhancing Tool"
                            },
                            "combatStats": {
                                "primaryTraining": "Primary Training",
                                "focusTraining": "Focus Training",
                                "combatStyleHrids": "Combat Style",
                                "damageType": "Damage Type",
                                "attackInterval": "Attack Interval",
                                "autoAttackDamage": "Auto Attack Damage",
                                "abilityDamage": "Ability Damage",
                                "attackSpeed": "Attack Speed",
                                "castSpeed": "Cast Speed",
                                "abilityHaste": "Ability Haste",
                                "criticalRate": "Critical Rate",
                                "criticalDamage": "Critical Damage",
                                "stabAccuracy": "Stab Accuracy",
                                "slashAccuracy": "Slash Accuracy",
                                "smashAccuracy": "Smash Accuracy",
                                "rangedAccuracy": "Ranged Accuracy",
                                "magicAccuracy": "Magic Accuracy",
                                "stabDamage": "Stab Damage",
                                "slashDamage": "Slash Damage",
                                "smashDamage": "Smash Damage",
                                "rangedDamage": "Ranged Damage",
                                "magicDamage": "Magic Damage",
                                "defensiveDamage": "Defensive Damage",
                                "taskDamage": "Task Damage",
                                "physicalAmplify": "Physical Amplify",
                                "waterAmplify": "Water Amplify",
                                "natureAmplify": "Nature Amplify",
                                "fireAmplify": "Fire Amplify",
                                "healingAmplify": "Healing Amplify",
                                "armorPenetration": "Armor Penetration",
                                "waterPenetration": "Water Penetration",
                                "naturePenetration": "Nature Penetration",
                                "firePenetration": "Fire Penetration",
                                "physicalThorns": "Physical Thorns",
                                "elementalThorns": "Elemental Thorns",
                                "retaliation": "Retaliation",
                                "maxHitpoints": "Max Hitpoints",
                                "maxManapoints": "Max Manapoints",
                                "stabEvasion": "Stab Evasion",
                                "slashEvasion": "Slash Evasion",
                                "smashEvasion": "Smash Evasion",
                                "rangedEvasion": "Ranged Evasion",
                                "magicEvasion": "Magic Evasion",
                                "armor": "Armor",
                                "waterResistance": "Water Resistance",
                                "natureResistance": "Nature Resistance",
                                "fireResistance": "Fire Resistance",
                                "damageTaken": "Damage Taken",
                                "lifeSteal": "Life Steal",
                                "manaLeech": "Mana Leech",
                                "tenacity": "Tenacity",
                                "threat": "Threat",
                                "hpRegenPer10": "HP Regen",
                                "mpRegenPer10": "MP Regen",
                                "foodHaste": "Food Haste",
                                "drinkConcentration": "Drink Concentration",
                                "combatDropRate": "Combat Drop Rate",
                                "combatDropQuantity": "Combat Drop Quantity",
                                "combatRareFind": "Combat Rare Find",
                                "combatExperience": "Combat Experience",
                                "staminaExperience": "Stamina Experience",
                                "intelligenceExperience": "Intelligence Experience",
                                "attackExperience": "Attack Experience",
                                "defenseExperience": "Defense Experience",
                                "meleeExperience": "Melee Experience",
                                "rangedExperience": "Ranged Experience",
                                "magicExperience": "Magic Experience",
                                "foodSlots": "Food Slots",
                                "drinkSlots": "Drink Slots",
                                "weaken": "Weaken",
                                "fury": "Fury",
                                "parry": "Parry",
                                "mayhem": "Mayhem",
                                "pierce": "Pierce",
                                "curse": "Curse",
                                "ripple": "Ripple",
                                "bloom": "Bloom",
                                "blaze": "Blaze"
                            },
                            "noncombatStats": {
                                "skillingSpeed": "Skilling Speed",
                                "milkingSpeed": "Milking Speed",
                                "foragingSpeed": "Foraging Speed",
                                "woodcuttingSpeed": "Woodcutting Speed",
                                "cheesesmithingSpeed": "Cheesesmithing Speed",
                                "craftingSpeed": "Crafting Speed",
                                "tailoringSpeed": "Tailoring Speed",
                                "cookingSpeed": "Cooking Speed",
                                "brewingSpeed": "Brewing Speed",
                                "alchemySpeed": "Alchemy Speed",
                                "enhancingSpeed": "Enhancing Speed",
                                "taskSpeed": "Task Speed",
                                "milkingEfficiency": "Milking Efficiency",
                                "foragingEfficiency": "Foraging Efficiency",
                                "woodcuttingEfficiency": "Woodcutting Efficiency",
                                "cheesesmithingEfficiency": "Cheesesmithing Efficiency",
                                "craftingEfficiency": "Crafting Efficiency",
                                "tailoringEfficiency": "Tailoring Efficiency",
                                "cookingEfficiency": "Cooking Efficiency",
                                "brewingEfficiency": "Brewing Efficiency",
                                "alchemyEfficiency": "Alchemy Efficiency",
                                "skillingEfficiency": "Skilling Efficiency",
                                "enhancingSuccess": "Enhancing Success",
                                "gatheringQuantity": "Gathering Quantity",
                                "drinkConcentration": "Drink Concentration",
                                "skillingEssenceFind": "Skilling Essence Find",
                                "skillingRareFind": "Skilling Rare Find",
                                "milkingRareFind": "Milking Rare Find",
                                "foragingRareFind": "Foraging Rare Find",
                                "woodcuttingRareFind": "Woodcutting Rare Find",
                                "cheesesmithingRareFind": "Cheesesmithing Rare Find",
                                "craftingRareFind": "Crafting Rare Find",
                                "tailoringRareFind": "Tailoring Rare Find",
                                "cookingRareFind": "Cooking Rare Find",
                                "brewingRareFind": "Brewing Rare Find",
                                "alchemyRareFind": "Alchemy Rare Find",
                                "enhancingRareFind": "Enhancing Rare Find",
                                "skillingExperience": "Skilling Experience",
                                "milkingExperience": "Milking Experience",
                                "foragingExperience": "Foraging Experience",
                                "woodcuttingExperience": "Woodcutting Experience",
                                "cheesesmithingExperience": "Cheesesmithing Experience",
                                "craftingExperience": "Crafting Experience",
                                "tailoringExperience": "Tailoring Experience",
                                "cookingExperience": "Cooking Experience",
                                "brewingExperience": "Brewing Experience",
                                "alchemyExperience": "Alchemy Experience",
                                "enhancingExperience": "Enhancing Experience"
                            },
                            "home": {
                                "nav": {
                                    "home": "Home",
                                    "news": "News",
                                    "patchNotes": "Patch Notes",
                                    "gameGuide": "Game Guide"
                                },
                                "title": "$t(global.gameName) - Free Idle MMO Game - Gather, Craft, Battle, Trade, and Cows!",
                                "subtitle": "Multiplayer Idle RPG",
                                "bannerText": "Embark on a journey through the $t(global.gameName) universe, a unique multiplayer idle game. Whether you enjoy resource gathering, item crafting, or engaging in epic battles against alien monsters, we have something to offer for everyone. Immerse yourself in our thriving community, where you can trade in the player-driven marketplace, form a guild with friends, chat with fellow players, or climb to the top of the leaderboards!",
                                "testServer": "Test Server",
                                "activePlayerCount": "Currently {{count}} players in game!",
                                "showcases": {
                                    "gatherAndCraft": {
                                        "title": "Gather and Craft",
                                        "text": "Milking, Foraging, Woodcutting, Cheesesmithing, Crafting, Tailoring, Cooking, Brewing, Alchemy, Enhancing"
                                    },
                                    "combat": {
                                        "title": "Combat",
                                        "text": "Multiple styles of combat with highly customizable consumable and ability auto-usage. Battle solo or with a party."
                                    },
                                    "marketplace": {
                                        "title": "Marketplace",
                                        "text": "Buy and sell resources, consumables, equipment, and more"
                                    },
                                    "community": {
                                        "title": "Community",
                                        "text": "Party and chat with friends. Compete for a spot on the leaderboard!"
                                    }
                                },
                                "footer": {
                                    "termsOfUse": "Terms of Use",
                                    "privacyPolicy": "Privacy Policy",
                                    "emailContact": "Email Contact"
                                }
                            },
                            "auth": {
                                "tabs": {
                                    "playAsGuest": "Play As Guest",
                                    "register": "Register",
                                    "login": "Login"
                                },
                                "serverError": {
                                    "title": "Unable To Reach Server",
                                    "message": "You are currently unable to reach the game server. This could be due to the game updating, server maintenance, or a network issue (such as firewall) between you and the server. Please refresh to try again in 5-10 minutes."
                                },
                                "thirdPartyCookieMessage": {
                                    "title": "Login",
                                    "message": "Your browser does not support third-party cookies which is needed to play from within an iframe. Please enable third-party cookies or play from <a href='https://www.milkywayidle.com' target='_blank'>www.milkywayidle.com</a>."
                                },
                                "welcomeBack": {
                                    "title": "Welcome Back!",
                                    "logout": "Logout"
                                },
                                "buttons": {
                                    "enterGame": "ENTER GAME"
                                },
                                "confirmationMessages": {
                                    "guestWarning": "WARNING: Guest accounts can only login again using the guest password found under Settings.",
                                    "logoutConfirmation": "Are you sure you want to logout?"
                                },
                                "shared": {
                                    "agreeToRulesLabel": "I agree to the <termsLink>Terms</termsLink>, <privacyPolicyLink>Privacy Policy</privacyPolicyLink>, and <gameRulesLink>Game Rules</gameRulesLink>",
                                    "agreeToOneAccountLabel": "I agree to play only 1 account",
                                    "errors": {
                                        "agreeToRulesError": "You must agree to the game rules",
                                        "agreeToOneAccountError": "You must agree to play only 1 account",
                                        "serverUnreachable": "Server unreachable or offline",
                                        "captchaBlockedError": "Captcha verification blocked by browser privacy setting",
                                        "captchaFailedError": "Captcha verification failed",
                                        "unexpectedError": "Unexpected error"
                                    }
                                }
                            },
                            "playAsGuestForm": {
                                "title": "Play As Guest",
                                "info": "Your session will be saved in this browser. To play across multiple devices, you can go in <b>Settings</b> in game to find your <b>guest password</b> or to fully <b>register</b>.",
                                "playButton": "Play"
                            },
                            "registerForm": {
                                "title": "Register",
                                "emailLabel": "Email",
                                "passwordLabel": "Password",
                                "passwordConfirmationLabel": "Password Confirmation",
                                "registerButton": "Register",
                                "errors": {
                                    "emailEmpty": "Email must not be empty",
                                    "invalidEmail": "Please enter a valid email",
                                    "passwordTooShort": "Password must be at least 6 characters",
                                    "passwordsDoNotMatch": "passwords do not match"
                                }
                            },
                            "loginForm": {
                                "back": "< Back",
                                "title": "Login",
                                "titleSteam": "Login $t(global.gameName)",
                                "emailOrNameLabel": "Email or Username",
                                "passwordLabel": "Password",
                                "loginButton": "Login",
                                "forgotPassword": "Forgot Password",
                                "errors": {
                                    "emailOrNameEmpty": "Email/Name must not be empty",
                                    "passwordEmpty": "Password must not be empty"
                                }
                            },
                            "forgotPassword": {
                                "title": "Forgot Password",
                                "infoMessage": "If your account is fully registered with a valid email, you will receive a password reset email with instructions. (may need to check junk/spam folder)",
                                "emailLabel": "Email",
                                "resetPasswordButton": "Reset Password",
                                "backToLogin": "Back to Login",
                                "successMessage": "An email has been sent if the email address is associated with an account.",
                                "errors": {
                                    "emailEmptyError": "Email must not be empty",
                                    "invalidEmailError": "Please enter a valid email"
                                }
                            },
                            "playFromKongregate": {
                                "title": "Play From Kongregate",
                                "noAccountMessage": "You must have a Kongregate account to be able to play.",
                                "registerButton": "Register",
                                "signInInfo": "Sign in to $t(global.gameName) or create a new account if this is your first time!",
                                "signInButton": "Sign in from Kongregate"
                            },
                            "loginWithSteam": {
                                "signInTitle": "Play From Steam",
                                "signInInfo": "Start playing $t(global.gameName) with your Steam account",
                                "signInButton": "Play From Steam",
                                "linkAccountTitle": "Have a $t(global.gameName) account?",
                                "linkAccountInfo": "If you have played $t(global.gameName) before from our website, you can link your existing account to Steam.",
                                "linkAccountButton": "Yes, link my account",
                                "createAccountButton": "No, create new account",
                                "steamAuthTicketError": "Failed to fetch Steam auth ticket. Please restart Steam and try again."
                            },
                            "characterSelectPage": {
                                "title": "Select Character - $t(global.gameName)",
                                "header": "Select Character",
                                "loading": "Loading characters...",
                                "createCharacterModal": {
                                    "title": "Create Character",
                                    "nameLabel": "Character Name:",
                                    "namePlaceholder": "Enter character name...",
                                    "gameModeLabel": "Game Mode:",
                                    "maxCharacter": "Max: {{count}} Character",
                                    "maxCharacter_one": "Max: {{count}} Character",
                                    "maxCharacter_other": "Max: {{count}} Characters",
                                    "submitButton": "Create",
                                    "errors": {
                                        "nameLength": "Must be 2-16 characters long",
                                        "nameInvalid": "Only alphabets and numbers allowed"
                                    }
                                },
                                "slots": {
                                    "slot": "Slot {{slotNum}}",
                                    "empty": "Empty",
                                    "online": "Online",
                                    "lastOnline": "Last Online: {{duration}} ago"
                                },
                                "errors": {
                                    "fetchCharacters": "Unable to retrieve characters. Please try again later.",
                                    "fetchGameModes": "Unable to fetch game mode data. Please try again later.",
                                    "serverUnreachable": "Server unreachable or offline",
                                    "unexpectedError": "Unexpected error"
                                }
                            },
                            "gamePage": {
                                "disconnectedFromServer": "Disconnected from server...",
                                "bannedMessage": "You are banned until {{banExpireTime}}. {{banReason}}",
                                "refresh": "Refresh",
                                "attemptingToConnect": "Attempting to connect to server...",
                                "loadingTitle": "Loading - $t(global.gameName)",
                                "disconnectedTitle": "Disconnected - $t(global.gameName)",
                                "guestLogoutWarning": "WARNING: Guest accounts can only login again using the guest password found under Settings.",
                                "logoutConfirmation": "Are you sure you want to logout?",
                                "refreshPrompt": " Please refresh.",
                                "gameServerRestarted": "Game server has been restarted. Please refresh the page."
                            },
                            "header": {
                                "flee": "Flee",
                                "stop": "Stop",
                                "loadoutWithName": "Loadout: {{name}}",
                                "loadoutUnavailable": "Loadout contains unavailable item",
                                "loadoutDeleted": "Loadout was deleted",
                                "totalExperience": "Total Experience: {{totalExp}}",
                                "totalLevel": "Total Level: {{totalLevel}}",
                                "activePlayers": "Active Characters: {{activePlayerCount}}",
                                "confirmRunAway": "Are you sure you want to run away from combat?",
                                "newTutorialMessage": "New Tutorial Message",
                                "newMessage": "New Message",
                                "newTutorialTask": "New Tutorial Task",
                                "newTask": "New Task",
                                "progress": "Progress: {{currentCount}} / {{goalCount}}",
                                "successRate": "Success: {{successRate}}",
                                "usingCatalyst": "Using Catalyst",
                                "targetEnhance": "Target: +{{enhancingMaxLevel}}",
                                "protectEnhance": "Protect: +{{enhancingProtectionMinLevel}}"
                            },
                            "actionProgressBar": {
                                "fighting": "Fighting",
                                "travelingToBattle": "Traveling To Battle"
                            },
                            "queuedActions": {
                                "loadout": "Loadout: {{name}}",
                                "loadoutUnavailable": "Loadout contains unavailable item",
                                "loadoutDeleted": "Loadout was deleted",
                                "useItem": "Use: {{itemName}}",
                                "catalystUnavailable": "Catalyst: [Item not available]",
                                "targetLevel": "Target: +{{level}}",
                                "protectFromLevel": "Protect From: +{{level}}",
                                "repeat": "Repeat",
                                "gather": "Gather",
                                "produce": "Produce",
                                "fight": "Fight",
                                "actionCountTimes": "{{action}} {{count}} times",
                                "queuedActionsHeader": "Queued Actions",
                                "queuedActionsSlotCount": "Queued Actions ({{current}}/{{max}})",
                                "upgradeCapacity": "Upgrade Capacity",
                                "queuedActionsCount": "+{{count}} Queued<br />Actions",
                                "remove": "remove",
                                "moveActionToFrontConfirm": "Run this action now? The current action will pause and continue after."
                            },
                            "navigationBar": {
                                "myStuff": "My Stuff",
                                "marketplace": "Marketplace",
                                "tasks": "Tasks",
                                "combat": "Combat",
                                "shop": "Shop",
                                "cowbellStore": "Cowbell Store",
                                "lootTracker": "Loot Tracker",
                                "social": "Social",
                                "guild": "Guild",
                                "leaderboard": "Leaderboard",
                                "moderator": "Moderator",
                                "settings": "Settings",
                                "news": "News",
                                "patchNotes": "Patch Notes",
                                "gameGuide": "Game Guide",
                                "gameRules": "Game Rules",
                                "wiki": "Game Wiki",
                                "discord": "Discord",
                                "testServer": "Test Server",
                                "privacyPolicy": "Privacy Policy",
                                "switchCharacter": "Switch Character",
                                "logout": "Logout",
                                "myStuffTooltip": "Inventory, equipment, abilities, houses, and loadouts.",
                                "marketplaceTooltip": "Player-driven market where you can buy and sell items with coins.",
                                "tasksTooltip": "Randomly generated tasks that players can complete for rewards.",
                                "milkingTooltip": "mooooooooo...",
                                "foragingTooltip": "Master the skill of picking up things.",
                                "woodcuttingTooltip": "Chop chop chop.",
                                "cheesesmithingTooltip": "Did you know you can make equipment using these special hardened cheeses?",
                                "craftingTooltip": "Create weapons, jewelry, and more.",
                                "tailoringTooltip": "Create ranged and magic clothing.",
                                "cookingTooltip": "The art of making healthy food.",
                                "brewingTooltip": "The art of making tasty drinks.",
                                "alchemyTooltip": "Transform unwanted items into wanted ones. (hopefully)",
                                "enhancingTooltip": "+5 takes effort, +10 takes luck, +15 is a miracle, and +20 is destiny.",
                                "combatTooltip": "Fight monsters. Your combat level represents your overall combat effectiveness based on the combination of individual combat skill levels",
                                "shopTooltip": "Purchase items from the vendor.",
                                "cowbellStoreTooltip": "Purchase and spend cowbells.",
                                "lootTrackerTooltip": "Track the loot from your recent actions.",
                                "socialTooltip": "Friends, referrals, and block list.",
                                "guildTooltip": "Join forces with a community of players.",
                                "leaderboardTooltip": "Shows the top ranked players of each skill.",
                                "moderatorTooltip": "Banhammer users.",
                                "settingsTooltip": "Update account information and other settings.",
                                "staminaTooltip": "Increases max HP by 10 per level.",
                                "intelligenceTooltip": "Increases max MP by 10 per level.",
                                "attackTooltip": "Increases your accuracy, base attack speed, and cast speed.",
                                "defenseTooltip": "Increases your evasion, armor, elemental resistances, and retaliation damage.",
                                "meleeTooltip": "Increases your melee damage.",
                                "rangedTooltip": "Increases your ranged damage. Ranged attacks have bonus chance to critical strike.",
                                "magicTooltip": "Increases your magic damage.",
                                "activePlayers": "Active Characters: {{count}}",
                                "level": "Level: {{count}}",
                                "totalExperience": "Total Experience: {{count}}",
                                "xpToLevelUp": "XP To Level Up: {{count}}"
                            },
                            "marketplacePanel": {
                                "marketplace": "Marketplace",
                                "marketListings": "Market Listings",
                                "myListings": "My Listings",
                                "resources": "Resources",
                                "consumables": "Consumables",
                                "books": "Books",
                                "keys": "Keys",
                                "equipment": "Equipment",
                                "accessories": "Accessories",
                                "tools": "Tools",
                                "mustBeBetween0And20": "Must be between 0 - 20",
                                "mustBeAtLeast1": "Must be at least 1",
                                "youDontHaveEnoughItems": "You don't have enough items",
                                "youCantAffordThisMany": "You can't afford this many",
                                "mustBeAtLeastVendorPrice": "Must be at least vendor price",
                                "itemFilterPlaceholder": "Item Filter",
                                "viewAllItems": "View All Items",
                                "viewAllEnhancementLevels": "View All Enhancement Levels",
                                "refresh": "Refresh",
                                "sell": "Sell",
                                "buy": "Buy",
                                "sellNow": "Sell Now",
                                "postSellOrder": "Post Sell Order",
                                "sellListing": "Sell Listing",
                                "postSellListing": "Post Sell Listing",
                                "buyNow": "Buy Now",
                                "postBuyOrder": "Post Buy Order",
                                "buyListing": "Buy Listing",
                                "postBuyListing": "Post Buy Listing",
                                "max": "Max",
                                "all": "All",
                                "enhancementLevel": "Enhancement Level",
                                "quantityYouHave": "Quantity (You Have: {{maxQuantity}})",
                                "quantityYouCanAfford": "Quantity (You Can Afford: {{maxQuantity}})",
                                "quantityAvailableAtPrice": "Quantity (Available At Price: {{marketQuantity}})",
                                "priceBestSellOffer": "Price (Best Sell Offer: <bestPrice />)",
                                "priceBestBuyOffer": "Price (Best Buy Offer: <bestPrice />)",
                                "youGetOrMore": "You Get: {{totalValue}}<coin /> ({{taxRate}} Taxed)<br />(more if better offers exist)",
                                "youPayOrLess": "You Pay: {{totalValue}}<coin /><br />(less if better offers exist)",
                                "sellRestricted": "Sell Restricted",
                                "listingLimitReached": "Listing Limit Reached",
                                "newSellListing": "+ New Sell Listing",
                                "newBuyListing": "+ New Buy Listing",
                                "loading": "Loading...",
                                "item": "Item",
                                "bestAskPrice": "Best Ask Price",
                                "bestBidPrice": "Best Bid Price",
                                "viewAll": "View All",
                                "nope": "Nope...",
                                "quantity": "Quantity",
                                "askPrice": "Ask Price",
                                "bidPrice": "Bid Price",
                                "action": "Action",
                                "upgradeCapacity": "Upgrade Capacity",
                                "collectAll": "Collect All ({{claimableCount}})",
                                "status": "Status",
                                "type": "Type",
                                "progress": "Progress",
                                "price": "Price",
                                "taxTaken": "Tax Taken",
                                "collect": "Collect",
                                "chatLink": "Chat Link",
                                "link": "Link",
                                "cancel": "Cancel",
                                "confirmCancelMarketListing": "Are you sure you want to cancel this listing?",
                                "active": "Active",
                                "filled": "Filled",
                                "cancelled": "Cancelled",
                                "expired": "Expired",
                                "listingsCount": "{{currentListings}} / {{listingCap}} Listings"
                            },
                            "marketListingLink": {
                                "buying": "Buying",
                                "selling": "Selling",
                                "price": "Price: <color>{{price}}</color>"
                            },
                            "tasksPanel": {
                                "tasks": "Tasks",
                                "taskBoard": "Task Board",
                                "taskShop": "Task Shop",
                                "taskCooldownUpgrade": "-1 Hour Task Cooldown",
                                "taskCooldownDescription": "Permanently reduces the waiting time between tasks by 1 hour.",
                                "blockSlotUpgrade": "+1 Block Slot",
                                "blockSlotDescription": "Adds a block slot, allowing you to block a non-combat skill from being selected for tasks.",
                                "combatBlockUpgrade": "Unlock Combat Block",
                                "combatBlockDescription": "Unlocks the ability to block combat tasks. You need at least 1 available block slot to use this.",
                                "tutorialIncomplete": "Complete your tutorial tasks to unlock the task board.<br />Your current task can be found in the top-right corner.",
                                "purplesGift": "Purple's Gift: {{unclaimedTaskPoints}} / {{claimCost}} Task Points",
                                "claim": "Claim",
                                "unreadTasks": "You have {{count}} unread task",
                                "unreadTasks_one": "You have {{count}} unread task",
                                "unreadTasks_other": "You have {{count}} unread tasks",
                                "read": "Read",
                                "taskSlotCount": "{{taskCount}} / {{taskSlotCap}} Tasks",
                                "upgradeCapacity": "Upgrade Capacity",
                                "nextTask": "Next Task: ",
                                "waitingForNextTask": "Generating next task. Please wait...",
                                "blockedSkills": "Blocked<br />Skills",
                                "buyTaskUpgrade": "Buy Task Upgrade",
                                "buyTaskShopItem": "Buy Task Shop Item",
                                "quantity": "Quantity",
                                "youPay": "You Pay: {{totalCost}}",
                                "buy": "Buy",
                                "upgrades": "Upgrades",
                                "items": "Items",
                                "lifetimeTaskPoints": "Lifetime Task Points: {{totalTaskPoints}}",
                                "minimumQuantity": "Minimum Quantity: 1",
                                "notEnoughItems": "You don't have enough {{itemName}}"
                            },
                            "taskBlockSlot": {
                                "remove": "Remove",
                                "blockSlot": "Block Slot {{slotIndex}}"
                            },
                            "randomTask": {
                                "back": "Back",
                                "confirmDiscard": "Confirm Discard",
                                "payCowbells": "Pay {{cowbellCost}}",
                                "payCoins": "Pay {{coinCost}}",
                                "reroll": "Reroll",
                                "mooPassFreeReroll": "MooPass Free Reroll",
                                "go": "Go",
                                "claimReward": "Claim Reward",
                                "progress": "Progress: {{currentCount}} / {{goalCount}}",
                                "rewards": "Rewards: ",
                                "defeat": "Defeat - {{monsterName}}"
                            },
                            "tutorialQuest": {
                                "purple": "Purple",
                                "welcomeStartText": "Welcome to $t(global.gameName) - a world with magical cows!<br /><br />I'm Purple, the Chief Training Officer (CTO), and also your tour guide today!<br /><br />I'll cast an orange glow to guide you through the training.",
                                "welcomeButtonText": "Hi Purple!",
                                "milkCowStartText": "Let me first show you what we magical cows are best known for: producing magical milk! By the way, my cousin Burble also works here. Hi Burble!<br /><br />First, try and gather some milk.",
                                "milkCowCompleteText": "Good job! Here's some extra milk and a brush. Magical cows love to be brushed, and happy cows produce milk faster!",
                                "smithCheeseStartText": "Let's make some cheese with the milk! These special cheeses are very durable and can be turned into many useful things through cheesesmithing!",
                                "smithCheeseCompleteText": "Great! Take some extra cheese with you for the next task.",
                                "smithSwordStartText": "Cheeses are essential resources for making tools, weapons, and armor. Let me show you how to make a cheese sword. I know it might sound crazy and maybe a little bit smelly too, but trust me.",
                                "smithSwordCompleteText": "Awesome! As you level up, equipment can be upgraded to higher tiers! Tools can also be made to improve each of your skills.",
                                "forageFarmlandStartText": "Now let's go forage for some more resources. Head to Farmland and see what items you can gather!",
                                "forageFarmlandCompleteText": "That was fast! Foraging gives you resources used in many skills, including cooking, brewing, and tailoring!",
                                "cookDonutStartText": "It's time to make use of your cooking skill and whip up a delicious donut using some eggs, wheat, and sugar. What? You can't cook? Of course you can! There's a rat from Earth that can cook, and if he can do it, so can you! Give it a try!",
                                "cookDonutCompleteText": "Fantastic! Food can heal you while in combat. Here's a dozen more donuts for free!",
                                "fightFlyStartText": "Now I want to take you on an expedition to one of our neighboring planets - the Smelly Planet! I hear there are lots of flies, and they bite! You'll want to bring your sword and some donuts. Let's go!",
                                "fightFlyCompleteText": "Battling monsters earns you coins, resources, ability books, and even rare items.<br /><br />If you are knocked out during combat, you will recover in 150 seconds and continue fighting.",
                                "messageTipsStartText": "Looks like the tour is almost over. There's still much more to explore, but don't worry, you won't be alone! Once you level up a little more, you can chat with or get help from other players!<br /><br />You can also buy or sell items in our player-driven marketplace, unless you are playing Ironcow mode.",
                                "messageTipsButtonText": "OK",
                                "messageTips2StartText": "Before I go, here's a few more tips:<br />- A Game Guide can be found at the bottom of the navigation menu on the left.<br />- If you go offline, you'll continue to make progress for 10 hours (upgradable).<br />- Items, abilities, skills, and enemies can be hovered over (long press on mobile) to see more detailed tooltips.<br /><br />I have to go now. It's time for my second lunch, and I have four stomachs to fill. Now go explore the Milky Way!",
                                "messageTips2ButtonText": "Bye Purple!"
                            },
                            "questModal": {
                                "purple": "Purple",
                                "task": "Task",
                                "tutorial": "Tutorial",
                                "taskInfo": "Task: {{taskName}}",
                                "progress": "Progress: {{currentCount}} / {{goalCount}}",
                                "rewardsLabel": "Rewards: ",
                                "defeatMonster": "Defeat - {{monsterName}}",
                                "ok": "OK",
                                "accept": "Accept",
                                "go": "Go",
                                "claimReward": "Claim Reward"
                            },
                            "gatheringProductionSkillPanel": {
                                "consumables": "Consumables"
                            },
                            "alchemyPanel": {
                                "currentAction": "Current Action",
                                "notAlchemizing": "You are currently not alchemizing anything.",
                                "consumables": "Consumables"
                            },
                            "enhancingPanel": {
                                "currentActionTab": "Current Action",
                                "notEnhancing": "You are currently not enhancing anything.",
                                "consumables": "Consumables"
                            },
                            "combatPanel": {
                                "combatZones": "Combat Zones",
                                "findParty": "Find Party",
                                "myParty": "My Party",
                                "battleCount": "Battle #{{battleId}}"
                            },
                            "combatZones": {
                                "consumables": "Consumables",
                                "abilities": "Abilities"
                            },
                            "findParty": {
                                "selectZone": "Select Zone",
                                "refresh": "Refresh",
                                "createParty": "Create Party",
                                "profile": "Profile",
                                "join": "Join",
                                "combatZone": "Combat Zone",
                                "difficulty": "Difficulty",
                                "fightTimes": "Fight {{times}} times",
                                "partyName": "{{name}}'s {{partyType}}",
                                "privateParty": "private party",
                                "party": "party",
                                "levelRequirement": "Lv.{{minLevel}}-{{maxLevel}}"
                            },
                            "party": {
                                "noLoadout": "No Loadout",
                                "selectZone": "Select Zone",
                                "fightTimesWithInputs": "Fight <inputs /> times",
                                "partyName": "{{name}}'s {{partyType}}",
                                "privateParty": "Private party",
                                "publicParty": "Public party",
                                "autoKickCheckbox": "Auto-kick if not ready over 5 minutes",
                                "autoKickEnabled": "Auto-kick enabled",
                                "autoKickDisabled": "Auto-kick disabled",
                                "slot": "Slot {{number}}",
                                "role": "Role",
                                "minLevel": "Min Lv.",
                                "maxLevel": "Max Lv.",
                                "addSlot": "Add Slot",
                                "combatZone": "Combat Zone",
                                "difficulty": "Difficulty",
                                "leaveParty": "Leave Party",
                                "confirmLeaveParty": "Are you sure you want to leave the party?",
                                "disbandParty": "Disband Party",
                                "confirmDisbandParty": "Are you sure you want to disband the party?",
                                "editParty": "Edit Party",
                                "cancel": "Cancel",
                                "createParty": "Create Party",
                                "save": "Save",
                                "linkToChat": "Link To Chat",
                                "consumables": "Consumables",
                                "abilities": "Abilities",
                                "profile": "Profile",
                                "giveLeadership": "Give Leadership",
                                "kick": "Kick",
                                "ready": "Ready",
                                "unready": "Unready"
                            },
                            "partyRoles": {
                                "any_role": "Any Role",
                                "damage_dealer": "Damage",
                                "support": "Support",
                                "tank": "Tank"
                            },
                            "partyLink": {
                                "linkText": "Party: $t(actionNames.{{actionHrid}})"
                            },
                            "battlePanel": {
                                "stats": "Stats",
                                "battleInfo": "Battle Info",
                                "confirmRunAway": "Are you sure you want to run away from combat?",
                                "combatDuration": "Combat Duration: {{duration}}",
                                "battles": "Battles: {{battleId}}",
                                "deaths": "Deaths: {{deathCount}}",
                                "itemsLooted": "Items looted:",
                                "experienceGained": "Experience gained:",
                                "waveLabel": "Wave {{currentWave}} / {{maxWaves}}",
                                "battleNumber": "Battle #{{battleId}}",
                                "consumables": "Consumables",
                                "abilities": "Abilities",
                                "flee": "Flee"
                            },
                            "combatUnit": {
                                "respawn": "Respawn",
                                "autoAttack": "Auto Attack",
                                "stunned": "Stunned",
                                "blindedSilenced": "Blinded/Silenced",
                                "blinded": "Blinded",
                                "silenced": "Silenced"
                            },
                            "combatMonsterTooltip": {
                                "combatLevel": "Combat Level: {{level}}",
                                "experience": "Experience: {{experience}}",
                                "drops": "Drops:",
                                "rareDrops": "Rare Drops:"
                            },
                            "skillActionDetail": {
                                "levelRequirement": "Level {{level}}{{bonus}}",
                                "requires": "Requires",
                                "upgradesFrom": "Upgrades<br />From",
                                "upgradeItemWarning": "No upgrade item selected",
                                "enhancementTransferAll": "All enhancement levels<br />transferred.",
                                "enhancementTransfer": "70% of enhancement levels<br />transferred. Decimals grant<br />chance of 1 extra level.",
                                "costs": "Costs",
                                "outputs": "Outputs",
                                "essenceDrops": "Essences",
                                "rareDrops": "Rares",
                                "experience": "Experience",
                                "duration": "Duration",
                                "successRate": "Success Rate",
                                "travel": "Travel",
                                "bonuses": "Bonuses",
                                "alchemizeItem": "Alchemize Item",
                                "selectAlchemyItem": "Select an item to alchemize",
                                "coinifyInfo": "<span>Coinify:</span> Converts item into coins.",
                                "decomposeInfo": "<span>Decompose:</span> Converts item into component materials.",
                                "transmuteInfo": "<span>Transmute:</span> Converts item into a random related item.",
                                "invalidCoinifyItem": "This item cannot be coinified",
                                "invalidDecomposeItem": "This item cannot be decomposed",
                                "invalidTransmuteItem": "This item cannot be transmuted",
                                "recommendedLevel": "Level {{level}} <Icon /> Recommended",
                                "bulkMultiplier": "Uses {{multiplier}} items per action",
                                "catalyst": "Catalyst",
                                "consumedItem": "Consumed Item",
                                "notUsed": "Not<br />Used",
                                "enhanceItem": "Enhance Item",
                                "selectEnhancingItem": "Select an equipment to enhance",
                                "successInfo": "<span>Success</span> increases the item's enhancement level by 1.",
                                "failureInfo": "<span>Failure</span> resets the enhancement level to 0 unless protection is used.",
                                "targetLevel": "Target Level",
                                "protection": "Protection",
                                "protectFromLevel": "Protect From Level",
                                "protectionMinLevelWarning": "Must Be ≥ 2 To Be Effective",
                                "entryKey": "Entry Key",
                                "reward": "Reward",
                                "bosses": "Bosses",
                                "bossFight": "Boss Fight<br />Every {{battlesPerBoss}} <br />Battles",
                                "monsters": "Monsters",
                                "difficulty": "Difficulty",
                                "repeat": "Repeat",
                                "gather": "Gather",
                                "produce": "Produce",
                                "fight": "Fight",
                                "loadout": "Loadout",
                                "noLoadout": "No Loadout",
                                "confirmStartNow": "Are you sure you want to replace your queued actions?",
                                "buttons": {
                                    "start": "Start",
                                    "startNow": "Start Now",
                                    "stop": "Stop",
                                    "upgradeQueue": "Upgrade Queue Capacity",
                                    "addToQueue": "Add Queue #{{count}}",
                                    "findParty": "Find Party"
                                }
                            },
                            "shopPanel": {
                                "minQuantity": "Minimum quantity: 1",
                                "cannotAfford": "Cannot afford",
                                "itemFilterPlaceholder": "Item Filter",
                                "youPay": "You Pay: {{count}} {{itemName}}",
                                "buyItem": "Buy Item",
                                "quantity": "Quantity",
                                "buy": "Buy",
                                "shop": "Shop"
                            },
                            "cowbellStorePanel": {
                                "buyCowbells": "Buy Cowbells",
                                "mooPass": "MooPass",
                                "upgrades": "Convenience",
                                "chatIcons": "Chat Icons",
                                "customChatIcon": "Custom Chat Icon",
                                "nameColors": "Name Colors",
                                "customNameColor": "Custom Name Color",
                                "avatars": "Avatars",
                                "customAvatar": "Custom Avatar",
                                "avatarOutfits": "Avatar Outfits",
                                "customAvatarOutfit": "Custom Avatar Outfit",
                                "communityBuffs": "Community Buffs",
                                "nameChange": "Name Change",
                                "optIn": "Opt In",
                                "optOut": "Opt Out",
                                "price": "Price: {{price}}",
                                "supporterPoints": "{{points}} Supporter Points",
                                "minimumQuantity": "Minimum Quantity: 1",
                                "notEnoughItems": "You don't have enough {{itemName}}s",
                                "minimumDuration": "Minimum duration: 10 minutes",
                                "notEnoughCowbells": "You don't have enough cowbells",
                                "mustBeCharacters": "Must be 2-16 characters long",
                                "onlyAlphabetsNumbers": "Only alphabets and numbers allowed",
                                "notAvailable": "Not available",
                                "serverUnreachable": "server unreachable or offline",
                                "unexpectedError": "unexpected error",
                                "confirmChangeName": "Confirm change name to: {{name}}",
                                "purchaseSuccessful": "Purchase Successful",
                                "thankYouSupport": "Thank you for the support! The purchased Cowbells or MooPass should be granted in game",
                                "purchaseNotice": "Purchase Notice",
                                "purchaseAntiFraudMessage": "Security requirement: first-time purchase will trigger a 72-hour market restriction on selling bags of cowbells. You can still use them for yourself at any time.",
                                "waitForSteamOverlay": "Wait For Steam Overlay",
                                "steamOverlayMessage": "The Steam overlay will automatically appear to continue your purchase. This usually takes a few seconds but can occasionally take longer. You can close this message afterwards.",
                                "continueToPurchase": "Continue to Purchase",
                                "continuePayment": "Click continue to proceed to our payment processor in a new window.",
                                "guestWarning": "Note: This is a guest account. It's recommended to register in Settings -> Account to avoid accidental loss of access",
                                "continue": "Continue",
                                "mooPassPerks": "MooPass Perks",
                                "buyConvenienceUpgrade": "Buy Convenience Upgrade",
                                "quantity": "Quantity",
                                "limit": "(Limit: {{limit}})",
                                "buyLimit": "Buy Limit: {{limit}}",
                                "afterPurchaseHoursofflineProgress": "After Purchase: {{limit}} hours offline progress",
                                "afterPurchaseMarketListings": "After Purchase: {{limit}} market listings",
                                "afterPurchaseActionQueues": "After Purchase: {{limit}} action queues",
                                "afterPurchaseLoadoutSlots": "After Purchase: {{limit}} loadout slots",
                                "afterPurchaseTaskSlots": "After Purchase: {{limit}} task slots",
                                "buyChatIcon": "Buy Chat Icon",
                                "buyNameColor": "Buy Name Color",
                                "buyAvatar": "Buy Avatar",
                                "buyAvatarOutfit": "Buy Avatar Outfit",
                                "preview": "Preview",
                                "unlock": "Unlock",
                                "buyCommunityBuff": "Buy Community Buff",
                                "minute": "Minute",
                                "minutesToAdd": "Minutes to Add",
                                "youPay": "You Pay: {{cost}}",
                                "buy": "Buy",
                                "cowbellStore": "Cowbell Store",
                                "supporterPointsLabel": "Supporter Points: {{points}}",
                                "famePointsLabel": "Fame Points: {{points}}",
                                "buyCowbellsInfo": "Cowbells can be purchased to help support the game. You can use them to buy convenience upgrades, chat icons, name colors, avatars, avatar outfits, community buffs, or change your name.",
                                "testServerFreeCowbellsSteam": "TEST SERVER: You can get cowbells for free. This uses Steam's sandbox payment mode which doesn't actually charge you.",
                                "testServerFreeCowbellsStripe": "TEST SERVER: You can get cowbells for free by putting 4242-4242-4242-4242 as credit card and any inputs for other fields.",
                                "buyCowbellsNote": "NOTE: Purchased Cowbells will appear in your inventory as Bags of 10 Cowbells which can be sold on the market ({{cowbellTaxRate}} coin tax) to other players. Once opened, they are no longer tradable.",
                                "selectCurrency": "Select Currency",
                                "mooPassInfo": "MooPass grants a number of helpful but non-essential <PerksLink>Perks</PerksLink>.",
                                "characterMooPass": "Character MooPass",
                                "accountMooPass": "Account MooPass",
                                "increaseOfflineProgressLimit": "Increase Offline Progress Limit",
                                "increaseMarketListingLimit": "Increase Market Listing Limit",
                                "increaseActionQueueLimit": "Increase Action Queue Limit",
                                "increaseLoadoutSlotLimit": "Increase Loadout Slot Limit",
                                "increaseTaskSlotLimit": "Increase Task Slot Limit",
                                "freeMooPass": "14-Day MooPass Gift",
                                "free": "Free",
                                "confirmClaimFreeMooPass": "Activate the Free 14-Day MooPass? This is a one time gift. If MooPass is already active, it will be extended by 14 days.",
                                "mooPassWithCowbells": "7-Day MooPass",
                                "buyMooPass": "Buy MooPass",
                                "totalMooPassDays": "Grants: {{days}} days of MooPass",
                                "upgradeLimitsInfo": "Upgrades permanently increases limits. Your current limits can be viewed in Settings.",
                                "seasonal": "Seasonal",
                                "unlocked": "Unlocked",
                                "chatIconsInfo": "Chat icons are displayed in front of your name in the chat. Unlocked chat icons can be changed in Settings -> Profile.",
                                "customChatIconInfo": "You can request a custom chat icon for the cost of {{supporterPoints}} Supporter Points and {{cowbellCost}} Cowbells. The icon can be requested via #new-ticket on Discord. The icon will be based on a concept or image you provide and will be designed by our artist to fit the style and color theme of the game. It must not contain copyrighted content. Supporter Points and Cowbell costs are deducted from a character of your choice when the icon is granted.",
                                "nameColorsInfo": "Click any of the colors to see a preview with your name. Unlocked colors can be changed in Settings -> Profile.",
                                "customNameColorInfo": "You can request a custom name color for the cost of {{supporterPoints}} Supporter Points and {{cowbellCost}} Cowbells. The color can be requested via #new-ticket on Discord. The name color can consist of a color gradient and optionally a subtle glow effect. Supporter Points and Cowbell costs are deducted from a character of your choice when the name color is granted.",
                                "avatarsInfo": "Click any of the avatars to see a larger preview. Unlocked avatars can be changed in Settings -> Profile.",
                                "customAvatarInfo": "You can request a custom avatar for the cost of {{supporterPoints}} Supporter Points and {{cowbellCost}} Cowbells. The avatar can be requested via #new-ticket on Discord. The avatar will be based on a concept or image you provide and will be designed by our artist to fit the style and color theme of the game. It must not contain copyrighted content. Supporter Points and Cowbell costs are deducted from a character of your choice when the avatar is granted.",
                                "avatarOutfitsInfo": "Click any of the outfits to see a preview with your avatar. Unlocked outfits can be changed in Settings -> Profile.",
                                "customAvatarOutfitInfo": "You can request a custom avatar outfit for the cost of {{supporterPoints}} Supporter Points and {{cowbellCost}} Cowbells. The outfit can be requested via #new-ticket on Discord. The outfit will be based on a concept or image you provide and will be designed by our artist to fit the style and color theme of the game. It must not contain copyrighted content. Supporter Points and Cowbell costs are deducted from a character of your choice when the outfit is granted.",
                                "communityBuffsInfo": "Community buffs are bonuses granted to all players on the server. For every Cowbell spent on community buffs, you will gain 1 fame point. Fame points are ranked on the leaderboard.",
                                "fameLeaderboard": "Fame Leaderboard",
                                "currentName": "Current Name",
                                "newName": "New Name",
                                "checkAvailability": "Check Availability",
                                "available": "Available",
                                "cost": "Cost",
                                "changeName": "Change Name"
                            },
                            "paymentSuccessPage": {
                                "paymentSuccess": "Payment Successful",
                                "thankYouMessage": "Thank you for the support! The purchased Cowbells should appear in your inventory within 1 minute. You can close this tab and go back to the game."
                            },
                            "paymentCancelPage": {
                                "paymentCancelled": "Payment Cancelled",
                                "closeTabMessage": "You can close this tab and go back to the game."
                            },
                            "lootLogPanel": {
                                "lootTracker": "Loot Tracker",
                                "refresh": "Refresh",
                                "startTime": "Start Time",
                                "duration": "Duration"
                            },
                            "socialPanel": {
                                "friends": "Friends",
                                "referrals": "Referrals",
                                "blockList": "Block List",
                                "whisper": "Whisper",
                                "profile": "Profile",
                                "confirmUnfriend": "Confirm Unfriend",
                                "unfriend": "Unfriend",
                                "activity": "Activity",
                                "status": "Status",
                                "daysAgo": "{{days}} ago",
                                "online": "Online",
                                "hidden": "Hidden",
                                "offline": "Offline",
                                "playerNamePlaceholder": "Player Name",
                                "addFriend": "Add Friend",
                                "blockedPlayers": "Blocked Players",
                                "blockPlayer": "Block Player",
                                "unblock": "Unblock",
                                "referralBonusFirstLevel": "A referred player reached Total Level {{level}}",
                                "referralBonusPurchase": "A referred player made a purchase",
                                "reward": "Reward: {{quantity}}",
                                "claim": "Claim",
                                "referralInstructions": "When someone signs up using your referral link, you'll be eligible for the following rewards:",
                                "referralInstructionBullets": "<ul><li>{{firstLevelCowbells}}<cowbellIcon /> if they reach Total Level {{firstTotalLevel}}.</li><li>Additional {{secondLevelCowbells}}<cowbellIcon /> if they reach Total Level {{secondTotalLevel}}.</li><li>{{purchaseCowbellPercent}} of any Cowbells they purchase.</li></ul>",
                                "referralLinkCopied": "Link Copied",
                                "copyLink": "Copy Link",
                                "referralCount": "So far, <span>{{count}}</span> players have signed up using your referral link",
                                "socialTitle": "Social"
                            },
                            "guildPanel": {
                                "overview": "Overview",
                                "members": "Members",
                                "manage": "Manage",
                                "nameLengthError": "Name must be {{minLength}}-{{maxLength}} characters long",
                                "nameContentError": "Name can only contain alphabets, numbers, and single spaces between words",
                                "confirmDisband": "Are you sure you want to disband the guild?",
                                "confirmLeave": "Are you sure you want to leave the guild?",
                                "guildInvitation": "Guild Invitation: ",
                                "invitedBy": "Invited by: ",
                                "decline": "Decline",
                                "join": "Join",
                                "createGuildInstructions": "You can create a guild for 5M coins. A guild currently provides the following features:",
                                "createGuildInfoBullets": "<ul><li>Guild chat channel and notice board.</li><li>Guild will receive XP and level up as members gain XP in any skill at a ratio of 1:1000.</li><li>{{defaultSlots}} member slots and 1 additional slot for every {{levelsPerSlot}} guild levels.</li><li>Roles can be assigned: Leader, General, Officer, Member.</li></ul>",
                                "cost5m": "Cost: 5,000,000",
                                "guildNamePlaceholder": "Guild Name",
                                "createGuild": "Create Guild",
                                "joinGuildInfo": "You can also be invited to existing guilds. Use the Recruit chat channel to find a guild to join. Received invitations will be displayed below.",
                                "save": "Save",
                                "edit": "Edit",
                                "guildLevel": "Guild Level",
                                "guildExperience": "Guild Experience",
                                "expToLevelUp": "Exp to Level Up",
                                "guildMembers": "Guild Members",
                                "whisper": "Whisper",
                                "profile": "Profile",
                                "confirmGiveLead": "Confirm Give Lead",
                                "giveLeadership": "Give Leadership",
                                "promote": "Promote",
                                "demote": "Demote",
                                "cancelInvite": "Cancel Invite",
                                "confirmKick": "Confirm Kick",
                                "kick": "Kick",
                                "playerNamePlaceholder": "Player Name",
                                "inviteToGuild": "Invite to Guild",
                                "membersHeader": "Members ({{currentCount}}/{{maxCount}})",
                                "role": "Role",
                                "guildExp": "Guild Exp",
                                "activity": "Activity",
                                "status": "Status",
                                "invited": "Invited",
                                "daysAgo": "{{days}} ago",
                                "online": "Online",
                                "hidden": "Hidden",
                                "offline": "Offline",
                                "disbandInstructions": "You can disband if there are no other members or open invites.",
                                "disbandGuild": "Disband Guild",
                                "leaveInstructions": "You can leave the guild. There are no penalties for leaving.",
                                "leaveGuild": "Leave Guild",
                                "guild": "Guild"
                            },
                            "leaderboardPanel": {
                                "leaderboard": "Leaderboard",
                                "noPlayers": "No players meet the minimum threshold for this leaderboard.",
                                "updatesNote": "Updates every 20 minutes",
                                "rank": "Rank",
                                "name": "Name",
                                "level": "Level",
                                "experience": "Experience",
                                "points": "Points",
                                "taskPoints": "Task Points",
                                "famePoints": "Fame Points"
                            },
                            "moderatorPanel": {
                                "reportedFor": "Reported for: "
                            },
                            "settingsPanel": {
                                "settings": "Settings",
                                "profile": "Profile",
                                "game": "Game",
                                "account": "Account",
                                "show": "Show",
                                "hide": "Hide",
                                "off": "Off",
                                "enabled": "Enabled",
                                "disabled": "Disabled",
                                "on": "On",
                                "public": "Public",
                                "friendsGuildmates": "Friends/Guildmates",
                                "private": "Private",
                                "partyMembersOnly": "Party Members Only",
                                "emailEmpty": "Email must not be empty",
                                "validEmail": "Please enter a valid email",
                                "currentPassword": "Please enter your current password",
                                "passwordLength": "Password must be at least 6 characters",
                                "confirmPassword": "Confirm password does not match",
                                "noneOwned": "None Owned",
                                "unlock": "Unlock",
                                "unlockMoreAvatars": "Unlock More Avatars",
                                "unlockMoreOutfits": "Unlock More Outfits",
                                "setSkillLevel": "Set Skill Level",
                                "selectSkill": "Select Skill",
                                "setLevel": "Set Level",
                                "preview": "Preview:",
                                "viewProfile": "View My Profile",
                                "chatIcon": "Chat Icon:",
                                "nameColor": "Name Color:",
                                "avatar": "Avatar:",
                                "avatarOutfit": "Avatar Outfit:",
                                "onlineStatus": "Online Status:",
                                "equipment": "Equipment:",
                                "deleteCharacter": "Delete Character",
                                "deleteCharacterTimeLimit": "Cannot delete within 10 hours of creation",
                                "showDeletionInstructions": "Show Deletion Instructions",
                                "deleteCharacterInstructions": "Follow the instructions to permanently delete this character \"{{name}}\". This action cannot be undone. You must exit party and guild before proceeding. Type the exact name of the character to confirm deletion.",
                                "characterName": "Character Name:",
                                "deleteCharacterCaps": "DELETE CHARACTER",
                                "gameMode": "Game Mode:",
                                "mooPass": "MooPass:",
                                "inactive": "Inactive",
                                "offlineProgress": "Offline Progress:",
                                "hours": "hours",
                                "upgrade": "Upgrade",
                                "marketListing": "Market Listing:",
                                "listings": "listings",
                                "actionQueue": "Action Queue:",
                                "actions": "actions",
                                "loadoutSlot": "Loadout Slot:",
                                "slots": "slots",
                                "taskSlots": "Task Slots:",
                                "tasks": "tasks",
                                "displayLanguage": "Display Language:",
                                "generalChat": "General Chat:",
                                "nonEnglishChat": "Non-English Language Chat:",
                                "ironcowChat": "Ironcow Chat:",
                                "tradeChat": "Trade Chat:",
                                "recruitChat": "Recruit Chat:",
                                "beginnerChat": "Beginner Chat:",
                                "totalLevelMessage": "Total Level Message:",
                                "skillLevelMessage": "Skill Level Message:",
                                "communityBuffMessage": "Community Buff Message:",
                                "profanityFilter": "Profanity Filter:",
                                "chatURLWarning": "Chat URL Warning:",
                                "cssAnimation": "CSS Animation:",
                                "name": "Name:",
                                "accountType": "Account Type:",
                                "guest": "Guest",
                                "registeredUser": "Registered User",
                                "guestPassword": "Guest Password:",
                                "kongregateId": "Kongregate ID:",
                                "steamId": "Steam ID:",
                                "currentPasswordLabel": "Current Password:",
                                "emailLabel": "Email:",
                                "newPassword": "New Password",
                                "confirmPasswordLabel": "Confirm Password",
                                "update": "Update",
                                "registerEmailPassword": "Register Email/Password"
                            },
                            "chat": {
                                "generalTip": "Tip: General channel is an English-only channel for game-related discussions and friendly chats. To maintain a positive and respectful atmosphere, please adhere to the <gameRulesLink>Game Rules</gameRulesLink>.",
                                "tradeTip": "Tip: Trade channel is for advertising item trading and services. Please use whispers for conversations and negotiations.",
                                "recruitTip": "Tip: Recruit channel is for advertising guild/party recruitment and players seeking to join a guild/party. Please use whispers for conversations.",
                                "beginnerTip": "Tip: Feel free to ask questions or chat with other players here. Useful links: <gameGuideLink>Game Guide</gameGuideLink> and <gameRulesLink>Game Rules</gameRulesLink>.",
                                "whisperTip": "Tip: You can whisper other players using the command \"/w [playerName] [message]\" or simply click on a player's name and select whisper.",
                                "useWhisperCommand": "Use /w Command",
                                "needPlayerName": "Need Player Name",
                                "emptyMessage": "Empty Message",
                                "invalidCommand": "Invalid Command",
                                "useTradeChannel": "Use Trade Channel",
                                "useRecruitChannel": "Use Recruit Channel",
                                "mutedMessage": "Muted until {{muteExpireTime}}. {{muteReason}}",
                                "generalChatRestriction": "You need at least {{generalChatMinLevel}} total level or {{generalChatMinExp}} XP to use general chat",
                                "chatRestriction": "You need at least {{chatMinLevel}} total level to chat",
                                "enterMessagePlaceholder": "Enter message...",
                                "sendButton": "Send",
                                "reportChatMessage": "Report Chat Message",
                                "reportInstructions": "Submit a report for serious chat disruptions or rule violations. For minor personal disagreements, please use the block feature instead.",
                                "reportReason": "Report Reason:",
                                "submitReport": "Submit Report",
                                "reportType": {
                                    "selectReason": "Select Reason",
                                    "harassmentMe": "Harassing Me",
                                    "harassmentOthers": "Harassing Others",
                                    "offensiveLanguage": "Offensive Language",
                                    "illegalViolentSexual": "Illegal/Violent/Sexual Topics",
                                    "controversialTopics": "Divisive/Disruptive Topics",
                                    "excessiveDrama": "Excessive Drama",
                                    "spam": "Spam",
                                    "encouragingRuleBreaking": "Encouraging Rule Breaking",
                                    "personalInformation": "Disclosing Personal Information",
                                    "wrongChannel": "Wrong Channel",
                                    "cheating": "Cheating",
                                    "underage": "Under 13 Years Old",
                                    "inappropriateName": "Inappropriate Name",
                                    "other": "Other"
                                },
                                "reportTypeDescription": {
                                    "harassmentMe": "Personal attacks or harassment directed at me.",
                                    "harassmentOthers": "Personal attacks or harassment directed at someone else.",
                                    "offensiveLanguage": "Use of offensive or inappropriate language.",
                                    "illegalViolentSexual": "Message, discussion, or URL link that is illegal, excessively violent, or sexual in nature.",
                                    "controversialTopics": "Divisive topics such as politics, religion, international conflicts, gender discussions, sexuality, mute/ban complaints, or other topics that frequently become disruptive.",
                                    "excessiveDrama": "Excessive drama or heated arguments that disrupt the chat.",
                                    "spam": "Single player spamming chat with meaningless messages, excessive duplicate messages, or begging others for free items. (Multiple players posting similar messages is not considered spam)",
                                    "encouragingRuleBreaking": "Encouraging or misleading other players into breaking game rules.",
                                    "personalInformation": "Disclosing identifying personal information about themselves or any personal information about other players that they have not made public themselves.",
                                    "wrongChannel": "Repeatedly posting messages in the wrong channel.",
                                    "cheating": "Admission of cheating, including but not limited to multi-accounts, boosting, real world trading, botting, or bug abuse.",
                                    "underage": "Admission of being underage, which is defined as 12 years old or younger.",
                                    "inappropriateName": "Inappropriate character name.",
                                    "other": "Other issues not covered by the above categories."
                                }
                            },
                            "chatMessage": {
                                "whisper": "Whisper",
                                "mention": "Mention",
                                "profile": "Profile",
                                "addFriend": "Add Friend",
                                "confirmBlock": "Confirm Block",
                                "block": "Block",
                                "report": "Report",
                                "modInspect": "Mod Inspect",
                                "undeleteMsg": "Undelete Msg",
                                "deleteMsg": "Delete Msg",
                                "warn": "Warn",
                                "mute": "Mute",
                                "moderator": "Moderator",
                                "privateModeratorTo": "(Private) Moderator to {{receiverName}}",
                                "toPlayer": "to {{receiverName}}",
                                "messageDeleted": "Message Deleted"
                            },
                            "characterName": {
                                "customIcon": "Custom Icon"
                            },
                            "textWithLinks": {
                                "externalLinkWarning": "Are you sure you want to open an external link?"
                            },
                            "characterManagement": {
                                "inventory": "Inventory",
                                "equipment": "Equipment",
                                "abilities": "Abilities",
                                "house": "House",
                                "loadouts": "Loadouts"
                            },
                            "inventory": {
                                "openedLootHeader": "Opened Loot",
                                "foundItemsLabel": "You found:",
                                "closeButton": "Close",
                                "itemFilterPlaceholder": "Item Filter"
                            },
                            "equipmentPanel": {
                                "title": "Equipment",
                                "viewStats": "View Stats",
                                "combatStats": "Combat Stats",
                                "nonCombatStats": "Non-combat Stats"
                            },
                            "abilitiesPanel": {
                                "title": "Abilities",
                                "abilitySlotsLabel": "Ability Slots",
                                "learnedAbilitiesLabel": "Learned Abilities"
                            },
                            "housePanel": {
                                "house": "House",
                                "houseBuffs": "House Buffs",
                                "allSkills": "All Skills",
                                "none": "None",
                                "notBuilt": "Not built",
                                "level": "Level {{level}}",
                                "max": "Max",
                                "constructionCosts": "Construction Costs",
                                "build": "Build",
                                "viewBuffs": "View Buffs",
                                "actionBuff": "{{action}} Buff",
                                "allSkillBuffs": "All Skill Buffs"
                            },
                            "loadoutPanel": {
                                "allSkills": "All Skills",
                                "newLoadout": "New Loadout",
                                "createLoadout": "Create Loadout",
                                "loadoutCount": "{{count}} / {{max}} Loadouts",
                                "upgradeCapacity": "Upgrade Capacity",
                                "loadouts": "Loadouts",
                                "viewAllLoadouts": "View All Loadouts",
                                "deleteLoadout": "Delete Loadout",
                                "confirmDeleteLoadout": "Are you sure you want to delete this loadout?",
                                "name": "Name",
                                "edit": "Edit",
                                "save": "Save",
                                "setDefault": "Set as the default loadout for {{actionTypeName}}",
                                "suppressValidation": "Do not notify when items are unavailable",
                                "importCurrentSetup": "Import Current Setup",
                                "confirmImportCurrentSetup": "Are you sure you want to import your current setup? This will overwrite the current loadout.",
                                "equipLoadout": "Equip Loadout",
                                "equipment": "Equipment",
                                "abilities": "Abilities",
                                "consumables": "Consumables"
                            },
                            "offlineProgressModal": {
                                "welcomeBack": "Welcome Back!",
                                "offlineDuration": "Offline duration",
                                "progressDuration": "Progress duration",
                                "upgrade": "Upgrade",
                                "itemsGained": "Items gained",
                                "experienceGained": "Experience gained",
                                "itemsConsumed": "Items consumed",
                                "close": "Close"
                            },
                            "sharableProfile": {
                                "overview": "Overview",
                                "skills": "Skills",
                                "equipment": "Equipment",
                                "house": "House",
                                "guildRole": "{{role}} of {{guildName}}",
                                "online": "Online",
                                "offline": "Offline",
                                "totalExperience": "Total Experience: {{experience}}",
                                "totalLevel": "Total Level: {{level}}",
                                "combatLevel": "Combat Level: {{level}}",
                                "age": "Age: {{age}}",
                                "level": "Level {{level}}",
                                "close": "Close"
                            },
                            "skill": {
                                "level": "Level: {{level}}",
                                "totalExperience": "Total Experience: {{totalExperience}}",
                                "expToLevelUp": "Exp to Level Up: {{remainingExperience}}"
                            },
                            "item": {
                                "all": "All",
                                "learn": "Learn",
                                "levelNotMet": "(Level Not Met)",
                                "cannotDuringCombat": "(Cannot During Combat)",
                                "newAbility": "(New Ability)",
                                "gainXP": "(+{{count}} XP)",
                                "equip": "Equip",
                                "enhance": "Enhance",
                                "alchemize": "Alchemize",
                                "openLoot": "Open {{count}}",
                                "openLootWithKeys": "Open {{count}} (Keys: {{keyCount}})",
                                "viewMarketplace": "View Marketplace",
                                "viewCowbellStore": "View Cowbell Store",
                                "linkToChat": "Link To Chat",
                                "openItemDictionary": "Open Item Dictionary",
                                "sellFor": "Sell For {{count}} Coins",
                                "confirmSellFor": "Confirm Sell For {{count}} Coins"
                            },
                            "itemTooltipText": {
                                "amount": "Amount: {{amount}}",
                                "sellPrice": "Sell Price: {{price}}",
                                "openHotkeyHint": "Open - [Right Click]",
                                "abilityBookType": "Type: Ability Book",
                                "requiresLevel": "Requires: {{level}} {{skill}}",
                                "abilityExpPerBook": "Ability Exp Per Book: {{exp}} ",
                                "learnHotkeyHint": "Learn - [Right Click]",
                                "equipmentType": "Type: {{type}}",
                                "equipHotkeyHint": "Equip - [Right Click]",
                                "consumableType": "Type: Consumable",
                                "usableIn": "Usable: ",
                                "cooldownInCombat": "Cooldown(in combat): {{seconds}}s",
                                "hpRestore": "HP Restore: {{amount}} HP",
                                "mpRestore": "MP Restore: {{amount}} MP",
                                "overDuration": "over {{duration}}"
                            },
                            "equipmentStatsText": {
                                "weaken": "Weaken: When attacked by enemy, reduce enemy's damage by {{value}} for 15s, stacking up to 5 times.",
                                "fury": "Fury: On hit, increases accuracy and damage by {{value}} for 15s, stacking up to 5 times. Lose half stacks on miss.",
                                "parry": "Parry: {{value}} chance to parry enemy's attack, avoiding damage and retaliating with an instant auto attack. Can also parry attacks targeting party members",
                                "mayhem": "Mayhem: Upon missing an auto-attack, {{value}} chance to auto-attack next enemy. Can chain multiple times.",
                                "curse": "Curse: On hit, increases enemy's damage taken by {{value}} for 15s, stacking up to 5 times.",
                                "pierce": "Pierce: On successful auto-attack, {{value}} chance to auto-attack next enemy. Can chain multiple times.",
                                "ripple": "Ripple: On ability cast, {{value}} chance to reduce all ability cooldowns by 2s and restore 10 MP.",
                                "bloom": "Bloom: On ability cast, {{value}} chance to heal lowest HP% ally for 10HP+15% magic damage.",
                                "blaze": "Blaze: On ability cast, {{value}} chance to attack all enemies for 30% magic damage."
                            },
                            "itemSelector": {
                                "count": "Count",
                                "remove": "Remove",
                                "itemFilterPlaceholder": "Item Filter",
                                "cannotChangeWhileInCombat": "Cannot change while in combat",
                                "noItemsAvailable": "No items available"
                            },
                            "consumableSlot": {
                                "requireBiggerPouch": "Require<br />Bigger<br />Pouch",
                                "food": "Food",
                                "drink": "Drink"
                            },
                            "itemDictionary": {
                                "gatheredFrom": "Gathered From:",
                                "producedFrom": "Produced From",
                                "producedFromCheesesmithing": "Produced From Cheesesmithing:",
                                "producedFromCrafting": "Produced From Crafting:",
                                "producedFromTailoring": "Produced From Tailoring:",
                                "producedFromCooking": "Produced From Cooking:",
                                "producedFromBrewing": "Produced From Brewing:",
                                "producedFromAlchemy": "Produced From Alchemy:",
                                "producedFromEnhancing": "Produced From Enhancing:",
                                "rareDropFrom": "Rare Drop From:",
                                "droppedByMonsters": "Dropped By Monsters:",
                                "droppedByEliteMonsters": "Dropped By Elite Monsters:",
                                "decomposedFrom": "Decomposed From(Alchemy):",
                                "transmutedFrom": "Transmuted From(Alchemy):",
                                "decomposesInto": "Decomposes Into(Alchemy):",
                                "transmutesInto": "Transmutes Into(Alchemy):",
                                "enhancingCost": "Enhancing Cost:",
                                "usedFor": "Used For {{actionTypeName}}:",
                                "lootedFromContainer": "Looted From Container:",
                                "openToLoot": "Open To Loot:",
                                "anyMilkingAction": "Any Milking action.",
                                "anyForagingAction": "Any Foraging action.",
                                "anyWoodcuttingAction": "Any Woodcutting action.",
                                "anyCheesesmithingAction": "Any Cheesesmithing action.",
                                "anyCraftingAction": "Any Crafting action.",
                                "anyTailoringAction": "Any Tailoring action.",
                                "anyCookingAction": "Any Cooking action.",
                                "anyBrewingAction": "Any Brewing action.",
                                "anyAlchemyAction": "Any Alchemy action.",
                                "anyEnhancingAction": "Any Enhancing action.",
                                "anyLowLevelGathering": "Any low level gathering actions.",
                                "anyMediumLevelGathering": "Any medium level gathering actions.",
                                "anyHighLevelGathering": "Any high level gathering actions.",
                                "anyLowLevelProduction": "Any low level production, alchemy, and enhancing actions.",
                                "anyMediumLevelProduction": "Any medium level production, alchemy, and enhancing actions.",
                                "anyHighLevelProduction": "Any high level production, alchemy, and enhancing actions.",
                                "almostAllMonstersDropCoins": "Almost all monsters drop coins.",
                                "anyLowLevelMonster": "Any low level monster in normal combat.",
                                "anyMediumLevelMonster": "Any medium level monsters in normal combat.",
                                "anyHighLevelMonster": "Any high level monsters in normal combat.",
                                "recommendedLevel": "Level {{level}} <Icon /> Recommended"
                            },
                            "ability": {
                                "level": "Level: {{level}}",
                                "totalExperience": "Total Experience: {{totalExperience}}",
                                "expToLevelUp": "Exp to Level Up: {{remainingExperience}}",
                                "linkToChat": "Link To Chat",
                                "lv": "Lv.{{level}}",
                                "ability": "Ability"
                            },
                            "abilityTooltipText": {
                                "description": "Description: {{description}}",
                                "cooldown": "Cooldown: {{duration}}",
                                "castTime": "Cast Time: {{duration}}",
                                "mpCost": "MP Cost: {{cost}} MP",
                                "effect": "Effect: {{effectText}}",
                                "attacks": "Attacks",
                                "heals": "Heals",
                                "revivesAndHeals": "Revives and heals",
                                "increases": "Increases",
                                "decreases": "Decreases",
                                "target": "target",
                                "self": "self",
                                "enemy": "enemy",
                                "allEnemies": "all enemies",
                                "allAllies": "all allies",
                                "lowestHpAlly": "lowest HP ally",
                                "deadAlly": "a defeated ally",
                                "possessive": {
                                    "target": "target's",
                                    "self": "my",
                                    "enemy": "enemy's",
                                    "allEnemies": "all enemies'",
                                    "allAllies": "all allies'",
                                    "lowestHpAlly": "lowest HP ally's",
                                    "deadAlly": "a defeated ally's"
                                },
                                "accuracyBonusText": " with {{accuracyBonus}} total accuracy",
                                "baseDamageFlat": "{{baseDamageFlat}}HP",
                                "baseDamageRatio": "{{baseDamageRatio}}",
                                "asDamageType": " as {{damageType}} damage",
                                "takesDamageOverTime": "takes damage over time",
                                "bleeds": "Bleeds",
                                "soaks": "Soaks",
                                "poisons": "Poisons",
                                "burns": "Burns",
                                "dotText": "{{dotVerb}} for {{dotRatio}} dealt damage over {{dotDuration}}. ",
                                "armorDamageText": "Bonus damage equal to {{armorDamageRatio}} armor. ",
                                "hpDrainText": "Drains {{hpDrainRatio}} of dealt damage as HP. ",
                                "pierceText": "{{pierceChance}} chance to pierce. ",
                                "stunText": "{{stunChance}} chance to stun for {{stunDuration}}. ",
                                "blindText": "{{blindChance}} chance to blind for {{blindDuration}}. ",
                                "silenceText": "{{silenceChance}} chance to silence for {{silenceDuration}}. ",
                                "damageHealReviveEffectText": "{{effectType}} {{effectTarget}}{{accuracyBonusText}} for {{baseDamageFlat}}{{maybePlus}}{{baseDamageRatio}} {{combatStyle}} damage{{asDamageType}}. {{dotText}}{{armorDamageText}}{{hpDrainText}}{{pierceText}}{{stunText}}{{blindText}}{{silenceText}}",
                                "spendHpEffectText": "Costs {{hpCost}} of current HP. ",
                                "buffEffectText": "{{increaseOrDecrease}} {{targetType}} {{buffName}} by {{boostText}} for {{duration}}. "
                            },
                            "abilitySlot": {
                                "specialAbility": "Special<br />Ability",
                                "ability": "Ability",
                                "unlockLevel": "Unlock:<br />Lv.{{level}} INT",
                                "remove": "Remove",
                                "cannotChangeInCombat": "Cannot change in combat",
                                "noAbilitiesAvailable": "No abilities available"
                            },
                            "combatTriggersSetting": {
                                "activateWhen": "Activate when:",
                                "activateOffCooldown": "Activate as soon as it's off cooldown",
                                "and": "AND",
                                "combatTriggers": "Combat Triggers",
                                "selectTargetType": "Select Target Type",
                                "selectCondition": "Select Condition",
                                "select": "Select",
                                "remove": "remove",
                                "addCondition": "+ Condition",
                                "resetDefault": "Reset Default",
                                "save": "Save",
                                "setting": "Setting",
                                "triggerText": "{{dependency}} {{condition}} {{comparator}} {{value}}",
                                "cannotChangeInCombat": "Cannot change in combat"
                            },
                            "buffText": {
                                "duration": "Duration",
                                "detail": "Detail"
                            },
                            "buffsTooltip": {
                                "bonuses": "Bonuses"
                            },
                            "mooPass": {
                                "mooPass": "MooPass",
                                "durationLabel": "Duration: ",
                                "mooPassExpBuff": "+{{expBuff}} XP buff (limited to Standard character)",
                                "mooPassOfflineHourLimit": "+{{count}} Hour Offline Progress Limit",
                                "mooPassMarketListingLimit": "+{{count}} Market Listing Limit",
                                "mooPassActionQueueLimit": "+{{count}} Action Queue Limit",
                                "mooPassTaskSlotLimit": "+{{count}} Task Slot Limit",
                                "mooPassFreeTaskRerolls": "+{{count}} Free Task Reroll (per task)",
                                "mooPassLootTracker": "Loot Tracker of last {{count}} activities",
                                "mooPassAvatarBorder": "Golden Avatar Border"
                            },
                            "communityBuff": {
                                "durationLabel": "Duration: ",
                                "durationDefault": "Duration: 1 Minute",
                                "minutesToNextLevel": "Minutes To Add For Next Level: {{minutes}}",
                                "level": "Level: {{level}}",
                                "max": " (Max)",
                                "usableIn": "Usable:",
                                "contributor": "{{name}}: {{minutes}} minutes",
                                "moreContributors": "(+{{count}} more contributors)"
                            },
                            "systemChatMessage": {
                                "communityBuffAdded": "{{name}} has added {{minutes}} minutes of community buff: $t(communityBuffTypeNames.{{buffHrid}})!",
                                "characterLeveledUp": "{{name}} has reached {{level}} $t(skillNames.{{skillHrid}})!",
                                "guildLeveledUp": "Guild has reached level {{level}}!",
                                "guildNoticeUpdated": "Guild notice message has been updated by {{name}}.",
                                "guildMemberPromoted": "{{name}} has been promoted by {{actor}} to $t(guildCharacterRoleNames.{{role}}).",
                                "guildMemberDemoted": "{{name}} has been demoted by {{actor}} to $t(guildCharacterRoleNames.{{role}}).",
                                "guildMemberJoined": "{{name}} has joined the guild!",
                                "guildMemberLeft": "{{name}} has left the guild.",
                                "guildMemberKicked": "{{name}} has been kicked by {{actor}}.",
                                "partyMemberJoined": "{{name}} has joined the party.",
                                "partyMemberLeft": "{{name}} has left the party.",
                                "partyMemberKicked": "{{name}} has been kicked from the party.",
                                "partyMemberReady": "{{name}} is ready.",
                                "partyMemberNotReady": "{{name}} is not ready.",
                                "partyBattleStarted": "Battle started: $t(actionNames.{{actionHrid}})",
                                "partyBattleEnded": "Battle ended: $t(actionNames.{{actionHrid}})",
                                "partyKeyCount": "Key counts: {{keyCountString}}",
                                "partyWaveFailed": "Party failed on wave {{wave}}."
                            },
                            "infoNotification": {
                                "addedFriend": "Added friend: {{0}}",
                                "removedFriend": "Removed friend: {{0}}",
                                "blockedCharacter": "Blocked character: {{0}}\nView at Social -> Block List",
                                "unblockedCharacter": "Unblocked character: {{0}}",
                                "chatReportSubmitted": "Chat report submitted",
                                "loadoutCreated": "Loadout created",
                                "loadoutUpdated": "Loadout updated",
                                "setupImportedToLoadout": "Imported current setup to loadout",
                                "loadoutEquipped": "Loadout equipped",
                                "loadoutDeleted": "Loadout deleted",
                                "boughtItem": "Bought {{0}} {{1}}",
                                "soldItem": "Sold {{0}} {{1}}",
                                "buyOrderCompleted": "Bought {{0}} {{1}}{{2}}\nSpent {{3}} Coins",
                                "sellOrderCompleted": "Sold {{0}} {{1}}{{2}}\nReceived {{3}} Coins",
                                "buyListingProgress": "Buy listing: {{0}}{{1}}\nProgress: {{2}}/{{3}}",
                                "sellListingProgress": "Sell listing: {{0}}{{1}}\nProgress: {{2}}/{{3}}",
                                "houseConstructed": "Level {{0}} {{1}} constructed",
                                "steamCheckoutRequested": "Steam checkout requested. Please wait...",
                                "upgradePurchased": "Upgrade purchased: {{0}} (x{{1}})",
                                "chatIconUnlocked": "Unlocked chat icon: {{0}}",
                                "nameColorUnlocked": "Unlocked name color: {{0}}",
                                "avatarUnlocked": "Unlocked new avatar",
                                "avatarOutfitUnlocked": "Unlocked new avatar outfit",
                                "communityBuffAdded": "Added {{0}} minutes of community buff: {{1}}",
                                "nameChanged": "Name changed: {{0}}",
                                "guildCreated": "Created guild: {{0}}",
                                "guildDisbanded": "Disbanded guild: {{0}}",
                                "guildLeft": "Left guild: {{0}}",
                                "guildNoticeUpdated": "Guild notice message has been updated by {{0}}.",
                                "guildPromotedTo": "You have been promoted to guild {{0}}",
                                "guildDemotedTo": "You have been demoted to guild {{0}}",
                                "guildLeadershipPassed": "Passed leadership to {{0}}",
                                "guildMemberPromoted": "Promoted {{0}} to {{1}}",
                                "guildMemberDemoted": "Demoted {{0}} to {{1}}",
                                "guildKicked": "Kicked by guild: {{0}}",
                                "kickedGuildMember": "Kicked guild member: {{0}}",
                                "guildInvited": "Invited to guild: {{0}}",
                                "guildInviteSent": "Sent guild invite: {{0}}",
                                "guildInviteCanceled": "Guild invite canceled: {{0}}",
                                "guildJoined": "Guild joined: {{0}}",
                                "guildInviteDeclined": "Guild invite declined: {{0}}",
                                "partyCreated": "Party created",
                                "characterLeveledUp": "You have reached {{0}} {{1}}!",
                                "partyOptionsSaved": "Party options saved",
                                "partyOpenForRecruiting": "Party is open for recruiting",
                                "partyLeadershipChanged": "Party leadership changed to {{0}}",
                                "partyJoined": "You have joined the party",
                                "readyToBattle": "You are ready to battle",
                                "notReadyToBattle": "You are not ready to battle",
                                "partyDisbanded": "Party disbanded",
                                "partyLeft": "You have left the party",
                                "partyKicked": "You have been kicked from the party",
                                "partyMemberKicked": "Kicked {{0}} from the party",
                                "referralJoined": "A new player joined with your referral link. Thanks for sharing!",
                                "newReferralBonus": "New referral bonus granted\nClaim it at Social -> Referrals",
                                "cowbellPurchaseCompleted": "Purchase completed: {{0}} Cowbells",
                                "mooPassPurchaseCompleted": "Purchase completed: {{0}} days of MooPass",
                                "mooPassGranted": "Granted: {{0}} days of MooPass",
                                "updateSuccessful": "Update successful"
                            },
                            "errorNotification": {
                                "unexpectedError": "Unexpected error",
                                "characterBlockError": "Failed due to character block",
                                "characterNameNotFound": "Character name not found",
                                "cannotFriendSelf": "Cannot friend yourself",
                                "friendAlreadyExists": "Friend already exists",
                                "friendLimitReached": "Friend limit reached",
                                "characterWasNotFriend": "Character was not a friend",
                                "cannotBlockSelf": "Cannot block yourself",
                                "characterAlreadyBlocked": "Character already blocked",
                                "blockLimitReached": "Block limit reached",
                                "characterWasNotBlocked": "Character was not blocked",
                                "requestSpamProtection": "Spam Protection: Please do not make actions too quickly",
                                "nonPublicModMessage": "Cannot send mod message to non-public channels",
                                "nonPublicWarningMessage": "Cannot send warning message to non-public channels",
                                "chatSpamProtection": "Spam Protection: Please do not duplicate messages or send messages too quickly",
                                "waitBetweenTradeMessages": "Please wait 5 minutes between trade messages",
                                "waitBetweenRecruitMessages": "Please wait 5 minutes between recruit messages",
                                "chatReportAlreadyExists": "You have already reported this chat message",
                                "chatReportAlreadyResolved": "Report regarding this message has already been resolved",
                                "stopPartyBattleBeforeSolo": "You must stop party battle before starting a solo action",
                                "cannotEquipLoadoutForAction": "Cannot equip loadout for this action",
                                "cannotEquipLoadoutInCombat": "Cannot equip loadout in combat",
                                "orderNotFulfilled": "Order could not be fulfilled",
                                "steamCheckoutError": "Steam checkout error",
                                "stripeCheckoutError": "Stripe checkout error",
                                "characterNameUnavailable": "Character name is unavailable",
                                "guildNameUnavailable": "Guild name is unavailable",
                                "characterAlreadyInGuild": "Character already in guild",
                                "characterAlreadyInvited": "Character already invited",
                                "alreadyInParty": "You are already in a party",
                                "characterNotInParty": "Character not in party",
                                "partyNoLongerRecruiting": "This party is no longer recruiting",
                                "partyGameModeMismatch": "This party does not match your game mode",
                                "partySlotUnavailable": "Party slot no longer available",
                                "currentPasswordIncorrect": "Current password is incorrect",
                                "emailAlreadyRegistered": "This email address has already been registered on another account"
                            },
                            "guideTooltip": {
                                "milkingTitle": "Milking",
                                "milkingContent": "The milks from these magical cows have a wide variety of functions.They can be used to produce consumables or craft into special cheese to make equipment.\nCows love to be brushed. Equipping a brush will boost your milking skill.",
                                "foragingTitle": "Foraging",
                                "foragingContent": "You can find many different resources while foraging in the various areas.These resources can be used for cooking and brewing consumables.\nEquipping shears will boost your foraging skill.",
                                "woodcuttingTitle": "Woodcutting",
                                "woodcuttingContent": "You can gather logs from different types of trees.Logs are used for crafting various equipments.\nEquipping a hatchet will boost your woodcutting skill.",
                                "cheesesmithingTitle": "Cheesesmithing",
                                "cheesesmithingContent": "The hardened cheeses made with milks from the magical cows are as tough as metal.You can smith them into equipment that gives you bonuses in combat or skilling.\nEquipment is upgradable from one tier to the next, often requiring increasing amount of cheese.There is also special equipment that can be crafted with items found from monsters in combat.\nEquipping a hammer will boost your cheesesmithing skill.",
                                "craftingTitle": "Crafting",
                                "craftingContent": "You can craft weapons, offhands, and jewelry.\nEquipping a chisel will boost your crafting skill.",
                                "tailoringTitle": "Tailoring",
                                "tailoringContent": "You can tailor ranged and magic clothing using raw materials gathered from combat and foraging.\nEquipping a needle will boost your tailoring skill.",
                                "cookingTitle": "Cooking",
                                "cookingContent": "Food can be used to recover your HP or MP.They can be brought with you to combat.\nEquipping a spatula will boost your cooking skill.",
                                "brewingTitle": "Brewing",
                                "brewingContent": "Drinks can provide you with temporary buffs.Coffee can be brought with you to combat and tea can be used while skilling.\nEquipping a pot will boost your brewing skill.",
                                "alchemyTitle": "Alchemy",
                                "alchemyContent": "Alchemy allows you to transform items into other items.Each alchemy action has a different success rate, and the input items will always be consumed regardless of success or failure.\nCoinify: Converts item into coins.Decompose: Converts item into component materials.Transmute: Converts item into a random related item, and in some cases unique items that cannot be acquired elsewhere.\nEach transformation has a base success rate.The success rate is lower if your alchemy level is lower than the item level.Catalyst and tea can be used to increase the success rate.\nEquipping an Alembic will boost your alchemy skill.",
                                "enhancingTitle": "Enhancing",
                                "enhancingContent": "Enhancing allows you to permanently improve your equipment, giving them increasing bonuses as their enhancement level go up.\nEnhancing costs a small amount of materials for each attempt.The success rate depends on your enhancing skill level, the tier of the equipment, and the equipment's current enhancement level.A successful enhancement will increase the level by 1 and failure will reset the level back to 0.\nYou can optionally use copies of the base equipment for protection.Failure with protection will only reduce the enhancement level by 1 but consume 1 protection item.\nEquipping an enhancer will boost your enhancing success.",
                                "combatTitle": "Combat",
                                "combatContent": "Fighting monsters will earn you experience and item drops.Your combat stats are based on a combination of your combat skill levels and your equipment bonuses.\nYou can bring food to recover HP or MP, drinks to give you buffs, and abilities that can be cast.You can change the automation configuration from the settings icon below them.\nIf you are defeated in combat, your character will wait through a respawn timer before automatically continuing combat.",
                                "marketplaceTitle": "Marketplace",
                                "marketplaceContent": "The marketplace allows players to make buy or sell listings for any tradable item.You can click on any item listed to view existing listings or to create your own.\nNew listings will always be fulfilled by the best matching prices on market when possible.If no immediate fulfillment is possible, the listing will appear on the marketplace.\nWhen a trade is successful, a tax of 2% coins is taken and the received items can be collected from \"My Listings\" tab.Asks: existing sell listings.Bids: existing buy listings.",
                                "combatStatsTitle": "Combat Stats",
                                "combatStatsContent": "Attack Interval: How fast you can auto-attack.\nAbility Haste: Reduces ability cooldown.\nAccuracy: Increases chance to successfully attack.\nDamage: Auto-attack damage is random between 1 and the maximum damage.\nCritical Hit: Always rolls maximum damage. Ranged style has passive critical chance.\nTask Damage: Increases damage to monsters assigned as tasks.\nAmplify: Increases damage of that type.\nEvasion: Increases chance to dodge an attack.\nArmor: Mitigates % of physical damage.\nResistance: Mitigates % of elemental damage.\nPenetration: Ignores % of armor/resistance.\nLife Steal: Heal for % of auto-attack.\nMana Leech: Leeches for % of auto-attack.\nThorn: When attacked, deals a percentage of your defensive damage back to the attacker. Damage is increased by 1% per armor or resistance.\nRetaliation: When attacked, reflects a percentage of (defensive damage + incoming damage) as a smash attack back to the attacker.\nTenacity: Reduces chance of being blinded, silenced, or stunned.\nThreat: Increases chance of being targeted by monsters.\nRegen: Recover % of Max HP/MP per 10s.\nFood Haste: Reduces food cooldown.\nDrink Concentration: Increases drink effect. Reduces duration and cooldown.",
                                "noncombatStatsTitle": "Non-combat Stats",
                                "noncombatStatsContent": "Speed: Increases action speed\nTask Speed: Increases speed on actions assigned as tasks.\nGathering Quantity: Increases gathering quantity\nEfficiency: Chance of repeating the action instantly\nSkilling Essence Find: Increases chance of finding essences\nSkilling Rare Find: Increase rare item drop rate.",
                                "abilitiesTitle": "Abilities",
                                "abilitiesContent": "Abilities can be learned from ability books.You can acquire ability books as drops from monsters or purchase them from other players in the marketplace.\nAbilities can be placed into slots to be used in combat.You unlock more slots as your intelligence skill level increases.\nAbilities can level up as you gain experience.You get 0.1 experience for every use in combat and a much larger amount from consuming duplicate ability books.",
                                "houseTitle": "House",
                                "houseContent": "Rooms in your house can be built to give you permanent bonuses.\nEach room can be leveled up to a maximum of level 8 with increasing costs.",
                                "loadoutsTitle": "Loadouts",
                                "loadoutsContent": "Loadouts allow you to save your current equipment, consumables, and abilities to be automatically loaded later with actions.Loadouts can be tied to a single skill or \"All Skills.\"Selecting \"All Skills\" will only save equipment.\nSetting a loadout as default will auto-select the loadout when choosing any action in the skill(s) the loadout is associated with.",
                                "enhancingProtectionTitle": "Enhancing Protection",
                                "enhancingProtectionContent": "One protection item is consumed on failure to ensure that only 1 enhancement level is lost instead of being reset to 0.",
                                "alchemyCatalystTitle": "Alchemy Catalyst",
                                "alchemyCatalystContent": "Catalyst increases success rate.One catalyst is consumed per success."
                            },
                            "newsPanel": {
                                "news": "News"
                            },
                            "newsText": {
                                "1755558000000": {
                                    "heading": "Major Patch - Combat Rework, Charms, and Refined Equipment",
                                    "content": "<div>\n\t\t\t\t\tThis update introduces a major overhaul to the combat system, alongside new features such as charms, refined dungeon equipment, and expanded combat difficulty tiers.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tOver time, we identified long-term balance issues between the three combat styles (Melee, Ranged, and Magic). These issues made it very difficult to balance experience and income for different combat styles and across different states of progression. Some of the biggest issues included:\n\t\t\t\t\t<br />\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>Uneven skill requirements: Melee players relies on an extra Attack skill, leading to imbalance in experience distribution and coffee boosts.</li>\n\t\t\t\t\t\t<li>Magic ability scaling: Because magic does not auto attack, magic damaging abilities were granting roughly twice as much DPS increase per level compared to other styles, making it hard to balance damage outputs fairly across all levels of progression.</li>\n\t\t\t\t\t\t<li>Experience imbalances: XP formulas unintentionally favored certain strategies, even when DPS was the same.</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t<br />\n\t\t\t\t\tThe rework addresses these issues and sets up combat for long-term balance. The key changes include:\n\t\t\t\t\t<br />\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>All combat styles now require Attack skill for accuracy. Players will immediately receive Attack XP based on 15% of their Ranged and 12% of Magic experience as it's needed to be viable. The attack experience ratio is based on leaderboard data to allow total experience to catch up with Melee.</li>\n\t\t\t\t\t\t<li>Magic ability damage scaling per level decreased to 0.5% per level.</li>\n\t\t\t\t\t\t<li>Additional bonuses are added to ranged and magic equipment to maintain similar damage output as before.</li>\n\t\t\t\t\t\t<li>Bulwark reworked and significantly increased damage output to be more comparable to other combat styles.</li>\n\t\t\t\t\t\t<li>Aura system rework with new scaling mechanics based on skill levels, and a one-time XP refund via books.</li>\n\t\t\t\t\t\t<li>New combat XP system tied to monsters defeated, with Charms allowing you to distribute training XP toward specific skills.</li>\n\t\t\t\t\t\t<li>Party system update: XP divided equally, with decreased experience and drops for large level differences.</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t<br />\n\t\t\t\t\tAlong with the combat rework, we are introducing additional combat difficulty tiers. Combat zones now scale from T0 up to T5, and the new charm equipment can be found in higher difficulty zones. T1 and T2 dungeons are also added, where refinement shards can be obtained to refine your T95 and back slot items.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tVisit the Patch Notes for more details.\n\t\t\t\t</div>"
                                },
                                "1747609200000": {
                                    "heading": "Medium Patch - MooPass and Other News",
                                    "content": "<div>\n\t\t\t\t\tThe MooPass is here, an optional membership that provides a variety of helpful but non-essential perks!\n\t\t\t\t\tAll characters can claim 14 days of MooPass for free, and an additional 14 days have been granted to all existing characters.\n\t\t\t\t\tFor more details, check out the Patch Notes or directly in Cowbell Store.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tAs with any new form of monetization, we understand there are concerns about the game's future direction and the potential for pay-to-win.\n\t\t\t\t\tWe want to reassure you that we have no plans to introduce any monetization that could be considered predatory.\n\t\t\t\t\tWe've carefully considered community feedback and designed the MooPass to be affordable and fair for both paying and free-to-play players.\n\t\t\t\t\tIt introduces no content paywalls and has no impact on core gameplay, ensuring a level playing field.\n\t\t\t\t\tBy offering recurring value, MooPass also helps maintain demand for Cowbells beyond one-time convenience upgrades and cosmetics,\n\t\t\t\t\twhich supports the long-term sustainability of Milky Way Idle.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tIn other news, the continued growth of our playerbase has posed new challenges for our moderation team.\n\t\t\t\t\tOur current system depends on volunteer moderators actively monitoring the in-game chat.\n\t\t\t\t\tWe've seen feedback both regarding moderation strictness and inappropriate messages being missed during low-coverage times.\n\t\t\t\t\tTo address this, we're developing a new system that will rely more heavily on player reports,\n\t\t\t\t\tgiving players more control over their chat experience. For example, when moderators are unavailable,\n\t\t\t\t\tmessages that receive enough reports will be subject to automated moderation.\n\t\t\t\t\tThis also allows our moderators to take a less proactive role and instead focus on messages that have been flagged by the community.\n\t\t\t\t\tWe expect to release this system within the next week or two.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tLastly, a reminder to follow our rules regarding the single-account policy and trade boosting.\n\t\t\t\t\tWith many new players joining, some may not be familiar with our stance on funenlng wealth from alt accounts or coin purchases from gold sellers.\n\t\t\t\t\tWe regularly conduct ban waves. For example, over the past couple of weeks,\n\t\t\t\t\twe've issued temporary or permanent bans to 500+ main accounts and thousands of alt accounts.\n\t\t\t\t\tPlayers receiving temp bans also had 2–3x the boosted wealth removed, totaling over 100 billion coins.\n\t\t\t\t\tCheating is not worth the risk, and we will continue to improve our detection systems.\n\t\t\t\t</div>"
                                },
                                "1744930800000": {
                                    "heading": "Pirate Cove Dungeon, 4th Character Slot, and Custom Cosmetic Policy Update",
                                    "content": "<div>\n\t\t\t\t\tThe Pirate Cove Dungeon is now open for exploration! This new dungeon features a variety of new T95 weapons and armors, as well as new abilities. We've also made some adjustments to existing items and abilities to improve balance and gameplay. Check out the full patch notes for all the details!\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tIn other news, we've added a new 4th character slot for players, allowing everyone the same opportunity of having up to 1 Standard and 3 Ironcow characters.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tWe are also updating our custom cosmetic policy and pricing. While the feature started as nice gift to show our appreciation to our supporters, it's now too overwhelming with the huge increase in playerbase. We've spent 150-200 hours to work on about 100 requests in the past month, and we need to be able to allocate more time for other development tasks. Starting May 1st, custom cosmetics will require spending supporter points and cowbells. Any requests initiated before the end of April will be granted based on the previous supporter point requirements.\n\t\t\t\t</div>"
                                },
                                "1734825600000": {
                                    "heading": "Skilling Expansion Part 2 - Celestial Tools and Skilling Outfits",
                                    "content": "<div>\n                    We're excited to release the second part of the skilling expansion, introducing Celestial Tools and Skilling Outfits! After using Holy tools for such a long time, skilling specialists can finally get their hands on some upgrades. These items are not easy to acquire, but those who are dedicated (or wealthy) enough to obtain them will be rewarded with a significant boost. Dive in and take your skilling to the next level!\n\t\t\t\t</div>"
                                }
                            },
                            "patchNotesPanel": {
                                "patchNotes": "Patch Notes"
                            },
                            "patchNotesText": {
                                "1755644400000": {
                                    "heading": "Hotfix",
                                    "content": "<div>\n\t\t\t\t\tBug Fix:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tFixed combat level calculated incorrectly in battle under certain conditions, occasionally resulting in incorrect debuffs for party members.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMagician's Hat (R) now has the correct level requirement of 110.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tBalancing:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tEnchanted Bishop's defensive damage reduced as the retaliation damage was still too high making it more difficult than it should be.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRefined equipment bonus increased from 5% to 8% (16% for back slot equipment) to allow it to be cost effective for more players.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                                },
                                "1755558000000": {
                                    "heading": "Major Patch - Combat Rework, Charms, and Refined Equipment",
                                    "content": "<div>\n\t\t\t\t\tCombat Rework\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAll combat styles now require the Attack skill for accuracy.\n\t\t\t\t\t\t\tPlayers will now receive Attack experience equal to 15% of their existing Ranged experience and 12% of their Magic experience.\n\t\t\t\t\t\t\tThis adjustment is based on leaderboard data to ensure comparable total experience across the three combat styles.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tBonus magic evasion from the Ranged skill and bonus resistances from the Magic skill have been moved to the Defense skill.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tThe Power skill has been renamed to Melee.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tThe Regal Sword can now parry damage for party members.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tPestilent Shot has been reworked to debuff Armor/Resistances instead of HP/MP regeneration.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCritical rate and other buffs have been added to Ranged equipment to compensate for the loss of accuracy.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMagic damaging abilities now scale by 0.5% per ability level instead of 1%.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRippling Trident now restores 10 MP when Ripple activates.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAbility damage and other buffs have been added to Magic equipment to compensate for the loss of accuracy and reduced ability scaling.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tBulwark:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tBulwark has been reworked to include a new stat, Defensive Damage, significantly increasing its damage output.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tSpiked Shell has been reworked to include both physical and elemental thorns, scaling based on both Defensive Damage and Armor/Resistances.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tArcane Reflection has been converted to Retribution, granting a Retaliation buff that reflects a percentage of incoming damage as a Smash attack.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tShield Bash's Armor scaling has been increased from 60% to 70%.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAuras:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tAqua and Flame Auras have been converted into Mystic Aura, which grants an amplify bonus to all elements.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tSylvan Aura has been converted into Guardian Aura, which grants healing amplify, evasion, Armor, and Resistances. Guardian Aura can temporarily be traded into Mystic Aura in the Shop.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tBase Aura stats have been adjusted.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tEach Aura now additionally scales with the caster's corresponding skill:  \n\t\t\t\t\t\t\t\t\tSpeed Aura → Attack, Guardian Aura → Defense, Fierce Aura → Melee, Critical Aura → Ranged, Mystic Aura → Magic.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tAll blue ability experience will be reverted into books at a rate of 1 book per 500 experience.\n\t\t\t\t\t\t\t\t\tAny remaining experience below 500 will stay on the ability.\n\t\t\t\t\t\t\t\t\tThis is a one-time conversion.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tA fixed amount of combat experience is now granted based on the monster defeated, with an increasing Survival XP bonus the longer the fight lasts.\n\t\t\t\t\t\t\t30% of the experience is granted to the primary training skill determined by your weapon.\n\t\t\t\t\t\t\tThe distribution of the remaining 70% can be chosen using the new Charm equipment.\n\t\t\t\t\t\t\tThis system allows players to optimize their experience distribution across preferred skills.\n\t\t\t\t\t\t\tExperience rates are balanced so that players can gain more in their primary skill, but potentially less total experience overall.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMonsters no longer have base regeneration.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMonsters will now enrage every 3 minutes, increasing their accuracy and damage by 10% (stacking up to 10 times).\n\t\t\t\t\t\t\tBosses use a 10-minute timer instead of 3 minutes.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tSome monster stats have been adjusted to balance around these changes.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCombat level formula has been updated.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tParty combat experience is now divided equally among all party members, regardless of damage contribution.\n\t\t\t\t\t\t\tParty members who are at least 20% below the highest combat level will receive an experience and drop debuff, increasing by 3% for each 1% level difference beyond 20%.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAll combat styles have been balanced to deal comparable damage and achieve similar experience rates.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tFeatures and Content:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCombat Zones now have selectable difficulty tiers ranging from T0 to T5.\n\t\t\t\t\t\t\tT0 corresponds to the previous normal zones, while T2 is slightly above the previous Elite zones.\n\t\t\t\t\t\t\tHigher difficulty grants additional experience, increased drops, and some unique drops.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCharms:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tCharms are new equipment that can be equipped in the Charm slot to grant bonus experience to a specific skill.\n\t\t\t\t\t\t\t\t\tThey can also be used to focus experience toward that skill in combat.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tTrainee Charms can be purchased from the Shop for 250K.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tHigher-tier non-combat Charms can be crafted using Skilling Essences.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tHigher-tier combat Charms can be obtained as drops from higher-tier combat zones.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tCharms can be combined into higher tiers using the Crafting skill.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tCharms can be enhanced and grant 5x the normal enhancement bonus, like other jewelry equipment.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tDungeons now have higher difficulty tiers, up to T2.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRefinement:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tT1 and T2 dungeons drop Refinement Chests, which are opened using the same Chest Keys to obtain Refinement Shards.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tRefinement Shards can be used to upgrade Lv.95 equipment and back-slot items from their respective dungeons.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tRefined equipment grants +5% extra stats (+10% for back-slot items) and increases weapon special effects.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tRefining an existing item will transfer 100% of enhancement levels.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tEnhancement scaling has been moderately increased for +11 and higher.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tSupporter chat icons (different tiers of Cowbells) have been added to the Cowbell Store.\n\t\t\t\t\t\t\tThey can be purchased with supporter points and will display as a special second icon.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tDefault loadout slot count increased from 2 to 3.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tOther:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tOfficial market data now updates every 1 hour instead of every 6 hours.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                                },
                                "1749250800000": {
                                    "heading": "Medium Patch - Chat Report System and QOL Improvements",
                                    "content": "<div>\n\t\t\t\t\tFeatures and Content:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tChat Report System:\tPlayers can now report rule-breaking messages in the chat.\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tReports are sent to moderators for review and potential action.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tAutomod may be applied to messages that receive enough reports. Penalty can still be adjusted after manual review.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tSending correct reports will increase the weight of your future reports and incorrect reports will significantly reduce it.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tYou can now delete character in Settings.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAdded special icons (Contributor, Bug Finder, etc) that can be granted to players for significant contributions. They will display as a second icon.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tQOL:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tYou can now reorder action queues.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tYou can now link market listings in chat. This should improve trade chat experience with different languages.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tOther:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAdded official market data that can be accessed at <a href=\"https://www.milkywayidle.com/game_data/marketplace.json\" target=\"_blank\">https://www.milkywayidle.com/game_data/marketplace.json</a>.\n\t\t\t\t\t\t\tThis is updated every 6 hours (with some randomness and delay to prevent manipulation) and contains a snapshot of the top ask and bid prices for each item.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRemoved @mod command from the chat as it is no longer needed.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tServer optimizations to improve backend performance and support additional players.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                                },
                                "1747609200000": {
                                    "heading": "Medium Patch - MooPass and Other Improvements",
                                    "content": "<div>\n\t\t\t\t\tFeatures and Content:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMooPass: an optional membership that grants a number of helpful but non-essential perks.\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tAvailable for purchase in the Cowbell Store with either Cowbells or real money.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tAll characters can claim 14 days of MooPass for free. Additional 14 days granted to all existing characters.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+5% XP buff. This is limited to Standard characters only to allow Ironcow characters to not be significantly affected by paid content.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+10 Hour Offline Progress Limit\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+6 Market Listing Limit\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+1 Action Queue Limit\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+8 Task Slot Limit\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+1 Free Task Reroll (per task)\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tLoot Tracker of last 20 activities. This is found below the Cowbell Store in the menu.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tGolden Avatar Border\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tSteam:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tUpdated Steam client and moved local save data to a more stable file location.\n\t\t\t\t\t\t\tFor the first time after patching, wou may need to re-login and reconfigure extensions.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tQOL:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMarket listing max price increased from 10B to 100B.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMarket listing prices that are in shortened format will now be color coded based on their primary unit (K, M, B, T) to reduce chance of misreading prices.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAdded /r chat command to reply to the last whisper.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAdded stricter spam protection for excessive duplicate chat messages from 1 or more players.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tBug Fixes:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tFixed issue where enhancing essence drop rate was 33% lower than displayed. (I buffed it at some point but only updated the client and forgot the backend)\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tFixed issue with unread whispers count not showing up when reentering the game.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCheese type Plate Body Auto Attack Damage now correctly match Plate Legs bonuses. Special equipment are unaffected.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCorrectly translate party chat links for Chinese language.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAllow leaderboard tabs on mobile to wrap to second line so the Steam categories do not cause display overflow.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tOther:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRemoved seasonal Anniversary Purple and OG Jerry chat icons.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRemoved Brown/White Key Fragment exchange from the dungeon shop as it was meant to be temporary.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMarket taxes now round up instead of round down to reduce monopolization of low-value item trading.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                                },
                                "1744930800000": {
                                    "heading": "Major Patch - Pirate Cove Dungeon and More",
                                    "content": "<div>\n\t\t\t\tFeatures and Content:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tPirate Cove Dungeon:\n\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tNew T95 Magic Weapons: Rippling Trident, Blooming Trident, Blazing Trident.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tNew T95 Armors: Anchorbound Plate Body/Legs, Maelstrom Plate Body/Legs, Kraken Tunic/Chaps, Corsair Helmet, Marksman Bracers.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tNew Abilities: Shield Bash (also added to Chimerical Den), Fracturing Impact, Life Drain.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tAlchemy recipes added for the new items. All dungeon ability book transmutes have been normalized to 50% success.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ol>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFurious Spear: New T95 spear added to Enchanted Fortress.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tUpgrading equipment with production skills will now save 70% of the enhancement levels. Some T95 equipment recipes are adjusted to be upgraded from lower tier variants.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded 4th character slot. You can only have up to 3 Ironcows.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded Steam leaderboard for characters created after the Steam release and is also linked to Steam. This is only visible on qualifying characters.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tIncreased guild member slots from 25 + level/4 to 30 + level/3.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tCosmetics:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tSeasonal(2 year anniversary): Anniversary Purple, OG Jerry chat icons.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded new chat icons based on a small selection of dungeon bosses.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded 2 new Pirate Cove themed avatars and outfits.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tCustom cosmetics are changed to require spending supporter points and cowbells.\n\t\t\t\t\t\tWe are simply overwhelmed by requests due to the huge increase in player count and unfortunately cannot continue supporting them as gifts.\n\t\t\t\t\t\tThe new pricing will take effect on May 1st. Any requests initiated before end of April will be granted based on the previous supporter point requirements.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tRebalancing:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdjusted recipe of Chimerical Chest Key and Enchanted Chest Key so that their Brown and White Key Fragments are swapped.\n\t\t\t\t\t\tThis prevents Enchanted Fortress and Pirate Cove from sharing 3/4 key fragments.\n\t\t\t\t\t\tYou can temporarily freely swap between Brown and White Key Fragments in the dungeon shop until the next patch.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded auto attack damage to all melee armor to bring melee damage closer to the other styles.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tIncreased bulwark accuracy and damage\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded melee accuracy to Colossus Plate Body/Legs\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tCrippling Slash: Reworked to damage all enemies.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tMaim: Damaged over time duration reduced from 15s to 9s. Damage taken debuff increased from 0% to 8%.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFrost Surge: Evasion debuff lowered from 15% to 10%.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFirestorm: Damage over time duration reduced from 10s to 6s.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tSmoke Burst: Accuracy debuff lowered from 20% to 15%. Evasion debuff increased from 0% to 15%.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tGolem Cave: Monster defense level reduced by 10-20.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tTwilight Zone: Monster fire resistance reduced by 20.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tUI:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded a new setting to hide General chat system messages.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tDisabled party linking in General, Trade, and Beginner chat.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded double confirmation to some buttons that are troublesome when misclicked.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded inactive days count to guild and friend list.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tChanged \"Start\" button text on alchemy and enhancing to be more obvious about what action it is.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tBug Fixes:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tDo not prevent making an instant market order when you have 3 open listings on the item.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed issue that may cause small number of player's actions to stop after a server restart.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed a rare bug that may cause server crash.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tOther:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tBlocking characters will prevent party join (based on leader) and guild invite.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tServer and client optimizations to speed up server restart, task generation, scroll performance, and more.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded a feature to allow admin to post an announcement bar for important messages.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tLocalization improvements.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                                },
                                "1741906800000": {
                                    "heading": "Minor Patch - Anti-Fraud Measures and Bug Fixes",
                                    "content": "<div>\n\t\t\t\tAnti-Fraud:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tDue to a few instances of recent fraudulent purchases, added anti-fraud measure where player's first time Cowbell purchase may trigger a 72-hour restriction on selling Bags of Cowbells on the market. You will be notified prior to purchasing.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tBug Fix:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed an issue where under extremely rare conditions a player may get stuck in a nonexistent party combat action.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed additional translation inconsistencies with some item names and their corresponding actions.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tOther:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tBackend changes to improve database connection stability.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                                },
                                "1740913200000": {
                                    "heading": "Major Patch - Chinese Localization and Final Preparations for Steam Early Access Release",
                                    "content": "<div>\n\t\t\t\tUI:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded Chinese localization.\n\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tThe language will be automatically selected based on your browser language.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tPlayers can also manually change the display language in [Settings] -> [Game] or from the home page.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tA few items have not yet been translated, including most of news/patch notes, terms of use, and privacy policy.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tIf you see any translation issues or bugged display text, please report them in the #bug-reports channel on Discord.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ol>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tUpdated popup modals to all be centered on the entire game screen.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tOther:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tRemoved seasonal Spring Festival cosmetics from the Cowbell Store.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdditional adjustments to Steam integration.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tPrivacy policy have been updated to include language for use of analytical and marketing cookies. This allows us to optimize marketing campaigns when attempting to run ads for Milky Way Idle on other platforms.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                                },
                                "1737885600000": {
                                    "heading": "Minor Patch",
                                    "content": "<div>\n\t\t\t\tSpring Festival:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tSpring festival chat icon, avatar, and avatar outfits available in Cowbell Store until the update after at least 3 weeks. You can continue to use them after the event ends.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tUI:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tSend a system message every 25 skill levels at or above level 100 instead of only for levels 100 and 125.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tBug Fix:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tLeaderboard guild names should not be clickable.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tImproved chat message URL link parsing to be more accurate.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed an issue where players get logged out if the database goes offline during maintenance.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed an issue where some uncommon conditions cause player combat to not correctly stop after running out of offline progress.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tOther:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded @mod and @mods chat commands to notify moderators for emergencies.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tImplemented authentication and payment changes in the background to support upcoming Steam release.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                                }
                            },
                            "gameGuidePanel": {
                                "gameGuide": "Game Guide"
                            },
                            "gameGuideContent": {
                                "faq": "FAQ",
                                "faqContent": "<heading>General</heading>\n\t\t\t<question>Q: How does offline progress work?</question>\n\t\t\t<answer>A: Your character continues to make progress even when you're offline. A new player gets up to 10 hours of offline progress anytime you close the browser or go offline. You can extend this time with convenience upgrades available in the Cowbell Store.</answer>\n\t\t\t<question>Q: Can I log in from another device?</question>\n\t\t\t<answer>A: If you have registered an account, you can log in from any device using your email and password. If you are playing as a guest, you can find your guest password in Settings and use it to log in with your username.</answer>\n\t\t\t<question>Q: Can I play the game without an internet connection or as a single player?</question>\n\t\t\t<answer>A: No, you must be connected to the internet to play the game. However, you do continue to make progress while offline for up to 10 hours by default. If you prefer to not interact with other players, you can collapse the chat and choose not to use the marketplace.</answer>\n\t\t\t<question>Q: Can I change my username?</question>\n\t\t\t<answer>A: Yes, you can change your username by going to the Cowbell Store and clicking on the \"Name Change\" tab. It costs 500 cowbells to change your username.</answer>\n\t\t\t<question>Q: How can I get a chat icon or different name color?</question>\n\t\t\t<answer>A: You can purchase a chat icon or name color from the Cowbell Store using cowbells. You can change your displayed icon and color in Settings.</answer>\n\t\t\t<question>Q: How do I send a private message to another player?</question>\n\t\t\t<answer>A: To send a private message to another player, click on their name next to their chat message and click \"Whisper\". You can also use the chat command \"/w player_name chat_message\".</answer>\n\t\t\t<question>Q: How do I block another player?</question>\n\t\t\t<answer>A: To block a player and stop seeing their chat messages, click on their name next to their message and click \"Block\". You can also use the chat command \"/block player_name\". You can find your block list in the Settings menu and unblock players from the list.</answer>\n\t\t\t<heading>Gameplay</heading>\n\t\t\t<question>Q: What is the action queue?</question>\n\t\t\t<answer>A: The action queue is a feature that allows you to set up a sequence of actions for your character to perform. To use it, click the \"Add Queue\" button instead of \"Start\". Queue slots can be unlocked or upgraded from the Cowbell Store.</answer>\n\t\t\t<question>Q: What are cowbells and how can I get more?</question>\n\t\t\t<answer>\n\t\t\tA: Cowbells are the premium currency of the game. They allow players to purchase convenience upgrades, cosmetics, community buffs that benefit the whole server, and name changes. There are three ways to get Cowbells:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Finish the tutorial: You will receive 80 cowbells as a reward.</li>\n\t\t\t\t\t<li>Rare drops: You have a chance to get cowbells from rare loot boxes found while skilling or battling enemies in combat.</li>\n\t\t\t\t\t<li>Purchase from Cowbell Store: You can purchase cowbells with real money from the Cowbell Store to help support the game.</li>\n\t\t\t\t\t<li>Buy from the marketplace: You can buy tradable \"Bag of 10 Cowbells\" with coins from other players in the Marketplace.</li>\n\t\t\t\t</ul>\n\t\t\t</answer>\n\t\t\t<question>Q: What are rare drops?</question>\n\t\t\t<answer>\n\t\t\t\tA: Rare drops are loot boxes that can be obtained while engaging in different activities in the game:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Gathering skills: You get meteorite caches which contain star fragments.</li>\n\t\t\t\t\t<li>Production skills, alchemy, and enhancing: You get artisan's crates which contain shards of protection and gems.</li>\n\t\t\t\t\t<li>Combat: You get treasure chests which contain gems.</li>\n\t\t\t\t</ul>\n\t\t\t\tAll boxes also contain coins and occasionally cowbells. You get larger boxes when doing higher level skills or from higher level enemies.\n\t\t\t</answer>\n\t\t\t<question>Q: What are gems used for?</question>\n\t\t\t<answer>A: Gems can be used to craft different jewelry that gives small bonuses. Additionally, you can crush gems into smaller pieces with the Crafting skill and use them to brew stronger versions of coffee and tea. Gems can be obtained from treasure chests in combat.</answer>\n\t\t\t<question>Q: Where do I get tea leaves?</question>\n\t\t\t<answer>A: You can get tea leaves from defeating enemies in combat. When viewing combat zones, you can hover over an enemy (long press on mobile) to see what items it drops. Tea leaves are an essential ingredient for brewing tea, which can buff non-combat skills.</answer>\n\t\t\t<question>Q: What are essences?</question>\n\t\t\t<answer>A: Essences are used to enhance special equipment with the Enhancing skill. Enemies from each combat zone drop a different type of essence.</answer>\n\t\t\t<br />",
                                "gathering": "Gathering",
                                "gatheringContent": "<heading>Milking</heading>\n\t\t\t<text>\n\t\t\t\tMilking magical cows yields different types of milk, which can be used in a various ways:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Cheesesmithing: Milk can be turned into cheese, which can then be used to craft melee equipment or skilling tools.</li>\n\t\t\t\t\t<li>Cooking: Milk is an essential ingredient for many recipes.</li>\n\t\t\t\t\t<li>Brewing: Milk is used in a small number of coffee and tea recipes.</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>You can help magical cows produce milk faster by equipping a brush.</text>\n\t\t\t<br />\n\t\t\t<heading>Foraging</heading>\n\t\t\t<text>Foraging allows you to gather different resources from various areas. You can forage for a specific item in an area or forage the entire area to get a bit of everything.</text>\n\t\t\t<text>\n\t\t\t\tForaged resources can be used in:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Cooking: Eggs, wheat, sugar, berries, and fruits are essential ingredients for many recipes.</li>\n\t\t\t\t\t<li>Brewing: Berries, fruits, and coffee beans are used to brew coffee and tea.</li>\n\t\t\t\t\t<li>Tailoring: Flax, bamboo branches, cocoons, and other materials can be processed into fabric to make magical clothing.</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>You can increase foraging speed by equipping shears.</text>\n\t\t\t<br />\n\t\t\t<heading>Woodcutting</heading>\n\t\t\t<text>You can chop logs from different kinds of trees.</text>\n\t\t\t<text>\n\t\t\t\tLogs can be used in:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Cheesesmithing: Logs are part of the recipe for making a number of melee weapons and skilling tools.</li>\n\t\t\t\t\t<li>Crafting: Logs can be processed into lumber to craft ranged and magic weapons.</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>You can increase woodcutting speed by equipping a hatchet.</text>\n\t\t\t<br />\n\t\t\t<heading>Level Bonus</heading>\n\t\t\t<text>You gain 1% efficiency bonus for each level you have above the action's level requirement.</text>\n\t\t\t<br />",
                                "production": "Production",
                                "productionContent": "<heading>Cheesesmithing</heading>\n\t\t\t<text>Cheesesmithing is the process of creating melee equipment and skilling tools.</text>\n\t\t\t<text>Milk is processed into different tiers of cheese. The cheese is then used (sometimes in combination with other resources) to craft equipment. Equipment can be upgraded into higher tiers as you level up.</text>\n\t\t\t<text>You can increase cheesesmithing speed by equipping a hammer.</text>\n\t\t\t<br />\n\t\t\t<heading>Crafting</heading>\n\t\t\t<text>Crafting produces a variety of items, including ranged and magic weapons, jewelry, and other special resources.</text>\n\t\t\t<text>Logs can be processed into different tiers of lumber, which is then used to craft ranged and magic weapons.</text>\n\t\t\t<text>Jewelry can be crafted using star fragments and gems, which are rare drops found while gathering or from combat.</text>\n\t\t\t<text>You can increase crafting speed by equipping a chisel.</text>\n\t\t\t<br />\n\t\t\t<heading>Tailoring</heading>\n\t\t\t<text>Tailoring produces ranged and magic clothing as well as pouches.</text>\n\t\t\t<text>Raw resources from foraging, such as flax, bamboo branches, and cocoons, can be processed into fabric. Hides from combat enemies can also be processed into leather.</text>\n\t\t\t<text>Fabric is primarily used to make magic clothing, such as robes and hats, while leather is used to make ranged clothing, such as leather armor and boots.</text>\n\t\t\t<text>In addition to clothing, you can craft pouches which increase your maximum HP and MP in combat. Pouches also provide additional consumable slots for both skilling and combat.</text>\n\t\t\t<text>You can increase sewing speed by equipping a needle.</text>\n\t\t\t<br />\n\t\t\t<heading>Cooking</heading>\n\t\t\t<text>Cooking produces food that can be used during combat.</text>\n\t\t\t<text>Donuts and cakes restore HP, while gummies and yogurt restore MP.</text>\n\t\t\t<text>You can increase cooking speed by equipping a spatula.</text>\n\t\t\t<br />\n\t\t\t<heading>Brewing</heading>\n\t\t\t<text>Brewing produces drinks that provide buffs with limited durations.</text>\n\t\t\t<text>Coffee can be consumed during combat to improve combat-related stats, while tea can be consumed to improve non-combat skills.</text>\n\t\t\t<text>You can increase brewing speed by equipping a pot.</text>\n\t\t\t<br />\n\t\t\t<heading>Level Bonus</heading>\n\t\t\t<text>You gain 1% efficiency bonus for each level you have above the action's level requirement.</text>\n\t\t\t<br />",
                                "alchemy": "Alchemy",
                                "alchemyContent": "<heading>Alchemy</heading>\n\t\t\t<text>Alchemy allows you to transform items into other items using the actions Coinify, Decompose, or Transmute. Each action has a different success rate, and the input item and coin cost will always be consumed regardless of success or failure.</text>\n\t\t\t<br />\n\t\t\t<heading>Coinify</heading>\n\t\t\t<text>Coinify lets you to convert items into coins. The amount of coins received is 5 times the item's sell price. The base success rate is 70%.</text>\n\t\t\t<br />\n\t\t\t<heading>Decompose</heading>\n\t\t\t<text>Decompose lets you to break down items. Equipment can be turned into their base components, and non-equipment items can be turned into skilling essences. Decomposing enhanced equipment yields bonus enhancing essences, with the quantity doubling for each enhancement level. The base success rate is 60%.</text>\n\t\t\t<br />\n\t\t\t<heading>Transmute</heading>\n\t\t\t<text>Transmute lets you to change items into other related items or rare uniques, such as the Philosopher's Stone. The base success rate varies depending on the item being transmuted.</text>\n\t\t\t<br />\n\t\t\t<heading>Success Rates</heading>\n\t\t\t<text>The base success rate depends on the alchemy action and the specific item being alchemized. If your Alchemy skill level is lower than the item's level, there will be a penalty to the success rate. The success rate can be increased by using catalysts and catalytic tea.</text>\n\t\t\t<br />\n\t\t\t<heading>Catalysts</heading>\n\t\t\t<text>Catalysts are special items that can be used to improve the success rates of Alchemy actions. One catalyst is consumed on success only. Regular catalysts can be crafted using skilling essences. Prime catalysts can be obtained by transmuting regular catalysts.</text>\n\t\t\t<br />\n\t\t\t<heading>Alchemy Efficiency</heading>\n\t\t\t<text>You gain 1% efficiency bonus for each level you have above the item's recommended level.</text>\n\t\t\t<br />\n\t\t\t<heading>Instructions</heading>\n\t\t\t<text>Here is a list of steps to follow when alchemizing items:</text>\n\t\t\t<ol>\n\t\t\t\t<li>Select the item that you want to alchemize.</li>\n\t\t\t\t<li>Select the alchemy action that you want to perform.</li>\n\t\t\t\t<li>Decide whether or not to use a catalyst. If you do, select the catalyst.</li>\n\t\t\t\t<li>Click the \"Start\" button and the alchemy process will begin.</li>\n\t\t\t</ol>\n\t\t\t<br />",
                                "enhancing": "Enhancing",
                                "enhancingContent": "<heading>Enhancing</heading>\n\t\t\t<text>Enhancing is the process of increasing the stats of any equipment, such as armor, weapons, tools, pouches, or jewelry. When you successfully enhance an equipment, its enhancement level increases by 1. However, if the enhancement process fails, the level is reset to 0.</text>\n\t\t\t<br />\n\t\t\t<heading>Success Rate</heading>\n\t\t\t<text>The success rate of enhancing depends on several factors, including your enhancing skill level, the tier of the equipment, and the equipment's current enhancement level. Generally, the higher the tier and enhancement level of the equipment, the lower the success rate will be. Equipping an enhancer can improve your success rate.</text>\n\t\t\t<br />\n\t\t\t<heading>Protection</heading>\n\t\t\t<text>The protection mechanic is a feature that allows players to use copies of the base equipment, mirrors of protection, or crafting components (for special equipment only) to add protection to each enhancing attempt. If the enhancement fails, the equipment's level is only decreased by 1, but 1 protection item is consumed. This can be a cost-effective way to reach high enhancement levels for endgame players.</text>\n\t\t\t<br />\n\t\t\t<heading>Enhancing Speed</heading>\n\t\t\t<text>You gain 1% action speed bonus for each level you have above the item's recommended level.</text>\n\t\t\t<br />\n\t\t\t<heading>Instructions</heading>\n\t\t\t<text>Here is a list of steps to follow when enhancing equipment:</text>\n\t\t\t<ol>\n\t\t\t\t<li>Select the piece of equipment that you want to enhance.</li>\n\t\t\t\t<li>Set the target enhancement level that you would like to stop at. Be realistic about what level you can reach with your current resources.</li>\n\t\t\t\t<li>Decide whether or not to use protection. If you do then select the protection item and a minimum enhancement level where protection will be used. Generally, protection is more cost-effective when the item is at higher enhancement levels.</li>\n\t\t\t\t<li>Click the \"Start\" button and you will continue enhancing until you reach the target level or run out of materials.</li>\n\t\t\t</ol>\n\t\t\t<br />\n\t\t\t<heading>Enhancement Bonus</heading>\n\t\t\t<text>The bonus stats on enhanced equipment are a percentage of the base stats. The total bonus at each enhancement level is as follows:\n\t\t\t<br />\n\t\t\t+1: 2.0%\n\t\t\t<br />\n\t\t\t+2: 4.2%\n\t\t\t<br />\n\t\t\t+3: 6.6%\n\t\t\t<br />\n\t\t\t+4: 9.2%\n\t\t\t<br />\n\t\t\t+5: 12.0%\n\t\t\t<br />\n\t\t\t+6: 15.0%\n\t\t\t<br />\n\t\t\t+7: 18.2%\n\t\t\t<br />\n\t\t\t+8: 21.6%\n\t\t\t<br />\n\t\t\t+9: 25.2%\n\t\t\t<br />\n\t\t\t+10: 29.0%\n\t\t\t<br />\n\t\t\t+11: 33.4%\n\t\t\t<br />\n\t\t\t+12: 38.4%\n\t\t\t<br />\n\t\t\t+13: 44.0%\n\t\t\t<br />\n\t\t\t+14: 50.2%\n\t\t\t<br />\n\t\t\t+15: 57.0%\n\t\t\t<br />\n\t\t\t+16: 64.4%\n\t\t\t<br />\n\t\t\t+17: 72.4%\n\t\t\t<br />\n\t\t\t+18: 81.0%\n\t\t\t<br />\n\t\t\t+19: 90.2%\n\t\t\t<br />\n\t\t\t+20: 100%\n\t\t\t</text>\n\t\t\t<text>As an exception, accessories, back slot, and trinket slot enhancements receives 5x the normal bonus. For instance, a +1 enhancement on accessories is a 10% bonus.</text>\n\t\t\t<br />\n\t\t\t<heading>Enhancement Base Success Rate</heading>\n\t\t\t<text>\n\t\t\t+1: 50%\n\t\t\t<br />\n\t\t\t+2: 45%\n\t\t\t<br />\n\t\t\t+3: 45%\n\t\t\t<br />\n\t\t\t+4: 40%\n\t\t\t<br />\n\t\t\t+5: 40%\n\t\t\t<br />\n\t\t\t+6: 40%\n\t\t\t<br />\n\t\t\t+7: 35%\n\t\t\t<br />\n\t\t\t+8: 35%\n\t\t\t<br />\n\t\t\t+9: 35%\n\t\t\t<br />\n\t\t\t+10: 35%\n\t\t\t<br />\n\t\t\t+11: 30%\n\t\t\t<br />\n\t\t\t+12: 30%\n\t\t\t<br />\n\t\t\t+13: 30%\n\t\t\t<br />\n\t\t\t+14: 30%\n\t\t\t<br />\n\t\t\t+15: 30%\n\t\t\t<br />\n\t\t\t+16: 30%\n\t\t\t<br />\n\t\t\t+17: 30%\n\t\t\t<br />\n\t\t\t+18: 30%\n\t\t\t<br />\n\t\t\t+19: 30%\n\t\t\t<br />\n\t\t\t+20: 30%\n\t\t\t</text>\n\t\t\t<br />",
                                "combat": "Combat",
                                "combatContent": "<heading>Combat</heading>\n\t\t\t<text>Fighting aliens can earn you coins, tea leaves, hides, essences, ability books, gems, and special items, as well as more common resources. There are enemies of varying difficulty located in different combat areas.<br /></text>\n\t\t\t<br />\n\t\t\t<heading>Equipment</heading>\n\t\t\t<text>Wearing equipment will boost your stats in combat. You can equip items directly from the inventory or by clicking equipment slots in the equipment tab next to the inventory.</text>\n\t\t\t<br />\n\t\t\t<heading>Consumables</heading>\n\t\t\t<text>Food can be consumed to recover your HP or MP. Drinks provide limited duration buffs. Upgrading your pouch allows you to carry more food and drinks into battle.</text>\n\t\t\t<br />\n\t\t\t<heading>Abilities</heading>\n\t\t\t<text>You can learn abilities and use them in combat at the cost of MP. To unlock new abilities, you must learn them from ability books. Abilities get stronger as you level them up. You gain 0.1 XP every time it's used in combat. You can also gain a large amount of XP by consuming duplicate ability books.</text>\n\t\t\t<text>When multiple abilities are available for use during combat, they will be prioritized in the same order you have set them.</text>\n\t\t\t<text>Your Intelligence level determines how many abilities you can bring with you.</text>\n\t\t\t<br />\n\t\t\t<heading>Combat Triggers</heading>\n\t\t\t<text>Both consumables and abilities have default settings for when they will be automatically used. The settings are referred to as combat triggers, and they can be modified by clicking the gear icon below before entering the battle.</text>\n\t\t\t<br />\n\t\t\t<heading>Defeat and Respawning</heading>\n\t\t\t<text>When defeated in combat, your character will have to wait through a respawn timer before fully recovering and resuming combat automatically.</text>\n\t\t\t<br />\n\t\t\t<heading>Group Combat</heading>\n\t\t\t<text>You can create or join a party to battle in zones with multiple monsters. When all party members have pressed \"Ready,\" the party will automatically travel to battle. Monsters will randomly attack any of the party members, and those with a higher threat stat will be targeted more frequently. Monster experience and drops will be divided with an equal chance among all players. Players more than 20% lower than the highest combat level player will receive less experience and drops.</text>\n\t\t\t<br />\n\t\t\t<heading>Dungeons</heading>\n\t\t\t<text>Dungeons consists of multiple waves of higher tier elite monsters and unique dungeon bosses. They can be accessed with dungeon keys, which can be crafted after finding key fragments from bosses in regular combat zones.</text>\n\t\t\t<text>Up to five players can be in a dungeon party. Each person must have a key, which will be consumed after beating the final boss for the dungeon reward chest. If you complete a dungeon with fewer players, you will have a chance of looting an additional chest at the cost of an extra key. If the dungeon is not completed, you will keep your dungeon key.</text>\n\t\t\t<text>Deaths in dungeons will not trigger a respawn timer. You can only be revived by a party member. If all party members are dead, the dungeon run is considered failed and you will restart at wave 1.</text>\n\t\t\t<br />\n\t\t\t<heading>Skills</heading>\n\t\t\t<text>You have 7 combat skills that can be leveled up:</text>\n\t\t\t<ul>\n\t\t\t<li>Stamina: Increases max HP by 10 per level.</li>\n\t\t\t<li>Intelligence: Increases max MP by 10 per level.</li>\n\t\t\t<li>Attack: Increases your accuracy, attack speed, and cast speed.</li>\n\t\t\t<li>Defense: Increases your evasion, armor, and elemental resistances.</li>\n\t\t\t<li>Melee: Increases your melee damage.</li>\n\t\t\t<li>Ranged: Increases your ranged damage.</li>\n\t\t\t<li>Magic: Increases your magic damage.</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>Status Effects</heading>\n\t\t\t<text>There are status effects that can temporarily prevent you from taking certain actions:</text>\n\t\t\t<ul>\n\t\t\t<li>Blind: Prevents using auto attacks.</li>\n\t\t\t<li>Silence: Prevents using abilities.</li>\n\t\t\t<li>Stun: Prevents using auto attacks, abilities, and consumables.</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>Stats</heading>\n\t\t\t<text>You also have secondary combat stats that are affected by your skill levels, equipment, and buffs:</text>\n\t\t\t<ul>\n\t\t\t<li>Combat style: Each attack has a specific style - stab, slash, smash, ranged, or magic.</li>\n\t\t\t<li>Damage Type: Each attack deals a specific type of damage - physical, water, nature, or fire.</li>\n\t\t\t<li>Attack Interval: How fast you can auto-attack.</li>\n\t\t\t<li>Ability Haste: Reduces ability cooldown.</li>\n\t\t\t<li>Accuracy: Increases your chance to successfully attack.</li>\n\t\t\t<li>Damage: The maximum damage if an attack is successful. Auto-attack damage is random between 1 and the maximum damage.</li>\n\t\t\t<li>Critical Hit: Critical hits always rolls maximum damage. Ranged style has passive critical chance.</li>\n\t\t\t<li>Amplify: Increases the damage you deal.</li>\n\t\t\t<li>Penetration: Ignores a percentage of enemy armor or resistance when attacking.</li>\n\t\t\t<li>Evasion: Increases your chance to dodge an attack.</li>\n\t\t\t<li>Armor: Mitigates a percentage of physical damage.</li>\n\t\t\t<li>Resistance: Mitigates a percentage of water, nature, or fire damage.</li>\n\t\t\t<li>Life Steal: Heals you based on the percentage of auto-attack damage you deal.</li>\n\t\t\t<li>Mana Leech: Leeches mana based on the percentage of auto-attack damage you deal.</li>\n\t\t\t<li>Thorn: When attacked, deals a percentage of your defensive damage back to the attacker. Damage is increased by 1% per armor or resistance (corresponding to the attack type).</li>\n\t\t\t<li>Retaliation: When attacked, reflects a percentage of (defensive damage + incoming damage) as a smash attack back to the attacker.</li>\n\t\t\t<li>Tenacity: Reduces chance of being blinded, silenced, or stunned.</li>\n\t\t\t<li>Threat: Increases chance of being targeted by monsters.</li>\n\t\t\t<li>HP/MP Regen: Recovers a percentage of your maximum HP/MP every 10 seconds.</li>\n\t\t\t<li>Food Haste: Reduces food cooldown.</li>\n\t\t\t<li>Drink Concentration: Increases drink effect. Reduces duration and cooldown.</li>\n\t\t\t<li>Combat Drop Rate: Increases the drop rate of regular items. This cannot go above 100%.</li>\n\t\t\t<li>Combat Drop Quantity: Increases quantity of regular item drops.</li>\n\t\t\t<li>Combat Rare Find: Increases rare item drop rate.</li>\n\t\t\t<li>Primary Training: 30% of combat experience is distributed to the primary training skill determined by your weapon.</li>\n\t\t\t<li>Focus Training: 70% of combat experience is distributed to the focus training skill determined by your charm.</li>\n\t\t\t<li>Combat Level: This is only for display and represents your overall combat effectiveness based on the combination of combat skill levels.</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>Formulas</heading>\n\t\t\t<text>For those who enjoy math, here are the formulas for the secondary stats:</text>\n\t\t\t<ul>\n\t\t\t<li>Max HP = 10 * (10 + Stamina)</li>\n\t\t\t<li>Max MP = 10 * (10 + Intelligence)</li>\n\t\t\t<li>Attack Interval = BaseInterval / (1 + (Attack / 2000)) / (1 + AttackSpeedBonus)</li>\n\t\t\t<li>Cast Time = BaseCastTime / (1 + (Attack / 2000) + CastSpeedBonus)</li>\n\t\t\t<li>Ability Cooldown = BaseCooldown * 100 / (100 + AbilityHaste)</li>\n\t\t\t<li>Accuracy = (10 + Attack) * (1 + Bonus%)</li>\n\t\t\t<li>Damage = (10 + [Melee|Ranged|Magic|Defense]) * (1 + Bonus%)</li>\n\t\t\t<li>Bulwark Smash Damage = SmashDamage + DefensiveDamage</li>\n\t\t\t<li>Thorn Damage = DefensiveDamage * (1 + [Armor|Resistance] / 100) * Thorn%</li>\n\t\t\t<li>Retaliation Damage = (DefensiveDamage + MIN(AttackerPremitigatedDamage, 5 * DefensiveDamage)) * Retaliation%</li>\n\t\t\t<li>Hit Chance = (MyAccuracy ^ 1.4) / (MyAccuracy ^ 1.4 + EnemyEvasion ^ 1.4)</li>\n\t\t\t<li>Ranged Bonus Critical Rate = 0.3 * Hit Chance</li>\n\t\t\t<li>Evasion = (10 + Defense) * (1 + Bonus%)</li>\n\t\t\t<li>Armor = 0.2 * Defense + Bonus</li>\n\t\t\t<li>Percent Physical Damage Taken = 100 / (100 + Armor)<br />If Armor is negative then it's = (100 - Armor) / 100</li>\n\t\t\t<li>Resistance = 0.2 * Defense + Bonus</li>\n\t\t\t<li>Percent Elemental Damage Taken = 100 / (100 + Resistance)<br />If Resistance is negative then it's = (100 - Resistance) / 100</li>\n\t\t\t<li>Blind/Silence/Stun Chance = Base Chance * 100 / (100 + Tenacity)</li>\n\t\t\t<li>Targeted By Monster Chance = MyThreat / (TeamTotalThreat)</li>\n\t\t\t<li>Combat Level = 0.1 * (Stamina + Intelligence + Attack + Defense + MAX(Melee, Ranged, Magic)) + 0.5 * MAX(Attack, Defense, Melee, Ranged, Magic)</li>\n\t\t\t</ul>\n\t\t\t<br />",
                                "tasks": "Tasks",
                                "tasksContent": "<heading>Tasks Feature</heading>\n\t\t\t<text>After completing the tutorial, you will unlock the tasks feature. The Task Board generates random short to medium-length tasks in different skills. By completing these tasks, you can obtain rewards for your participation.</text>\n\t\t\t<br />\n\t\t\t<heading>Task Board</heading>\n\t\t\t<text>\n\t\t\t<ul>\n\t\t\t\t<li>Frequency: Tasks are assigned periodically, starting at one every 8 hours. Upgrades can reduce the interval to as low as 4 hours.</li>\n\t\t\t\t<li>Variety: Tasks may involve gathering/production skills or defeating monsters. The generated tasks will slightly prioritize skills in which the player has a higher level.</li>\n\t\t\t\t<li>Rerolls: You can reroll tasks using coins or cowbells. The cost doubles (up to a limit) with each reroll.</li>\n\t\t\t\t<li>Capacity: Tasks do not expire, but there's a limit of 8 task slots. The capacity can be increased through upgrades in the cowbell store.</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>Rewards</heading>\n\t\t\t<text>\n\t\t\t<ul>\n\t\t\t\t<li>Completing tasks rewards you with Coins and Task Tokens. A Task Point is also granted for every Task Token rewarded from tasks.</li>\n\t\t\t\t<li>Accumulating 50 Task Points allows you to claim \"Purple's Gift,\" which can be opened to obtain Coins, Task Tokens, Task Crystals, and various lootboxes.</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>Task Shop</heading>\n\t\t\t<text>Task Tokens can be spent in the Task Shop for permanent upgrades or items, including:\n\t\t\t<ul>\n\t\t\t\t<li>Task Cooldown: Reduces the cooldown between tasks.</li>\n\t\t\t\t<li>Block Slots: Allows blocking specific skills from being assigned as tasks. Combat blocking has to be unlocked at an additional cost.</li>\n\t\t\t\t<li>Task Crystals: Used for crafting or upgrading task badge with the Crafting skill. Task badges provide multiplicative action speed or damage bonuses while undertaking tasks.</li>\n\t\t\t\t<li>Lootboxes: Large Meteorite Cache, Large Artisan's Crate, and Large Treasure Chest.</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />",
                                "guild": "Guild",
                                "guildContent": "<heading>Guild</heading>\n\t\t\t<text>Discover guilds by navigating to the \"Guild\" feature in the navigation menu. Guilds are formed by groups of players who enjoy playing together. While guilds currently serve as primarily social hubs, upcoming expansions may introduce more group-oriented activities.</text>\n\t\t\t<br />\n\t\t\t<heading>Creating a Guild</heading>\n\t\t\t<text>You can start your own guild by investing 5 million coins and choosing a unique guild name. As the guild's creator, you automatically assume the role of the leader, granting you the highest authority within the guild. Afterward, invite other players to join your guild.</text>\n\t\t\t<br />\n\t\t\t<heading>Joining a Guild</heading>\n\t\t\t<text>You can be invited to join existing guilds. To find a guild to join, you can use the Recruit chat channel, where guilds actively seek new members. You can view your invitations on the Guild page.</text>\n\t\t\t<br />\n\t\t\t<heading>Guild Features</heading>\n\t\t\t<text>Guilds come with several key features:\n\t\t\t<ul>\n\t\t\t\t<li>Guild Chat Channel: A private, self-moderated space for guild members to connect and converse.</li>\n\t\t\t\t<li>Guild Notice Board: A persistent message board editable by the leader or generals to keep everyone informed.</li>\n\t\t\t\t<li>Guild Levels: As members earn experience points (XP) in various skills, the guild accumulates XP at a 1:1000 ratio, contributing to the guild's level. Climb the leaderboard based on your guild's level and experience.</li>\n\t\t\t\t<li>Member Slots: Guilds begin with {{defaultGuildMemberCount}} member slots and gain 1 additional slot for every {{guildLevelsPerMaxMember}} guild levels.</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>Member Roles</heading>\n\t\t\t<text>Guilds have a structured hierarchy with different roles and permissions. Higher rank roles automatically possess the permission of any lower rank:\n\t\t\t<ul>\n\t\t\t\t<li>Leader\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>Can pass leadership to another member.</li>\n\t\t\t\t\t\t<li>Has the authority to disband the guild entirely when the guild is empty.</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>General\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>Emmeleeed to promote or demote any lower-ranking member.</li>\n\t\t\t\t\t\t<li>Can edit the guild notice board.</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>Officer\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>Can invite new members to join the guild.</li>\n\t\t\t\t\t\t<li>Can kick lower-ranking member out of the guild.</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>Member\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>Can view the guild overview.</li>\n\t\t\t\t\t\t<li>Can view and converse in the guild chat channel.</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>Invited\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>Has no access until they accept the guild invitation</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />",
                                "chatCommands": "Chat Commands",
                                "chatCommandsContent": "<heading>Chat Commands</heading>\n\t\t\t<text>\n\t\t\t\t<chatCommand>/w [name] [message]</chatCommand> - whisper another player<br />\n\t\t\t\t<chatCommand>/r</chatCommand> - reply to last whisper<br />\n\t\t\t\t<chatCommand>/profile [name]</chatCommand> - view player profile<br />\n\t\t\t\t<chatCommand>/friend [name]</chatCommand> - add friend<br />\n\t\t\t\t<chatCommand>/block [name]</chatCommand> - block player<br />\n\t\t\t</text>\n\t\t\t<br />",
                                "experienceTable": "Experience Table"
                            },
                            "gameRulesPanel": {
                                "gameRules": "Game Rules"
                            },
                            "gameRulesText": {
                                "content": "<div>\n\t\t\t\tThe rules for Milky Way Idle are designed to ensure an enjoyable and fair experience for all players.\n\t\t\t\tBreaking the rules would result in appropriate penalties dependent on the type and severity of the offense.\n\t\t\t\tPenalties include verbal warning, mute, item removal, trading ban, or account ban.<br /><br />\n\t\t\t</div>\n\t\t\t<olMain>\n\t\t\t\t<li><b>Account</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Single Account Only: </b>\n\t\t\t\t\t\t\tEach person can only play on 1 account. Guests are also considered accounts.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Account Sharing: </b>\n\t\t\t\t\t\t\tDo not share account with other players.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Inappropriate Name: </b>\n\t\t\t\t\t\t\tNames should not be offensive, sexual, impersonating others, or based on well-known real-world individuals. Inappropriate name may result in mutes and forced name change.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Age 13+ Only: </b>\n\t\t\t\t\t\t\tIn compliance with COPPA(Children's Online Privacy Protection Act), you must be at least age 13+ to register and play.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>Trading</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Real World Trading / Cross-Trading: </b>\n\t\t\t\t\t\t\tDo not trade items or services within Milky Way Idle for anything outside of the game.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Boosting: </b>\n\t\t\t\t\t\t\tDo not funnel wealth to other players. Players may receive up to 10M coins in total gifts from others. Wealth transfers over this limit, whether intentional or not, can be treated as boosting. Unintentional transfers (e.g. randomly finding an extremely underpriced item on market) can be removed. Intentional transfers will result in additional penalties based on severity.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Scamming: </b>\n\t\t\t\t\t\t\tDo not use deception or scamming to gain items from other players. Actions will be taken against scammers given sufficient evidence. However, items lost to scams will not be refunded.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Repay Loans Within 7 Days: </b>\n\t\t\t\t\t\t\tLoans are at your own risk. Loans not repaid within 7 days can be considered boosting/scamming.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>Chat</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Use Respectful Language: </b>\n\t\t\t\t\t\t\tThe #1 chat rule is to respect other players. Our goal is to create a friendly community space everyone can enjoy.\n\t\t\t\t\t\t\tPlease avoid intentionally antagonizing or harassing others.\n\t\t\t\t\t\t\tWhile the occasional use of profanity is not against the rule, please don't do so excessively, especially when directed at other players.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>English in General Chat: </b>\n\t\t\t\t\t\t\tPlease primarily use English in the General chat channel. Different languages are acceptable in other channels.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Discrimination: </b>\n\t\t\t\t\t\t\tDo not use slurs, slangs, or any offensive phrases that target any person or group of people.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Illegal or Sexual Topics: </b>\n\t\t\t\t\t\t\tDo not link or discuss illegal activities or sexual topics.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Avoid Divisive Topics or Drama: </b>\n\t\t\t\t\t\t\tAvoid divisive topics that often lead to drama or conversations inappropriate for public chat.\n\t\t\t\t\t\t\tThis includes, but is not limited to, politics, religion, international conflicts, gender discussions, sexuality,\n\t\t\t\t\t\t\tmute/ban complaints, and other topics that frequently become disruptive.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Spamming: </b>\n\t\t\t\t\t\t\tDo not spam the chat with large number of unnecessary messages, overuse CAPSLOCK, or beg others for free items.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Do Not Encourage Others to Break Rules: </b>\n\t\t\t\t\t\t\tDo not mislead or instigate other players into breaking game rules.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Do Not Disclose Personal Information: </b>\n\t\t\t\t\t\t\tDo not disclose identifying personal information about yourself, including, but not limited to, your full name, address, phone number, and email address.\n\t\t\t\t\t\t\tFurthermore, do not disclose ANY personal information about other players that they have not made public themselves, such as their name, age, or location.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>All Advertisements Must be in Appropriate Channels: </b>\n\t\t\t\t\t\t\tAll buying, selling, or service requests should be in trade chat. Guild/Party recruitment or seeking to join guild/party requests should be in recruit channel.\n\t\t\t\t\t\t\tPrice checks are allowed in most channels. No referral links.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Listen to <modIcon />Moderators: </b>\n\t\t\t\t\t\t\tModerators have the discretion to moderate chat as they see fit in order to maintain a positive environment.\n\t\t\t\t\t\t\tPlease cooperate with their requests. If anyone has disagreements or complaints regarding a moderator, please submit a ticket on Discord or email [email protected].\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>Bots, Scripts, and Extensions</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Botting: </b>\n\t\t\t\t\t\t\tDo not use any automation that plays the game for you.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Scripts and Extensions: </b>\n\t\t\t\t\t\t\tAny scripts or extensions must not take any actions for the player (send any requests to server).\n\t\t\t\t\t\t\tYou are allowed to use them purely for information display purposes or UI improvements. (ex: Display combat summary, track drops, move buttons to different location)\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>Bugs and Exploits</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Bug Abusing: </b>\n\t\t\t\t\t\t\tDo not abuse game bugs or exploits to your advantage. Please report them on Discord.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t</olMain>\n\t\t\t<br />"
                            },
                            "gameModeNames": {
                                "standard": "Standard",
                                "ironcow": "Ironcow",
                                "legacy_ironcow": "Legacy Ironcow"
                            },
                            "gameModeDescriptions": {
                                "standard": "The Standard game mode is recommended for most players. There are no feature restrictions.",
                                "ironcow": "The Ironcow game mode is for players who enjoys being self-sufficient. You cannot use the marketplace to trade with other players (Exception: buying Cowbells is allowed).",
                                "legacy_ironcow": ""
                            },
                            "skillNames": {
                                "/skills/total_level": "Total Level",
                                "/skills/milking": "Milking",
                                "/skills/foraging": "Foraging",
                                "/skills/woodcutting": "Woodcutting",
                                "/skills/cheesesmithing": "Cheesesmithing",
                                "/skills/crafting": "Crafting",
                                "/skills/tailoring": "Tailoring",
                                "/skills/cooking": "Cooking",
                                "/skills/brewing": "Brewing",
                                "/skills/alchemy": "Alchemy",
                                "/skills/enhancing": "Enhancing",
                                "/skills/stamina": "Stamina",
                                "/skills/intelligence": "Intelligence",
                                "/skills/attack": "Attack",
                                "/skills/defense": "Defense",
                                "/skills/melee": "Melee",
                                "/skills/ranged": "Ranged",
                                "/skills/magic": "Magic"
                            },
                            "abilityNames": {
                                "/abilities/poke": "Poke",
                                "/abilities/impale": "Impale",
                                "/abilities/puncture": "Puncture",
                                "/abilities/penetrating_strike": "Penetrating Strike",
                                "/abilities/scratch": "Scratch",
                                "/abilities/cleave": "Cleave",
                                "/abilities/maim": "Maim",
                                "/abilities/crippling_slash": "Crippling Slash",
                                "/abilities/smack": "Smack",
                                "/abilities/sweep": "Sweep",
                                "/abilities/stunning_blow": "Stunning Blow",
                                "/abilities/fracturing_impact": "Fracturing Impact",
                                "/abilities/shield_bash": "Shield Bash",
                                "/abilities/quick_shot": "Quick Shot",
                                "/abilities/aqua_arrow": "Aqua Arrow",
                                "/abilities/flame_arrow": "Flame Arrow",
                                "/abilities/rain_of_arrows": "Rain Of Arrows",
                                "/abilities/silencing_shot": "Silencing Shot",
                                "/abilities/steady_shot": "Steady Shot",
                                "/abilities/pestilent_shot": "Pestilent Shot",
                                "/abilities/penetrating_shot": "Penetrating Shot",
                                "/abilities/water_strike": "Water Strike",
                                "/abilities/ice_spear": "Ice Spear",
                                "/abilities/frost_surge": "Frost Surge",
                                "/abilities/mana_spring": "Mana Spring",
                                "/abilities/entangle": "Entangle",
                                "/abilities/toxic_pollen": "Toxic Pollen",
                                "/abilities/natures_veil": "Nature's Veil",
                                "/abilities/life_drain": "Life Drain",
                                "/abilities/fireball": "Fireball",
                                "/abilities/flame_blast": "Flame Blast",
                                "/abilities/firestorm": "Firestorm",
                                "/abilities/smoke_burst": "Smoke Burst",
                                "/abilities/minor_heal": "Minor Heal",
                                "/abilities/heal": "Heal",
                                "/abilities/quick_aid": "Quick Aid",
                                "/abilities/rejuvenate": "Rejuvenate",
                                "/abilities/taunt": "Taunt",
                                "/abilities/provoke": "Provoke",
                                "/abilities/toughness": "Toughness",
                                "/abilities/elusiveness": "Elusiveness",
                                "/abilities/precision": "Precision",
                                "/abilities/berserk": "Berserk",
                                "/abilities/frenzy": "Frenzy",
                                "/abilities/elemental_affinity": "Elemental Affinity",
                                "/abilities/spike_shell": "Spike Shell",
                                "/abilities/retribution": "Retribution",
                                "/abilities/vampirism": "Vampirism",
                                "/abilities/revive": "Revive",
                                "/abilities/insanity": "Insanity",
                                "/abilities/invincible": "Invincible",
                                "/abilities/speed_aura": "Speed Aura",
                                "/abilities/guardian_aura": "Guardian Aura",
                                "/abilities/fierce_aura": "Fierce Aura",
                                "/abilities/critical_aura": "Critical Aura",
                                "/abilities/mystic_aura": "Mystic Aura",
                                "/abilities/promote": "Promote"
                            },
                            "abilityDescriptions": {
                                "/abilities/poke": "Pokes the targeted enemy",
                                "/abilities/impale": "Impales the targeted enemy",
                                "/abilities/puncture": "Punctures the targeted enemy's armor, dealing damage and temporarily reducing its armor",
                                "/abilities/penetrating_strike": "Strikes the targeted enemy. On each successful hit, will pierce and hit the next enemy.",
                                "/abilities/scratch": "Scratches the targeted enemy",
                                "/abilities/cleave": "Cleaves all enemies",
                                "/abilities/maim": "Maims the targeted enemy and causes bleeding",
                                "/abilities/crippling_slash": "Slashes all enemies and reduce their damage",
                                "/abilities/smack": "Smacks the targeted enemy",
                                "/abilities/sweep": "Performs a sweeping attack on all enemies",
                                "/abilities/stunning_blow": "Smashes the targeted enemy and has a chance to stun",
                                "/abilities/fracturing_impact": "Attacks all enemies, dealing damage and increases their damage taken",
                                "/abilities/shield_bash": "Bashes the targeted enemy with a shield, dealing extra damage based on attacker's armor",
                                "/abilities/quick_shot": "Takes a quick shot at the targeted enemy",
                                "/abilities/aqua_arrow": "Shoots an arrow made of water at the targeted enemy",
                                "/abilities/flame_arrow": "Shoots a flaming arrow at the targeted enemy",
                                "/abilities/rain_of_arrows": "Shoots a rain of arrows on all enemies",
                                "/abilities/silencing_shot": "Takes a shot at the targeted enemy, temporarily silencing them",
                                "/abilities/steady_shot": "Takes a shot at the targeted enemy with greatly enhanced accuracy",
                                "/abilities/pestilent_shot": "Shoots the targeted enemy, dealing damage and decreasing armor and resistances",
                                "/abilities/penetrating_shot": "Shoots the targeted enemy. On each successful hit, will pierce and hit the next enemy",
                                "/abilities/water_strike": "Casts a water strike at the targeted enemy",
                                "/abilities/ice_spear": "Casts an ice spear at the targeted enemy, dealing damage and reducing attack speed",
                                "/abilities/frost_surge": "Casts frost surge at all enemies, dealing damage and reducing evasion",
                                "/abilities/mana_spring": "Casts mana spring at all enemies, dealing damage and increasing ally MP regeneration",
                                "/abilities/entangle": "Entangles the targeted enemy, dealing damage with chance to stun",
                                "/abilities/toxic_pollen": "Casts toxic pollen at all enemies, dealing damage and decreasing armor and resistances",
                                "/abilities/natures_veil": "Cast's a veil over all enemies, dealing damage with a chance to blind",
                                "/abilities/life_drain": "Drains the life force of the targeted enemy, dealing damage and healing the caster",
                                "/abilities/fireball": "Casts a fireball at the targeted enemy",
                                "/abilities/flame_blast": "Casts a flame blast at all enemies",
                                "/abilities/firestorm": "Casts a firestorm at all enemies",
                                "/abilities/smoke_burst": "Casts a smoke burst at the targeted enemy, dealing damage and decreasing their accuracy",
                                "/abilities/minor_heal": "Casts minor heal on yourself",
                                "/abilities/heal": "Casts heal on yourself",
                                "/abilities/quick_aid": "Casts heal on the ally with the lowest HP percentage",
                                "/abilities/rejuvenate": "Heals all allies",
                                "/abilities/taunt": "Greatly increases threat rating",
                                "/abilities/provoke": "Tremendously increases threat rating",
                                "/abilities/toughness": "Greatly increases armor and resistances temporarily",
                                "/abilities/elusiveness": "Greatly increases evasion temporarily",
                                "/abilities/precision": "Greatly increases accuracy temporarily",
                                "/abilities/berserk": "Greatly increases physical damage temporarily",
                                "/abilities/frenzy": "Greatly increases attack speed temporarily",
                                "/abilities/elemental_affinity": "Greatly increases elemental damage temporarily",
                                "/abilities/spike_shell": "Gains physical and elemental thorns temporarily",
                                "/abilities/retribution": "Gains retaliation temporarily",
                                "/abilities/vampirism": "Gains lifesteal temporarily",
                                "/abilities/revive": "Revives a dead ally",
                                "/abilities/insanity": "Increases damage, attack speed, and cast speed temporarily at the cost of HP",
                                "/abilities/invincible": "Tremendously increases armor, resistances, and tenacity temporarily",
                                "/abilities/speed_aura": "Increases attack speed and cast speed for all allies. Effect increases by (0.005x) per caster's Attack level",
                                "/abilities/guardian_aura": "Increases healing amplify, evasion, armor, and resistances for all allies. Effect increases by (0.005x) per caster's Defense level",
                                "/abilities/fierce_aura": "Increases physical amplify for all allies. Effect increases by (0.005x) per caster's Melee level",
                                "/abilities/critical_aura": "Increases critical rate and critical damage for all allies. Effect increases by (0.005x) per caster's Ranged level",
                                "/abilities/mystic_aura": "Increases elemental amplify for all allies. Effect increases by (0.005x) per caster's Magic level",
                                "/abilities/promote": "Promotes a pawn"
                            },
                            "itemNames": {
                                "/items/coin": "Coin",
                                "/items/task_token": "Task Token",
                                "/items/chimerical_token": "Chimerical Token",
                                "/items/sinister_token": "Sinister Token",
                                "/items/enchanted_token": "Enchanted Token",
                                "/items/pirate_token": "Pirate Token",
                                "/items/cowbell": "Cowbell",
                                "/items/bag_of_10_cowbells": "Bag Of 10 Cowbells",
                                "/items/purples_gift": "Purple's Gift",
                                "/items/small_meteorite_cache": "Small Meteorite Cache",
                                "/items/medium_meteorite_cache": "Medium Meteorite Cache",
                                "/items/large_meteorite_cache": "Large Meteorite Cache",
                                "/items/small_artisans_crate": "Small Artisan's Crate",
                                "/items/medium_artisans_crate": "Medium Artisan's Crate",
                                "/items/large_artisans_crate": "Large Artisan's Crate",
                                "/items/small_treasure_chest": "Small Treasure Chest",
                                "/items/medium_treasure_chest": "Medium Treasure Chest",
                                "/items/large_treasure_chest": "Large Treasure Chest",
                                "/items/chimerical_chest": "Chimerical Chest",
                                "/items/chimerical_refinement_chest": "Chimerical Refinement Chest",
                                "/items/sinister_chest": "Sinister Chest",
                                "/items/sinister_refinement_chest": "Sinister Refinement Chest",
                                "/items/enchanted_chest": "Enchanted Chest",
                                "/items/enchanted_refinement_chest": "Enchanted Refinement Chest",
                                "/items/pirate_chest": "Pirate Chest",
                                "/items/pirate_refinement_chest": "Pirate Refinement Chest",
                                "/items/blue_key_fragment": "Blue Key Fragment",
                                "/items/green_key_fragment": "Green Key Fragment",
                                "/items/purple_key_fragment": "Purple Key Fragment",
                                "/items/white_key_fragment": "White Key Fragment",
                                "/items/orange_key_fragment": "Orange Key Fragment",
                                "/items/brown_key_fragment": "Brown Key Fragment",
                                "/items/stone_key_fragment": "Stone Key Fragment",
                                "/items/dark_key_fragment": "Dark Key Fragment",
                                "/items/burning_key_fragment": "Burning Key Fragment",
                                "/items/chimerical_entry_key": "Chimerical Entry Key",
                                "/items/chimerical_chest_key": "Chimerical Chest Key",
                                "/items/sinister_entry_key": "Sinister Entry Key",
                                "/items/sinister_chest_key": "Sinister Chest Key",
                                "/items/enchanted_entry_key": "Enchanted Entry Key",
                                "/items/enchanted_chest_key": "Enchanted Chest Key",
                                "/items/pirate_entry_key": "Pirate Entry Key",
                                "/items/pirate_chest_key": "Pirate Chest Key",
                                "/items/donut": "Donut",
                                "/items/blueberry_donut": "Blueberry Donut",
                                "/items/blackberry_donut": "Blackberry Donut",
                                "/items/strawberry_donut": "Strawberry Donut",
                                "/items/mooberry_donut": "Mooberry Donut",
                                "/items/marsberry_donut": "Marsberry Donut",
                                "/items/spaceberry_donut": "Spaceberry Donut",
                                "/items/cupcake": "Cupcake",
                                "/items/blueberry_cake": "Blueberry Cake",
                                "/items/blackberry_cake": "Blackberry Cake",
                                "/items/strawberry_cake": "Strawberry Cake",
                                "/items/mooberry_cake": "Mooberry Cake",
                                "/items/marsberry_cake": "Marsberry Cake",
                                "/items/spaceberry_cake": "Spaceberry Cake",
                                "/items/gummy": "Gummy",
                                "/items/apple_gummy": "Apple Gummy",
                                "/items/orange_gummy": "Orange Gummy",
                                "/items/plum_gummy": "Plum Gummy",
                                "/items/peach_gummy": "Peach Gummy",
                                "/items/dragon_fruit_gummy": "Dragon Fruit Gummy",
                                "/items/star_fruit_gummy": "Star Fruit Gummy",
                                "/items/yogurt": "Yogurt",
                                "/items/apple_yogurt": "Apple Yogurt",
                                "/items/orange_yogurt": "Orange Yogurt",
                                "/items/plum_yogurt": "Plum Yogurt",
                                "/items/peach_yogurt": "Peach Yogurt",
                                "/items/dragon_fruit_yogurt": "Dragon Fruit Yogurt",
                                "/items/star_fruit_yogurt": "Star Fruit Yogurt",
                                "/items/milking_tea": "Milking Tea",
                                "/items/foraging_tea": "Foraging Tea",
                                "/items/woodcutting_tea": "Woodcutting Tea",
                                "/items/cooking_tea": "Cooking Tea",
                                "/items/brewing_tea": "Brewing Tea",
                                "/items/alchemy_tea": "Alchemy Tea",
                                "/items/enhancing_tea": "Enhancing Tea",
                                "/items/cheesesmithing_tea": "Cheesesmithing Tea",
                                "/items/crafting_tea": "Crafting Tea",
                                "/items/tailoring_tea": "Tailoring Tea",
                                "/items/super_milking_tea": "Super Milking Tea",
                                "/items/super_foraging_tea": "Super Foraging Tea",
                                "/items/super_woodcutting_tea": "Super Woodcutting Tea",
                                "/items/super_cooking_tea": "Super Cooking Tea",
                                "/items/super_brewing_tea": "Super Brewing Tea",
                                "/items/super_alchemy_tea": "Super Alchemy Tea",
                                "/items/super_enhancing_tea": "Super Enhancing Tea",
                                "/items/super_cheesesmithing_tea": "Super Cheesesmithing Tea",
                                "/items/super_crafting_tea": "Super Crafting Tea",
                                "/items/super_tailoring_tea": "Super Tailoring Tea",
                                "/items/ultra_milking_tea": "Ultra Milking Tea",
                                "/items/ultra_foraging_tea": "Ultra Foraging Tea",
                                "/items/ultra_woodcutting_tea": "Ultra Woodcutting Tea",
                                "/items/ultra_cooking_tea": "Ultra Cooking Tea",
                                "/items/ultra_brewing_tea": "Ultra Brewing Tea",
                                "/items/ultra_alchemy_tea": "Ultra Alchemy Tea",
                                "/items/ultra_enhancing_tea": "Ultra Enhancing Tea",
                                "/items/ultra_cheesesmithing_tea": "Ultra Cheesesmithing Tea",
                                "/items/ultra_crafting_tea": "Ultra Crafting Tea",
                                "/items/ultra_tailoring_tea": "Ultra Tailoring Tea",
                                "/items/gathering_tea": "Gathering Tea",
                                "/items/gourmet_tea": "Gourmet Tea",
                                "/items/wisdom_tea": "Wisdom Tea",
                                "/items/processing_tea": "Processing Tea",
                                "/items/efficiency_tea": "Efficiency Tea",
                                "/items/artisan_tea": "Artisan Tea",
                                "/items/catalytic_tea": "Catalytic Tea",
                                "/items/blessed_tea": "Blessed Tea",
                                "/items/stamina_coffee": "Stamina Coffee",
                                "/items/intelligence_coffee": "Intelligence Coffee",
                                "/items/defense_coffee": "Defense Coffee",
                                "/items/attack_coffee": "Attack Coffee",
                                "/items/melee_coffee": "Melee Coffee",
                                "/items/ranged_coffee": "Ranged Coffee",
                                "/items/magic_coffee": "Magic Coffee",
                                "/items/super_stamina_coffee": "Super Stamina Coffee",
                                "/items/super_intelligence_coffee": "Super Intelligence Coffee",
                                "/items/super_defense_coffee": "Super Defense Coffee",
                                "/items/super_attack_coffee": "Super Attack Coffee",
                                "/items/super_melee_coffee": "Super Melee Coffee",
                                "/items/super_ranged_coffee": "Super Ranged Coffee",
                                "/items/super_magic_coffee": "Super Magic Coffee",
                                "/items/ultra_stamina_coffee": "Ultra Stamina Coffee",
                                "/items/ultra_intelligence_coffee": "Ultra Intelligence Coffee",
                                "/items/ultra_defense_coffee": "Ultra Defense Coffee",
                                "/items/ultra_attack_coffee": "Ultra Attack Coffee",
                                "/items/ultra_melee_coffee": "Ultra Melee Coffee",
                                "/items/ultra_ranged_coffee": "Ultra Ranged Coffee",
                                "/items/ultra_magic_coffee": "Ultra Magic Coffee",
                                "/items/wisdom_coffee": "Wisdom Coffee",
                                "/items/lucky_coffee": "Lucky Coffee",
                                "/items/swiftness_coffee": "Swiftness Coffee",
                                "/items/channeling_coffee": "Channeling Coffee",
                                "/items/critical_coffee": "Critical Coffee",
                                "/items/poke": "Poke",
                                "/items/impale": "Impale",
                                "/items/puncture": "Puncture",
                                "/items/penetrating_strike": "Penetrating Strike",
                                "/items/scratch": "Scratch",
                                "/items/cleave": "Cleave",
                                "/items/maim": "Maim",
                                "/items/crippling_slash": "Crippling Slash",
                                "/items/smack": "Smack",
                                "/items/sweep": "Sweep",
                                "/items/stunning_blow": "Stunning Blow",
                                "/items/fracturing_impact": "Fracturing Impact",
                                "/items/shield_bash": "Shield Bash",
                                "/items/quick_shot": "Quick Shot",
                                "/items/aqua_arrow": "Aqua Arrow",
                                "/items/flame_arrow": "Flame Arrow",
                                "/items/rain_of_arrows": "Rain Of Arrows",
                                "/items/silencing_shot": "Silencing Shot",
                                "/items/steady_shot": "Steady Shot",
                                "/items/pestilent_shot": "Pestilent Shot",
                                "/items/penetrating_shot": "Penetrating Shot",
                                "/items/water_strike": "Water Strike",
                                "/items/ice_spear": "Ice Spear",
                                "/items/frost_surge": "Frost Surge",
                                "/items/mana_spring": "Mana Spring",
                                "/items/entangle": "Entangle",
                                "/items/toxic_pollen": "Toxic Pollen",
                                "/items/natures_veil": "Nature's Veil",
                                "/items/life_drain": "Life Drain",
                                "/items/fireball": "Fireball",
                                "/items/flame_blast": "Flame Blast",
                                "/items/firestorm": "Firestorm",
                                "/items/smoke_burst": "Smoke Burst",
                                "/items/minor_heal": "Minor Heal",
                                "/items/heal": "Heal",
                                "/items/quick_aid": "Quick Aid",
                                "/items/rejuvenate": "Rejuvenate",
                                "/items/taunt": "Taunt",
                                "/items/provoke": "Provoke",
                                "/items/toughness": "Toughness",
                                "/items/elusiveness": "Elusiveness",
                                "/items/precision": "Precision",
                                "/items/berserk": "Berserk",
                                "/items/elemental_affinity": "Elemental Affinity",
                                "/items/frenzy": "Frenzy",
                                "/items/spike_shell": "Spike Shell",
                                "/items/retribution": "Retribution",
                                "/items/vampirism": "Vampirism",
                                "/items/revive": "Revive",
                                "/items/insanity": "Insanity",
                                "/items/invincible": "Invincible",
                                "/items/speed_aura": "Speed Aura",
                                "/items/guardian_aura": "Guardian Aura",
                                "/items/fierce_aura": "Fierce Aura",
                                "/items/critical_aura": "Critical Aura",
                                "/items/mystic_aura": "Mystic Aura",
                                "/items/gobo_stabber": "Gobo Stabber",
                                "/items/gobo_slasher": "Gobo Slasher",
                                "/items/gobo_smasher": "Gobo Smasher",
                                "/items/spiked_bulwark": "Spiked Bulwark",
                                "/items/werewolf_slasher": "Werewolf Slasher",
                                "/items/griffin_bulwark": "Griffin Bulwark",
                                "/items/griffin_bulwark_refined": "Griffin Bulwark (R)",
                                "/items/gobo_shooter": "Gobo Shooter",
                                "/items/vampiric_bow": "Vampiric Bow",
                                "/items/cursed_bow": "Cursed Bow",
                                "/items/cursed_bow_refined": "Cursed Bow (R)",
                                "/items/gobo_boomstick": "Gobo Boomstick",
                                "/items/cheese_bulwark": "Cheese Bulwark",
                                "/items/verdant_bulwark": "Verdant Bulwark",
                                "/items/azure_bulwark": "Azure Bulwark",
                                "/items/burble_bulwark": "Burble Bulwark",
                                "/items/crimson_bulwark": "Crimson Bulwark",
                                "/items/rainbow_bulwark": "Rainbow Bulwark",
                                "/items/holy_bulwark": "Holy Bulwark",
                                "/items/wooden_bow": "Wooden Bow",
                                "/items/birch_bow": "Birch Bow",
                                "/items/cedar_bow": "Cedar Bow",
                                "/items/purpleheart_bow": "Purpleheart Bow",
                                "/items/ginkgo_bow": "Ginkgo Bow",
                                "/items/redwood_bow": "Redwood Bow",
                                "/items/arcane_bow": "Arcane Bow",
                                "/items/stalactite_spear": "Stalactite Spear",
                                "/items/granite_bludgeon": "Granite Bludgeon",
                                "/items/furious_spear": "Furious Spear",
                                "/items/furious_spear_refined": "Furious Spear (R)",
                                "/items/regal_sword": "Regal Sword",
                                "/items/regal_sword_refined": "Regal Sword (R)",
                                "/items/chaotic_flail": "Chaotic Flail",
                                "/items/chaotic_flail_refined": "Chaotic Flail (R)",
                                "/items/soul_hunter_crossbow": "Soul Hunter Crossbow",
                                "/items/sundering_crossbow": "Sundering Crossbow",
                                "/items/sundering_crossbow_refined": "Sundering Crossbow (R)",
                                "/items/frost_staff": "Frost Staff",
                                "/items/infernal_battlestaff": "Infernal Battlestaff",
                                "/items/jackalope_staff": "Jackalope Staff",
                                "/items/rippling_trident": "Rippling Trident",
                                "/items/rippling_trident_refined": "Rippling Trident (R)",
                                "/items/blooming_trident": "Blooming Trident",
                                "/items/blooming_trident_refined": "Blooming Trident (R)",
                                "/items/blazing_trident": "Blazing Trident",
                                "/items/blazing_trident_refined": "Blazing Trident (R)",
                                "/items/cheese_sword": "Cheese Sword",
                                "/items/verdant_sword": "Verdant Sword",
                                "/items/azure_sword": "Azure Sword",
                                "/items/burble_sword": "Burble Sword",
                                "/items/crimson_sword": "Crimson Sword",
                                "/items/rainbow_sword": "Rainbow Sword",
                                "/items/holy_sword": "Holy Sword",
                                "/items/cheese_spear": "Cheese Spear",
                                "/items/verdant_spear": "Verdant Spear",
                                "/items/azure_spear": "Azure Spear",
                                "/items/burble_spear": "Burble Spear",
                                "/items/crimson_spear": "Crimson Spear",
                                "/items/rainbow_spear": "Rainbow Spear",
                                "/items/holy_spear": "Holy Spear",
                                "/items/cheese_mace": "Cheese Mace",
                                "/items/verdant_mace": "Verdant Mace",
                                "/items/azure_mace": "Azure Mace",
                                "/items/burble_mace": "Burble Mace",
                                "/items/crimson_mace": "Crimson Mace",
                                "/items/rainbow_mace": "Rainbow Mace",
                                "/items/holy_mace": "Holy Mace",
                                "/items/wooden_crossbow": "Wooden Crossbow",
                                "/items/birch_crossbow": "Birch Crossbow",
                                "/items/cedar_crossbow": "Cedar Crossbow",
                                "/items/purpleheart_crossbow": "Purpleheart Crossbow",
                                "/items/ginkgo_crossbow": "Ginkgo Crossbow",
                                "/items/redwood_crossbow": "Redwood Crossbow",
                                "/items/arcane_crossbow": "Arcane Crossbow",
                                "/items/wooden_water_staff": "Wooden Water Staff",
                                "/items/birch_water_staff": "Birch Water Staff",
                                "/items/cedar_water_staff": "Cedar Water Staff",
                                "/items/purpleheart_water_staff": "Purpleheart Water Staff",
                                "/items/ginkgo_water_staff": "Ginkgo Water Staff",
                                "/items/redwood_water_staff": "Redwood Water Staff",
                                "/items/arcane_water_staff": "Arcane Water Staff",
                                "/items/wooden_nature_staff": "Wooden Nature Staff",
                                "/items/birch_nature_staff": "Birch Nature Staff",
                                "/items/cedar_nature_staff": "Cedar Nature Staff",
                                "/items/purpleheart_nature_staff": "Purpleheart Nature Staff",
                                "/items/ginkgo_nature_staff": "Ginkgo Nature Staff",
                                "/items/redwood_nature_staff": "Redwood Nature Staff",
                                "/items/arcane_nature_staff": "Arcane Nature Staff",
                                "/items/wooden_fire_staff": "Wooden Fire Staff",
                                "/items/birch_fire_staff": "Birch Fire Staff",
                                "/items/cedar_fire_staff": "Cedar Fire Staff",
                                "/items/purpleheart_fire_staff": "Purpleheart Fire Staff",
                                "/items/ginkgo_fire_staff": "Ginkgo Fire Staff",
                                "/items/redwood_fire_staff": "Redwood Fire Staff",
                                "/items/arcane_fire_staff": "Arcane Fire Staff",
                                "/items/eye_watch": "Eye Watch",
                                "/items/snake_fang_dirk": "Snake Fang Dirk",
                                "/items/vision_shield": "Vision Shield",
                                "/items/gobo_defender": "Gobo Defender",
                                "/items/vampire_fang_dirk": "Vampire Fang Dirk",
                                "/items/knights_aegis": "Knight's Aegis",
                                "/items/knights_aegis_refined": "Knight's Aegis (R)",
                                "/items/treant_shield": "Treant Shield",
                                "/items/manticore_shield": "Manticore Shield",
                                "/items/tome_of_healing": "Tome Of Healing",
                                "/items/tome_of_the_elements": "Tome Of The Elements",
                                "/items/watchful_relic": "Watchful Relic",
                                "/items/bishops_codex": "Bishop's Codex",
                                "/items/bishops_codex_refined": "Bishop's Codex (R)",
                                "/items/cheese_buckler": "Cheese Buckler",
                                "/items/verdant_buckler": "Verdant Buckler",
                                "/items/azure_buckler": "Azure Buckler",
                                "/items/burble_buckler": "Burble Buckler",
                                "/items/crimson_buckler": "Crimson Buckler",
                                "/items/rainbow_buckler": "Rainbow Buckler",
                                "/items/holy_buckler": "Holy Buckler",
                                "/items/wooden_shield": "Wooden Shield",
                                "/items/birch_shield": "Birch Shield",
                                "/items/cedar_shield": "Cedar Shield",
                                "/items/purpleheart_shield": "Purpleheart Shield",
                                "/items/ginkgo_shield": "Ginkgo Shield",
                                "/items/redwood_shield": "Redwood Shield",
                                "/items/arcane_shield": "Arcane Shield",
                                "/items/sinister_cape": "Sinister Cape",
                                "/items/sinister_cape_refined": "Sinister Cape (R)",
                                "/items/chimerical_quiver": "Chimerical Quiver",
                                "/items/chimerical_quiver_refined": "Chimerical Quiver (R)",
                                "/items/enchanted_cloak": "Enchanted Cloak",
                                "/items/enchanted_cloak_refined": "Enchanted Cloak (R)",
                                "/items/red_culinary_hat": "Red Culinary Hat",
                                "/items/snail_shell_helmet": "Snail Shell Helmet",
                                "/items/vision_helmet": "Vision Helmet",
                                "/items/fluffy_red_hat": "Fluffy Red Hat",
                                "/items/corsair_helmet": "Corsair Helmet",
                                "/items/corsair_helmet_refined": "Corsair Helmet (R)",
                                "/items/acrobatic_hood": "Acrobatic Hood",
                                "/items/acrobatic_hood_refined": "Acrobatic Hood (R)",
                                "/items/magicians_hat": "Magician's Hat",
                                "/items/magicians_hat_refined": "Magician's Hat (R)",
                                "/items/cheese_helmet": "Cheese Helmet",
                                "/items/verdant_helmet": "Verdant Helmet",
                                "/items/azure_helmet": "Azure Helmet",
                                "/items/burble_helmet": "Burble Helmet",
                                "/items/crimson_helmet": "Crimson Helmet",
                                "/items/rainbow_helmet": "Rainbow Helmet",
                                "/items/holy_helmet": "Holy Helmet",
                                "/items/rough_hood": "Rough Hood",
                                "/items/reptile_hood": "Reptile Hood",
                                "/items/gobo_hood": "Gobo Hood",
                                "/items/beast_hood": "Beast Hood",
                                "/items/umbral_hood": "Umbral Hood",
                                "/items/cotton_hat": "Cotton Hat",
                                "/items/linen_hat": "Linen Hat",
                                "/items/bamboo_hat": "Bamboo Hat",
                                "/items/silk_hat": "Silk Hat",
                                "/items/radiant_hat": "Radiant Hat",
                                "/items/dairyhands_top": "Dairyhand's Top",
                                "/items/foragers_top": "Forager's Top",
                                "/items/lumberjacks_top": "Lumberjack's Top",
                                "/items/cheesemakers_top": "Cheesemaker's Top",
                                "/items/crafters_top": "Crafter's Top",
                                "/items/tailors_top": "Tailor's Top",
                                "/items/chefs_top": "Chef's Top",
                                "/items/brewers_top": "Brewer's Top",
                                "/items/alchemists_top": "Alchemist's Top",
                                "/items/enhancers_top": "Enhancer's Top",
                                "/items/gator_vest": "Gator Vest",
                                "/items/turtle_shell_body": "Turtle Shell Body",
                                "/items/colossus_plate_body": "Colossus Plate Body",
                                "/items/demonic_plate_body": "Demonic Plate Body",
                                "/items/anchorbound_plate_body": "Anchorbound Plate Body",
                                "/items/anchorbound_plate_body_refined": "Anchorbound Plate Body (R)",
                                "/items/maelstrom_plate_body": "Maelstrom Plate Body",
                                "/items/maelstrom_plate_body_refined": "Maelstrom Plate Body (R)",
                                "/items/marine_tunic": "Marine Tunic",
                                "/items/revenant_tunic": "Revenant Tunic",
                                "/items/griffin_tunic": "Griffin Tunic",
                                "/items/kraken_tunic": "Kraken Tunic",
                                "/items/kraken_tunic_refined": "Kraken Tunic (R)",
                                "/items/icy_robe_top": "Icy Robe Top",
                                "/items/flaming_robe_top": "Flaming Robe Top",
                                "/items/luna_robe_top": "Luna Robe Top",
                                "/items/royal_water_robe_top": "Royal Water Robe Top",
                                "/items/royal_water_robe_top_refined": "Royal Water Robe Top (R)",
                                "/items/royal_nature_robe_top": "Royal Nature Robe Top",
                                "/items/royal_nature_robe_top_refined": "Royal Nature Robe Top (R)",
                                "/items/royal_fire_robe_top": "Royal Fire Robe Top",
                                "/items/royal_fire_robe_top_refined": "Royal Fire Robe Top (R)",
                                "/items/cheese_plate_body": "Cheese Plate Body",
                                "/items/verdant_plate_body": "Verdant Plate Body",
                                "/items/azure_plate_body": "Azure Plate Body",
                                "/items/burble_plate_body": "Burble Plate Body",
                                "/items/crimson_plate_body": "Crimson Plate Body",
                                "/items/rainbow_plate_body": "Rainbow Plate Body",
                                "/items/holy_plate_body": "Holy Plate Body",
                                "/items/rough_tunic": "Rough Tunic",
                                "/items/reptile_tunic": "Reptile Tunic",
                                "/items/gobo_tunic": "Gobo Tunic",
                                "/items/beast_tunic": "Beast Tunic",
                                "/items/umbral_tunic": "Umbral Tunic",
                                "/items/cotton_robe_top": "Cotton Robe Top",
                                "/items/linen_robe_top": "Linen Robe Top",
                                "/items/bamboo_robe_top": "Bamboo Robe Top",
                                "/items/silk_robe_top": "Silk Robe Top",
                                "/items/radiant_robe_top": "Radiant Robe Top",
                                "/items/dairyhands_bottoms": "Dairyhand's Bottoms",
                                "/items/foragers_bottoms": "Forager's Bottoms",
                                "/items/lumberjacks_bottoms": "Lumberjack's Bottoms",
                                "/items/cheesemakers_bottoms": "Cheesemaker's Bottoms",
                                "/items/crafters_bottoms": "Crafter's Bottoms",
                                "/items/tailors_bottoms": "Tailor's Bottoms",
                                "/items/chefs_bottoms": "Chef's Bottoms",
                                "/items/brewers_bottoms": "Brewer's Bottoms",
                                "/items/alchemists_bottoms": "Alchemist's Bottoms",
                                "/items/enhancers_bottoms": "Enhancer's Bottoms",
                                "/items/turtle_shell_legs": "Turtle Shell Legs",
                                "/items/colossus_plate_legs": "Colossus Plate Legs",
                                "/items/demonic_plate_legs": "Demonic Plate Legs",
                                "/items/anchorbound_plate_legs": "Anchorbound Plate Legs",
                                "/items/anchorbound_plate_legs_refined": "Anchorbound Plate Legs (R)",
                                "/items/maelstrom_plate_legs": "Maelstrom Plate Legs",
                                "/items/maelstrom_plate_legs_refined": "Maelstrom Plate Legs (R)",
                                "/items/marine_chaps": "Marine Chaps",
                                "/items/revenant_chaps": "Revenant Chaps",
                                "/items/griffin_chaps": "Griffin Chaps",
                                "/items/kraken_chaps": "Kraken Chaps",
                                "/items/kraken_chaps_refined": "Kraken Chaps (R)",
                                "/items/icy_robe_bottoms": "Icy Robe Bottoms",
                                "/items/flaming_robe_bottoms": "Flaming Robe Bottoms",
                                "/items/luna_robe_bottoms": "Luna Robe Bottoms",
                                "/items/royal_water_robe_bottoms": "Royal Water Robe Bottoms",
                                "/items/royal_water_robe_bottoms_refined": "Royal Water Robe Bottoms (R)",
                                "/items/royal_nature_robe_bottoms": "Royal Nature Robe Bottoms",
                                "/items/royal_nature_robe_bottoms_refined": "Royal Nature Robe Bottoms (R)",
                                "/items/royal_fire_robe_bottoms": "Royal Fire Robe Bottoms",
                                "/items/royal_fire_robe_bottoms_refined": "Royal Fire Robe Bottoms (R)",
                                "/items/cheese_plate_legs": "Cheese Plate Legs",
                                "/items/verdant_plate_legs": "Verdant Plate Legs",
                                "/items/azure_plate_legs": "Azure Plate Legs",
                                "/items/burble_plate_legs": "Burble Plate Legs",
                                "/items/crimson_plate_legs": "Crimson Plate Legs",
                                "/items/rainbow_plate_legs": "Rainbow Plate Legs",
                                "/items/holy_plate_legs": "Holy Plate Legs",
                                "/items/rough_chaps": "Rough Chaps",
                                "/items/reptile_chaps": "Reptile Chaps",
                                "/items/gobo_chaps": "Gobo Chaps",
                                "/items/beast_chaps": "Beast Chaps",
                                "/items/umbral_chaps": "Umbral Chaps",
                                "/items/cotton_robe_bottoms": "Cotton Robe Bottoms",
                                "/items/linen_robe_bottoms": "Linen Robe Bottoms",
                                "/items/bamboo_robe_bottoms": "Bamboo Robe Bottoms",
                                "/items/silk_robe_bottoms": "Silk Robe Bottoms",
                                "/items/radiant_robe_bottoms": "Radiant Robe Bottoms",
                                "/items/enchanted_gloves": "Enchanted Gloves",
                                "/items/pincer_gloves": "Pincer Gloves",
                                "/items/panda_gloves": "Panda Gloves",
                                "/items/magnetic_gloves": "Magnetic Gloves",
                                "/items/dodocamel_gauntlets": "Dodocamel Gauntlets",
                                "/items/dodocamel_gauntlets_refined": "Dodocamel Gauntlets (R)",
                                "/items/sighted_bracers": "Sighted Bracers",
                                "/items/marksman_bracers": "Marksman Bracers",
                                "/items/marksman_bracers_refined": "Marksman Bracers (R)",
                                "/items/chrono_gloves": "Chrono Gloves",
                                "/items/cheese_gauntlets": "Cheese Gauntlets",
                                "/items/verdant_gauntlets": "Verdant Gauntlets",
                                "/items/azure_gauntlets": "Azure Gauntlets",
                                "/items/burble_gauntlets": "Burble Gauntlets",
                                "/items/crimson_gauntlets": "Crimson Gauntlets",
                                "/items/rainbow_gauntlets": "Rainbow Gauntlets",
                                "/items/holy_gauntlets": "Holy Gauntlets",
                                "/items/rough_bracers": "Rough Bracers",
                                "/items/reptile_bracers": "Reptile Bracers",
                                "/items/gobo_bracers": "Gobo Bracers",
                                "/items/beast_bracers": "Beast Bracers",
                                "/items/umbral_bracers": "Umbral Bracers",
                                "/items/cotton_gloves": "Cotton Gloves",
                                "/items/linen_gloves": "Linen Gloves",
                                "/items/bamboo_gloves": "Bamboo Gloves",
                                "/items/silk_gloves": "Silk Gloves",
                                "/items/radiant_gloves": "Radiant Gloves",
                                "/items/collectors_boots": "Collector's Boots",
                                "/items/shoebill_shoes": "Shoebill Shoes",
                                "/items/black_bear_shoes": "Black Bear Shoes",
                                "/items/grizzly_bear_shoes": "Grizzly Bear Shoes",
                                "/items/polar_bear_shoes": "Polar Bear Shoes",
                                "/items/centaur_boots": "Centaur Boots",
                                "/items/sorcerer_boots": "Sorcerer Boots",
                                "/items/cheese_boots": "Cheese Boots",
                                "/items/verdant_boots": "Verdant Boots",
                                "/items/azure_boots": "Azure Boots",
                                "/items/burble_boots": "Burble Boots",
                                "/items/crimson_boots": "Crimson Boots",
                                "/items/rainbow_boots": "Rainbow Boots",
                                "/items/holy_boots": "Holy Boots",
                                "/items/rough_boots": "Rough Boots",
                                "/items/reptile_boots": "Reptile Boots",
                                "/items/gobo_boots": "Gobo Boots",
                                "/items/beast_boots": "Beast Boots",
                                "/items/umbral_boots": "Umbral Boots",
                                "/items/cotton_boots": "Cotton Boots",
                                "/items/linen_boots": "Linen Boots",
                                "/items/bamboo_boots": "Bamboo Boots",
                                "/items/silk_boots": "Silk Boots",
                                "/items/radiant_boots": "Radiant Boots",
                                "/items/small_pouch": "Small Pouch",
                                "/items/medium_pouch": "Medium Pouch",
                                "/items/large_pouch": "Large Pouch",
                                "/items/giant_pouch": "Giant Pouch",
                                "/items/gluttonous_pouch": "Gluttonous Pouch",
                                "/items/guzzling_pouch": "Guzzling Pouch",
                                "/items/necklace_of_efficiency": "Necklace Of Efficiency",
                                "/items/fighter_necklace": "Fighter Necklace",
                                "/items/ranger_necklace": "Ranger Necklace",
                                "/items/wizard_necklace": "Wizard Necklace",
                                "/items/necklace_of_wisdom": "Necklace Of Wisdom",
                                "/items/necklace_of_speed": "Necklace Of Speed",
                                "/items/philosophers_necklace": "Philosopher's Necklace",
                                "/items/earrings_of_gathering": "Earrings Of Gathering",
                                "/items/earrings_of_essence_find": "Earrings Of Essence Find",
                                "/items/earrings_of_armor": "Earrings Of Armor",
                                "/items/earrings_of_regeneration": "Earrings Of Regeneration",
                                "/items/earrings_of_resistance": "Earrings Of Resistance",
                                "/items/earrings_of_rare_find": "Earrings Of Rare Find",
                                "/items/earrings_of_critical_strike": "Earrings Of Critical Strike",
                                "/items/philosophers_earrings": "Philosopher's Earrings",
                                "/items/ring_of_gathering": "Ring Of Gathering",
                                "/items/ring_of_essence_find": "Ring Of Essence Find",
                                "/items/ring_of_armor": "Ring Of Armor",
                                "/items/ring_of_regeneration": "Ring Of Regeneration",
                                "/items/ring_of_resistance": "Ring Of Resistance",
                                "/items/ring_of_rare_find": "Ring Of Rare Find",
                                "/items/ring_of_critical_strike": "Ring Of Critical Strike",
                                "/items/philosophers_ring": "Philosopher's Ring",
                                "/items/trainee_milking_charm": "Trainee Milking Charm",
                                "/items/basic_milking_charm": "Basic Milking Charm",
                                "/items/advanced_milking_charm": "Advanced Milking Charm",
                                "/items/expert_milking_charm": "Expert Milking Charm",
                                "/items/master_milking_charm": "Master Milking Charm",
                                "/items/grandmaster_milking_charm": "Grandmaster Milking Charm",
                                "/items/trainee_foraging_charm": "Trainee Foraging Charm",
                                "/items/basic_foraging_charm": "Basic Foraging Charm",
                                "/items/advanced_foraging_charm": "Advanced Foraging Charm",
                                "/items/expert_foraging_charm": "Expert Foraging Charm",
                                "/items/master_foraging_charm": "Master Foraging Charm",
                                "/items/grandmaster_foraging_charm": "Grandmaster Foraging Charm",
                                "/items/trainee_woodcutting_charm": "Trainee Woodcutting Charm",
                                "/items/basic_woodcutting_charm": "Basic Woodcutting Charm",
                                "/items/advanced_woodcutting_charm": "Advanced Woodcutting Charm",
                                "/items/expert_woodcutting_charm": "Expert Woodcutting Charm",
                                "/items/master_woodcutting_charm": "Master Woodcutting Charm",
                                "/items/grandmaster_woodcutting_charm": "Grandmaster Woodcutting Charm",
                                "/items/trainee_cheesesmithing_charm": "Trainee Cheesesmithing Charm",
                                "/items/basic_cheesesmithing_charm": "Basic Cheesesmithing Charm",
                                "/items/advanced_cheesesmithing_charm": "Advanced Cheesesmithing Charm",
                                "/items/expert_cheesesmithing_charm": "Expert Cheesesmithing Charm",
                                "/items/master_cheesesmithing_charm": "Master Cheesesmithing Charm",
                                "/items/grandmaster_cheesesmithing_charm": "Grandmaster Cheesesmithing Charm",
                                "/items/trainee_crafting_charm": "Trainee Crafting Charm",
                                "/items/basic_crafting_charm": "Basic Crafting Charm",
                                "/items/advanced_crafting_charm": "Advanced Crafting Charm",
                                "/items/expert_crafting_charm": "Expert Crafting Charm",
                                "/items/master_crafting_charm": "Master Crafting Charm",
                                "/items/grandmaster_crafting_charm": "Grandmaster Crafting Charm",
                                "/items/trainee_tailoring_charm": "Trainee Tailoring Charm",
                                "/items/basic_tailoring_charm": "Basic Tailoring Charm",
                                "/items/advanced_tailoring_charm": "Advanced Tailoring Charm",
                                "/items/expert_tailoring_charm": "Expert Tailoring Charm",
                                "/items/master_tailoring_charm": "Master Tailoring Charm",
                                "/items/grandmaster_tailoring_charm": "Grandmaster Tailoring Charm",
                                "/items/trainee_cooking_charm": "Trainee Cooking Charm",
                                "/items/basic_cooking_charm": "Basic Cooking Charm",
                                "/items/advanced_cooking_charm": "Advanced Cooking Charm",
                                "/items/expert_cooking_charm": "Expert Cooking Charm",
                                "/items/master_cooking_charm": "Master Cooking Charm",
                                "/items/grandmaster_cooking_charm": "Grandmaster Cooking Charm",
                                "/items/trainee_brewing_charm": "Trainee Brewing Charm",
                                "/items/basic_brewing_charm": "Basic Brewing Charm",
                                "/items/advanced_brewing_charm": "Advanced Brewing Charm",
                                "/items/expert_brewing_charm": "Expert Brewing Charm",
                                "/items/master_brewing_charm": "Master Brewing Charm",
                                "/items/grandmaster_brewing_charm": "Grandmaster Brewing Charm",
                                "/items/trainee_alchemy_charm": "Trainee Alchemy Charm",
                                "/items/basic_alchemy_charm": "Basic Alchemy Charm",
                                "/items/advanced_alchemy_charm": "Advanced Alchemy Charm",
                                "/items/expert_alchemy_charm": "Expert Alchemy Charm",
                                "/items/master_alchemy_charm": "Master Alchemy Charm",
                                "/items/grandmaster_alchemy_charm": "Grandmaster Alchemy Charm",
                                "/items/trainee_enhancing_charm": "Trainee Enhancing Charm",
                                "/items/basic_enhancing_charm": "Basic Enhancing Charm",
                                "/items/advanced_enhancing_charm": "Advanced Enhancing Charm",
                                "/items/expert_enhancing_charm": "Expert Enhancing Charm",
                                "/items/master_enhancing_charm": "Master Enhancing Charm",
                                "/items/grandmaster_enhancing_charm": "Grandmaster Enhancing Charm",
                                "/items/trainee_stamina_charm": "Trainee Stamina Charm",
                                "/items/basic_stamina_charm": "Basic Stamina Charm",
                                "/items/advanced_stamina_charm": "Advanced Stamina Charm",
                                "/items/expert_stamina_charm": "Expert Stamina Charm",
                                "/items/master_stamina_charm": "Master Stamina Charm",
                                "/items/grandmaster_stamina_charm": "Grandmaster Stamina Charm",
                                "/items/trainee_intelligence_charm": "Trainee Intelligence Charm",
                                "/items/basic_intelligence_charm": "Basic Intelligence Charm",
                                "/items/advanced_intelligence_charm": "Advanced Intelligence Charm",
                                "/items/expert_intelligence_charm": "Expert Intelligence Charm",
                                "/items/master_intelligence_charm": "Master Intelligence Charm",
                                "/items/grandmaster_intelligence_charm": "Grandmaster Intelligence Charm",
                                "/items/trainee_attack_charm": "Trainee Attack Charm",
                                "/items/basic_attack_charm": "Basic Attack Charm",
                                "/items/advanced_attack_charm": "Advanced Attack Charm",
                                "/items/expert_attack_charm": "Expert Attack Charm",
                                "/items/master_attack_charm": "Master Attack Charm",
                                "/items/grandmaster_attack_charm": "Grandmaster Attack Charm",
                                "/items/trainee_defense_charm": "Trainee Defense Charm",
                                "/items/basic_defense_charm": "Basic Defense Charm",
                                "/items/advanced_defense_charm": "Advanced Defense Charm",
                                "/items/expert_defense_charm": "Expert Defense Charm",
                                "/items/master_defense_charm": "Master Defense Charm",
                                "/items/grandmaster_defense_charm": "Grandmaster Defense Charm",
                                "/items/trainee_melee_charm": "Trainee Melee Charm",
                                "/items/basic_melee_charm": "Basic Melee Charm",
                                "/items/advanced_melee_charm": "Advanced Melee Charm",
                                "/items/expert_melee_charm": "Expert Melee Charm",
                                "/items/master_melee_charm": "Master Melee Charm",
                                "/items/grandmaster_melee_charm": "Grandmaster Melee Charm",
                                "/items/trainee_ranged_charm": "Trainee Ranged Charm",
                                "/items/basic_ranged_charm": "Basic Ranged Charm",
                                "/items/advanced_ranged_charm": "Advanced Ranged Charm",
                                "/items/expert_ranged_charm": "Expert Ranged Charm",
                                "/items/master_ranged_charm": "Master Ranged Charm",
                                "/items/grandmaster_ranged_charm": "Grandmaster Ranged Charm",
                                "/items/trainee_magic_charm": "Trainee Magic Charm",
                                "/items/basic_magic_charm": "Basic Magic Charm",
                                "/items/advanced_magic_charm": "Advanced Magic Charm",
                                "/items/expert_magic_charm": "Expert Magic Charm",
                                "/items/master_magic_charm": "Master Magic Charm",
                                "/items/grandmaster_magic_charm": "Grandmaster Magic Charm",
                                "/items/basic_task_badge": "Basic Task Badge",
                                "/items/advanced_task_badge": "Advanced Task Badge",
                                "/items/expert_task_badge": "Expert Task Badge",
                                "/items/celestial_brush": "Celestial Brush",
                                "/items/cheese_brush": "Cheese Brush",
                                "/items/verdant_brush": "Verdant Brush",
                                "/items/azure_brush": "Azure Brush",
                                "/items/burble_brush": "Burble Brush",
                                "/items/crimson_brush": "Crimson Brush",
                                "/items/rainbow_brush": "Rainbow Brush",
                                "/items/holy_brush": "Holy Brush",
                                "/items/celestial_shears": "Celestial Shears",
                                "/items/cheese_shears": "Cheese Shears",
                                "/items/verdant_shears": "Verdant Shears",
                                "/items/azure_shears": "Azure Shears",
                                "/items/burble_shears": "Burble Shears",
                                "/items/crimson_shears": "Crimson Shears",
                                "/items/rainbow_shears": "Rainbow Shears",
                                "/items/holy_shears": "Holy Shears",
                                "/items/celestial_hatchet": "Celestial Hatchet",
                                "/items/cheese_hatchet": "Cheese Hatchet",
                                "/items/verdant_hatchet": "Verdant Hatchet",
                                "/items/azure_hatchet": "Azure Hatchet",
                                "/items/burble_hatchet": "Burble Hatchet",
                                "/items/crimson_hatchet": "Crimson Hatchet",
                                "/items/rainbow_hatchet": "Rainbow Hatchet",
                                "/items/holy_hatchet": "Holy Hatchet",
                                "/items/celestial_hammer": "Celestial Hammer",
                                "/items/cheese_hammer": "Cheese Hammer",
                                "/items/verdant_hammer": "Verdant Hammer",
                                "/items/azure_hammer": "Azure Hammer",
                                "/items/burble_hammer": "Burble Hammer",
                                "/items/crimson_hammer": "Crimson Hammer",
                                "/items/rainbow_hammer": "Rainbow Hammer",
                                "/items/holy_hammer": "Holy Hammer",
                                "/items/celestial_chisel": "Celestial Chisel",
                                "/items/cheese_chisel": "Cheese Chisel",
                                "/items/verdant_chisel": "Verdant Chisel",
                                "/items/azure_chisel": "Azure Chisel",
                                "/items/burble_chisel": "Burble Chisel",
                                "/items/crimson_chisel": "Crimson Chisel",
                                "/items/rainbow_chisel": "Rainbow Chisel",
                                "/items/holy_chisel": "Holy Chisel",
                                "/items/celestial_needle": "Celestial Needle",
                                "/items/cheese_needle": "Cheese Needle",
                                "/items/verdant_needle": "Verdant Needle",
                                "/items/azure_needle": "Azure Needle",
                                "/items/burble_needle": "Burble Needle",
                                "/items/crimson_needle": "Crimson Needle",
                                "/items/rainbow_needle": "Rainbow Needle",
                                "/items/holy_needle": "Holy Needle",
                                "/items/celestial_spatula": "Celestial Spatula",
                                "/items/cheese_spatula": "Cheese Spatula",
                                "/items/verdant_spatula": "Verdant Spatula",
                                "/items/azure_spatula": "Azure Spatula",
                                "/items/burble_spatula": "Burble Spatula",
                                "/items/crimson_spatula": "Crimson Spatula",
                                "/items/rainbow_spatula": "Rainbow Spatula",
                                "/items/holy_spatula": "Holy Spatula",
                                "/items/celestial_pot": "Celestial Pot",
                                "/items/cheese_pot": "Cheese Pot",
                                "/items/verdant_pot": "Verdant Pot",
                                "/items/azure_pot": "Azure Pot",
                                "/items/burble_pot": "Burble Pot",
                                "/items/crimson_pot": "Crimson Pot",
                                "/items/rainbow_pot": "Rainbow Pot",
                                "/items/holy_pot": "Holy Pot",
                                "/items/celestial_alembic": "Celestial Alembic",
                                "/items/cheese_alembic": "Cheese Alembic",
                                "/items/verdant_alembic": "Verdant Alembic",
                                "/items/azure_alembic": "Azure Alembic",
                                "/items/burble_alembic": "Burble Alembic",
                                "/items/crimson_alembic": "Crimson Alembic",
                                "/items/rainbow_alembic": "Rainbow Alembic",
                                "/items/holy_alembic": "Holy Alembic",
                                "/items/celestial_enhancer": "Celestial Enhancer",
                                "/items/cheese_enhancer": "Cheese Enhancer",
                                "/items/verdant_enhancer": "Verdant Enhancer",
                                "/items/azure_enhancer": "Azure Enhancer",
                                "/items/burble_enhancer": "Burble Enhancer",
                                "/items/crimson_enhancer": "Crimson Enhancer",
                                "/items/rainbow_enhancer": "Rainbow Enhancer",
                                "/items/holy_enhancer": "Holy Enhancer",
                                "/items/milk": "Milk",
                                "/items/verdant_milk": "Verdant Milk",
                                "/items/azure_milk": "Azure Milk",
                                "/items/burble_milk": "Burble Milk",
                                "/items/crimson_milk": "Crimson Milk",
                                "/items/rainbow_milk": "Rainbow Milk",
                                "/items/holy_milk": "Holy Milk",
                                "/items/cheese": "Cheese",
                                "/items/verdant_cheese": "Verdant Cheese",
                                "/items/azure_cheese": "Azure Cheese",
                                "/items/burble_cheese": "Burble Cheese",
                                "/items/crimson_cheese": "Crimson Cheese",
                                "/items/rainbow_cheese": "Rainbow Cheese",
                                "/items/holy_cheese": "Holy Cheese",
                                "/items/log": "Log",
                                "/items/birch_log": "Birch Log",
                                "/items/cedar_log": "Cedar Log",
                                "/items/purpleheart_log": "Purpleheart Log",
                                "/items/ginkgo_log": "Ginkgo Log",
                                "/items/redwood_log": "Redwood Log",
                                "/items/arcane_log": "Arcane Log",
                                "/items/lumber": "Lumber",
                                "/items/birch_lumber": "Birch Lumber",
                                "/items/cedar_lumber": "Cedar Lumber",
                                "/items/purpleheart_lumber": "Purpleheart Lumber",
                                "/items/ginkgo_lumber": "Ginkgo Lumber",
                                "/items/redwood_lumber": "Redwood Lumber",
                                "/items/arcane_lumber": "Arcane Lumber",
                                "/items/rough_hide": "Rough Hide",
                                "/items/reptile_hide": "Reptile Hide",
                                "/items/gobo_hide": "Gobo Hide",
                                "/items/beast_hide": "Beast Hide",
                                "/items/umbral_hide": "Umbral Hide",
                                "/items/rough_leather": "Rough Leather",
                                "/items/reptile_leather": "Reptile Leather",
                                "/items/gobo_leather": "Gobo Leather",
                                "/items/beast_leather": "Beast Leather",
                                "/items/umbral_leather": "Umbral Leather",
                                "/items/cotton": "Cotton",
                                "/items/flax": "Flax",
                                "/items/bamboo_branch": "Bamboo Branch",
                                "/items/cocoon": "Cocoon",
                                "/items/radiant_fiber": "Radiant Fiber",
                                "/items/cotton_fabric": "Cotton Fabric",
                                "/items/linen_fabric": "Linen Fabric",
                                "/items/bamboo_fabric": "Bamboo Fabric",
                                "/items/silk_fabric": "Silk Fabric",
                                "/items/radiant_fabric": "Radiant Fabric",
                                "/items/egg": "Egg",
                                "/items/wheat": "Wheat",
                                "/items/sugar": "Sugar",
                                "/items/blueberry": "Blueberry",
                                "/items/blackberry": "Blackberry",
                                "/items/strawberry": "Strawberry",
                                "/items/mooberry": "Mooberry",
                                "/items/marsberry": "Marsberry",
                                "/items/spaceberry": "Spaceberry",
                                "/items/apple": "Apple",
                                "/items/orange": "Orange",
                                "/items/plum": "Plum",
                                "/items/peach": "Peach",
                                "/items/dragon_fruit": "Dragon Fruit",
                                "/items/star_fruit": "Star Fruit",
                                "/items/arabica_coffee_bean": "Arabica Coffee Bean",
                                "/items/robusta_coffee_bean": "Robusta Coffee Bean",
                                "/items/liberica_coffee_bean": "Liberica Coffee Bean",
                                "/items/excelsa_coffee_bean": "Excelsa Coffee Bean",
                                "/items/fieriosa_coffee_bean": "Fieriosa Coffee Bean",
                                "/items/spacia_coffee_bean": "Spacia Coffee Bean",
                                "/items/green_tea_leaf": "Green Tea Leaf",
                                "/items/black_tea_leaf": "Black Tea Leaf",
                                "/items/burble_tea_leaf": "Burble Tea Leaf",
                                "/items/moolong_tea_leaf": "Moolong Tea Leaf",
                                "/items/red_tea_leaf": "Red Tea Leaf",
                                "/items/emp_tea_leaf": "Emp Tea Leaf",
                                "/items/catalyst_of_coinification": "Catalyst Of Coinification",
                                "/items/catalyst_of_decomposition": "Catalyst Of Decomposition",
                                "/items/catalyst_of_transmutation": "Catalyst Of Transmutation",
                                "/items/prime_catalyst": "Prime Catalyst",
                                "/items/snake_fang": "Snake Fang",
                                "/items/shoebill_feather": "Shoebill Feather",
                                "/items/snail_shell": "Snail Shell",
                                "/items/crab_pincer": "Crab Pincer",
                                "/items/turtle_shell": "Turtle Shell",
                                "/items/marine_scale": "Marine Scale",
                                "/items/treant_bark": "Treant Bark",
                                "/items/centaur_hoof": "Centaur Hoof",
                                "/items/luna_wing": "Luna Wing",
                                "/items/gobo_rag": "Gobo Rag",
                                "/items/goggles": "Goggles",
                                "/items/magnifying_glass": "Magnifying Glass",
                                "/items/eye_of_the_watcher": "Eye Of The Watcher",
                                "/items/icy_cloth": "Icy Cloth",
                                "/items/flaming_cloth": "Flaming Cloth",
                                "/items/sorcerers_sole": "Sorcerer's Sole",
                                "/items/chrono_sphere": "Chrono Sphere",
                                "/items/frost_sphere": "Frost Sphere",
                                "/items/panda_fluff": "Panda Fluff",
                                "/items/black_bear_fluff": "Black Bear Fluff",
                                "/items/grizzly_bear_fluff": "Grizzly Bear Fluff",
                                "/items/polar_bear_fluff": "Polar Bear Fluff",
                                "/items/red_panda_fluff": "Red Panda Fluff",
                                "/items/magnet": "Magnet",
                                "/items/stalactite_shard": "Stalactite Shard",
                                "/items/living_granite": "Living Granite",
                                "/items/colossus_core": "Colossus Core",
                                "/items/vampire_fang": "Vampire Fang",
                                "/items/werewolf_claw": "Werewolf Claw",
                                "/items/revenant_anima": "Revenant Anima",
                                "/items/soul_fragment": "Soul Fragment",
                                "/items/infernal_ember": "Infernal Ember",
                                "/items/demonic_core": "Demonic Core",
                                "/items/griffin_leather": "Griffin Leather",
                                "/items/manticore_sting": "Manticore Sting",
                                "/items/jackalope_antler": "Jackalope Antler",
                                "/items/dodocamel_plume": "Dodocamel Plume",
                                "/items/griffin_talon": "Griffin Talon",
                                "/items/chimerical_refinement_shard": "Chimerical Refinement Shard",
                                "/items/acrobats_ribbon": "Acrobat's Ribbon",
                                "/items/magicians_cloth": "Magician's Cloth",
                                "/items/chaotic_chain": "Chaotic Chain",
                                "/items/cursed_ball": "Cursed Ball",
                                "/items/sinister_refinement_shard": "Sinister Refinement Shard",
                                "/items/royal_cloth": "Royal Cloth",
                                "/items/knights_ingot": "Knight's Ingot",
                                "/items/bishops_scroll": "Bishop's Scroll",
                                "/items/regal_jewel": "Regal Jewel",
                                "/items/sundering_jewel": "Sundering Jewel",
                                "/items/enchanted_refinement_shard": "Enchanted Refinement Shard",
                                "/items/marksman_brooch": "Marksman Brooch",
                                "/items/corsair_crest": "Corsair Crest",
                                "/items/damaged_anchor": "Damaged Anchor",
                                "/items/maelstrom_plating": "Maelstrom Plating",
                                "/items/kraken_leather": "Kraken Leather",
                                "/items/kraken_fang": "Kraken Fang",
                                "/items/pirate_refinement_shard": "Pirate Refinement Shard",
                                "/items/butter_of_proficiency": "Butter Of Proficiency",
                                "/items/thread_of_expertise": "Thread Of Expertise",
                                "/items/branch_of_insight": "Branch Of Insight",
                                "/items/gluttonous_energy": "Gluttonous Energy",
                                "/items/guzzling_energy": "Guzzling Energy",
                                "/items/milking_essence": "Milking Essence",
                                "/items/foraging_essence": "Foraging Essence",
                                "/items/woodcutting_essence": "Woodcutting Essence",
                                "/items/cheesesmithing_essence": "Cheesesmithing Essence",
                                "/items/crafting_essence": "Crafting Essence",
                                "/items/tailoring_essence": "Tailoring Essence",
                                "/items/cooking_essence": "Cooking Essence",
                                "/items/brewing_essence": "Brewing Essence",
                                "/items/alchemy_essence": "Alchemy Essence",
                                "/items/enhancing_essence": "Enhancing Essence",
                                "/items/swamp_essence": "Swamp Essence",
                                "/items/aqua_essence": "Aqua Essence",
                                "/items/jungle_essence": "Jungle Essence",
                                "/items/gobo_essence": "Gobo Essence",
                                "/items/eyessence": "Eyessence",
                                "/items/sorcerer_essence": "Sorcerer Essence",
                                "/items/bear_essence": "Bear Essence",
                                "/items/golem_essence": "Golem Essence",
                                "/items/twilight_essence": "Twilight Essence",
                                "/items/abyssal_essence": "Abyssal Essence",
                                "/items/chimerical_essence": "Chimerical Essence",
                                "/items/sinister_essence": "Sinister Essence",
                                "/items/enchanted_essence": "Enchanted Essence",
                                "/items/pirate_essence": "Pirate Essence",
                                "/items/task_crystal": "Task Crystal",
                                "/items/star_fragment": "Star Fragment",
                                "/items/pearl": "Pearl",
                                "/items/amber": "Amber",
                                "/items/garnet": "Garnet",
                                "/items/jade": "Jade",
                                "/items/amethyst": "Amethyst",
                                "/items/moonstone": "Moonstone",
                                "/items/sunstone": "Sunstone",
                                "/items/philosophers_stone": "Philosopher's Stone",
                                "/items/crushed_pearl": "Crushed Pearl",
                                "/items/crushed_amber": "Crushed Amber",
                                "/items/crushed_garnet": "Crushed Garnet",
                                "/items/crushed_jade": "Crushed Jade",
                                "/items/crushed_amethyst": "Crushed Amethyst",
                                "/items/crushed_moonstone": "Crushed Moonstone",
                                "/items/crushed_sunstone": "Crushed Sunstone",
                                "/items/crushed_philosophers_stone": "Crushed Philosopher's Stone",
                                "/items/shard_of_protection": "Shard Of Protection",
                                "/items/mirror_of_protection": "Mirror Of Protection"
                            },
                            "itemDescriptions": {
                                "/items/coin": "Basic currency",
                                "/items/task_token": "Task currency. Spend these in the Task Shop",
                                "/items/chimerical_token": "Dungeon currency from the Chimerical Den. Spend these in the Shop",
                                "/items/sinister_token": "Dungeon currency from the Sinister Circus. Spend these in the Shop",
                                "/items/enchanted_token": "Dungeon currency from the Enchanted Fortress. Spend these in the Shop",
                                "/items/pirate_token": "Dungeon currency from the Pirate Cove. Spend these in the Shop",
                                "/items/cowbell": "Premium currency. Buy or spend these in the Cowbell Store",
                                "/items/bag_of_10_cowbells": "Tradable bag of 10 Cowbells. Once opened, the Cowbells can no longer be sold on the market.",
                                "/items/purples_gift": "Gifted by Purple after earning task points. Looks like it contains items inside!",
                                "/items/small_meteorite_cache": "Can be found while gathering. Looks like it contains items inside!",
                                "/items/medium_meteorite_cache": "Can be found while gathering. Looks like it contains items inside!",
                                "/items/large_meteorite_cache": "Can be found while gathering. Looks like it contains items inside!",
                                "/items/small_artisans_crate": "Can be found during production skills. Looks like it contains items inside!",
                                "/items/medium_artisans_crate": "Can be found during production skills. Looks like it contains items inside!",
                                "/items/large_artisans_crate": "Can be found during production skills. Looks like it contains items inside!",
                                "/items/small_treasure_chest": "Can be found from monsters. Looks like it contains items inside!",
                                "/items/medium_treasure_chest": "Can be found from monsters. Looks like it contains items inside!",
                                "/items/large_treasure_chest": "Can be found from monsters. Looks like it contains items inside!",
                                "/items/chimerical_chest": "Received from completion of the Chimerical Den dungeon. Can be opened with Chimerical Chest Key",
                                "/items/chimerical_refinement_chest": "Received from completion of Chimerical Den dungeon (T1+). Can be opened with Chimerical Chest Key",
                                "/items/sinister_chest": "Received from completion of the Sinister Circus dungeon. Can be opened with Sinister Chest Key",
                                "/items/sinister_refinement_chest": "Received from completion of Sinister Circus dungeon (T1+). Can be opened with Sinister Chest Key",
                                "/items/enchanted_chest": "Received from completion of the Enchanted Fortress dungeon. Can be opened with Enchanted Chest Key",
                                "/items/enchanted_refinement_chest": "Received from completion of Enchanted Fortress dungeon (T1+). Can be opened with Enchanted Chest Key",
                                "/items/pirate_chest": "Received from completion of the Pirate Cove dungeon. Can be opened with Pirate Chest Key",
                                "/items/pirate_refinement_chest": "Received from completion of Pirate Cove dungeon (T1+). Can be opened with Pirate Chest Key",
                                "/items/blue_key_fragment": "Can be used to craft dungeon keys",
                                "/items/green_key_fragment": "Can be used to craft dungeon keys",
                                "/items/purple_key_fragment": "Can be used to craft dungeon keys",
                                "/items/white_key_fragment": "Can be used to craft dungeon keys",
                                "/items/orange_key_fragment": "Can be used to craft dungeon keys",
                                "/items/brown_key_fragment": "Can be used to craft dungeon keys",
                                "/items/stone_key_fragment": "Can be used to craft dungeon keys",
                                "/items/dark_key_fragment": "Can be used to craft dungeon keys",
                                "/items/burning_key_fragment": "Can be used to craft dungeon keys",
                                "/items/chimerical_entry_key": "Allows 1 entry into the Chimerical Den dungeon",
                                "/items/chimerical_chest_key": "Opens 1 Chimerical Chest",
                                "/items/sinister_entry_key": "Allows 1 entry into the Sinister Circus dungeon",
                                "/items/sinister_chest_key": "Opens 1 Sinister Chest",
                                "/items/enchanted_entry_key": "Allows 1 entry into the Enchanted Fortress dungeon",
                                "/items/enchanted_chest_key": "Opens 1 Enchanted Chest",
                                "/items/pirate_entry_key": "Allows 1 entry into the Pirate Cove dungeon",
                                "/items/pirate_chest_key": "Opens 1 Pirate Chest",
                                "/items/donut": "",
                                "/items/blueberry_donut": "",
                                "/items/blackberry_donut": "",
                                "/items/strawberry_donut": "",
                                "/items/mooberry_donut": "",
                                "/items/marsberry_donut": "",
                                "/items/spaceberry_donut": "",
                                "/items/cupcake": "",
                                "/items/blueberry_cake": "",
                                "/items/blackberry_cake": "",
                                "/items/strawberry_cake": "",
                                "/items/mooberry_cake": "",
                                "/items/marsberry_cake": "",
                                "/items/spaceberry_cake": "",
                                "/items/gummy": "",
                                "/items/apple_gummy": "",
                                "/items/orange_gummy": "",
                                "/items/plum_gummy": "",
                                "/items/peach_gummy": "",
                                "/items/dragon_fruit_gummy": "",
                                "/items/star_fruit_gummy": "",
                                "/items/yogurt": "",
                                "/items/apple_yogurt": "",
                                "/items/orange_yogurt": "",
                                "/items/plum_yogurt": "",
                                "/items/peach_yogurt": "",
                                "/items/dragon_fruit_yogurt": "",
                                "/items/star_fruit_yogurt": "",
                                "/items/milking_tea": "",
                                "/items/foraging_tea": "",
                                "/items/woodcutting_tea": "",
                                "/items/cooking_tea": "",
                                "/items/brewing_tea": "",
                                "/items/alchemy_tea": "",
                                "/items/enhancing_tea": "",
                                "/items/cheesesmithing_tea": "",
                                "/items/crafting_tea": "",
                                "/items/tailoring_tea": "",
                                "/items/super_milking_tea": "",
                                "/items/super_foraging_tea": "",
                                "/items/super_woodcutting_tea": "",
                                "/items/super_cooking_tea": "",
                                "/items/super_brewing_tea": "",
                                "/items/super_alchemy_tea": "",
                                "/items/super_enhancing_tea": "",
                                "/items/super_cheesesmithing_tea": "",
                                "/items/super_crafting_tea": "",
                                "/items/super_tailoring_tea": "",
                                "/items/ultra_milking_tea": "",
                                "/items/ultra_foraging_tea": "",
                                "/items/ultra_woodcutting_tea": "",
                                "/items/ultra_cooking_tea": "",
                                "/items/ultra_brewing_tea": "",
                                "/items/ultra_alchemy_tea": "",
                                "/items/ultra_enhancing_tea": "",
                                "/items/ultra_cheesesmithing_tea": "",
                                "/items/ultra_crafting_tea": "",
                                "/items/ultra_tailoring_tea": "",
                                "/items/gathering_tea": "",
                                "/items/gourmet_tea": "",
                                "/items/wisdom_tea": "",
                                "/items/processing_tea": "",
                                "/items/efficiency_tea": "",
                                "/items/artisan_tea": "",
                                "/items/catalytic_tea": "",
                                "/items/blessed_tea": "",
                                "/items/stamina_coffee": "",
                                "/items/intelligence_coffee": "",
                                "/items/defense_coffee": "",
                                "/items/attack_coffee": "",
                                "/items/melee_coffee": "",
                                "/items/ranged_coffee": "",
                                "/items/magic_coffee": "",
                                "/items/super_stamina_coffee": "",
                                "/items/super_intelligence_coffee": "",
                                "/items/super_defense_coffee": "",
                                "/items/super_attack_coffee": "",
                                "/items/super_melee_coffee": "",
                                "/items/super_ranged_coffee": "",
                                "/items/super_magic_coffee": "",
                                "/items/ultra_stamina_coffee": "",
                                "/items/ultra_intelligence_coffee": "",
                                "/items/ultra_defense_coffee": "",
                                "/items/ultra_attack_coffee": "",
                                "/items/ultra_melee_coffee": "",
                                "/items/ultra_ranged_coffee": "",
                                "/items/ultra_magic_coffee": "",
                                "/items/wisdom_coffee": "",
                                "/items/lucky_coffee": "",
                                "/items/swiftness_coffee": "",
                                "/items/channeling_coffee": "",
                                "/items/critical_coffee": "",
                                "/items/poke": "",
                                "/items/impale": "",
                                "/items/puncture": "",
                                "/items/penetrating_strike": "",
                                "/items/scratch": "",
                                "/items/cleave": "",
                                "/items/maim": "",
                                "/items/crippling_slash": "",
                                "/items/smack": "",
                                "/items/sweep": "",
                                "/items/stunning_blow": "",
                                "/items/fracturing_impact": "",
                                "/items/shield_bash": "",
                                "/items/quick_shot": "",
                                "/items/aqua_arrow": "",
                                "/items/flame_arrow": "",
                                "/items/rain_of_arrows": "",
                                "/items/silencing_shot": "",
                                "/items/steady_shot": "",
                                "/items/pestilent_shot": "",
                                "/items/penetrating_shot": "",
                                "/items/water_strike": "",
                                "/items/ice_spear": "",
                                "/items/frost_surge": "",
                                "/items/mana_spring": "",
                                "/items/entangle": "",
                                "/items/toxic_pollen": "",
                                "/items/natures_veil": "",
                                "/items/life_drain": "",
                                "/items/fireball": "",
                                "/items/flame_blast": "",
                                "/items/firestorm": "",
                                "/items/smoke_burst": "",
                                "/items/minor_heal": "",
                                "/items/heal": "",
                                "/items/quick_aid": "",
                                "/items/rejuvenate": "",
                                "/items/taunt": "",
                                "/items/provoke": "",
                                "/items/toughness": "",
                                "/items/elusiveness": "",
                                "/items/precision": "",
                                "/items/berserk": "",
                                "/items/elemental_affinity": "",
                                "/items/frenzy": "",
                                "/items/spike_shell": "",
                                "/items/retribution": "",
                                "/items/vampirism": "",
                                "/items/revive": "",
                                "/items/insanity": "",
                                "/items/invincible": "",
                                "/items/speed_aura": "",
                                "/items/guardian_aura": "",
                                "/items/fierce_aura": "",
                                "/items/critical_aura": "",
                                "/items/mystic_aura": "",
                                "/items/gobo_stabber": "",
                                "/items/gobo_slasher": "",
                                "/items/gobo_smasher": "",
                                "/items/spiked_bulwark": "",
                                "/items/werewolf_slasher": "",
                                "/items/griffin_bulwark": "",
                                "/items/griffin_bulwark_refined": "",
                                "/items/gobo_shooter": "",
                                "/items/vampiric_bow": "",
                                "/items/cursed_bow": "",
                                "/items/cursed_bow_refined": "",
                                "/items/gobo_boomstick": "",
                                "/items/cheese_bulwark": "",
                                "/items/verdant_bulwark": "",
                                "/items/azure_bulwark": "",
                                "/items/burble_bulwark": "",
                                "/items/crimson_bulwark": "",
                                "/items/rainbow_bulwark": "",
                                "/items/holy_bulwark": "",
                                "/items/wooden_bow": "",
                                "/items/birch_bow": "",
                                "/items/cedar_bow": "",
                                "/items/purpleheart_bow": "",
                                "/items/ginkgo_bow": "",
                                "/items/redwood_bow": "",
                                "/items/arcane_bow": "",
                                "/items/stalactite_spear": "",
                                "/items/granite_bludgeon": "",
                                "/items/furious_spear": "",
                                "/items/furious_spear_refined": "",
                                "/items/regal_sword": "",
                                "/items/regal_sword_refined": "",
                                "/items/chaotic_flail": "",
                                "/items/chaotic_flail_refined": "",
                                "/items/soul_hunter_crossbow": "",
                                "/items/sundering_crossbow": "",
                                "/items/sundering_crossbow_refined": "",
                                "/items/frost_staff": "",
                                "/items/infernal_battlestaff": "",
                                "/items/jackalope_staff": "",
                                "/items/rippling_trident": "",
                                "/items/rippling_trident_refined": "",
                                "/items/blooming_trident": "",
                                "/items/blooming_trident_refined": "",
                                "/items/blazing_trident": "",
                                "/items/blazing_trident_refined": "",
                                "/items/cheese_sword": "",
                                "/items/verdant_sword": "",
                                "/items/azure_sword": "",
                                "/items/burble_sword": "",
                                "/items/crimson_sword": "",
                                "/items/rainbow_sword": "",
                                "/items/holy_sword": "",
                                "/items/cheese_spear": "",
                                "/items/verdant_spear": "",
                                "/items/azure_spear": "",
                                "/items/burble_spear": "",
                                "/items/crimson_spear": "",
                                "/items/rainbow_spear": "",
                                "/items/holy_spear": "",
                                "/items/cheese_mace": "",
                                "/items/verdant_mace": "",
                                "/items/azure_mace": "",
                                "/items/burble_mace": "",
                                "/items/crimson_mace": "",
                                "/items/rainbow_mace": "",
                                "/items/holy_mace": "",
                                "/items/wooden_crossbow": "",
                                "/items/birch_crossbow": "",
                                "/items/cedar_crossbow": "",
                                "/items/purpleheart_crossbow": "",
                                "/items/ginkgo_crossbow": "",
                                "/items/redwood_crossbow": "",
                                "/items/arcane_crossbow": "",
                                "/items/wooden_water_staff": "",
                                "/items/birch_water_staff": "",
                                "/items/cedar_water_staff": "",
                                "/items/purpleheart_water_staff": "",
                                "/items/ginkgo_water_staff": "",
                                "/items/redwood_water_staff": "",
                                "/items/arcane_water_staff": "",
                                "/items/wooden_nature_staff": "",
                                "/items/birch_nature_staff": "",
                                "/items/cedar_nature_staff": "",
                                "/items/purpleheart_nature_staff": "",
                                "/items/ginkgo_nature_staff": "",
                                "/items/redwood_nature_staff": "",
                                "/items/arcane_nature_staff": "",
                                "/items/wooden_fire_staff": "",
                                "/items/birch_fire_staff": "",
                                "/items/cedar_fire_staff": "",
                                "/items/purpleheart_fire_staff": "",
                                "/items/ginkgo_fire_staff": "",
                                "/items/redwood_fire_staff": "",
                                "/items/arcane_fire_staff": "",
                                "/items/eye_watch": "",
                                "/items/snake_fang_dirk": "",
                                "/items/vision_shield": "",
                                "/items/gobo_defender": "",
                                "/items/vampire_fang_dirk": "",
                                "/items/knights_aegis": "",
                                "/items/knights_aegis_refined": "",
                                "/items/treant_shield": "",
                                "/items/manticore_shield": "",
                                "/items/tome_of_healing": "",
                                "/items/tome_of_the_elements": "",
                                "/items/watchful_relic": "",
                                "/items/bishops_codex": "",
                                "/items/bishops_codex_refined": "",
                                "/items/cheese_buckler": "",
                                "/items/verdant_buckler": "",
                                "/items/azure_buckler": "",
                                "/items/burble_buckler": "",
                                "/items/crimson_buckler": "",
                                "/items/rainbow_buckler": "",
                                "/items/holy_buckler": "",
                                "/items/wooden_shield": "",
                                "/items/birch_shield": "",
                                "/items/cedar_shield": "",
                                "/items/purpleheart_shield": "",
                                "/items/ginkgo_shield": "",
                                "/items/redwood_shield": "",
                                "/items/arcane_shield": "",
                                "/items/sinister_cape": "",
                                "/items/sinister_cape_refined": "",
                                "/items/chimerical_quiver": "",
                                "/items/chimerical_quiver_refined": "",
                                "/items/enchanted_cloak": "",
                                "/items/enchanted_cloak_refined": "",
                                "/items/red_culinary_hat": "",
                                "/items/snail_shell_helmet": "",
                                "/items/vision_helmet": "",
                                "/items/fluffy_red_hat": "",
                                "/items/corsair_helmet": "",
                                "/items/corsair_helmet_refined": "",
                                "/items/acrobatic_hood": "",
                                "/items/acrobatic_hood_refined": "",
                                "/items/magicians_hat": "",
                                "/items/magicians_hat_refined": "",
                                "/items/cheese_helmet": "",
                                "/items/verdant_helmet": "",
                                "/items/azure_helmet": "",
                                "/items/burble_helmet": "",
                                "/items/crimson_helmet": "",
                                "/items/rainbow_helmet": "",
                                "/items/holy_helmet": "",
                                "/items/rough_hood": "",
                                "/items/reptile_hood": "",
                                "/items/gobo_hood": "",
                                "/items/beast_hood": "",
                                "/items/umbral_hood": "",
                                "/items/cotton_hat": "",
                                "/items/linen_hat": "",
                                "/items/bamboo_hat": "",
                                "/items/silk_hat": "",
                                "/items/radiant_hat": "",
                                "/items/dairyhands_top": "",
                                "/items/foragers_top": "",
                                "/items/lumberjacks_top": "",
                                "/items/cheesemakers_top": "",
                                "/items/crafters_top": "",
                                "/items/tailors_top": "",
                                "/items/chefs_top": "",
                                "/items/brewers_top": "",
                                "/items/alchemists_top": "",
                                "/items/enhancers_top": "",
                                "/items/gator_vest": "",
                                "/items/turtle_shell_body": "",
                                "/items/colossus_plate_body": "",
                                "/items/demonic_plate_body": "",
                                "/items/anchorbound_plate_body": "",
                                "/items/anchorbound_plate_body_refined": "",
                                "/items/maelstrom_plate_body": "",
                                "/items/maelstrom_plate_body_refined": "",
                                "/items/marine_tunic": "",
                                "/items/revenant_tunic": "",
                                "/items/griffin_tunic": "",
                                "/items/kraken_tunic": "",
                                "/items/kraken_tunic_refined": "",
                                "/items/icy_robe_top": "",
                                "/items/flaming_robe_top": "",
                                "/items/luna_robe_top": "",
                                "/items/royal_water_robe_top": "",
                                "/items/royal_water_robe_top_refined": "",
                                "/items/royal_nature_robe_top": "",
                                "/items/royal_nature_robe_top_refined": "",
                                "/items/royal_fire_robe_top": "",
                                "/items/royal_fire_robe_top_refined": "",
                                "/items/cheese_plate_body": "",
                                "/items/verdant_plate_body": "",
                                "/items/azure_plate_body": "",
                                "/items/burble_plate_body": "",
                                "/items/crimson_plate_body": "",
                                "/items/rainbow_plate_body": "",
                                "/items/holy_plate_body": "",
                                "/items/rough_tunic": "",
                                "/items/reptile_tunic": "",
                                "/items/gobo_tunic": "",
                                "/items/beast_tunic": "",
                                "/items/umbral_tunic": "",
                                "/items/cotton_robe_top": "",
                                "/items/linen_robe_top": "",
                                "/items/bamboo_robe_top": "",
                                "/items/silk_robe_top": "",
                                "/items/radiant_robe_top": "",
                                "/items/dairyhands_bottoms": "",
                                "/items/foragers_bottoms": "",
                                "/items/lumberjacks_bottoms": "",
                                "/items/cheesemakers_bottoms": "",
                                "/items/crafters_bottoms": "",
                                "/items/tailors_bottoms": "",
                                "/items/chefs_bottoms": "",
                                "/items/brewers_bottoms": "",
                                "/items/alchemists_bottoms": "",
                                "/items/enhancers_bottoms": "",
                                "/items/turtle_shell_legs": "",
                                "/items/colossus_plate_legs": "",
                                "/items/demonic_plate_legs": "",
                                "/items/anchorbound_plate_legs": "",
                                "/items/anchorbound_plate_legs_refined": "",
                                "/items/maelstrom_plate_legs": "",
                                "/items/maelstrom_plate_legs_refined": "",
                                "/items/marine_chaps": "",
                                "/items/revenant_chaps": "",
                                "/items/griffin_chaps": "",
                                "/items/kraken_chaps": "",
                                "/items/kraken_chaps_refined": "",
                                "/items/icy_robe_bottoms": "",
                                "/items/flaming_robe_bottoms": "",
                                "/items/luna_robe_bottoms": "",
                                "/items/royal_water_robe_bottoms": "",
                                "/items/royal_water_robe_bottoms_refined": "",
                                "/items/royal_nature_robe_bottoms": "",
                                "/items/royal_nature_robe_bottoms_refined": "",
                                "/items/royal_fire_robe_bottoms": "",
                                "/items/royal_fire_robe_bottoms_refined": "",
                                "/items/cheese_plate_legs": "",
                                "/items/verdant_plate_legs": "",
                                "/items/azure_plate_legs": "",
                                "/items/burble_plate_legs": "",
                                "/items/crimson_plate_legs": "",
                                "/items/rainbow_plate_legs": "",
                                "/items/holy_plate_legs": "",
                                "/items/rough_chaps": "",
                                "/items/reptile_chaps": "",
                                "/items/gobo_chaps": "",
                                "/items/beast_chaps": "",
                                "/items/umbral_chaps": "",
                                "/items/cotton_robe_bottoms": "",
                                "/items/linen_robe_bottoms": "",
                                "/items/bamboo_robe_bottoms": "",
                                "/items/silk_robe_bottoms": "",
                                "/items/radiant_robe_bottoms": "",
                                "/items/enchanted_gloves": "",
                                "/items/pincer_gloves": "",
                                "/items/panda_gloves": "",
                                "/items/magnetic_gloves": "",
                                "/items/dodocamel_gauntlets": "",
                                "/items/dodocamel_gauntlets_refined": "",
                                "/items/sighted_bracers": "",
                                "/items/marksman_bracers": "",
                                "/items/marksman_bracers_refined": "",
                                "/items/chrono_gloves": "",
                                "/items/cheese_gauntlets": "",
                                "/items/verdant_gauntlets": "",
                                "/items/azure_gauntlets": "",
                                "/items/burble_gauntlets": "",
                                "/items/crimson_gauntlets": "",
                                "/items/rainbow_gauntlets": "",
                                "/items/holy_gauntlets": "",
                                "/items/rough_bracers": "",
                                "/items/reptile_bracers": "",
                                "/items/gobo_bracers": "",
                                "/items/beast_bracers": "",
                                "/items/umbral_bracers": "",
                                "/items/cotton_gloves": "",
                                "/items/linen_gloves": "",
                                "/items/bamboo_gloves": "",
                                "/items/silk_gloves": "",
                                "/items/radiant_gloves": "",
                                "/items/collectors_boots": "",
                                "/items/shoebill_shoes": "",
                                "/items/black_bear_shoes": "",
                                "/items/grizzly_bear_shoes": "",
                                "/items/polar_bear_shoes": "",
                                "/items/centaur_boots": "",
                                "/items/sorcerer_boots": "",
                                "/items/cheese_boots": "",
                                "/items/verdant_boots": "",
                                "/items/azure_boots": "",
                                "/items/burble_boots": "",
                                "/items/crimson_boots": "",
                                "/items/rainbow_boots": "",
                                "/items/holy_boots": "",
                                "/items/rough_boots": "",
                                "/items/reptile_boots": "",
                                "/items/gobo_boots": "",
                                "/items/beast_boots": "",
                                "/items/umbral_boots": "",
                                "/items/cotton_boots": "",
                                "/items/linen_boots": "",
                                "/items/bamboo_boots": "",
                                "/items/silk_boots": "",
                                "/items/radiant_boots": "",
                                "/items/small_pouch": "",
                                "/items/medium_pouch": "",
                                "/items/large_pouch": "",
                                "/items/giant_pouch": "",
                                "/items/gluttonous_pouch": "",
                                "/items/guzzling_pouch": "",
                                "/items/necklace_of_efficiency": "",
                                "/items/fighter_necklace": "",
                                "/items/ranger_necklace": "",
                                "/items/wizard_necklace": "",
                                "/items/necklace_of_wisdom": "",
                                "/items/necklace_of_speed": "",
                                "/items/philosophers_necklace": "",
                                "/items/earrings_of_gathering": "",
                                "/items/earrings_of_essence_find": "",
                                "/items/earrings_of_armor": "",
                                "/items/earrings_of_regeneration": "",
                                "/items/earrings_of_resistance": "",
                                "/items/earrings_of_rare_find": "",
                                "/items/earrings_of_critical_strike": "",
                                "/items/philosophers_earrings": "",
                                "/items/ring_of_gathering": "",
                                "/items/ring_of_essence_find": "",
                                "/items/ring_of_armor": "",
                                "/items/ring_of_regeneration": "",
                                "/items/ring_of_resistance": "",
                                "/items/ring_of_rare_find": "",
                                "/items/ring_of_critical_strike": "",
                                "/items/philosophers_ring": "",
                                "/items/trainee_milking_charm": "",
                                "/items/basic_milking_charm": "",
                                "/items/advanced_milking_charm": "",
                                "/items/expert_milking_charm": "",
                                "/items/master_milking_charm": "",
                                "/items/grandmaster_milking_charm": "",
                                "/items/trainee_foraging_charm": "",
                                "/items/basic_foraging_charm": "",
                                "/items/advanced_foraging_charm": "",
                                "/items/expert_foraging_charm": "",
                                "/items/master_foraging_charm": "",
                                "/items/grandmaster_foraging_charm": "",
                                "/items/trainee_woodcutting_charm": "",
                                "/items/basic_woodcutting_charm": "",
                                "/items/advanced_woodcutting_charm": "",
                                "/items/expert_woodcutting_charm": "",
                                "/items/master_woodcutting_charm": "",
                                "/items/grandmaster_woodcutting_charm": "",
                                "/items/trainee_cheesesmithing_charm": "",
                                "/items/basic_cheesesmithing_charm": "",
                                "/items/advanced_cheesesmithing_charm": "",
                                "/items/expert_cheesesmithing_charm": "",
                                "/items/master_cheesesmithing_charm": "",
                                "/items/grandmaster_cheesesmithing_charm": "",
                                "/items/trainee_crafting_charm": "",
                                "/items/basic_crafting_charm": "",
                                "/items/advanced_crafting_charm": "",
                                "/items/expert_crafting_charm": "",
                                "/items/master_crafting_charm": "",
                                "/items/grandmaster_crafting_charm": "",
                                "/items/trainee_tailoring_charm": "",
                                "/items/basic_tailoring_charm": "",
                                "/items/advanced_tailoring_charm": "",
                                "/items/expert_tailoring_charm": "",
                                "/items/master_tailoring_charm": "",
                                "/items/grandmaster_tailoring_charm": "",
                                "/items/trainee_cooking_charm": "",
                                "/items/basic_cooking_charm": "",
                                "/items/advanced_cooking_charm": "",
                                "/items/expert_cooking_charm": "",
                                "/items/master_cooking_charm": "",
                                "/items/grandmaster_cooking_charm": "",
                                "/items/trainee_brewing_charm": "",
                                "/items/basic_brewing_charm": "",
                                "/items/advanced_brewing_charm": "",
                                "/items/expert_brewing_charm": "",
                                "/items/master_brewing_charm": "",
                                "/items/grandmaster_brewing_charm": "",
                                "/items/trainee_alchemy_charm": "",
                                "/items/basic_alchemy_charm": "",
                                "/items/advanced_alchemy_charm": "",
                                "/items/expert_alchemy_charm": "",
                                "/items/master_alchemy_charm": "",
                                "/items/grandmaster_alchemy_charm": "",
                                "/items/trainee_enhancing_charm": "",
                                "/items/basic_enhancing_charm": "",
                                "/items/advanced_enhancing_charm": "",
                                "/items/expert_enhancing_charm": "",
                                "/items/master_enhancing_charm": "",
                                "/items/grandmaster_enhancing_charm": "",
                                "/items/trainee_stamina_charm": "",
                                "/items/basic_stamina_charm": "",
                                "/items/advanced_stamina_charm": "",
                                "/items/expert_stamina_charm": "",
                                "/items/master_stamina_charm": "",
                                "/items/grandmaster_stamina_charm": "",
                                "/items/trainee_intelligence_charm": "",
                                "/items/basic_intelligence_charm": "",
                                "/items/advanced_intelligence_charm": "",
                                "/items/expert_intelligence_charm": "",
                                "/items/master_intelligence_charm": "",
                                "/items/grandmaster_intelligence_charm": "",
                                "/items/trainee_attack_charm": "",
                                "/items/basic_attack_charm": "",
                                "/items/advanced_attack_charm": "",
                                "/items/expert_attack_charm": "",
                                "/items/master_attack_charm": "",
                                "/items/grandmaster_attack_charm": "",
                                "/items/trainee_defense_charm": "",
                                "/items/basic_defense_charm": "",
                                "/items/advanced_defense_charm": "",
                                "/items/expert_defense_charm": "",
                                "/items/master_defense_charm": "",
                                "/items/grandmaster_defense_charm": "",
                                "/items/trainee_melee_charm": "",
                                "/items/basic_melee_charm": "",
                                "/items/advanced_melee_charm": "",
                                "/items/expert_melee_charm": "",
                                "/items/master_melee_charm": "",
                                "/items/grandmaster_melee_charm": "",
                                "/items/trainee_ranged_charm": "",
                                "/items/basic_ranged_charm": "",
                                "/items/advanced_ranged_charm": "",
                                "/items/expert_ranged_charm": "",
                                "/items/master_ranged_charm": "",
                                "/items/grandmaster_ranged_charm": "",
                                "/items/trainee_magic_charm": "",
                                "/items/basic_magic_charm": "",
                                "/items/advanced_magic_charm": "",
                                "/items/expert_magic_charm": "",
                                "/items/master_magic_charm": "",
                                "/items/grandmaster_magic_charm": "",
                                "/items/basic_task_badge": "",
                                "/items/advanced_task_badge": "",
                                "/items/expert_task_badge": "",
                                "/items/celestial_brush": "",
                                "/items/cheese_brush": "",
                                "/items/verdant_brush": "",
                                "/items/azure_brush": "",
                                "/items/burble_brush": "",
                                "/items/crimson_brush": "",
                                "/items/rainbow_brush": "",
                                "/items/holy_brush": "",
                                "/items/celestial_shears": "",
                                "/items/cheese_shears": "",
                                "/items/verdant_shears": "",
                                "/items/azure_shears": "",
                                "/items/burble_shears": "",
                                "/items/crimson_shears": "",
                                "/items/rainbow_shears": "",
                                "/items/holy_shears": "",
                                "/items/celestial_hatchet": "",
                                "/items/cheese_hatchet": "",
                                "/items/verdant_hatchet": "",
                                "/items/azure_hatchet": "",
                                "/items/burble_hatchet": "",
                                "/items/crimson_hatchet": "",
                                "/items/rainbow_hatchet": "",
                                "/items/holy_hatchet": "",
                                "/items/celestial_hammer": "",
                                "/items/cheese_hammer": "",
                                "/items/verdant_hammer": "",
                                "/items/azure_hammer": "",
                                "/items/burble_hammer": "",
                                "/items/crimson_hammer": "",
                                "/items/rainbow_hammer": "",
                                "/items/holy_hammer": "",
                                "/items/celestial_chisel": "",
                                "/items/cheese_chisel": "",
                                "/items/verdant_chisel": "",
                                "/items/azure_chisel": "",
                                "/items/burble_chisel": "",
                                "/items/crimson_chisel": "",
                                "/items/rainbow_chisel": "",
                                "/items/holy_chisel": "",
                                "/items/celestial_needle": "",
                                "/items/cheese_needle": "",
                                "/items/verdant_needle": "",
                                "/items/azure_needle": "",
                                "/items/burble_needle": "",
                                "/items/crimson_needle": "",
                                "/items/rainbow_needle": "",
                                "/items/holy_needle": "",
                                "/items/celestial_spatula": "",
                                "/items/cheese_spatula": "",
                                "/items/verdant_spatula": "",
                                "/items/azure_spatula": "",
                                "/items/burble_spatula": "",
                                "/items/crimson_spatula": "",
                                "/items/rainbow_spatula": "",
                                "/items/holy_spatula": "",
                                "/items/celestial_pot": "",
                                "/items/cheese_pot": "",
                                "/items/verdant_pot": "",
                                "/items/azure_pot": "",
                                "/items/burble_pot": "",
                                "/items/crimson_pot": "",
                                "/items/rainbow_pot": "",
                                "/items/holy_pot": "",
                                "/items/celestial_alembic": "",
                                "/items/cheese_alembic": "",
                                "/items/verdant_alembic": "",
                                "/items/azure_alembic": "",
                                "/items/burble_alembic": "",
                                "/items/crimson_alembic": "",
                                "/items/rainbow_alembic": "",
                                "/items/holy_alembic": "",
                                "/items/celestial_enhancer": "",
                                "/items/cheese_enhancer": "",
                                "/items/verdant_enhancer": "",
                                "/items/azure_enhancer": "",
                                "/items/burble_enhancer": "",
                                "/items/crimson_enhancer": "",
                                "/items/rainbow_enhancer": "",
                                "/items/holy_enhancer": "",
                                "/items/milk": "mooo",
                                "/items/verdant_milk": "moooo",
                                "/items/azure_milk": "mooooo",
                                "/items/burble_milk": "moooooo",
                                "/items/crimson_milk": "mooooooo",
                                "/items/rainbow_milk": "moooooooo",
                                "/items/holy_milk": "mooooooooo",
                                "/items/cheese": "",
                                "/items/verdant_cheese": "",
                                "/items/azure_cheese": "",
                                "/items/burble_cheese": "",
                                "/items/crimson_cheese": "",
                                "/items/rainbow_cheese": "",
                                "/items/holy_cheese": "",
                                "/items/log": "",
                                "/items/birch_log": "",
                                "/items/cedar_log": "",
                                "/items/purpleheart_log": "",
                                "/items/ginkgo_log": "",
                                "/items/redwood_log": "",
                                "/items/arcane_log": "",
                                "/items/lumber": "",
                                "/items/birch_lumber": "",
                                "/items/cedar_lumber": "",
                                "/items/purpleheart_lumber": "",
                                "/items/ginkgo_lumber": "",
                                "/items/redwood_lumber": "",
                                "/items/arcane_lumber": "",
                                "/items/rough_hide": "",
                                "/items/reptile_hide": "",
                                "/items/gobo_hide": "",
                                "/items/beast_hide": "",
                                "/items/umbral_hide": "",
                                "/items/rough_leather": "",
                                "/items/reptile_leather": "",
                                "/items/gobo_leather": "",
                                "/items/beast_leather": "",
                                "/items/umbral_leather": "",
                                "/items/cotton": "",
                                "/items/flax": "",
                                "/items/bamboo_branch": "",
                                "/items/cocoon": "",
                                "/items/radiant_fiber": "",
                                "/items/cotton_fabric": "",
                                "/items/linen_fabric": "",
                                "/items/bamboo_fabric": "",
                                "/items/silk_fabric": "",
                                "/items/radiant_fabric": "",
                                "/items/egg": "",
                                "/items/wheat": "",
                                "/items/sugar": "",
                                "/items/blueberry": "",
                                "/items/blackberry": "",
                                "/items/strawberry": "",
                                "/items/mooberry": "",
                                "/items/marsberry": "",
                                "/items/spaceberry": "",
                                "/items/apple": "",
                                "/items/orange": "",
                                "/items/plum": "",
                                "/items/peach": "",
                                "/items/dragon_fruit": "",
                                "/items/star_fruit": "",
                                "/items/arabica_coffee_bean": "",
                                "/items/robusta_coffee_bean": "",
                                "/items/liberica_coffee_bean": "",
                                "/items/excelsa_coffee_bean": "",
                                "/items/fieriosa_coffee_bean": "",
                                "/items/spacia_coffee_bean": "",
                                "/items/green_tea_leaf": "",
                                "/items/black_tea_leaf": "",
                                "/items/burble_tea_leaf": "",
                                "/items/moolong_tea_leaf": "",
                                "/items/red_tea_leaf": "",
                                "/items/emp_tea_leaf": "",
                                "/items/catalyst_of_coinification": "Used in alchemy to increase the coinifying success rate by 15% (multiplicative). One catalyst is consumed on success.",
                                "/items/catalyst_of_decomposition": "Used in alchemy to increase the decomposition success rate by 15% (multiplicative). One catalyst is consumed on success.",
                                "/items/catalyst_of_transmutation": "Used in alchemy to increase the transmutation success rate by 15% (multiplicative). One catalyst is consumed on success.",
                                "/items/prime_catalyst": "Used in alchemy to increase the success rate of any action by 25% (multiplicative). One catalyst is consumed on success.",
                                "/items/snake_fang": "Material used in smithing Snake Fang Dirk",
                                "/items/shoebill_feather": "Material used in tailoring Shoebill Shoes",
                                "/items/snail_shell": "Material used in smithing Snail Shell Helmet",
                                "/items/crab_pincer": "Material used in smithing Pincer Gloves",
                                "/items/turtle_shell": "Material used in smithing Turtle Shell Plate Body or Legs",
                                "/items/marine_scale": "Material used in tailoring Marine Tunic or Chaps",
                                "/items/treant_bark": "Material used in crafting Treant Shield",
                                "/items/centaur_hoof": "Material used in tailoring Centaur Boots",
                                "/items/luna_wing": "Material used in tailoring Luna Robe Top or Bottoms",
                                "/items/gobo_rag": "Material used in tailoring Collector's Boots",
                                "/items/goggles": "Material used in smithing Vision Helmet",
                                "/items/magnifying_glass": "Material used in smithing Vision Shield or tailoring Sighted Bracers",
                                "/items/eye_of_the_watcher": "Material used in crafting Eye Watch or Watchful Relic",
                                "/items/icy_cloth": "Material used in tailoring Icy Robe Top or Bottoms",
                                "/items/flaming_cloth": "Material used in tailoring Flaming Robe Top or Bottoms",
                                "/items/sorcerers_sole": "Material used in tailoring Sorcerer Boots",
                                "/items/chrono_sphere": "Material used in tailoring Enchanted Gloves or Chrono Gloves",
                                "/items/frost_sphere": "Material used in crafting Frost Staff",
                                "/items/panda_fluff": "Material used in smithing Panda Gloves",
                                "/items/black_bear_fluff": "Material used in smithing Black Bear Shoes",
                                "/items/grizzly_bear_fluff": "Material used in smithing Grizzly Bear Shoes",
                                "/items/polar_bear_fluff": "Material used in smithing Polar Bear Shoes",
                                "/items/red_panda_fluff": "Material used in tailoring Red Culinary Hat or Fluffy Red Hat",
                                "/items/magnet": "Material used in smithing Magnetic Gloves",
                                "/items/stalactite_shard": "Material used in smithing Stalactite Spear or Spiked Bulwark",
                                "/items/living_granite": "Material used in smithing Granite Bludgeon or Spiked Bulwark",
                                "/items/colossus_core": "Material used in smithing Colossus Plate Body or Legs",
                                "/items/vampire_fang": "Material used in smithing Vampire Fang Dirk or crafting Vampiric Bow",
                                "/items/werewolf_claw": "Material used in smithing Werewolf Slasher or crafting Vampiric Bow",
                                "/items/revenant_anima": "Material used in tailoring Revenant Tunic or Chaps",
                                "/items/soul_fragment": "Material used in crafting Soul Hunter Crossbow",
                                "/items/infernal_ember": "Material used in crafting Infernal Battlestaff",
                                "/items/demonic_core": "Material used in smithing Demonic Plate Body or Legs",
                                "/items/griffin_leather": "Material used in cheesesmithing Griffin Bulwark and tailoring Griffin Tunic or Chaps",
                                "/items/manticore_sting": "Material used in crafting Manticore Shield",
                                "/items/jackalope_antler": "Material used in crafting Jackalope Staff",
                                "/items/dodocamel_plume": "Material used in smithing Dodocamel Gauntlets",
                                "/items/griffin_talon": "Material used in smithing Griffin Bulwark",
                                "/items/chimerical_refinement_shard": "Material used in upgrading level 95 equipment and Chimerical Quiver from the Chimerical Den",
                                "/items/acrobats_ribbon": "Material used in tailoring Acrobatic Hood",
                                "/items/magicians_cloth": "Material used in tailoring Magician's Hat",
                                "/items/chaotic_chain": "Material used in smithing Chaotic Flail",
                                "/items/cursed_ball": "Material used in crafting Cursed Bow",
                                "/items/sinister_refinement_shard": "Material used in upgrading level 95 equipment and Sinister Cape from the Sinister Circus",
                                "/items/royal_cloth": "Material used in tailoring Royal Robe Top or Bottoms",
                                "/items/knights_ingot": "Material used in smithing Knight's Aegis",
                                "/items/bishops_scroll": "Material used in crafting Bishop's Codex",
                                "/items/regal_jewel": "Material used in smithing Regal Sword and Furious Spear",
                                "/items/sundering_jewel": "Material used in crafting Sundering Crossbow and smithing Furious Spear",
                                "/items/enchanted_refinement_shard": "Material used in upgrading level 95 equipment and Enchanted Cloak from the Enchanted Fortress",
                                "/items/marksman_brooch": "Material used in tailoring Marksman Bracers",
                                "/items/corsair_crest": "Material used in smithing Corsair Helmet",
                                "/items/damaged_anchor": "Material used in smithing Anchorbound Plate Body or Legs",
                                "/items/maelstrom_plating": "Material used in smithing Maelstrom Plate Body or Legs",
                                "/items/kraken_leather": "Material used in tailoring Kraken Tunic or Chaps",
                                "/items/kraken_fang": "Material used in crafting Rippling, Blooming, or Blazing Trident",
                                "/items/pirate_refinement_shard": "Material used in upgrading level 95 equipment from the Pirate's Cove",
                                "/items/butter_of_proficiency": "Material used in producing special skilling tools and outfits",
                                "/items/thread_of_expertise": "Material used in producing special skilling outfits",
                                "/items/branch_of_insight": "Material used in producing special skilling tools and outfits",
                                "/items/gluttonous_energy": "Used for tailoring Gluttonous Pouch",
                                "/items/guzzling_energy": "Used for tailoring Guzzling Pouch",
                                "/items/milking_essence": "Used for brewing milking tea and crafting alchemy catalyst",
                                "/items/foraging_essence": "Used for brewing foraging tea and crafting alchemy catalyst",
                                "/items/woodcutting_essence": "Used for brewing woodcutting tea and crafting alchemy catalyst",
                                "/items/cheesesmithing_essence": "Used for brewing cheesesmithing tea and crafting alchemy catalyst",
                                "/items/crafting_essence": "Used for brewing crafting tea and crafting alchemy catalyst",
                                "/items/tailoring_essence": "Used for brewing tailoring tea and crafting alchemy catalyst",
                                "/items/cooking_essence": "Used for brewing cooking tea and crafting alchemy catalyst",
                                "/items/brewing_essence": "Used for brewing brewing tea and crafting alchemy catalyst",
                                "/items/alchemy_essence": "Used for brewing alchemy tea and crafting alchemy catalyst",
                                "/items/enhancing_essence": "Used for brewing enhancing tea and crafting alchemy catalyst",
                                "/items/swamp_essence": "Used for enhancing special equipment from Swamp Planet",
                                "/items/aqua_essence": "Used for enhancing special equipment from Aqua Planet",
                                "/items/jungle_essence": "Used for enhancing special equipment from Jungle Planet",
                                "/items/gobo_essence": "Used for enhancing special equipment from Gobo Planet",
                                "/items/eyessence": "Used for enhancing special equipment from Planet Of The Eyes",
                                "/items/sorcerer_essence": "Used for enhancing special equipment from Sorcerer's Tower",
                                "/items/bear_essence": "Used for enhancing special equipment from Bear With It",
                                "/items/golem_essence": "Used for enhancing special equipment from Golem Cave",
                                "/items/twilight_essence": "Used for enhancing special equipment from Twilight Zone",
                                "/items/abyssal_essence": "Used for enhancing special equipment from Infernal Abyss",
                                "/items/chimerical_essence": "Used for enhancing special equipment from the Chimerical Den",
                                "/items/sinister_essence": "Used for enhancing special equipment from the Sinister Circus",
                                "/items/enchanted_essence": "Used for enhancing special equipment from the Enchanted Fortress",
                                "/items/pirate_essence": "Used for enhancing special equipment from the Pirate Cove",
                                "/items/task_crystal": "Crystals obtained from Purple. They can be used to craft special trinkets.",
                                "/items/star_fragment": "Fragments with a celestial origin found in Meteorite Caches. They can be used to craft jewelry.",
                                "/items/pearl": "A shiny gem often found from Treasure Chests",
                                "/items/amber": "A shiny gem often found from Treasure Chests",
                                "/items/garnet": "A shiny gem often found from Treasure Chests",
                                "/items/jade": "A shiny gem often found from Treasure Chests",
                                "/items/amethyst": "A shiny gem often found from Treasure Chests",
                                "/items/moonstone": "A shiny gem often found from Treasure Chests",
                                "/items/sunstone": "A shiny gem in the shape of the sun.",
                                "/items/philosophers_stone": "A legendary stone of immense power.",
                                "/items/crushed_pearl": "Used to be a piece of pearl",
                                "/items/crushed_amber": "Used to be a piece of amber",
                                "/items/crushed_garnet": "Used to be a piece of garnet.",
                                "/items/crushed_jade": "Used to be a piece of jade",
                                "/items/crushed_amethyst": "Used to be a piece of amethyst",
                                "/items/crushed_moonstone": "Used to be a piece of moonstone",
                                "/items/crushed_sunstone": "Used to be a piece of sunstone",
                                "/items/crushed_philosophers_stone": "Used to be a piece of a philosopher's stone",
                                "/items/shard_of_protection": "Found from Artisan's Crates. They are used for crafting Mirror of Protection",
                                "/items/mirror_of_protection": "A rare artifact that functions as a copy of any equipment for enhancing protection"
                            },
                            "itemCategoryNames": {
                                "/item_categories/currency": "Currency",
                                "/item_categories/loot": "Loot",
                                "/item_categories/key": "Key",
                                "/item_categories/food": "Food",
                                "/item_categories/drink": "Drink",
                                "/item_categories/ability_book": "Ability Book",
                                "/item_categories/equipment": "Equipment",
                                "/item_categories/resource": "Resource"
                            },
                            "itemCategoryPluralNames": {
                                "/item_categories/currency": "Currencies",
                                "/item_categories/loot": "Loots",
                                "/item_categories/key": "Keys",
                                "/item_categories/food": "Foods",
                                "/item_categories/drink": "Drinks",
                                "/item_categories/ability_book": "Ability Books",
                                "/item_categories/equipment": "Equipment",
                                "/item_categories/resource": "Resources"
                            },
                            "equipmentTypeNames": {
                                "/equipment_types/two_hand": "Two Hand",
                                "/equipment_types/main_hand": "Main Hand",
                                "/equipment_types/off_hand": "Off Hand",
                                "/equipment_types/back": "Back",
                                "/equipment_types/head": "Head",
                                "/equipment_types/body": "Body",
                                "/equipment_types/legs": "Legs",
                                "/equipment_types/hands": "Hands",
                                "/equipment_types/feet": "Feet",
                                "/equipment_types/pouch": "Pouch",
                                "/equipment_types/neck": "Neck",
                                "/equipment_types/earrings": "Earrings",
                                "/equipment_types/ring": "Ring",
                                "/equipment_types/charm": "Charm",
                                "/equipment_types/trinket": "Trinket",
                                "/equipment_types/milking_tool": "Milking Tool",
                                "/equipment_types/foraging_tool": "Foraging Tool",
                                "/equipment_types/woodcutting_tool": "Woodcutting Tool",
                                "/equipment_types/cheesesmithing_tool": "Cheesesmithing Tool",
                                "/equipment_types/crafting_tool": "Crafting Tool",
                                "/equipment_types/tailoring_tool": "Tailoring Tool",
                                "/equipment_types/cooking_tool": "Cooking Tool",
                                "/equipment_types/brewing_tool": "Brewing Tool",
                                "/equipment_types/alchemy_tool": "Alchemy Tool",
                                "/equipment_types/enhancing_tool": "Enhancing Tool"
                            },
                            "combatStyleNames": {
                                "/combat_styles/stab": "Stab",
                                "/combat_styles/slash": "Slash",
                                "/combat_styles/smash": "Smash",
                                "/combat_styles/ranged": "Ranged",
                                "/combat_styles/magic": "Magic",
                                "/combat_styles/heal": "Heal"
                            },
                            "damageTypeNames": {
                                "/damage_types/physical": "Physical",
                                "/damage_types/water": "Water",
                                "/damage_types/nature": "Nature",
                                "/damage_types/fire": "Fire"
                            },
                            "monsterNames": {
                                "/monsters/abyssal_imp": "Abyssal Imp",
                                "/monsters/acrobat": "Acrobat",
                                "/monsters/anchor_shark": "Anchor Shark",
                                "/monsters/aquahorse": "Aquahorse",
                                "/monsters/black_bear": "Black Bear",
                                "/monsters/gobo_boomy": "Boomy",
                                "/monsters/brine_marksman": "Brine Marksman",
                                "/monsters/butterjerry": "Butterjerry",
                                "/monsters/captain_fishhook": "Captain Fishhook",
                                "/monsters/centaur_archer": "Centaur Archer",
                                "/monsters/chronofrost_sorcerer": "Chronofrost Sorcerer",
                                "/monsters/crystal_colossus": "Crystal Colossus",
                                "/monsters/demonic_overlord": "Demonic Overlord",
                                "/monsters/deranged_jester": "Deranged Jester",
                                "/monsters/dodocamel": "Dodocamel",
                                "/monsters/dusk_revenant": "Dusk Revenant",
                                "/monsters/elementalist": "Elementalist",
                                "/monsters/enchanted_bishop": "Enchanted Bishop",
                                "/monsters/enchanted_king": "Enchanted King",
                                "/monsters/enchanted_knight": "Enchanted Knight",
                                "/monsters/enchanted_pawn": "Enchanted Pawn",
                                "/monsters/enchanted_queen": "Enchanted Queen",
                                "/monsters/enchanted_rook": "Enchanted Rook",
                                "/monsters/eye": "Eye",
                                "/monsters/eyes": "Eyes",
                                "/monsters/flame_sorcerer": "Flame Sorcerer",
                                "/monsters/fly": "Fly",
                                "/monsters/frog": "Frogger",
                                "/monsters/sea_snail": "Gary",
                                "/monsters/giant_shoebill": "Giant Shoebill",
                                "/monsters/gobo_chieftain": "Gobo Chieftain",
                                "/monsters/granite_golem": "Granite Golem",
                                "/monsters/griffin": "Griffin",
                                "/monsters/grizzly_bear": "Grizzly Bear",
                                "/monsters/gummy_bear": "Gummy Bear",
                                "/monsters/crab": "I Pinch",
                                "/monsters/ice_sorcerer": "Ice Sorcerer",
                                "/monsters/infernal_warlock": "Infernal Warlock",
                                "/monsters/jackalope": "Jackalope",
                                "/monsters/rat": "Jerry",
                                "/monsters/juggler": "Juggler",
                                "/monsters/jungle_sprite": "Jungle Sprite",
                                "/monsters/luna_empress": "Luna Empress",
                                "/monsters/magician": "Magician",
                                "/monsters/magnetic_golem": "Magnetic Golem",
                                "/monsters/manticore": "Manticore",
                                "/monsters/marine_huntress": "Marine Huntress",
                                "/monsters/myconid": "Myconid",
                                "/monsters/nom_nom": "Nom Nom",
                                "/monsters/novice_sorcerer": "Novice Sorcerer",
                                "/monsters/panda": "Panda",
                                "/monsters/polar_bear": "Polar Bear",
                                "/monsters/porcupine": "Porcupine",
                                "/monsters/rabid_rabbit": "Rabid Rabbit",
                                "/monsters/red_panda": "Red Panda",
                                "/monsters/alligator": "Sherlock",
                                "/monsters/gobo_shooty": "Shooty",
                                "/monsters/skunk": "Skunk",
                                "/monsters/gobo_slashy": "Slashy",
                                "/monsters/slimy": "Slimy",
                                "/monsters/gobo_smashy": "Smashy",
                                "/monsters/soul_hunter": "Soul Hunter",
                                "/monsters/squawker": "Squawker",
                                "/monsters/gobo_stabby": "Stabby",
                                "/monsters/stalactite_golem": "Stalactite Golem",
                                "/monsters/swampy": "Swampy",
                                "/monsters/the_kraken": "The Kraken",
                                "/monsters/the_watcher": "The Watcher",
                                "/monsters/snake": "Thnake",
                                "/monsters/tidal_conjuror": "Tidal Conjuror",
                                "/monsters/treant": "Treant",
                                "/monsters/turtle": "Turuto",
                                "/monsters/vampire": "Vampire",
                                "/monsters/veyes": "Veyes",
                                "/monsters/werewolf": "Werewolf",
                                "/monsters/zombie": "Zombie",
                                "/monsters/zombie_bear": "Zombie Bear"
                            },
                            "combatTriggerDependencyNames": {
                                "/combat_trigger_dependencies/all_allies": "Allies' Total",
                                "/combat_trigger_dependencies/all_enemies": "Enemies' Total",
                                "/combat_trigger_dependencies/self": "My",
                                "/combat_trigger_dependencies/targeted_enemy": "Target Enemy's"
                            },
                            "combatTriggerConditionNames": {
                                "/combat_trigger_conditions/number_of_active_units": "# of Active Units",
                                "/combat_trigger_conditions/number_of_dead_units": "# of Dead Units",
                                "/combat_trigger_conditions/attack_coffee": "Attack Coffee",
                                "/combat_trigger_conditions/berserk": "Berserk",
                                "/combat_trigger_conditions/blind_status": "Blind Status",
                                "/combat_trigger_conditions/channeling_coffee": "Channeling Coffee",
                                "/combat_trigger_conditions/crippling_slash": "Crippling Slash Debuff",
                                "/combat_trigger_conditions/critical_aura": "Critical Aura",
                                "/combat_trigger_conditions/critical_coffee": "Critical Coffee",
                                "/combat_trigger_conditions/current_hp": "Current Hp",
                                "/combat_trigger_conditions/current_mp": "Current Mp",
                                "/combat_trigger_conditions/curse": "Curse",
                                "/combat_trigger_conditions/defense_coffee": "Defense Coffee",
                                "/combat_trigger_conditions/elemental_affinity": "Elemental Affinity",
                                "/combat_trigger_conditions/elusiveness": "Elusiveness",
                                "/combat_trigger_conditions/enrage": "Enrage",
                                "/combat_trigger_conditions/fierce_aura": "Fierce Aura",
                                "/combat_trigger_conditions/fracturing_impact": "Fracturing Impact Debuff",
                                "/combat_trigger_conditions/frenzy": "Frenzy",
                                "/combat_trigger_conditions/frost_surge": "Frost Surge Debuff",
                                "/combat_trigger_conditions/fury": "Fury",
                                "/combat_trigger_conditions/guardian_aura": "Guardian Aura",
                                "/combat_trigger_conditions/ice_spear": "Ice Spear Debuff",
                                "/combat_trigger_conditions/insanity": "Insanity",
                                "/combat_trigger_conditions/intelligence_coffee": "Intelligence Coffee",
                                "/combat_trigger_conditions/invincible": "Invincible",
                                "/combat_trigger_conditions/lowest_hp_percentage": "Lowest HP %",
                                "/combat_trigger_conditions/lucky_coffee": "Lucky Coffee",
                                "/combat_trigger_conditions/magic_coffee": "Magic Coffee",
                                "/combat_trigger_conditions/maim": "Maim Debuff",
                                "/combat_trigger_conditions/mana_spring": "Mana Spring",
                                "/combat_trigger_conditions/melee_coffee": "Melee Coffee",
                                "/combat_trigger_conditions/missing_hp": "Missing Hp",
                                "/combat_trigger_conditions/missing_mp": "Missing Mp",
                                "/combat_trigger_conditions/mystic_aura": "Mystic Aura",
                                "/combat_trigger_conditions/pestilent_shot": "Pestilent Shot Debuff",
                                "/combat_trigger_conditions/precision": "Precision",
                                "/combat_trigger_conditions/provoke": "Provoke",
                                "/combat_trigger_conditions/puncture": "Puncture Debuff",
                                "/combat_trigger_conditions/ranged_coffee": "Ranged Coffee",
                                "/combat_trigger_conditions/retribution": "Retribution",
                                "/combat_trigger_conditions/silence_status": "Silence Status",
                                "/combat_trigger_conditions/smoke_burst": "Smoke Burst Debuff",
                                "/combat_trigger_conditions/speed_aura": "Speed Aura",
                                "/combat_trigger_conditions/spike_shell": "Spike Shell",
                                "/combat_trigger_conditions/stamina_coffee": "Stamina Coffee",
                                "/combat_trigger_conditions/stun_status": "Stun Status",
                                "/combat_trigger_conditions/swiftness_coffee": "Swiftness Coffee",
                                "/combat_trigger_conditions/taunt": "Taunt",
                                "/combat_trigger_conditions/toughness": "Toughness",
                                "/combat_trigger_conditions/toxic_pollen": "Toxic Pollen Debuff",
                                "/combat_trigger_conditions/vampirism": "Vampirism",
                                "/combat_trigger_conditions/weaken": "Weaken",
                                "/combat_trigger_conditions/wisdom_coffee": "Wisdom Coffee"
                            },
                            "combatTriggerComparatorNames": {
                                "/combat_trigger_comparators/less_than_equal": "<=",
                                "/combat_trigger_comparators/greater_than_equal": ">=",
                                "/combat_trigger_comparators/is_active": "Is Active",
                                "/combat_trigger_comparators/is_inactive": "Is Inactive"
                            },
                            "shopCategoryNames": {
                                "/shop_categories/dungeon": "Dungeon",
                                "/shop_categories/general": "General",
                                "/shop_categories/tester": "Tester"
                            },
                            "actionNames": {
                                "/actions/milking/cow": "Cow",
                                "/actions/milking/verdant_cow": "Verdant Cow",
                                "/actions/milking/azure_cow": "Azure Cow",
                                "/actions/milking/burble_cow": "Burble Cow",
                                "/actions/milking/crimson_cow": "Crimson Cow",
                                "/actions/milking/unicow": "Unicow",
                                "/actions/milking/holy_cow": "Holy Cow",
                                "/actions/foraging/egg": "Egg",
                                "/actions/foraging/wheat": "Wheat",
                                "/actions/foraging/sugar": "Sugar",
                                "/actions/foraging/cotton": "Cotton",
                                "/actions/foraging/farmland": "Farmland",
                                "/actions/foraging/blueberry": "Blueberry",
                                "/actions/foraging/apple": "Apple",
                                "/actions/foraging/arabica_coffee_bean": "Arabica Coffee Bean",
                                "/actions/foraging/flax": "Flax",
                                "/actions/foraging/shimmering_lake": "Shimmering Lake",
                                "/actions/foraging/blackberry": "Blackberry",
                                "/actions/foraging/orange": "Orange",
                                "/actions/foraging/robusta_coffee_bean": "Robusta Coffee Bean",
                                "/actions/foraging/misty_forest": "Misty Forest",
                                "/actions/foraging/strawberry": "Strawberry",
                                "/actions/foraging/plum": "Plum",
                                "/actions/foraging/liberica_coffee_bean": "Liberica Coffee Bean",
                                "/actions/foraging/bamboo_branch": "Bamboo Branch",
                                "/actions/foraging/burble_beach": "Burble Beach",
                                "/actions/foraging/mooberry": "Mooberry",
                                "/actions/foraging/peach": "Peach",
                                "/actions/foraging/excelsa_coffee_bean": "Excelsa Coffee Bean",
                                "/actions/foraging/cocoon": "Cocoon",
                                "/actions/foraging/silly_cow_valley": "Silly Cow Valley",
                                "/actions/foraging/marsberry": "Marsberry",
                                "/actions/foraging/dragon_fruit": "Dragon Fruit",
                                "/actions/foraging/fieriosa_coffee_bean": "Fieriosa Coffee Bean",
                                "/actions/foraging/olympus_mons": "Olympus Mons",
                                "/actions/foraging/spaceberry": "Spaceberry",
                                "/actions/foraging/star_fruit": "Star Fruit",
                                "/actions/foraging/spacia_coffee_bean": "Spacia Coffee Bean",
                                "/actions/foraging/radiant_fiber": "Radiant Fiber",
                                "/actions/foraging/asteroid_belt": "Asteroid Belt",
                                "/actions/woodcutting/tree": "Tree",
                                "/actions/woodcutting/birch_tree": "Birch Tree",
                                "/actions/woodcutting/cedar_tree": "Cedar Tree",
                                "/actions/woodcutting/purpleheart_tree": "Purpleheart Tree",
                                "/actions/woodcutting/ginkgo_tree": "Ginkgo Tree",
                                "/actions/woodcutting/redwood_tree": "Redwood Tree",
                                "/actions/woodcutting/arcane_tree": "Arcane Tree",
                                "/actions/cheesesmithing/cheese": "Cheese",
                                "/actions/cheesesmithing/cheese_boots": "Cheese Boots",
                                "/actions/cheesesmithing/cheese_gauntlets": "Cheese Gauntlets",
                                "/actions/cheesesmithing/cheese_sword": "Cheese Sword",
                                "/actions/cheesesmithing/cheese_brush": "Cheese Brush",
                                "/actions/cheesesmithing/cheese_shears": "Cheese Shears",
                                "/actions/cheesesmithing/cheese_hatchet": "Cheese Hatchet",
                                "/actions/cheesesmithing/cheese_spear": "Cheese Spear",
                                "/actions/cheesesmithing/cheese_hammer": "Cheese Hammer",
                                "/actions/cheesesmithing/cheese_chisel": "Cheese Chisel",
                                "/actions/cheesesmithing/cheese_needle": "Cheese Needle",
                                "/actions/cheesesmithing/cheese_spatula": "Cheese Spatula",
                                "/actions/cheesesmithing/cheese_pot": "Cheese Pot",
                                "/actions/cheesesmithing/cheese_mace": "Cheese Mace",
                                "/actions/cheesesmithing/cheese_alembic": "Cheese Alembic",
                                "/actions/cheesesmithing/cheese_enhancer": "Cheese Enhancer",
                                "/actions/cheesesmithing/cheese_helmet": "Cheese Helmet",
                                "/actions/cheesesmithing/cheese_buckler": "Cheese Buckler",
                                "/actions/cheesesmithing/cheese_bulwark": "Cheese Bulwark",
                                "/actions/cheesesmithing/cheese_plate_legs": "Cheese Plate Legs",
                                "/actions/cheesesmithing/cheese_plate_body": "Cheese Plate Body",
                                "/actions/cheesesmithing/verdant_cheese": "Verdant Cheese",
                                "/actions/cheesesmithing/verdant_boots": "Verdant Boots",
                                "/actions/cheesesmithing/verdant_gauntlets": "Verdant Gauntlets",
                                "/actions/cheesesmithing/verdant_sword": "Verdant Sword",
                                "/actions/cheesesmithing/verdant_brush": "Verdant Brush",
                                "/actions/cheesesmithing/verdant_shears": "Verdant Shears",
                                "/actions/cheesesmithing/verdant_hatchet": "Verdant Hatchet",
                                "/actions/cheesesmithing/verdant_spear": "Verdant Spear",
                                "/actions/cheesesmithing/verdant_hammer": "Verdant Hammer",
                                "/actions/cheesesmithing/verdant_chisel": "Verdant Chisel",
                                "/actions/cheesesmithing/verdant_needle": "Verdant Needle",
                                "/actions/cheesesmithing/verdant_spatula": "Verdant Spatula",
                                "/actions/cheesesmithing/verdant_pot": "Verdant Pot",
                                "/actions/cheesesmithing/verdant_mace": "Verdant Mace",
                                "/actions/cheesesmithing/snake_fang_dirk": "Snake Fang Dirk",
                                "/actions/cheesesmithing/verdant_alembic": "Verdant Alembic",
                                "/actions/cheesesmithing/verdant_enhancer": "Verdant Enhancer",
                                "/actions/cheesesmithing/verdant_helmet": "Verdant Helmet",
                                "/actions/cheesesmithing/verdant_buckler": "Verdant Buckler",
                                "/actions/cheesesmithing/verdant_bulwark": "Verdant Bulwark",
                                "/actions/cheesesmithing/verdant_plate_legs": "Verdant Plate Legs",
                                "/actions/cheesesmithing/verdant_plate_body": "Verdant Plate Body",
                                "/actions/cheesesmithing/azure_cheese": "Azure Cheese",
                                "/actions/cheesesmithing/azure_boots": "Azure Boots",
                                "/actions/cheesesmithing/azure_gauntlets": "Azure Gauntlets",
                                "/actions/cheesesmithing/azure_sword": "Azure Sword",
                                "/actions/cheesesmithing/azure_brush": "Azure Brush",
                                "/actions/cheesesmithing/azure_shears": "Azure Shears",
                                "/actions/cheesesmithing/azure_hatchet": "Azure Hatchet",
                                "/actions/cheesesmithing/azure_spear": "Azure Spear",
                                "/actions/cheesesmithing/azure_hammer": "Azure Hammer",
                                "/actions/cheesesmithing/azure_chisel": "Azure Chisel",
                                "/actions/cheesesmithing/azure_needle": "Azure Needle",
                                "/actions/cheesesmithing/azure_spatula": "Azure Spatula",
                                "/actions/cheesesmithing/azure_pot": "Azure Pot",
                                "/actions/cheesesmithing/azure_mace": "Azure Mace",
                                "/actions/cheesesmithing/pincer_gloves": "Pincer Gloves",
                                "/actions/cheesesmithing/azure_alembic": "Azure Alembic",
                                "/actions/cheesesmithing/azure_enhancer": "Azure Enhancer",
                                "/actions/cheesesmithing/azure_helmet": "Azure Helmet",
                                "/actions/cheesesmithing/azure_buckler": "Azure Buckler",
                                "/actions/cheesesmithing/azure_bulwark": "Azure Bulwark",
                                "/actions/cheesesmithing/azure_plate_legs": "Azure Plate Legs",
                                "/actions/cheesesmithing/snail_shell_helmet": "Snail Shell Helmet",
                                "/actions/cheesesmithing/azure_plate_body": "Azure Plate Body",
                                "/actions/cheesesmithing/turtle_shell_legs": "Turtle Shell Legs",
                                "/actions/cheesesmithing/turtle_shell_body": "Turtle Shell Body",
                                "/actions/cheesesmithing/burble_cheese": "Burble Cheese",
                                "/actions/cheesesmithing/burble_boots": "Burble Boots",
                                "/actions/cheesesmithing/burble_gauntlets": "Burble Gauntlets",
                                "/actions/cheesesmithing/burble_sword": "Burble Sword",
                                "/actions/cheesesmithing/burble_brush": "Burble Brush",
                                "/actions/cheesesmithing/burble_shears": "Burble Shears",
                                "/actions/cheesesmithing/burble_hatchet": "Burble Hatchet",
                                "/actions/cheesesmithing/burble_spear": "Burble Spear",
                                "/actions/cheesesmithing/burble_hammer": "Burble Hammer",
                                "/actions/cheesesmithing/burble_chisel": "Burble Chisel",
                                "/actions/cheesesmithing/burble_needle": "Burble Needle",
                                "/actions/cheesesmithing/burble_spatula": "Burble Spatula",
                                "/actions/cheesesmithing/burble_pot": "Burble Pot",
                                "/actions/cheesesmithing/burble_mace": "Burble Mace",
                                "/actions/cheesesmithing/burble_alembic": "Burble Alembic",
                                "/actions/cheesesmithing/burble_enhancer": "Burble Enhancer",
                                "/actions/cheesesmithing/burble_helmet": "Burble Helmet",
                                "/actions/cheesesmithing/burble_buckler": "Burble Buckler",
                                "/actions/cheesesmithing/burble_bulwark": "Burble Bulwark",
                                "/actions/cheesesmithing/burble_plate_legs": "Burble Plate Legs",
                                "/actions/cheesesmithing/burble_plate_body": "Burble Plate Body",
                                "/actions/cheesesmithing/crimson_cheese": "Crimson Cheese",
                                "/actions/cheesesmithing/crimson_boots": "Crimson Boots",
                                "/actions/cheesesmithing/crimson_gauntlets": "Crimson Gauntlets",
                                "/actions/cheesesmithing/crimson_sword": "Crimson Sword",
                                "/actions/cheesesmithing/crimson_brush": "Crimson Brush",
                                "/actions/cheesesmithing/crimson_shears": "Crimson Shears",
                                "/actions/cheesesmithing/crimson_hatchet": "Crimson Hatchet",
                                "/actions/cheesesmithing/crimson_spear": "Crimson Spear",
                                "/actions/cheesesmithing/crimson_hammer": "Crimson Hammer",
                                "/actions/cheesesmithing/crimson_chisel": "Crimson Chisel",
                                "/actions/cheesesmithing/crimson_needle": "Crimson Needle",
                                "/actions/cheesesmithing/crimson_spatula": "Crimson Spatula",
                                "/actions/cheesesmithing/crimson_pot": "Crimson Pot",
                                "/actions/cheesesmithing/crimson_mace": "Crimson Mace",
                                "/actions/cheesesmithing/crimson_alembic": "Crimson Alembic",
                                "/actions/cheesesmithing/crimson_enhancer": "Crimson Enhancer",
                                "/actions/cheesesmithing/crimson_helmet": "Crimson Helmet",
                                "/actions/cheesesmithing/crimson_buckler": "Crimson Buckler",
                                "/actions/cheesesmithing/crimson_bulwark": "Crimson Bulwark",
                                "/actions/cheesesmithing/crimson_plate_legs": "Crimson Plate Legs",
                                "/actions/cheesesmithing/vision_helmet": "Vision Helmet",
                                "/actions/cheesesmithing/vision_shield": "Vision Shield",
                                "/actions/cheesesmithing/crimson_plate_body": "Crimson Plate Body",
                                "/actions/cheesesmithing/rainbow_cheese": "Rainbow Cheese",
                                "/actions/cheesesmithing/rainbow_boots": "Rainbow Boots",
                                "/actions/cheesesmithing/black_bear_shoes": "Black Bear Shoes",
                                "/actions/cheesesmithing/grizzly_bear_shoes": "Grizzly Bear Shoes",
                                "/actions/cheesesmithing/polar_bear_shoes": "Polar Bear Shoes",
                                "/actions/cheesesmithing/rainbow_gauntlets": "Rainbow Gauntlets",
                                "/actions/cheesesmithing/rainbow_sword": "Rainbow Sword",
                                "/actions/cheesesmithing/panda_gloves": "Panda Gloves",
                                "/actions/cheesesmithing/rainbow_brush": "Rainbow Brush",
                                "/actions/cheesesmithing/rainbow_shears": "Rainbow Shears",
                                "/actions/cheesesmithing/rainbow_hatchet": "Rainbow Hatchet",
                                "/actions/cheesesmithing/rainbow_spear": "Rainbow Spear",
                                "/actions/cheesesmithing/rainbow_hammer": "Rainbow Hammer",
                                "/actions/cheesesmithing/rainbow_chisel": "Rainbow Chisel",
                                "/actions/cheesesmithing/rainbow_needle": "Rainbow Needle",
                                "/actions/cheesesmithing/rainbow_spatula": "Rainbow Spatula",
                                "/actions/cheesesmithing/rainbow_pot": "Rainbow Pot",
                                "/actions/cheesesmithing/rainbow_mace": "Rainbow Mace",
                                "/actions/cheesesmithing/rainbow_alembic": "Rainbow Alembic",
                                "/actions/cheesesmithing/rainbow_enhancer": "Rainbow Enhancer",
                                "/actions/cheesesmithing/rainbow_helmet": "Rainbow Helmet",
                                "/actions/cheesesmithing/rainbow_buckler": "Rainbow Buckler",
                                "/actions/cheesesmithing/rainbow_bulwark": "Rainbow Bulwark",
                                "/actions/cheesesmithing/rainbow_plate_legs": "Rainbow Plate Legs",
                                "/actions/cheesesmithing/rainbow_plate_body": "Rainbow Plate Body",
                                "/actions/cheesesmithing/holy_cheese": "Holy Cheese",
                                "/actions/cheesesmithing/holy_boots": "Holy Boots",
                                "/actions/cheesesmithing/holy_gauntlets": "Holy Gauntlets",
                                "/actions/cheesesmithing/holy_sword": "Holy Sword",
                                "/actions/cheesesmithing/holy_brush": "Holy Brush",
                                "/actions/cheesesmithing/holy_shears": "Holy Shears",
                                "/actions/cheesesmithing/holy_hatchet": "Holy Hatchet",
                                "/actions/cheesesmithing/holy_spear": "Holy Spear",
                                "/actions/cheesesmithing/holy_hammer": "Holy Hammer",
                                "/actions/cheesesmithing/holy_chisel": "Holy Chisel",
                                "/actions/cheesesmithing/holy_needle": "Holy Needle",
                                "/actions/cheesesmithing/holy_spatula": "Holy Spatula",
                                "/actions/cheesesmithing/holy_pot": "Holy Pot",
                                "/actions/cheesesmithing/holy_mace": "Holy Mace",
                                "/actions/cheesesmithing/magnetic_gloves": "Magnetic Gloves",
                                "/actions/cheesesmithing/stalactite_spear": "Stalactite Spear",
                                "/actions/cheesesmithing/granite_bludgeon": "Granite Bludgeon",
                                "/actions/cheesesmithing/vampire_fang_dirk": "Vampire Fang Dirk",
                                "/actions/cheesesmithing/werewolf_slasher": "Werewolf Slasher",
                                "/actions/cheesesmithing/holy_alembic": "Holy Alembic",
                                "/actions/cheesesmithing/holy_enhancer": "Holy Enhancer",
                                "/actions/cheesesmithing/holy_helmet": "Holy Helmet",
                                "/actions/cheesesmithing/holy_buckler": "Holy Buckler",
                                "/actions/cheesesmithing/holy_bulwark": "Holy Bulwark",
                                "/actions/cheesesmithing/holy_plate_legs": "Holy Plate Legs",
                                "/actions/cheesesmithing/holy_plate_body": "Holy Plate Body",
                                "/actions/cheesesmithing/celestial_brush": "Celestial Brush",
                                "/actions/cheesesmithing/celestial_shears": "Celestial Shears",
                                "/actions/cheesesmithing/celestial_hatchet": "Celestial Hatchet",
                                "/actions/cheesesmithing/celestial_hammer": "Celestial Hammer",
                                "/actions/cheesesmithing/celestial_chisel": "Celestial Chisel",
                                "/actions/cheesesmithing/celestial_needle": "Celestial Needle",
                                "/actions/cheesesmithing/celestial_spatula": "Celestial Spatula",
                                "/actions/cheesesmithing/celestial_pot": "Celestial Pot",
                                "/actions/cheesesmithing/celestial_alembic": "Celestial Alembic",
                                "/actions/cheesesmithing/celestial_enhancer": "Celestial Enhancer",
                                "/actions/cheesesmithing/colossus_plate_body": "Colossus Plate Body",
                                "/actions/cheesesmithing/colossus_plate_legs": "Colossus Plate Legs",
                                "/actions/cheesesmithing/demonic_plate_body": "Demonic Plate Body",
                                "/actions/cheesesmithing/demonic_plate_legs": "Demonic Plate Legs",
                                "/actions/cheesesmithing/spiked_bulwark": "Spiked Bulwark",
                                "/actions/cheesesmithing/dodocamel_gauntlets": "Dodocamel Gauntlets",
                                "/actions/cheesesmithing/corsair_helmet": "Corsair Helmet",
                                "/actions/cheesesmithing/knights_aegis": "Knights Aegis",
                                "/actions/cheesesmithing/anchorbound_plate_legs": "Anchorbound Plate Legs",
                                "/actions/cheesesmithing/maelstrom_plate_legs": "Maelstrom Plate Legs",
                                "/actions/cheesesmithing/griffin_bulwark": "Griffin Bulwark",
                                "/actions/cheesesmithing/furious_spear": "Furious Spear",
                                "/actions/cheesesmithing/chaotic_flail": "Chaotic Flail",
                                "/actions/cheesesmithing/regal_sword": "Regal Sword",
                                "/actions/cheesesmithing/anchorbound_plate_body": "Anchorbound Plate Body",
                                "/actions/cheesesmithing/maelstrom_plate_body": "Maelstrom Plate Body",
                                "/actions/cheesesmithing/dodocamel_gauntlets_refined": "Dodocamel Gauntlets (R)",
                                "/actions/cheesesmithing/corsair_helmet_refined": "Corsair Helmet (R)",
                                "/actions/cheesesmithing/knights_aegis_refined": "Knights Aegis (R)",
                                "/actions/cheesesmithing/anchorbound_plate_legs_refined": "Anchorbound Plate Legs (R)",
                                "/actions/cheesesmithing/maelstrom_plate_legs_refined": "Maelstrom Plate Legs (R)",
                                "/actions/cheesesmithing/griffin_bulwark_refined": "Griffin Bulwark (R)",
                                "/actions/cheesesmithing/furious_spear_refined": "Furious Spear (R)",
                                "/actions/cheesesmithing/chaotic_flail_refined": "Chaotic Flail (R)",
                                "/actions/cheesesmithing/regal_sword_refined": "Regal Sword (R)",
                                "/actions/cheesesmithing/anchorbound_plate_body_refined": "Anchorbound Plate Body (R)",
                                "/actions/cheesesmithing/maelstrom_plate_body_refined": "Maelstrom Plate Body (R)",
                                "/actions/crafting/lumber": "Lumber",
                                "/actions/crafting/wooden_crossbow": "Wooden Crossbow",
                                "/actions/crafting/wooden_water_staff": "Wooden Water Staff",
                                "/actions/crafting/basic_task_badge": "Basic Task Badge",
                                "/actions/crafting/advanced_task_badge": "Advanced Task Badge",
                                "/actions/crafting/expert_task_badge": "Expert Task Badge",
                                "/actions/crafting/wooden_shield": "Wooden Shield",
                                "/actions/crafting/wooden_nature_staff": "Wooden Nature Staff",
                                "/actions/crafting/wooden_bow": "Wooden Bow",
                                "/actions/crafting/wooden_fire_staff": "Wooden Fire Staff",
                                "/actions/crafting/birch_lumber": "Birch Lumber",
                                "/actions/crafting/birch_crossbow": "Birch Crossbow",
                                "/actions/crafting/birch_water_staff": "Birch Water Staff",
                                "/actions/crafting/crushed_pearl": "Crushed Pearl",
                                "/actions/crafting/birch_shield": "Birch Shield",
                                "/actions/crafting/birch_nature_staff": "Birch Nature Staff",
                                "/actions/crafting/birch_bow": "Birch Bow",
                                "/actions/crafting/ring_of_gathering": "Ring Of Gathering",
                                "/actions/crafting/birch_fire_staff": "Birch Fire Staff",
                                "/actions/crafting/earrings_of_gathering": "Earrings Of Gathering",
                                "/actions/crafting/cedar_lumber": "Cedar Lumber",
                                "/actions/crafting/cedar_crossbow": "Cedar Crossbow",
                                "/actions/crafting/cedar_water_staff": "Cedar Water Staff",
                                "/actions/crafting/basic_milking_charm": "Basic Milking Charm",
                                "/actions/crafting/basic_foraging_charm": "Basic Foraging Charm",
                                "/actions/crafting/basic_woodcutting_charm": "Basic Woodcutting Charm",
                                "/actions/crafting/basic_cheesesmithing_charm": "Basic Cheesesmithing Charm",
                                "/actions/crafting/basic_crafting_charm": "Basic Crafting Charm",
                                "/actions/crafting/basic_tailoring_charm": "Basic Tailoring Charm",
                                "/actions/crafting/basic_cooking_charm": "Basic Cooking Charm",
                                "/actions/crafting/basic_brewing_charm": "Basic Brewing Charm",
                                "/actions/crafting/basic_alchemy_charm": "Basic Alchemy Charm",
                                "/actions/crafting/basic_enhancing_charm": "Basic Enhancing Charm",
                                "/actions/crafting/cedar_shield": "Cedar Shield",
                                "/actions/crafting/cedar_nature_staff": "Cedar Nature Staff",
                                "/actions/crafting/cedar_bow": "Cedar Bow",
                                "/actions/crafting/crushed_amber": "Crushed Amber",
                                "/actions/crafting/cedar_fire_staff": "Cedar Fire Staff",
                                "/actions/crafting/ring_of_essence_find": "Ring Of Essence Find",
                                "/actions/crafting/earrings_of_essence_find": "Earrings Of Essence Find",
                                "/actions/crafting/necklace_of_efficiency": "Necklace Of Efficiency",
                                "/actions/crafting/purpleheart_lumber": "Purpleheart Lumber",
                                "/actions/crafting/purpleheart_crossbow": "Purpleheart Crossbow",
                                "/actions/crafting/purpleheart_water_staff": "Purpleheart Water Staff",
                                "/actions/crafting/purpleheart_shield": "Purpleheart Shield",
                                "/actions/crafting/purpleheart_nature_staff": "Purpleheart Nature Staff",
                                "/actions/crafting/purpleheart_bow": "Purpleheart Bow",
                                "/actions/crafting/advanced_milking_charm": "Advanced Milking Charm",
                                "/actions/crafting/advanced_foraging_charm": "Advanced Foraging Charm",
                                "/actions/crafting/advanced_woodcutting_charm": "Advanced Woodcutting Charm",
                                "/actions/crafting/advanced_cheesesmithing_charm": "Advanced Cheesesmithing Charm",
                                "/actions/crafting/advanced_crafting_charm": "Advanced Crafting Charm",
                                "/actions/crafting/advanced_tailoring_charm": "Advanced Tailoring Charm",
                                "/actions/crafting/advanced_cooking_charm": "Advanced Cooking Charm",
                                "/actions/crafting/advanced_brewing_charm": "Advanced Brewing Charm",
                                "/actions/crafting/advanced_alchemy_charm": "Advanced Alchemy Charm",
                                "/actions/crafting/advanced_enhancing_charm": "Advanced Enhancing Charm",
                                "/actions/crafting/advanced_stamina_charm": "Advanced Stamina Charm",
                                "/actions/crafting/advanced_intelligence_charm": "Advanced Intelligence Charm",
                                "/actions/crafting/advanced_attack_charm": "Advanced Attack Charm",
                                "/actions/crafting/advanced_defense_charm": "Advanced Defense Charm",
                                "/actions/crafting/advanced_melee_charm": "Advanced Melee Charm",
                                "/actions/crafting/advanced_ranged_charm": "Advanced Ranged Charm",
                                "/actions/crafting/advanced_magic_charm": "Advanced Magic Charm",
                                "/actions/crafting/crushed_garnet": "Crushed Garnet",
                                "/actions/crafting/crushed_jade": "Crushed Jade",
                                "/actions/crafting/crushed_amethyst": "Crushed Amethyst",
                                "/actions/crafting/catalyst_of_coinification": "Catalyst Of Coinification",
                                "/actions/crafting/treant_shield": "Treant Shield",
                                "/actions/crafting/purpleheart_fire_staff": "Purpleheart Fire Staff",
                                "/actions/crafting/ring_of_regeneration": "Ring Of Regeneration",
                                "/actions/crafting/earrings_of_regeneration": "Earrings Of Regeneration",
                                "/actions/crafting/fighter_necklace": "Fighter Necklace",
                                "/actions/crafting/ginkgo_lumber": "Ginkgo Lumber",
                                "/actions/crafting/ginkgo_crossbow": "Ginkgo Crossbow",
                                "/actions/crafting/ginkgo_water_staff": "Ginkgo Water Staff",
                                "/actions/crafting/ring_of_armor": "Ring Of Armor",
                                "/actions/crafting/catalyst_of_decomposition": "Catalyst Of Decomposition",
                                "/actions/crafting/ginkgo_shield": "Ginkgo Shield",
                                "/actions/crafting/earrings_of_armor": "Earrings Of Armor",
                                "/actions/crafting/ginkgo_nature_staff": "Ginkgo Nature Staff",
                                "/actions/crafting/ranger_necklace": "Ranger Necklace",
                                "/actions/crafting/ginkgo_bow": "Ginkgo Bow",
                                "/actions/crafting/ring_of_resistance": "Ring Of Resistance",
                                "/actions/crafting/crushed_moonstone": "Crushed Moonstone",
                                "/actions/crafting/ginkgo_fire_staff": "Ginkgo Fire Staff",
                                "/actions/crafting/earrings_of_resistance": "Earrings Of Resistance",
                                "/actions/crafting/wizard_necklace": "Wizard Necklace",
                                "/actions/crafting/ring_of_rare_find": "Ring Of Rare Find",
                                "/actions/crafting/expert_milking_charm": "Expert Milking Charm",
                                "/actions/crafting/expert_foraging_charm": "Expert Foraging Charm",
                                "/actions/crafting/expert_woodcutting_charm": "Expert Woodcutting Charm",
                                "/actions/crafting/expert_cheesesmithing_charm": "Expert Cheesesmithing Charm",
                                "/actions/crafting/expert_crafting_charm": "Expert Crafting Charm",
                                "/actions/crafting/expert_tailoring_charm": "Expert Tailoring Charm",
                                "/actions/crafting/expert_cooking_charm": "Expert Cooking Charm",
                                "/actions/crafting/expert_brewing_charm": "Expert Brewing Charm",
                                "/actions/crafting/expert_alchemy_charm": "Expert Alchemy Charm",
                                "/actions/crafting/expert_enhancing_charm": "Expert Enhancing Charm",
                                "/actions/crafting/expert_stamina_charm": "Expert Stamina Charm",
                                "/actions/crafting/expert_intelligence_charm": "Expert Intelligence Charm",
                                "/actions/crafting/expert_attack_charm": "Expert Attack Charm",
                                "/actions/crafting/expert_defense_charm": "Expert Defense Charm",
                                "/actions/crafting/expert_melee_charm": "Expert Melee Charm",
                                "/actions/crafting/expert_ranged_charm": "Expert Ranged Charm",
                                "/actions/crafting/expert_magic_charm": "Expert Magic Charm",
                                "/actions/crafting/catalyst_of_transmutation": "Catalyst Of Transmutation",
                                "/actions/crafting/earrings_of_rare_find": "Earrings Of Rare Find",
                                "/actions/crafting/necklace_of_wisdom": "Necklace Of Wisdom",
                                "/actions/crafting/redwood_lumber": "Redwood Lumber",
                                "/actions/crafting/redwood_crossbow": "Redwood Crossbow",
                                "/actions/crafting/redwood_water_staff": "Redwood Water Staff",
                                "/actions/crafting/redwood_shield": "Redwood Shield",
                                "/actions/crafting/redwood_nature_staff": "Redwood Nature Staff",
                                "/actions/crafting/redwood_bow": "Redwood Bow",
                                "/actions/crafting/crushed_sunstone": "Crushed Sunstone",
                                "/actions/crafting/chimerical_entry_key": "Chimerical Entry Key",
                                "/actions/crafting/chimerical_chest_key": "Chimerical Chest Key",
                                "/actions/crafting/eye_watch": "Eye Watch",
                                "/actions/crafting/watchful_relic": "Watchful Relic",
                                "/actions/crafting/redwood_fire_staff": "Redwood Fire Staff",
                                "/actions/crafting/ring_of_critical_strike": "Ring Of Critical Strike",
                                "/actions/crafting/mirror_of_protection": "Mirror Of Protection",
                                "/actions/crafting/earrings_of_critical_strike": "Earrings Of Critical Strike",
                                "/actions/crafting/necklace_of_speed": "Necklace Of Speed",
                                "/actions/crafting/arcane_lumber": "Arcane Lumber",
                                "/actions/crafting/arcane_crossbow": "Arcane Crossbow",
                                "/actions/crafting/arcane_water_staff": "Arcane Water Staff",
                                "/actions/crafting/master_milking_charm": "Master Milking Charm",
                                "/actions/crafting/master_foraging_charm": "Master Foraging Charm",
                                "/actions/crafting/master_woodcutting_charm": "Master Woodcutting Charm",
                                "/actions/crafting/master_cheesesmithing_charm": "Master Cheesesmithing Charm",
                                "/actions/crafting/master_crafting_charm": "Master Crafting Charm",
                                "/actions/crafting/master_tailoring_charm": "Master Tailoring Charm",
                                "/actions/crafting/master_cooking_charm": "Master Cooking Charm",
                                "/actions/crafting/master_brewing_charm": "Master Brewing Charm",
                                "/actions/crafting/master_alchemy_charm": "Master Alchemy Charm",
                                "/actions/crafting/master_enhancing_charm": "Master Enhancing Charm",
                                "/actions/crafting/master_stamina_charm": "Master Stamina Charm",
                                "/actions/crafting/master_intelligence_charm": "Master Intelligence Charm",
                                "/actions/crafting/master_attack_charm": "Master Attack Charm",
                                "/actions/crafting/master_defense_charm": "Master Defense Charm",
                                "/actions/crafting/master_melee_charm": "Master Melee Charm",
                                "/actions/crafting/master_ranged_charm": "Master Ranged Charm",
                                "/actions/crafting/master_magic_charm": "Master Magic Charm",
                                "/actions/crafting/sinister_entry_key": "Sinister Entry Key",
                                "/actions/crafting/sinister_chest_key": "Sinister Chest Key",
                                "/actions/crafting/arcane_shield": "Arcane Shield",
                                "/actions/crafting/arcane_nature_staff": "Arcane Nature Staff",
                                "/actions/crafting/manticore_shield": "Manticore Shield",
                                "/actions/crafting/arcane_bow": "Arcane Bow",
                                "/actions/crafting/enchanted_entry_key": "Enchanted Entry Key",
                                "/actions/crafting/enchanted_chest_key": "Enchanted Chest Key",
                                "/actions/crafting/arcane_fire_staff": "Arcane Fire Staff",
                                "/actions/crafting/vampiric_bow": "Vampiric Bow",
                                "/actions/crafting/soul_hunter_crossbow": "Soul Hunter Crossbow",
                                "/actions/crafting/frost_staff": "Frost Staff",
                                "/actions/crafting/infernal_battlestaff": "Infernal Battlestaff",
                                "/actions/crafting/jackalope_staff": "Jackalope Staff",
                                "/actions/crafting/philosophers_ring": "Philosopher's Ring",
                                "/actions/crafting/crushed_philosophers_stone": "Crushed Philosopher's Stone",
                                "/actions/crafting/pirate_entry_key": "Pirate Entry Key",
                                "/actions/crafting/pirate_chest_key": "Pirate Chest Key",
                                "/actions/crafting/philosophers_earrings": "Philosopher's Earrings",
                                "/actions/crafting/philosophers_necklace": "Philosopher's Necklace",
                                "/actions/crafting/bishops_codex": "Bishop's Codex",
                                "/actions/crafting/cursed_bow": "Cursed Bow",
                                "/actions/crafting/sundering_crossbow": "Sundering Crossbow",
                                "/actions/crafting/rippling_trident": "Rippling Trident",
                                "/actions/crafting/blooming_trident": "Blooming Trident",
                                "/actions/crafting/blazing_trident": "Blazing Trident",
                                "/actions/crafting/grandmaster_milking_charm": "Grandmaster Milking Charm",
                                "/actions/crafting/grandmaster_foraging_charm": "Grandmaster Foraging Charm",
                                "/actions/crafting/grandmaster_woodcutting_charm": "Grandmaster Woodcutting Charm",
                                "/actions/crafting/grandmaster_cheesesmithing_charm": "Grandmaster Cheesesmithing Charm",
                                "/actions/crafting/grandmaster_crafting_charm": "Grandmaster Crafting Charm",
                                "/actions/crafting/grandmaster_tailoring_charm": "Grandmaster Tailoring Charm",
                                "/actions/crafting/grandmaster_cooking_charm": "Grandmaster Cooking Charm",
                                "/actions/crafting/grandmaster_brewing_charm": "Grandmaster Brewing Charm",
                                "/actions/crafting/grandmaster_alchemy_charm": "Grandmaster Alchemy Charm",
                                "/actions/crafting/grandmaster_enhancing_charm": "Grandmaster Enhancing Charm",
                                "/actions/crafting/grandmaster_stamina_charm": "Grandmaster Stamina Charm",
                                "/actions/crafting/grandmaster_intelligence_charm": "Grandmaster Intelligence Charm",
                                "/actions/crafting/grandmaster_attack_charm": "Grandmaster Attack Charm",
                                "/actions/crafting/grandmaster_defense_charm": "Grandmaster Defense Charm",
                                "/actions/crafting/grandmaster_melee_charm": "Grandmaster Melee Charm",
                                "/actions/crafting/grandmaster_ranged_charm": "Grandmaster Ranged Charm",
                                "/actions/crafting/grandmaster_magic_charm": "Grandmaster Magic Charm",
                                "/actions/crafting/bishops_codex_refined": "Bishop's Codex (R)",
                                "/actions/crafting/cursed_bow_refined": "Cursed Bow (R)",
                                "/actions/crafting/sundering_crossbow_refined": "Sundering Crossbow (R)",
                                "/actions/crafting/rippling_trident_refined": "Rippling Trident (R)",
                                "/actions/crafting/blooming_trident_refined": "Blooming Trident (R)",
                                "/actions/crafting/blazing_trident_refined": "Blazing Trident (R)",
                                "/actions/tailoring/rough_leather": "Rough Leather",
                                "/actions/tailoring/cotton_fabric": "Cotton Fabric",
                                "/actions/tailoring/rough_boots": "Rough Boots",
                                "/actions/tailoring/cotton_boots": "Cotton Boots",
                                "/actions/tailoring/rough_bracers": "Rough Bracers",
                                "/actions/tailoring/cotton_gloves": "Cotton Gloves",
                                "/actions/tailoring/small_pouch": "Small Pouch",
                                "/actions/tailoring/rough_hood": "Rough Hood",
                                "/actions/tailoring/cotton_hat": "Cotton Hat",
                                "/actions/tailoring/rough_chaps": "Rough Chaps",
                                "/actions/tailoring/cotton_robe_bottoms": "Cotton Robe Bottoms",
                                "/actions/tailoring/rough_tunic": "Rough Tunic",
                                "/actions/tailoring/cotton_robe_top": "Cotton Robe Top",
                                "/actions/tailoring/reptile_leather": "Reptile Leather",
                                "/actions/tailoring/linen_fabric": "Linen Fabric",
                                "/actions/tailoring/reptile_boots": "Reptile Boots",
                                "/actions/tailoring/linen_boots": "Linen Boots",
                                "/actions/tailoring/reptile_bracers": "Reptile Bracers",
                                "/actions/tailoring/linen_gloves": "Linen Gloves",
                                "/actions/tailoring/reptile_hood": "Reptile Hood",
                                "/actions/tailoring/linen_hat": "Linen Hat",
                                "/actions/tailoring/reptile_chaps": "Reptile Chaps",
                                "/actions/tailoring/linen_robe_bottoms": "Linen Robe Bottoms",
                                "/actions/tailoring/medium_pouch": "Medium Pouch",
                                "/actions/tailoring/reptile_tunic": "Reptile Tunic",
                                "/actions/tailoring/linen_robe_top": "Linen Robe Top",
                                "/actions/tailoring/shoebill_shoes": "Shoebill Shoes",
                                "/actions/tailoring/gobo_leather": "Gobo Leather",
                                "/actions/tailoring/bamboo_fabric": "Bamboo Fabric",
                                "/actions/tailoring/gobo_boots": "Gobo Boots",
                                "/actions/tailoring/bamboo_boots": "Bamboo Boots",
                                "/actions/tailoring/gobo_bracers": "Gobo Bracers",
                                "/actions/tailoring/bamboo_gloves": "Bamboo Gloves",
                                "/actions/tailoring/gobo_hood": "Gobo Hood",
                                "/actions/tailoring/bamboo_hat": "Bamboo Hat",
                                "/actions/tailoring/gobo_chaps": "Gobo Chaps",
                                "/actions/tailoring/bamboo_robe_bottoms": "Bamboo Robe Bottoms",
                                "/actions/tailoring/large_pouch": "Large Pouch",
                                "/actions/tailoring/gobo_tunic": "Gobo Tunic",
                                "/actions/tailoring/bamboo_robe_top": "Bamboo Robe Top",
                                "/actions/tailoring/marine_tunic": "Marine Tunic",
                                "/actions/tailoring/marine_chaps": "Marine Chaps",
                                "/actions/tailoring/icy_robe_top": "Icy Robe Top",
                                "/actions/tailoring/icy_robe_bottoms": "Icy Robe Bottoms",
                                "/actions/tailoring/flaming_robe_top": "Flaming Robe Top",
                                "/actions/tailoring/flaming_robe_bottoms": "Flaming Robe Bottoms",
                                "/actions/tailoring/beast_leather": "Beast Leather",
                                "/actions/tailoring/silk_fabric": "Silk Fabric",
                                "/actions/tailoring/beast_boots": "Beast Boots",
                                "/actions/tailoring/silk_boots": "Silk Boots",
                                "/actions/tailoring/beast_bracers": "Beast Bracers",
                                "/actions/tailoring/silk_gloves": "Silk Gloves",
                                "/actions/tailoring/collectors_boots": "Collectors Boots",
                                "/actions/tailoring/sighted_bracers": "Sighted Bracers",
                                "/actions/tailoring/beast_hood": "Beast Hood",
                                "/actions/tailoring/silk_hat": "Silk Hat",
                                "/actions/tailoring/beast_chaps": "Beast Chaps",
                                "/actions/tailoring/silk_robe_bottoms": "Silk Robe Bottoms",
                                "/actions/tailoring/centaur_boots": "Centaur Boots",
                                "/actions/tailoring/sorcerer_boots": "Sorcerer Boots",
                                "/actions/tailoring/giant_pouch": "Giant Pouch",
                                "/actions/tailoring/beast_tunic": "Beast Tunic",
                                "/actions/tailoring/silk_robe_top": "Silk Robe Top",
                                "/actions/tailoring/red_culinary_hat": "Red Culinary Hat",
                                "/actions/tailoring/luna_robe_top": "Luna Robe Top",
                                "/actions/tailoring/luna_robe_bottoms": "Luna Robe Bottoms",
                                "/actions/tailoring/umbral_leather": "Umbral Leather",
                                "/actions/tailoring/radiant_fabric": "Radiant Fabric",
                                "/actions/tailoring/umbral_boots": "Umbral Boots",
                                "/actions/tailoring/radiant_boots": "Radiant Boots",
                                "/actions/tailoring/umbral_bracers": "Umbral Bracers",
                                "/actions/tailoring/radiant_gloves": "Radiant Gloves",
                                "/actions/tailoring/enchanted_gloves": "Enchanted Gloves",
                                "/actions/tailoring/fluffy_red_hat": "Fluffy Red Hat",
                                "/actions/tailoring/chrono_gloves": "Chrono Gloves",
                                "/actions/tailoring/umbral_hood": "Umbral Hood",
                                "/actions/tailoring/radiant_hat": "Radiant Hat",
                                "/actions/tailoring/umbral_chaps": "Umbral Chaps",
                                "/actions/tailoring/radiant_robe_bottoms": "Radiant Robe Bottoms",
                                "/actions/tailoring/umbral_tunic": "Umbral Tunic",
                                "/actions/tailoring/radiant_robe_top": "Radiant Robe Top",
                                "/actions/tailoring/revenant_chaps": "Revenant Chaps",
                                "/actions/tailoring/griffin_chaps": "Griffin Chaps",
                                "/actions/tailoring/dairyhands_top": "Dairyhand's Top",
                                "/actions/tailoring/dairyhands_bottoms": "Dairyhand's Bottoms",
                                "/actions/tailoring/foragers_top": "Forager's Top",
                                "/actions/tailoring/foragers_bottoms": "Forager's Bottoms",
                                "/actions/tailoring/lumberjacks_top": "Lumberjack's Top",
                                "/actions/tailoring/lumberjacks_bottoms": "Lumberjack's Bottoms",
                                "/actions/tailoring/cheesemakers_top": "Cheesemaker's Top",
                                "/actions/tailoring/cheesemakers_bottoms": "Cheesemaker's Bottoms",
                                "/actions/tailoring/crafters_top": "Crafter's Top",
                                "/actions/tailoring/crafters_bottoms": "Crafter's Bottoms",
                                "/actions/tailoring/tailors_top": "Tailor's Top",
                                "/actions/tailoring/tailors_bottoms": "Tailor's Bottoms",
                                "/actions/tailoring/chefs_top": "Chef's Top",
                                "/actions/tailoring/chefs_bottoms": "Chef's Bottoms",
                                "/actions/tailoring/brewers_top": "Brewer's Top",
                                "/actions/tailoring/brewers_bottoms": "Brewer's Bottoms",
                                "/actions/tailoring/alchemists_top": "Alchemist's Top",
                                "/actions/tailoring/alchemists_bottoms": "Alchemist's Bottoms",
                                "/actions/tailoring/enhancers_top": "Enhancer's Top",
                                "/actions/tailoring/enhancers_bottoms": "Enhancer's Bottoms",
                                "/actions/tailoring/revenant_tunic": "Revenant Tunic",
                                "/actions/tailoring/griffin_tunic": "Griffin Tunic",
                                "/actions/tailoring/gluttonous_pouch": "Gluttonous Pouch",
                                "/actions/tailoring/guzzling_pouch": "Guzzling Pouch",
                                "/actions/tailoring/marksman_bracers": "Marksman Bracers",
                                "/actions/tailoring/acrobatic_hood": "Acrobatic Hood",
                                "/actions/tailoring/magicians_hat": "Magician's Hat",
                                "/actions/tailoring/kraken_chaps": "Kraken Chaps",
                                "/actions/tailoring/royal_water_robe_bottoms": "Royal Water Robe Bottoms",
                                "/actions/tailoring/royal_nature_robe_bottoms": "Royal Nature Robe Bottoms",
                                "/actions/tailoring/royal_fire_robe_bottoms": "Royal Fire Robe Bottoms",
                                "/actions/tailoring/kraken_tunic": "Kraken Tunic",
                                "/actions/tailoring/royal_water_robe_top": "Royal Water Robe Top",
                                "/actions/tailoring/royal_nature_robe_top": "Royal Nature Robe Top",
                                "/actions/tailoring/royal_fire_robe_top": "Royal Fire Robe Top",
                                "/actions/tailoring/chimerical_quiver_refined": "Chimerical Quiver (R)",
                                "/actions/tailoring/sinister_cape_refined": "Sinister Cape (R)",
                                "/actions/tailoring/enchanted_cloak_refined": "Enchanted Cloak (R)",
                                "/actions/tailoring/marksman_bracers_refined": "Marksman Bracers (R)",
                                "/actions/tailoring/acrobatic_hood_refined": "Acrobatic Hood (R)",
                                "/actions/tailoring/magicians_hat_refined": "Magician's Hat (R)",
                                "/actions/tailoring/kraken_chaps_refined": "Kraken Chaps (R)",
                                "/actions/tailoring/royal_water_robe_bottoms_refined": "Royal Water Robe Bottoms (R)",
                                "/actions/tailoring/royal_nature_robe_bottoms_refined": "Royal Nature Robe Bottoms (R)",
                                "/actions/tailoring/royal_fire_robe_bottoms_refined": "Royal Fire Robe Bottoms (R)",
                                "/actions/tailoring/kraken_tunic_refined": "Kraken Tunic (R)",
                                "/actions/tailoring/royal_water_robe_top_refined": "Royal Water Robe Top (R)",
                                "/actions/tailoring/royal_nature_robe_top_refined": "Royal Nature Robe Top (R)",
                                "/actions/tailoring/royal_fire_robe_top_refined": "Royal Fire Robe Top (R)",
                                "/actions/cooking/donut": "Donut",
                                "/actions/cooking/cupcake": "Cupcake",
                                "/actions/cooking/gummy": "Gummy",
                                "/actions/cooking/yogurt": "Yogurt",
                                "/actions/cooking/blueberry_donut": "Blueberry Donut",
                                "/actions/cooking/blueberry_cake": "Blueberry Cake",
                                "/actions/cooking/apple_gummy": "Apple Gummy",
                                "/actions/cooking/apple_yogurt": "Apple Yogurt",
                                "/actions/cooking/blackberry_donut": "Blackberry Donut",
                                "/actions/cooking/blackberry_cake": "Blackberry Cake",
                                "/actions/cooking/orange_gummy": "Orange Gummy",
                                "/actions/cooking/orange_yogurt": "Orange Yogurt",
                                "/actions/cooking/strawberry_donut": "Strawberry Donut",
                                "/actions/cooking/strawberry_cake": "Strawberry Cake",
                                "/actions/cooking/plum_gummy": "Plum Gummy",
                                "/actions/cooking/plum_yogurt": "Plum Yogurt",
                                "/actions/cooking/mooberry_donut": "Mooberry Donut",
                                "/actions/cooking/mooberry_cake": "Mooberry Cake",
                                "/actions/cooking/peach_gummy": "Peach Gummy",
                                "/actions/cooking/peach_yogurt": "Peach Yogurt",
                                "/actions/cooking/marsberry_donut": "Marsberry Donut",
                                "/actions/cooking/marsberry_cake": "Marsberry Cake",
                                "/actions/cooking/dragon_fruit_gummy": "Dragon Fruit Gummy",
                                "/actions/cooking/dragon_fruit_yogurt": "Dragon Fruit Yogurt",
                                "/actions/cooking/spaceberry_donut": "Spaceberry Donut",
                                "/actions/cooking/spaceberry_cake": "Spaceberry Cake",
                                "/actions/cooking/star_fruit_gummy": "Star Fruit Gummy",
                                "/actions/cooking/star_fruit_yogurt": "Star Fruit Yogurt",
                                "/actions/brewing/milking_tea": "Milking Tea",
                                "/actions/brewing/stamina_coffee": "Stamina Coffee",
                                "/actions/brewing/foraging_tea": "Foraging Tea",
                                "/actions/brewing/intelligence_coffee": "Intelligence Coffee",
                                "/actions/brewing/gathering_tea": "Gathering Tea",
                                "/actions/brewing/woodcutting_tea": "Woodcutting Tea",
                                "/actions/brewing/cooking_tea": "Cooking Tea",
                                "/actions/brewing/defense_coffee": "Defense Coffee",
                                "/actions/brewing/brewing_tea": "Brewing Tea",
                                "/actions/brewing/attack_coffee": "Attack Coffee",
                                "/actions/brewing/gourmet_tea": "Gourmet Tea",
                                "/actions/brewing/alchemy_tea": "Alchemy Tea",
                                "/actions/brewing/enhancing_tea": "Enhancing Tea",
                                "/actions/brewing/cheesesmithing_tea": "Cheesesmithing Tea",
                                "/actions/brewing/melee_coffee": "Melee Coffee",
                                "/actions/brewing/crafting_tea": "Crafting Tea",
                                "/actions/brewing/ranged_coffee": "Ranged Coffee",
                                "/actions/brewing/wisdom_tea": "Wisdom Tea",
                                "/actions/brewing/wisdom_coffee": "Wisdom Coffee",
                                "/actions/brewing/tailoring_tea": "Tailoring Tea",
                                "/actions/brewing/magic_coffee": "Magic Coffee",
                                "/actions/brewing/super_milking_tea": "Super Milking Tea",
                                "/actions/brewing/super_stamina_coffee": "Super Stamina Coffee",
                                "/actions/brewing/super_foraging_tea": "Super Foraging Tea",
                                "/actions/brewing/super_intelligence_coffee": "Super Intelligence Coffee",
                                "/actions/brewing/processing_tea": "Processing Tea",
                                "/actions/brewing/lucky_coffee": "Lucky Coffee",
                                "/actions/brewing/super_woodcutting_tea": "Super Woodcutting Tea",
                                "/actions/brewing/super_cooking_tea": "Super Cooking Tea",
                                "/actions/brewing/super_defense_coffee": "Super Defense Coffee",
                                "/actions/brewing/super_brewing_tea": "Super Brewing Tea",
                                "/actions/brewing/ultra_milking_tea": "Ultra Milking Tea",
                                "/actions/brewing/super_attack_coffee": "Super Attack Coffee",
                                "/actions/brewing/ultra_stamina_coffee": "Ultra Stamina Coffee",
                                "/actions/brewing/efficiency_tea": "Efficiency Tea",
                                "/actions/brewing/swiftness_coffee": "Swiftness Coffee",
                                "/actions/brewing/super_alchemy_tea": "Super Alchemy Tea",
                                "/actions/brewing/super_enhancing_tea": "Super Enhancing Tea",
                                "/actions/brewing/ultra_foraging_tea": "Ultra Foraging Tea",
                                "/actions/brewing/ultra_intelligence_coffee": "Ultra Intelligence Coffee",
                                "/actions/brewing/channeling_coffee": "Channeling Coffee",
                                "/actions/brewing/super_cheesesmithing_tea": "Super Cheesesmithing Tea",
                                "/actions/brewing/ultra_woodcutting_tea": "Ultra Woodcutting Tea",
                                "/actions/brewing/super_melee_coffee": "Super Melee Coffee",
                                "/actions/brewing/artisan_tea": "Artisan Tea",
                                "/actions/brewing/super_crafting_tea": "Super Crafting Tea",
                                "/actions/brewing/ultra_cooking_tea": "Ultra Cooking Tea",
                                "/actions/brewing/super_ranged_coffee": "Super Ranged Coffee",
                                "/actions/brewing/ultra_defense_coffee": "Ultra Defense Coffee",
                                "/actions/brewing/catalytic_tea": "Catalytic Tea",
                                "/actions/brewing/critical_coffee": "Critical Coffee",
                                "/actions/brewing/super_tailoring_tea": "Super Tailoring Tea",
                                "/actions/brewing/ultra_brewing_tea": "Ultra Brewing Tea",
                                "/actions/brewing/super_magic_coffee": "Super Magic Coffee",
                                "/actions/brewing/ultra_attack_coffee": "Ultra Attack Coffee",
                                "/actions/brewing/blessed_tea": "Blessed Tea",
                                "/actions/brewing/ultra_alchemy_tea": "Ultra Alchemy Tea",
                                "/actions/brewing/ultra_enhancing_tea": "Ultra Enhancing Tea",
                                "/actions/brewing/ultra_cheesesmithing_tea": "Ultra Cheesesmithing Tea",
                                "/actions/brewing/ultra_melee_coffee": "Ultra Melee Coffee",
                                "/actions/brewing/ultra_crafting_tea": "Ultra Crafting Tea",
                                "/actions/brewing/ultra_ranged_coffee": "Ultra Ranged Coffee",
                                "/actions/brewing/ultra_tailoring_tea": "Ultra Tailoring Tea",
                                "/actions/brewing/ultra_magic_coffee": "Ultra Magic Coffee",
                                "/actions/alchemy/coinify": "Coinify",
                                "/actions/alchemy/decompose": "Decompose",
                                "/actions/alchemy/transmute": "Transmute",
                                "/actions/enhancing/enhance": "Enhance",
                                "/actions/combat/fly": "Fly",
                                "/actions/combat/rat": "Jerry",
                                "/actions/combat/skunk": "Skunk",
                                "/actions/combat/porcupine": "Porcupine",
                                "/actions/combat/slimy": "Slimy",
                                "/actions/combat/smelly_planet": "Smelly Planet",
                                "/actions/combat/frog": "Frogger",
                                "/actions/combat/snake": "Thnake",
                                "/actions/combat/swampy": "Swampy",
                                "/actions/combat/alligator": "Sherlock",
                                "/actions/combat/swamp_planet": "Swamp Planet",
                                "/actions/combat/sea_snail": "Gary",
                                "/actions/combat/crab": "I Pinch",
                                "/actions/combat/aquahorse": "Aquahorse",
                                "/actions/combat/nom_nom": "Nom Nom",
                                "/actions/combat/turtle": "Turuto",
                                "/actions/combat/aqua_planet": "Aqua Planet",
                                "/actions/combat/jungle_sprite": "Jungle Sprite",
                                "/actions/combat/myconid": "Myconid",
                                "/actions/combat/treant": "Treant",
                                "/actions/combat/centaur_archer": "Centaur Archer",
                                "/actions/combat/jungle_planet": "Jungle Planet",
                                "/actions/combat/gobo_stabby": "Stabby",
                                "/actions/combat/gobo_slashy": "Slashy",
                                "/actions/combat/gobo_smashy": "Smashy",
                                "/actions/combat/gobo_shooty": "Shooty",
                                "/actions/combat/gobo_boomy": "Boomy",
                                "/actions/combat/gobo_planet": "Gobo Planet",
                                "/actions/combat/eye": "Eye",
                                "/actions/combat/eyes": "Eyes",
                                "/actions/combat/veyes": "Veyes",
                                "/actions/combat/planet_of_the_eyes": "Planet Of The Eyes",
                                "/actions/combat/novice_sorcerer": "Novice Sorcerer",
                                "/actions/combat/ice_sorcerer": "Ice Sorcerer",
                                "/actions/combat/flame_sorcerer": "Flame Sorcerer",
                                "/actions/combat/elementalist": "Elementalist",
                                "/actions/combat/sorcerers_tower": "Sorcerer's Tower",
                                "/actions/combat/gummy_bear": "Gummy Bear",
                                "/actions/combat/panda": "Panda",
                                "/actions/combat/black_bear": "Black Bear",
                                "/actions/combat/grizzly_bear": "Grizzly Bear",
                                "/actions/combat/polar_bear": "Polar Bear",
                                "/actions/combat/bear_with_it": "Bear With It",
                                "/actions/combat/magnetic_golem": "Magnetic Golem",
                                "/actions/combat/stalactite_golem": "Stalactite Golem",
                                "/actions/combat/granite_golem": "Granite Golem",
                                "/actions/combat/golem_cave": "Golem Cave",
                                "/actions/combat/zombie": "Zombie",
                                "/actions/combat/vampire": "Vampire",
                                "/actions/combat/werewolf": "Werewolf",
                                "/actions/combat/twilight_zone": "Twilight Zone",
                                "/actions/combat/abyssal_imp": "Abyssal Imp",
                                "/actions/combat/soul_hunter": "Soul Hunter",
                                "/actions/combat/infernal_warlock": "Infernal Warlock",
                                "/actions/combat/infernal_abyss": "Infernal Abyss",
                                "/actions/combat/chimerical_den": "Chimerical Den",
                                "/actions/combat/sinister_circus": "Sinister Circus",
                                "/actions/combat/enchanted_fortress": "Enchanted Fortress",
                                "/actions/combat/pirate_cove": "Pirate Cove"
                            },
                            "actionTypeNames": {
                                "/action_types/milking": "Milking",
                                "/action_types/foraging": "Foraging",
                                "/action_types/woodcutting": "Woodcutting",
                                "/action_types/cheesesmithing": "Cheesesmithing",
                                "/action_types/crafting": "Crafting",
                                "/action_types/tailoring": "Tailoring",
                                "/action_types/cooking": "Cooking",
                                "/action_types/brewing": "Brewing",
                                "/action_types/alchemy": "Alchemy",
                                "/action_types/enhancing": "Enhancing",
                                "/action_types/combat": "Combat"
                            },
                            "actionCategoryNames": {
                                "/action_categories/milking/cows": "Cows",
                                "/action_categories/foraging/farmland": "Farmland",
                                "/action_categories/foraging/shimmering_lake": "Shimmering Lake",
                                "/action_categories/foraging/misty_forest": "Misty Forest",
                                "/action_categories/foraging/burble_beach": "Burble Beach",
                                "/action_categories/foraging/silly_cow_valley": "Silly Cow Valley",
                                "/action_categories/foraging/olympus_mons": "Olympus Mons",
                                "/action_categories/foraging/asteroid_belt": "Asteroid Belt",
                                "/action_categories/woodcutting/trees": "Trees",
                                "/action_categories/cheesesmithing/material": "Material",
                                "/action_categories/cheesesmithing/tool": "Tool",
                                "/action_categories/cheesesmithing/main_hand": "Main Hand",
                                "/action_categories/cheesesmithing/two_hand": "Two Hand",
                                "/action_categories/cheesesmithing/off_hand": "Off Hand",
                                "/action_categories/cheesesmithing/feet": "Feet",
                                "/action_categories/cheesesmithing/hands": "Hands",
                                "/action_categories/cheesesmithing/head": "Head",
                                "/action_categories/cheesesmithing/legs": "Legs",
                                "/action_categories/cheesesmithing/body": "Body",
                                "/action_categories/crafting/lumber": "Lumber",
                                "/action_categories/crafting/crossbow": "Crossbow",
                                "/action_categories/crafting/bow": "Bow",
                                "/action_categories/crafting/staff": "Staff",
                                "/action_categories/crafting/off_hand": "Off Hand",
                                "/action_categories/crafting/ring": "Ring",
                                "/action_categories/crafting/earrings": "Earrings",
                                "/action_categories/crafting/neck": "Neck",
                                "/action_categories/crafting/charm": "Charm",
                                "/action_categories/crafting/trinket": "Trinket",
                                "/action_categories/crafting/special": "Special",
                                "/action_categories/crafting/dungeon_keys": "Dungeon Keys",
                                "/action_categories/tailoring/material": "Material",
                                "/action_categories/tailoring/feet": "Feet",
                                "/action_categories/tailoring/hands": "Hands",
                                "/action_categories/tailoring/head": "Head",
                                "/action_categories/tailoring/legs": "Legs",
                                "/action_categories/tailoring/body": "Body",
                                "/action_categories/tailoring/pouch": "Pouch",
                                "/action_categories/tailoring/back": "Back",
                                "/action_categories/cooking/instant_heal": "Instant Heal",
                                "/action_categories/cooking/heal_over_time": "Heal Over Time",
                                "/action_categories/cooking/instant_mana": "Instant Mana",
                                "/action_categories/cooking/mana_over_time": "Mana Over Time",
                                "/action_categories/brewing/tea": "Tea",
                                "/action_categories/brewing/coffee": "Coffee",
                                "/action_categories/alchemy/alchemy": "Alchemy",
                                "/action_categories/enhancing/enhance": "Enhance",
                                "/action_categories/combat/smelly_planet": "Smelly Planet",
                                "/action_categories/combat/swamp_planet": "Swamp Planet",
                                "/action_categories/combat/aqua_planet": "Aqua Planet",
                                "/action_categories/combat/jungle_planet": "Jungle Planet",
                                "/action_categories/combat/gobo_planet": "Gobo Planet",
                                "/action_categories/combat/planet_of_the_eyes": "Planet Of The Eyes",
                                "/action_categories/combat/sorcerers_tower": "Sorcerer's Tower",
                                "/action_categories/combat/bear_with_it": "Bear With It",
                                "/action_categories/combat/golem_cave": "Golem Cave",
                                "/action_categories/combat/twilight_zone": "Twilight Zone",
                                "/action_categories/combat/infernal_abyss": "Infernal Abyss",
                                "/action_categories/combat/dungeons": "Dungeons"
                            },
                            "buffTypeNames": {
                                "/buff_types/gathering": "Gathering",
                                "/buff_types/efficiency": "Efficiency",
                                "/buff_types/alchemy_success": "Alchemy Success",
                                "/buff_types/enhancing_success": "Enhancing Success",
                                "/buff_types/action_speed": "Action Speed",
                                "/buff_types/task_action_speed": "Task Action Speed",
                                "/buff_types/milking_level": "Milking Level",
                                "/buff_types/foraging_level": "Foraging Level",
                                "/buff_types/woodcutting_level": "Woodcutting Level",
                                "/buff_types/cheesesmithing_level": "Cheesesmithing Level",
                                "/buff_types/crafting_level": "Crafting Level",
                                "/buff_types/tailoring_level": "Tailoring Level",
                                "/buff_types/cooking_level": "Cooking Level",
                                "/buff_types/brewing_level": "Brewing Level",
                                "/buff_types/alchemy_level": "Alchemy Level",
                                "/buff_types/enhancing_level": "Enhancing Level",
                                "/buff_types/gourmet": "Gourmet",
                                "/buff_types/wisdom": "Wisdom",
                                "/buff_types/processing": "Processing",
                                "/buff_types/artisan": "Artisan",
                                "/buff_types/blessed": "Blessed",
                                "/buff_types/action_level": "Action Level",
                                "/buff_types/essence_find": "Essence Find",
                                "/buff_types/rare_find": "Rare Find",
                                "/buff_types/stamina_level": "Stamina Level",
                                "/buff_types/intelligence_level": "Intelligence Level",
                                "/buff_types/defense_level": "Defense Level",
                                "/buff_types/attack_level": "Attack Level",
                                "/buff_types/melee_level": "Melee Level",
                                "/buff_types/ranged_level": "Ranged Level",
                                "/buff_types/magic_level": "Magic Level",
                                "/buff_types/attack_speed": "Attack Speed",
                                "/buff_types/cast_speed": "Cast Speed",
                                "/buff_types/critical_rate": "Critical Rate",
                                "/buff_types/critical_damage": "Critical Damage",
                                "/buff_types/accuracy": "Accuracy",
                                "/buff_types/damage": "Damage",
                                "/buff_types/physical_amplify": "Physical Amplify",
                                "/buff_types/water_amplify": "Water Amplify",
                                "/buff_types/nature_amplify": "Nature Amplify",
                                "/buff_types/fire_amplify": "Fire Amplify",
                                "/buff_types/healing_amplify": "Healing Amplify",
                                "/buff_types/evasion": "Evasion",
                                "/buff_types/armor": "Armor",
                                "/buff_types/water_resistance": "Water Resistance",
                                "/buff_types/nature_resistance": "Nature Resistance",
                                "/buff_types/fire_resistance": "Fire Resistance",
                                "/buff_types/damage_taken": "Damage Taken",
                                "/buff_types/life_steal": "Life Steal",
                                "/buff_types/mana_leech": "Mana Leech",
                                "/buff_types/physical_thorns": "Physical Thorns",
                                "/buff_types/elemental_thorns": "Elemental Thorns",
                                "/buff_types/retaliation": "Retaliation",
                                "/buff_types/tenacity": "Tenacity",
                                "/buff_types/hp_regen": "HP Regen",
                                "/buff_types/mp_regen": "MP Regen",
                                "/buff_types/threat": "Threat",
                                "/buff_types/combat_drop_rate": "Combat Drop Rate",
                                "/buff_types/combat_drop_quantity": "Combat Drop Quantity"
                            },
                            "buffTypeDescriptions": {
                                "/buff_types/gathering": "Increases gathering quantity",
                                "/buff_types/efficiency": "Chance of repeating the action instantly",
                                "/buff_types/alchemy_success": "Multiplicative bonus to success rate while alchemizing",
                                "/buff_types/enhancing_success": "Multiplicative bonus to success rate while enhancing",
                                "/buff_types/action_speed": "Decreases time cost for the action",
                                "/buff_types/task_action_speed": "Decreases time cost for task actions",
                                "/buff_types/milking_level": "Buffs milking level",
                                "/buff_types/foraging_level": "Buffs foraging level",
                                "/buff_types/woodcutting_level": "Buffs woodcutting level",
                                "/buff_types/cheesesmithing_level": "Buffs cheesesmithing level",
                                "/buff_types/crafting_level": "Buffs crafting level",
                                "/buff_types/tailoring_level": "Buffs tailoring level",
                                "/buff_types/cooking_level": "Buffs cooking level",
                                "/buff_types/brewing_level": "Buffs brewing level",
                                "/buff_types/alchemy_level": "Buffs alchemy level",
                                "/buff_types/enhancing_level": "Buffs enhancing level",
                                "/buff_types/gourmet": "Chance to produce an additional item for free",
                                "/buff_types/wisdom": "Increases experience gained",
                                "/buff_types/processing": "Chance to instantly convert gathered resource into processed material (cheese, fabric, and lumber)",
                                "/buff_types/artisan": "Reduces required materials during production",
                                "/buff_types/blessed": "Chance to gain +2 instead of +1 on enhancing success",
                                "/buff_types/action_level": "Increases required levels for the action",
                                "/buff_types/essence_find": "Increases drop rate of essences",
                                "/buff_types/rare_find": "Increases rare item drop rate",
                                "/buff_types/stamina_level": "Buffs stamina level",
                                "/buff_types/intelligence_level": "Buffs intelligence level",
                                "/buff_types/defense_level": "Buffs defense level",
                                "/buff_types/attack_level": "Buffs attack level",
                                "/buff_types/melee_level": "Buffs melee level",
                                "/buff_types/ranged_level": "Buffs ranged level",
                                "/buff_types/magic_level": "Buffs magic level",
                                "/buff_types/attack_speed": "Increases auto attack speed",
                                "/buff_types/cast_speed": "Increases ability casting speed",
                                "/buff_types/critical_rate": "Increases critical rate",
                                "/buff_types/critical_damage": "Increases critical damage",
                                "/buff_types/accuracy": "Increases accuracy rating",
                                "/buff_types/damage": "Increases damage",
                                "/buff_types/physical_amplify": "Increases physical damage",
                                "/buff_types/water_amplify": "Increases water damage",
                                "/buff_types/nature_amplify": "Increases nature damage",
                                "/buff_types/fire_amplify": "Increases fire damage",
                                "/buff_types/healing_amplify": "Increases healing amount",
                                "/buff_types/evasion": "Increases evasion rating",
                                "/buff_types/armor": "Decreases physical damage taken",
                                "/buff_types/water_resistance": "Decreases water damage taken",
                                "/buff_types/nature_resistance": "Decreases nature damage taken",
                                "/buff_types/fire_resistance": "Decreases fire damage taken",
                                "/buff_types/damage_taken": "Increases damage taken",
                                "/buff_types/life_steal": "Gains life steal on auto attacks",
                                "/buff_types/mana_leech": "Gains mana leech on auto attacks",
                                "/buff_types/physical_thorns": "Deals percentage of your armor as damage back to the attacker",
                                "/buff_types/elemental_thorns": "Deals percentage of your resistance as damage back to the attacker",
                                "/buff_types/retaliation": "Reflects a percentage of incoming damage as a smash attack back to the attacker",
                                "/buff_types/tenacity": "Reduces chance of being blinded, silenced, or stunned",
                                "/buff_types/hp_regen": "Increases HP regeneration",
                                "/buff_types/mp_regen": "Increases MP regeneration",
                                "/buff_types/threat": "Increases chance of being targeted in combat",
                                "/buff_types/combat_drop_rate": "Increases drop rate of combat loot",
                                "/buff_types/combat_drop_quantity": "Increases quantity of combat loot"
                            },
                            "buffTypeDebuffDescriptions": {
                                "/buff_types/gathering": "Decreases gathering quantity",
                                "/buff_types/efficiency": "Lowers chance of repeating the action instantly",
                                "/buff_types/alchemy_success": "Multiplicative penalty to success rate while alchemizing",
                                "/buff_types/enhancing_success": "Multiplicative penalty to success rate while enhancing",
                                "/buff_types/action_speed": "Increases time cost for the action",
                                "/buff_types/task_action_speed": "Increases time cost for task actions",
                                "/buff_types/milking_level": "Debuffs milking level",
                                "/buff_types/foraging_level": "Debuffs foraging level",
                                "/buff_types/woodcutting_level": "Debuffs woodcutting level",
                                "/buff_types/cheesesmithing_level": "Debuffs cheesesmithing level",
                                "/buff_types/crafting_level": "Debuffs crafting level",
                                "/buff_types/tailoring_level": "Debuffs tailoring level",
                                "/buff_types/cooking_level": "Debuffs cooking level",
                                "/buff_types/brewing_level": "Debuffs level",
                                "/buff_types/alchemy_level": "Debuffs alchemy level",
                                "/buff_types/enhancing_level": "Debuffs enhancing level",
                                "/buff_types/gourmet": "Lowers chance to produce an additional item for free",
                                "/buff_types/wisdom": "Decreases experience gained",
                                "/buff_types/processing": "Lowers chance to convert gathered resource into processed material (cheese, fabric, and lumber)",
                                "/buff_types/artisan": "Increases required materials during production",
                                "/buff_types/blessed": "Lowers chance to gain +2 instead of +1 on enhancing success",
                                "/buff_types/action_level": "Decreases required levels for the action",
                                "/buff_types/essence_find": "Decreases drop rate of essences",
                                "/buff_types/rare_find": "Decreases rare item drop rate",
                                "/buff_types/stamina_level": "Debuffs stamina level",
                                "/buff_types/intelligence_level": "Debuffs intelligence level",
                                "/buff_types/defense_level": "Debuffs defense level",
                                "/buff_types/attack_level": "Debuffs attack level",
                                "/buff_types/melee_level": "Debuffs melee level",
                                "/buff_types/ranged_level": "Debuffs ranged level",
                                "/buff_types/magic_level": "Debuffs magic level",
                                "/buff_types/attack_speed": "Decreases auto attack speed",
                                "/buff_types/cast_speed": "Decreases ability casting speed",
                                "/buff_types/critical_rate": "Decreases critical rate",
                                "/buff_types/critical_damage": "Decreases critical damage",
                                "/buff_types/accuracy": "Decreases accuracy rating",
                                "/buff_types/damage": "Decreases damage",
                                "/buff_types/physical_amplify": "Decreases physical damage",
                                "/buff_types/water_amplify": "Decreases water damage",
                                "/buff_types/nature_amplify": "Decreases nature damage",
                                "/buff_types/fire_amplify": "Decreases fire damage",
                                "/buff_types/healing_amplify": "Decreases healing amount",
                                "/buff_types/evasion": "Decreases evasion rating",
                                "/buff_types/armor": "Increases physical damage taken",
                                "/buff_types/water_resistance": "Increases water damage taken",
                                "/buff_types/nature_resistance": "Increases nature damage taken",
                                "/buff_types/fire_resistance": "Increases fire damage taken",
                                "/buff_types/damage_taken": "Decreases damage taken",
                                "/buff_types/life_steal": "Reduces life steal",
                                "/buff_types/mana_leech": "Reduces mana leech",
                                "/buff_types/physical_thorns": "Reduces physical thorns",
                                "/buff_types/elemental_thorns": "Reduces elemental thorns",
                                "/buff_types/retaliation": "Reduces retaliation",
                                "/buff_types/tenacity": "Increases chance of being blinded, silenced, or stunned",
                                "/buff_types/hp_regen": "Decreases HP regeneration",
                                "/buff_types/mp_regen": "Decreases MP regeneration",
                                "/buff_types/threat": "Decreases chance of being targeted in combat",
                                "/buff_types/combat_drop_rate": "Decreases drop rate of combat loot",
                                "/buff_types/combat_drop_quantity": "Decreases quantity of combat loot"
                            },
                            "houseRoomNames": {
                                "/house_rooms/dairy_barn": "Dairy Barn",
                                "/house_rooms/garden": "Garden",
                                "/house_rooms/log_shed": "Log Shed",
                                "/house_rooms/forge": "Forge",
                                "/house_rooms/workshop": "Workshop",
                                "/house_rooms/sewing_parlor": "Sewing Parlor",
                                "/house_rooms/kitchen": "Kitchen",
                                "/house_rooms/brewery": "Brewery",
                                "/house_rooms/laboratory": "Laboratory",
                                "/house_rooms/observatory": "Observatory",
                                "/house_rooms/dining_room": "Dining Room",
                                "/house_rooms/library": "Library",
                                "/house_rooms/dojo": "Dojo",
                                "/house_rooms/armory": "Armory",
                                "/house_rooms/gym": "Gym",
                                "/house_rooms/archery_range": "Archery Range",
                                "/house_rooms/mystical_study": "Mystical Study"
                            },
                            "purchaseBundleNames": {
                                "/purchase_bundles/cowbells_500": "500 Cowbells",
                                "/purchase_bundles/cowbells_1050": "1050 Cowbells",
                                "/purchase_bundles/cowbells_2700": "2700 Cowbells",
                                "/purchase_bundles/cowbells_5500": "5500 Cowbells",
                                "/purchase_bundles/cowbells_11500": "11500 Cowbells",
                                "/purchase_bundles/moo_pass_standard_30": "30-Day MooPass (Standard)",
                                "/purchase_bundles/moo_pass_standard_90": "90-Day MooPass (Standard)",
                                "/purchase_bundles/moo_pass_standard_365": "1-Year MooPass (Standard)",
                                "/purchase_bundles/moo_pass_ironcow_30": "30-Day MooPass (Ironcow)",
                                "/purchase_bundles/moo_pass_ironcow_90": "90-Day MooPass (Ironcow)",
                                "/purchase_bundles/moo_pass_ironcow_365": "1-Year MooPass (Ironcow)",
                                "/purchase_bundles/moo_pass_account_30": "30-Day MooPass (All Characters)",
                                "/purchase_bundles/moo_pass_account_90": "90-Day MooPass (All Characters)",
                                "/purchase_bundles/moo_pass_account_365": "1-Year MooPass (All Characters)"
                            },
                            "buyableUpgradeNames": {
                                "/buyable_upgrades/offline_hour_cap_1": "+1 Hour Offline Progress",
                                "/buyable_upgrades/offline_hour_cap_2": "+1 Hour Offline Progress",
                                "/buyable_upgrades/offline_hour_cap_3": "+1 Hour Offline Progress",
                                "/buyable_upgrades/offline_hour_cap_4": "+1 Hour Offline Progress",
                                "/buyable_upgrades/market_listing_cap_1": "+1 Market Listing",
                                "/buyable_upgrades/market_listing_cap_2": "+1 Market Listing",
                                "/buyable_upgrades/market_listing_cap_3": "+1 Market Listing",
                                "/buyable_upgrades/market_listing_cap_4": "+1 Market Listing",
                                "/buyable_upgrades/market_listing_cap_5": "+1 Market Listing",
                                "/buyable_upgrades/action_queue_cap_1": "+1 Action Queue",
                                "/buyable_upgrades/action_queue_cap_2": "+1 Action Queue",
                                "/buyable_upgrades/action_queue_cap_3": "+1 Action Queue",
                                "/buyable_upgrades/action_queue_cap_4": "+1 Action Queue",
                                "/buyable_upgrades/loadout_slot_cap_1": "+1 Loadout Slot",
                                "/buyable_upgrades/loadout_slot_cap_2": "+1 Loadout Slot",
                                "/buyable_upgrades/loadout_slot_cap_3": "+1 Loadout Slot",
                                "/buyable_upgrades/loadout_slot_cap_4": "+1 Loadout Slot",
                                "/buyable_upgrades/task_slot_cap_1": "+1 Task Slot",
                                "/buyable_upgrades/task_slot_cap_2": "+1 Task Slot",
                                "/buyable_upgrades/task_slot_cap_3": "+1 Task Slot",
                                "/buyable_upgrades/task_slot_cap_4": "+1 Task Slot"
                            },
                            "chatIconNames": {
                                "/chat_icons/admin": "Admin",
                                "/chat_icons/cco": "CCO",
                                "/chat_icons/community_manager": "Community Manager",
                                "/chat_icons/super_moderator": "Super Moderator",
                                "/chat_icons/moderator": "Moderator",
                                "/chat_icons/bug_finder": "Bug Finder",
                                "/chat_icons/super_bug_finder": "Super Bug Finder",
                                "/chat_icons/contributor": "Contributor",
                                "/chat_icons/super_contributor": "Super Contributor",
                                "/chat_icons/supporter": "Supporter",
                                "/chat_icons/verdant_supporter": "Verdant Supporter",
                                "/chat_icons/azure_supporter": "Azure Supporter",
                                "/chat_icons/burble_supporter": "Burble Supporter",
                                "/chat_icons/crimson_supporter": "Crimson Supporter",
                                "/chat_icons/rainbow_supporter": "Rainbow Supporter",
                                "/chat_icons/holy_supporter": "Holy Supporter",
                                "/chat_icons/beta_bunny": "Beta Bunny",
                                "/chat_icons/jack_o_lantern": "Jack-o'-lantern",
                                "/chat_icons/santa_hat": "Santa Hat",
                                "/chat_icons/spring_festival_lantern": "Spring Festival Lantern",
                                "/chat_icons/anniversary_purple": "Anniversary Purple",
                                "/chat_icons/og_jerry": "OG Jerry",
                                "/chat_icons/milking": "Milking",
                                "/chat_icons/foraging": "Foraging",
                                "/chat_icons/woodcutting": "Woodcutting",
                                "/chat_icons/cheesesmithing": "Cheesesmithing",
                                "/chat_icons/crafting": "Crafting",
                                "/chat_icons/tailoring": "Tailoring",
                                "/chat_icons/cooking": "Cooking",
                                "/chat_icons/brewing": "Brewing",
                                "/chat_icons/alchemy": "Alchemy",
                                "/chat_icons/enhancing": "Enhancing",
                                "/chat_icons/combat": "Combat",
                                "/chat_icons/stamina": "Stamina",
                                "/chat_icons/intelligence": "Intelligence",
                                "/chat_icons/attack": "Attack",
                                "/chat_icons/melee": "Melee",
                                "/chat_icons/defense": "Defense",
                                "/chat_icons/ranged": "Ranged",
                                "/chat_icons/magic": "Magic",
                                "/chat_icons/marketplace": "Marketplace",
                                "/chat_icons/tasks": "Tasks",
                                "/chat_icons/blueberry": "Blueberry",
                                "/chat_icons/blackberry": "Blackberry",
                                "/chat_icons/strawberry": "Strawberry",
                                "/chat_icons/mooberry": "Mooberry",
                                "/chat_icons/marsberry": "Marsberry",
                                "/chat_icons/spaceberry": "Spaceberry",
                                "/chat_icons/apple": "Apple",
                                "/chat_icons/orange": "Orange",
                                "/chat_icons/plum": "Plum",
                                "/chat_icons/peach": "Peach",
                                "/chat_icons/dragon_fruit": "Dragon Fruit",
                                "/chat_icons/star_fruit": "Star Fruit",
                                "/chat_icons/egg": "Egg",
                                "/chat_icons/bamboo": "Bamboo",
                                "/chat_icons/cheese": "Cheese",
                                "/chat_icons/cupcake": "Cupcake",
                                "/chat_icons/clover": "Clover",
                                "/chat_icons/tea": "Tea",
                                "/chat_icons/coffee": "Coffee",
                                "/chat_icons/task_crystal": "Task Crystal",
                                "/chat_icons/star_fragment": "Star Fragment",
                                "/chat_icons/pearl": "Pearl",
                                "/chat_icons/amber": "Amber",
                                "/chat_icons/garnet": "Garnet",
                                "/chat_icons/jade": "Jade",
                                "/chat_icons/amethyst": "Amethyst",
                                "/chat_icons/moonstone": "Moonstone",
                                "/chat_icons/sunstone": "Sunstone",
                                "/chat_icons/philosophers_stone": "Philosopher's Stone",
                                "/chat_icons/sword": "Sword",
                                "/chat_icons/spear": "Spear",
                                "/chat_icons/mace": "Mace",
                                "/chat_icons/bulwark": "Bulwark",
                                "/chat_icons/bow": "Bow",
                                "/chat_icons/crossbow": "Crossbow",
                                "/chat_icons/staff": "Staff",
                                "/chat_icons/book": "Book",
                                "/chat_icons/mages_hat": "Mage's Hat",
                                "/chat_icons/panda_paw": "Panda Paw",
                                "/chat_icons/fly": "Fly",
                                "/chat_icons/rat": "Jerry",
                                "/chat_icons/skunk": "Skunk",
                                "/chat_icons/porcupine": "Porcupine",
                                "/chat_icons/slimy": "Slimy",
                                "/chat_icons/frog": "Frogger",
                                "/chat_icons/snake": "Thnake",
                                "/chat_icons/swampy": "Swampy",
                                "/chat_icons/alligator": "Sherlock",
                                "/chat_icons/giant_shoebill": "Giant Shoebill",
                                "/chat_icons/sea_snail": "Gary",
                                "/chat_icons/crab": "I Pinch",
                                "/chat_icons/aquahorse": "Aquahorse",
                                "/chat_icons/nom_nom": "Nom Nom",
                                "/chat_icons/turtle": "Turuto",
                                "/chat_icons/marine_huntress": "Marine Huntress",
                                "/chat_icons/jungle_sprite": "Jungle Sprite",
                                "/chat_icons/myconid": "Myconid",
                                "/chat_icons/treant": "Treant",
                                "/chat_icons/centaur_archer": "Centaur Archer",
                                "/chat_icons/luna_empress": "Luna Empress",
                                "/chat_icons/eyes": "Eyes",
                                "/chat_icons/the_watcher": "The Watcher",
                                "/chat_icons/ice_sorcerer": "Ice Sorcerer",
                                "/chat_icons/flame_sorcerer": "Flame Sorcerer",
                                "/chat_icons/elementalist": "Elementalist",
                                "/chat_icons/chronofrost_sorcerer": "Chronofrost Sorcerer",
                                "/chat_icons/gummy_bear": "Gummy Bear",
                                "/chat_icons/panda": "Panda",
                                "/chat_icons/black_bear": "Black Bear",
                                "/chat_icons/grizzly_bear": "Grizzly Bear",
                                "/chat_icons/polar_bear": "Polar Bear",
                                "/chat_icons/red_panda": "Red Panda",
                                "/chat_icons/zombie": "Zombie",
                                "/chat_icons/vampire": "Vampire",
                                "/chat_icons/werewolf": "Werewolf",
                                "/chat_icons/dusk_revenant": "Dusk Revenant",
                                "/chat_icons/abyssal_imp": "Abyssal Imp",
                                "/chat_icons/soul_hunter": "Soul Hunter",
                                "/chat_icons/infernal_warlock": "Infernal Warlock",
                                "/chat_icons/demonic_overlord": "Demonic Overlord",
                                "/chat_icons/butterjerry": "Butterjerry",
                                "/chat_icons/rabid_rabbit": "Rabid Rabbit",
                                "/chat_icons/enchanted_knight": "Enchanted Knight",
                                "/chat_icons/enchanted_bishop": "Enchanted Bishop",
                                "/chat_icons/squawker": "Squawker",
                                "/chat_icons/iron_cow": "Iron Cow",
                                "/chat_icons/cow": "Cow",
                                "/chat_icons/verdant_cow": "Verdant Cow",
                                "/chat_icons/azure_cow": "Azure Cow",
                                "/chat_icons/burble_cow": "Burble Cow",
                                "/chat_icons/crimson_cow": "Crimson Cow",
                                "/chat_icons/unicow": "Unicow",
                                "/chat_icons/holy_cow": "Holy Cow",
                                "/chat_icons/duckling": "Duckling",
                                "/chat_icons/whale": "Whale",
                                "/chat_icons/golden_coin": "Golden Coin",
                                "/chat_icons/golden_marketplace": "Golden Marketplace",
                                "/chat_icons/golden_egg": "Golden Egg",
                                "/chat_icons/golden_berry": "Golden Berry",
                                "/chat_icons/golden_apple": "Golden Apple",
                                "/chat_icons/golden_donut": "Golden Donut",
                                "/chat_icons/golden_cupcake": "Golden Cupcake",
                                "/chat_icons/golden_clover": "Golden Clover",
                                "/chat_icons/golden_biceps": "Golden Biceps",
                                "/chat_icons/golden_frog": "Golden Frog",
                                "/chat_icons/golden_piggy": "Golden Piggy",
                                "/chat_icons/golden_duckling": "Golden Duckling",
                                "/chat_icons/golden_whale": "Golden Whale"
                            },
                            "nameColorNames": {
                                "/name_colors/burble": "Burble",
                                "/name_colors/blue": "Blue",
                                "/name_colors/green": "Green",
                                "/name_colors/yellow": "Yellow",
                                "/name_colors/coral": "Coral",
                                "/name_colors/pink": "Pink",
                                "/name_colors/fancy_burble": "Fancy Burble",
                                "/name_colors/fancy_blue": "Fancy Blue",
                                "/name_colors/fancy_green": "Fancy Green",
                                "/name_colors/fancy_yellow": "Fancy Yellow",
                                "/name_colors/fancy_coral": "Fancy Coral",
                                "/name_colors/fancy_pink": "Fancy Pink",
                                "/name_colors/iron": "Iron",
                                "/name_colors/rainbow": "Rainbow",
                                "/name_colors/golden": "Golden"
                            },
                            "communityBuffTypeNames": {
                                "/community_buff_types/experience": "Experience",
                                "/community_buff_types/gathering_quantity": "Gathering Quantity",
                                "/community_buff_types/production_efficiency": "Production Efficiency",
                                "/community_buff_types/enhancing_speed": "Enhancing Speed",
                                "/community_buff_types/combat_drop_quantity": "Combat Drop Quantity"
                            },
                            "chatChannelTypeNames": {
                                "/chat_channel_types/general": "General",
                                "/chat_channel_types/chinese": "中文",
                                "/chat_channel_types/french": "Français",
                                "/chat_channel_types/german": "Deutsch",
                                "/chat_channel_types/spanish": "Español",
                                "/chat_channel_types/portuguese": "Português",
                                "/chat_channel_types/russian": "Русский",
                                "/chat_channel_types/hebrew": "עברית",
                                "/chat_channel_types/arabic": "العربية",
                                "/chat_channel_types/hindi": "हिंदी",
                                "/chat_channel_types/japanese": "日本語",
                                "/chat_channel_types/korean": "한국어",
                                "/chat_channel_types/vietnamese": "Tiếng Việt",
                                "/chat_channel_types/ironcow": "Ironcow",
                                "/chat_channel_types/trade": "Trade",
                                "/chat_channel_types/recruit": "Recruit",
                                "/chat_channel_types/beginner": "Beginner",
                                "/chat_channel_types/guild": "Guild",
                                "/chat_channel_types/party": "Party",
                                "/chat_channel_types/moderator": "Mod",
                                "/chat_channel_types/whisper": "Whisper"
                            },
                            "guildCharacterRoleNames": {
                                "leader": "Leader",
                                "general": "General",
                                "officer": "Officer",
                                "member": "Member"
                            },
                            "leaderboardTypeNames": {
                                "standard": "Standard",
                                "ironcow": "Ironcow",
                                "legacy_ironcow": "Legacy Ironcow",
                                "steam_standard": "Standard (Steam)",
                                "steam_ironcow": "Ironcow (Steam)",
                                "guild": "Guild"
                            },
                            "leaderboardCategoryNames": {
                                "total_level": "Total Level",
                                "milking": "Milking",
                                "foraging": "Foraging",
                                "woodcutting": "Woodcutting",
                                "cheesesmithing": "Cheesesmithing",
                                "crafting": "Crafting",
                                "tailoring": "Tailoring",
                                "cooking": "Cooking",
                                "brewing": "Brewing",
                                "alchemy": "Alchemy",
                                "enhancing": "Enhancing",
                                "stamina": "Stamina",
                                "intelligence": "Intelligence",
                                "attack": "Attack",
                                "melee": "Melee",
                                "defense": "Defense",
                                "ranged": "Ranged",
                                "magic": "Magic",
                                "task_points": "Task Points",
                                "fame_points": "Fame Points",
                                "guild": "Guild"
                            }
                        }
                    },
                    "zh": {
                        "translation": {
                            "global": {
                                "gameName": "银河奶牛放置"
                            },
                            "modalProvider": {
                                "ok": "确定",
                                "cancel": "取消",
                                "yes": "确定",
                                "no": "取消"
                            },
                            "actionsUtil": {
                                "itemNotAvailable": "[物品不可用]",
                                "doingNothing": "无所事事...",
                                "partySuffix": " (队伍)"
                            },
                            "characterItemsUtil": {
                                "mainHand": "主手",
                                "offHand": "副手",
                                "back": "背部",
                                "head": "头部",
                                "charm": "护符",
                                "body": "身体",
                                "legs": "腿部",
                                "hands": "手部",
                                "feet": "脚部",
                                "pouch": "袋子",
                                "neck": "项链",
                                "earrings": "耳环",
                                "ring": "戒指",
                                "trinket": "饰品",
                                "milkingTool": "挤奶工具",
                                "foragingTool": "采摘工具",
                                "woodcuttingTool": "伐木工具",
                                "cheesesmithingTool": "奶酪锻造工具",
                                "craftingTool": "制作工具",
                                "tailoringTool": "缝纫工具",
                                "cookingTool": "烹饪工具",
                                "brewingTool": "冲泡工具",
                                "alchemyTool": "炼金工具",
                                "enhancingTool": "强化工具"
                            },
                            "combatStats": {
                                "primaryTraining": "主修训练",
                                "focusTraining": "选修训练",
                                "combatStyleHrids": "战斗风格",
                                "damageType": "伤害类型",
                                "attackInterval": "攻击间隔",
                                "autoAttackDamage": "自动攻击伤害",
                                "abilityDamage": "技能伤害",
                                "attackSpeed": "攻击速度",
                                "castSpeed": "施法速度",
                                "abilityHaste": "技能急速",
                                "criticalRate": "暴击率",
                                "criticalDamage": "暴击伤害",
                                "stabAccuracy": "刺击精准度",
                                "slashAccuracy": "斩击精准度",
                                "smashAccuracy": "钝击精准度",
                                "rangedAccuracy": "远程精准度",
                                "magicAccuracy": "魔法精准度",
                                "stabDamage": "刺击伤害",
                                "slashDamage": "斩击伤害",
                                "smashDamage": "钝击伤害",
                                "rangedDamage": "远程伤害",
                                "magicDamage": "魔法伤害",
                                "defensiveDamage": "防御伤害",
                                "taskDamage": "任务伤害",
                                "physicalAmplify": "物理增幅",
                                "waterAmplify": "水系增幅",
                                "natureAmplify": "自然系增幅",
                                "fireAmplify": "火系增幅",
                                "healingAmplify": "治疗增幅",
                                "armorPenetration": "护甲穿透",
                                "waterPenetration": "水系穿透",
                                "naturePenetration": "自然系穿透",
                                "firePenetration": "火系穿透",
                                "physicalThorns": "物理荆棘",
                                "elementalThorns": "元素荆棘",
                                "retaliation": "反伤",
                                "maxHitpoints": "最大HP",
                                "maxManapoints": "最大MP",
                                "stabEvasion": "刺击闪避",
                                "slashEvasion": "斩击闪避",
                                "smashEvasion": "钝击闪避",
                                "rangedEvasion": "远程闪避",
                                "magicEvasion": "魔法闪避",
                                "armor": "护甲",
                                "waterResistance": "水系抗性",
                                "natureResistance": "自然系抗性",
                                "fireResistance": "火系抗性",
                                "damageTaken": "承受伤害",
                                "lifeSteal": "生命偷取",
                                "manaLeech": "法力吸取",
                                "tenacity": "韧性",
                                "threat": "威胁",
                                "hpRegenPer10": "生命恢复",
                                "mpRegenPer10": "法力恢复",
                                "foodHaste": "食物急速",
                                "drinkConcentration": "饮料浓度",
                                "combatDropRate": "战斗掉落率",
                                "combatDropQuantity": "战斗掉落数量",
                                "combatRareFind": "战斗稀有发现",
                                "combatExperience": "战斗经验",
                                "staminaExperience": "耐力经验",
                                "intelligenceExperience": "智力经验",
                                "attackExperience": "攻击经验",
                                "defenseExperience": "防御经验",
                                "meleeExperience": "近战经验",
                                "rangedExperience": "远程经验",
                                "magicExperience": "魔法经验",
                                "foodSlots": "食物槽位",
                                "drinkSlots": "饮料槽位",
                                "weaken": "削弱",
                                "fury": "狂怒",
                                "parry": "格挡",
                                "mayhem": "暴乱",
                                "pierce": "穿刺",
                                "curse": "诅咒",
                                "ripple": "涟漪",
                                "bloom": "绽放",
                                "blaze": "炽焰"
                            },
                            "noncombatStats": {
                                "skillingSpeed": "专业速度",
                                "milkingSpeed": "挤奶速度",
                                "foragingSpeed": "采摘速度",
                                "woodcuttingSpeed": "伐木速度",
                                "cheesesmithingSpeed": "奶酪锻造速度",
                                "craftingSpeed": "制作速度",
                                "tailoringSpeed": "缝纫速度",
                                "cookingSpeed": "烹饪速度",
                                "brewingSpeed": "冲泡速度",
                                "alchemySpeed": "炼金速度",
                                "enhancingSpeed": "强化速度",
                                "taskSpeed": "任务速度",
                                "skillingEfficiency": "专业效率",
                                "milkingEfficiency": "挤奶效率",
                                "foragingEfficiency": "采摘效率",
                                "woodcuttingEfficiency": "伐木效率",
                                "cheesesmithingEfficiency": "奶酪锻造效率",
                                "craftingEfficiency": "制作效率",
                                "tailoringEfficiency": "缝纫效率",
                                "cookingEfficiency": "烹饪效率",
                                "brewingEfficiency": "冲泡效率",
                                "alchemyEfficiency": "炼金效率",
                                "enhancingSuccess": "强化成功率",
                                "gatheringQuantity": "采集数量",
                                "drinkConcentration": "饮料浓度",
                                "skillingEssenceFind": "专业精华发现",
                                "skillingRareFind": "专业稀有发现",
                                "milkingRareFind": "挤奶稀有发现",
                                "foragingRareFind": "采摘稀有发现",
                                "woodcuttingRareFind": "伐木稀有发现",
                                "cheesesmithingRareFind": "奶酪锻造稀有发现",
                                "craftingRareFind": "制作稀有发现",
                                "tailoringRareFind": "缝纫稀有发现",
                                "cookingRareFind": "烹饪稀有发现",
                                "brewingRareFind": "冲泡稀有发现",
                                "alchemyRareFind": "炼金稀有发现",
                                "enhancingRareFind": "强化稀有发现",
                                "skillingExperience": "专业经验",
                                "milkingExperience": "挤奶经验",
                                "foragingExperience": "采摘经验",
                                "woodcuttingExperience": "伐木经验",
                                "cheesesmithingExperience": "奶酪锻造经验",
                                "craftingExperience": "制作经验",
                                "tailoringExperience": "缝纫经验",
                                "cookingExperience": "烹饪经验",
                                "brewingExperience": "冲泡经验",
                                "alchemyExperience": "炼金经验",
                                "enhancingExperience": "强化经验"
                            },
                            "home": {
                                "nav": {
                                    "home": "首页",
                                    "news": "新闻",
                                    "patchNotes": "更新日志",
                                    "gameGuide": "游戏指南"
                                },
                                "title": "$t(global.gameName) - 多人放置游戏 - 收集、制作、战斗、交易,还有更多精彩!",
                                "subtitle": "多人放置RPG",
                                "bannerText": "踏上一段穿越$t(global.gameName)的旅程,这是一款独特的多人放置游戏。无论你喜欢收集资源、制作物品,还是参与与外星怪物的史诗战斗,这里都有属于你的乐趣!你可以沉浸在我们繁荣的社区中,在玩家驱动的市场中交易物品,与朋友组建公会、畅聊交流,甚至冲击排行榜巅峰!",
                                "testServer": "测试服务器",
                                "activePlayerCount": "当前有 {{count}} 名活跃玩家!",
                                "showcases": {
                                    "gatherAndCraft": {
                                        "title": "收集和制作",
                                        "text": "挤奶、采集、伐木、奶酪锻造、制作、缝纫、烹饪、冲泡、炼金、强化"
                                    },
                                    "combat": {
                                        "title": "战斗",
                                        "text": "多种战斗风格,可定义消耗品和技能的自动使用。单人或组队战斗"
                                    },
                                    "marketplace": {
                                        "title": "市场",
                                        "text": "买卖资源、消耗品、装备等物品"
                                    },
                                    "community": {
                                        "title": "社区",
                                        "text": "与朋友组队聊天,争夺排行榜的一席之地!"
                                    }
                                },
                                "footer": {
                                    "termsOfUse": "使用条款",
                                    "privacyPolicy": "隐私政策",
                                    "emailContact": "联系我们"
                                }
                            },
                            "auth": {
                                "tabs": {
                                    "playAsGuest": "游客登录",
                                    "register": "注册",
                                    "login": "登录"
                                },
                                "serverError": {
                                    "title": "无法连接到服务器",
                                    "message": "你当前无法连接到游戏服务器。这可能是由于游戏正在更新、服务器维护,或者你和服务器之间存在网络问题(例如防火墙)。请5-10分钟后刷新页面再试。"
                                },
                                "thirdPartyCookieMessage": {
                                    "title": "登录",
                                    "message": "你的浏览器不支持第三方Cookie,这是在iframe内玩游戏所必需的。请启用第三方Cookie或从<a href='https://www.milkywayidle.com' target='_blank'>www.milkywayidle.com</a>进行游戏。"
                                },
                                "welcomeBack": {
                                    "title": "欢迎回来!",
                                    "logout": "退出登陆"
                                },
                                "buttons": {
                                    "enterGame": "进入游戏"
                                },
                                "confirmationMessages": {
                                    "guestWarning": "警告: 访客账户只能通过设置中的访客密码再次登录。",
                                    "logoutConfirmation": "你确定要退出登陆吗?"
                                },
                                "shared": {
                                    "agreeToRulesLabel": "我同意<termsLink>《使用条款》</termsLink>、<privacyPolicyLink>《隐私政策》</privacyPolicyLink>、和<gameRulesLink>《游戏规则》</gameRulesLink>",
                                    "agreeToOneAccountLabel": "我同意我只可玩一个账户",
                                    "errors": {
                                        "agreeToRulesError": "你必须同意游戏规则",
                                        "agreeToOneAccountError": "你必须同意只玩一个账户",
                                        "serverUnreachable": "服务器无法访问或离线",
                                        "captchaBlockedError": "验证码验证被浏览器的隐私设置阻止",
                                        "captchaFailedError": "验证码验证失败",
                                        "unexpectedError": "意外错误"
                                    }
                                }
                            },
                            "playAsGuestForm": {
                                "title": "以访客身份游玩",
                                "info": "你的会话将保存在此浏览器中。要跨多个设备游玩,你可以在游戏中的<b>设置</b>中找到你的<b>访客密码</b>或进行完整<b>注册</b>。",
                                "playButton": "游玩"
                            },
                            "registerForm": {
                                "title": "注册",
                                "emailLabel": "邮箱",
                                "passwordLabel": "密码",
                                "passwordConfirmationLabel": "确认密码",
                                "registerButton": "注册",
                                "errors": {
                                    "emailEmpty": "邮箱不能为空",
                                    "invalidEmail": "请输入有效的邮箱",
                                    "passwordTooShort": "密码至少需要6个字符",
                                    "passwordsDoNotMatch": "密码不匹配"
                                }
                            },
                            "loginForm": {
                                "back": "< 返回",
                                "title": "登录",
                                "titleSteam": "登录$t(global.gameName)",
                                "emailOrNameLabel": "邮箱或用户名",
                                "passwordLabel": "密码",
                                "loginButton": "登录",
                                "forgotPassword": "忘记密码",
                                "errors": {
                                    "emailOrNameEmpty": "邮箱/用户名不能为空",
                                    "passwordEmpty": "密码不能为空"
                                }
                            },
                            "forgotPassword": {
                                "title": "忘记密码",
                                "infoMessage": "如果你的帐户已使用有效电子邮件注册,你将收到一封包含重置说明的密码重置邮件。(可能需要检查垃圾邮件文件夹)",
                                "emailLabel": "电子邮件",
                                "resetPasswordButton": "重置密码",
                                "backToLogin": "返回登录",
                                "successMessage": "如果该电子邮件地址与帐户关联,已发送电子邮件。",
                                "errors": {
                                    "emailEmptyError": "电子邮件不能为空",
                                    "invalidEmailError": "请输入有效的电子邮件"
                                }
                            },
                            "playFromKongregate": {
                                "title": "从Kongregate玩游戏",
                                "noAccountMessage": "你必须拥有一个Kongregate帐户才能进行游戏。",
                                "registerButton": "注册",
                                "signInInfo": "登录$t(global.gameName)。如果是初次游玩,可创建新帐户!",
                                "signInButton": "从Kongregate登录"
                            },
                            "loginWithSteam": {
                                "signInTitle": "从Steam登录游戏",
                                "signInInfo": "使用你的Steam帐户开始玩$t(global.gameName)!",
                                "signInButton": "从Steam登录",
                                "linkAccountTitle": "已有$t(global.gameName)帐户?",
                                "linkAccountInfo": "如果你之前玩过网页版$t(global.gameName),可以将现有帐户与Steam绑定。",
                                "linkAccountButton": "有,绑定我的帐户",
                                "createAccountButton": "没有,创建新帐户",
                                "steamAuthTicketError": "无法获取Steam身份验证票据。请重新启动Steam并重试。"
                            },
                            "characterSelectPage": {
                                "title": "选择角色 - $t(global.gameName)",
                                "header": "选择角色",
                                "loading": "正在加载角色...",
                                "createCharacterModal": {
                                    "title": "创建角色",
                                    "nameLabel": "角色名称:",
                                    "namePlaceholder": "角色名称(2-16个字母或数字)",
                                    "gameModeLabel": "游戏模式:",
                                    "maxCharacter": "最多{{count}}个角色",
                                    "maxCharacter_one": "最多{{count}}个角色",
                                    "maxCharacter_other": "最多{{count}}个角色",
                                    "submitButton": "创建",
                                    "errors": {
                                        "nameLength": "必须为2到16个字符",
                                        "nameInvalid": "仅允许字母和数字"
                                    }
                                },
                                "slots": {
                                    "slot": "槽位{{slotNum}}",
                                    "empty": "空",
                                    "online": "在线",
                                    "lastOnline": "上次在线: {{duration}}前"
                                },
                                "errors": {
                                    "fetchCharacters": "无法获取角色信息,请稍后再试。",
                                    "fetchGameModes": "无法获取游戏模式数据,请稍后再试。",
                                    "serverUnreachable": "服务器不可达或离线",
                                    "unexpectedError": "未知错误"
                                }
                            },
                            "gamePage": {
                                "disconnectedFromServer": "与服务器断开连接...",
                                "bannedMessage": "你被封禁至 {{banExpireTime}}。{{banReason}}",
                                "refresh": "刷新",
                                "attemptingToConnect": "正在连接到服务器...",
                                "loadingTitle": "加载中 - $t(global.gameName)",
                                "disconnectedTitle": "已断开连接 - $t(global.gameName)",
                                "guestLogoutWarning": "警告: 访客帐户只能通过设置中的访客密码再次登录。",
                                "logoutConfirmation": "你确定要退出登陆吗?",
                                "refreshPrompt": " 请刷新。",
                                "gameServerRestarted": "游戏服务器已重启。请刷新页面。"
                            },
                            "header": {
                                "flee": "逃跑",
                                "stop": "停止",
                                "loadoutWithName": "配装: {{name}}",
                                "loadoutUnavailable": "配装包含缺失物品",
                                "loadoutDeleted": "配装已删除",
                                "totalExperience": "总经验: {{totalExp}}",
                                "totalLevel": "总等级: {{totalLevel}}",
                                "activePlayers": "活跃角色: {{activePlayerCount}}",
                                "confirmRunAway": "你确定要逃离战斗吗?",
                                "newTutorialMessage": "新教程消息",
                                "newMessage": "新消息",
                                "newTutorialTask": "新教程任务",
                                "newTask": "新任务",
                                "progress": "进度: {{currentCount}} / {{goalCount}}",
                                "successRate": "成功率: {{successRate}}",
                                "usingCatalyst": "使用催化剂",
                                "targetEnhance": "目标: +{{enhancingMaxLevel}}",
                                "protectEnhance": "保护: +{{enhancingProtectionMinLevel}}"
                            },
                            "actionProgressBar": {
                                "fighting": "战斗中",
                                "travelingToBattle": "前往战斗"
                            },
                            "queuedActions": {
                                "loadout": "配装: {{name}}",
                                "loadoutUnavailable": "配装包含不可用物品",
                                "loadoutDeleted": "配装已删除",
                                "useItem": "使用: {{itemName}}",
                                "catalystUnavailable": "催化剂: [物品不足]",
                                "targetLevel": "目标等级: +{{level}}",
                                "protectFromLevel": "保护等级: +{{level}}",
                                "repeat": "重复",
                                "gather": "收集",
                                "produce": "生产",
                                "fight": "战斗",
                                "actionCountTimes": "{{action}} {{count}} 次",
                                "queuedActionsHeader": "行动队列",
                                "queuedActionsSlotCount": "行动队列 ({{current}}/{{max}})",
                                "upgradeCapacity": "升级容量",
                                "queuedActionsCount": "+{{count}} 队列<br />中的行动",
                                "remove": "移除",
                                "moveActionToFrontConfirm": "现在运行此行动吗?当前行动将暂停,并在之后继续。"
                            },
                            "navigationBar": {
                                "myStuff": "我的物品",
                                "marketplace": "市场",
                                "tasks": "任务",
                                "combat": "战斗",
                                "shop": "商店",
                                "cowbellStore": "牛铃商店",
                                "lootTracker": "掉落记录",
                                "social": "社交",
                                "guild": "公会",
                                "leaderboard": "排行榜",
                                "moderator": "管理员",
                                "settings": "设置",
                                "news": "新闻",
                                "patchNotes": "更新日志",
                                "gameGuide": "游戏指南",
                                "gameRules": "游戏规则",
                                "wiki": "维基百科",
                                "discord": "Discord",
                                "testServer": "测试服务器",
                                "privacyPolicy": "隐私政策",
                                "switchCharacter": "切换角色",
                                "logout": "退出登陆",
                                "myStuffTooltip": "库存、装备、能力、房屋和配装。",
                                "marketplaceTooltip": "玩家驱动的市场,你可以用金币买卖物品。",
                                "tasksTooltip": "随机生成的任务,完成后可获得奖励。",
                                "milkingTooltip": "哞哞哞~~~",
                                "foragingTooltip": "成为拾荒大师",
                                "woodcuttingTooltip": "We are 伐木累",
                                "cheesesmithingTooltip": "芝士就是打铁",
                                "craftingTooltip": "制作武器、珠宝等。",
                                "tailoringTooltip": "制作远程和魔法服装。",
                                "cookingTooltip": "制作健康食物的艺术。",
                                "brewingTooltip": "制作美味饮品的艺术。",
                                "alchemyTooltip": "菜就多炼",
                                "enhancingTooltip": "+5靠努力,+10靠运气,+15是奇迹,+20是命运",
                                "combatTooltip": "与怪物战斗。你的战斗等级代表了基于各个战斗技能等级组合的综合战斗效果。",
                                "shopTooltip": "从供应商处购买物品。",
                                "cowbellStoreTooltip": "购买和使用牛铃。",
                                "lootTrackerTooltip": "记录你最近行动获得的物品。",
                                "socialTooltip": "朋友、推荐和黑名单。",
                                "guildTooltip": "加入玩家社区。",
                                "leaderboardTooltip": "显示每个专业的顶级玩家。",
                                "moderatorTooltip": "大锤用户。",
                                "settingsTooltip": "更新帐户信息和其他设置。",
                                "staminaTooltip": "每级+10生命上限。",
                                "intelligenceTooltip": "每级+10法力上限。",
                                "attackTooltip": "增加你的精准度、基础攻击速度和施法速度。",
                                "defenseTooltip": "增加你的闪避、护甲和元素抗性。",
                                "meleeTooltip": "增加你的近战伤害。",
                                "rangedTooltip": "增加你的远程伤害。远程攻击有额外的暴击几率。",
                                "magicTooltip": "增加你的魔法伤害。",
                                "activePlayers": "活跃角色: {{count}}",
                                "level": "等级: {{count}}",
                                "totalExperience": "总经验: {{count}}",
                                "xpToLevelUp": "升级所需经验: {{count}}"
                            },
                            "marketplacePanel": {
                                "marketplace": "市场",
                                "marketListings": "商品列表",
                                "myListings": "我的挂牌",
                                "resources": "资源",
                                "consumables": "消耗品",
                                "books": "技能书",
                                "keys": "钥匙",
                                "equipment": "装备",
                                "accessories": "佩饰",
                                "tools": "工具",
                                "mustBeBetween0And20": "必须在0到20之间",
                                "mustBeAtLeast1": "必须至少为1",
                                "youDontHaveEnoughItems": "你没有足够的物品",
                                "youCantAffordThisMany": "你买不起这么多",
                                "mustBeAtLeastVendorPrice": "必须至少为商人价格",
                                "itemFilterPlaceholder": "物品搜索",
                                "viewAllItems": "查看所有物品",
                                "viewAllEnhancementLevels": "查看所有强化等级",
                                "refresh": "刷新",
                                "sell": "出售",
                                "buy": "购买",
                                "sellNow": "立即出售",
                                "postSellOrder": "发布出售订单",
                                "sellListing": "出售挂牌",
                                "postSellListing": "发布出售挂牌",
                                "buyNow": "立即购买",
                                "postBuyOrder": "发布购买订单",
                                "buyListing": "购买挂牌",
                                "postBuyListing": "发布购买挂牌",
                                "max": "最多",
                                "all": "全部",
                                "enhancementLevel": "强化等级",
                                "quantityYouHave": "数量 (你有: {{maxQuantity}})",
                                "quantityYouCanAfford": "数量 (你能负担: {{maxQuantity}})",
                                "quantityAvailableAtPrice": "数量 (此价格可用: {{marketQuantity}})",
                                "priceBestSellOffer": "价格 (最佳出售报价: <bestPrice />)",
                                "priceBestBuyOffer": "价格 (最佳购买报价: <bestPrice />)",
                                "youGetOrMore": "获得: {{totalValue}}<coin /> ({{taxRate}}税)<br />(更多,如果有更好的报价)",
                                "youPayOrLess": "支付: {{totalValue}}<coin /><br />(更少,如果有更好的报价)",
                                "sellRestricted": "出售受限",
                                "listingLimitReached": "已达到挂牌限制",
                                "newSellListing": "+ 新出售挂牌",
                                "newBuyListing": "+ 新购买挂牌",
                                "loading": "正在加载...",
                                "item": "物品",
                                "bestAskPrice": "最佳出售价",
                                "bestBidPrice": "最佳收购价",
                                "viewAll": "查看全部",
                                "nope": "没有...",
                                "quantity": "数量",
                                "askPrice": "出售价",
                                "bidPrice": "收购价",
                                "action": "操作",
                                "upgradeCapacity": "升级容量",
                                "collectAll": "全部收集 ({{claimableCount}})",
                                "status": "状态",
                                "type": "类型",
                                "progress": "进度",
                                "price": "价格",
                                "taxTaken": "税收",
                                "collect": "收集",
                                "chatLink": "聊天链接",
                                "link": "链接",
                                "cancel": "取消",
                                "confirmCancelMarketListing": "你确定要取消此挂牌吗?",
                                "active": "有效",
                                "filled": "已完成",
                                "cancelled": "已取消",
                                "expired": "已过期",
                                "listingsCount": "{{currentListings}} / {{listingCap}} 挂牌"
                            },
                            "marketListingLink": {
                                "buying": "购买",
                                "selling": "出售",
                                "price": "价格: <color>{{price}}</color>"
                            },
                            "tasksPanel": {
                                "tasks": "任务",
                                "taskBoard": "任务栏",
                                "taskShop": "任务商店",
                                "taskCooldownUpgrade": "-1小时任务冷却",
                                "taskCooldownDescription": "永久减少一小时任务等待时间。",
                                "blockSlotUpgrade": "+1屏蔽槽位",
                                "blockSlotDescription": "增加一个屏蔽槽位,允许屏蔽一种非战斗专业的新任务。",
                                "combatBlockUpgrade": "解锁战斗屏蔽",
                                "combatBlockDescription": "允许屏蔽战斗任务。你需要至少一个可用的屏蔽槽位才能使用此功能。",
                                "tutorialIncomplete": "完成你的教程任务以解锁任务栏。<br />你当前的任务可以在页面右上角找到。",
                                "purplesGift": "小紫牛的礼物: {{unclaimedTaskPoints}} / {{claimCost}} 任务积分",
                                "claim": "领取",
                                "unreadTasks": "你有 {{count}} 个未读任务",
                                "unreadTasks_one": "你有 {{count}} 个未读任务",
                                "unreadTasks_other": "你有 {{count}} 个未读任务",
                                "read": "读取",
                                "taskSlotCount": "{{taskCount}} / {{taskSlotCap}} 任务",
                                "upgradeCapacity": "升级容量",
                                "nextTask": "下一个任务: ",
                                "waitingForNextTask": "生成下一个任务。请稍等...",
                                "blockedSkills": "屏蔽专业",
                                "buyTaskUpgrade": "购买任务升级",
                                "buyTaskShopItem": "购买任务商店物品",
                                "quantity": "数量",
                                "youPay": "支付: {{totalCost}}",
                                "buy": "购买",
                                "upgrades": "升级",
                                "items": "物品",
                                "lifetimeTaskPoints": "累计任务积分: {{totalTaskPoints}}",
                                "minimumQuantity": "最小数量: 1",
                                "notEnoughItems": "你没有足够的{{itemName}}"
                            },
                            "taskBlockSlot": {
                                "remove": "移除",
                                "blockSlot": "槽位 {{slotIndex}}"
                            },
                            "randomTask": {
                                "back": "返回",
                                "confirmDiscard": "确认放弃",
                                "payCowbells": "支付 {{cowbellCost}}",
                                "payCoins": "支付 {{coinCost}}",
                                "reroll": "重置",
                                "mooPassFreeReroll": "哞卡免费重置",
                                "go": "前往",
                                "claimReward": "领取奖励",
                                "progress": "进度: {{currentCount}} / {{goalCount}}",
                                "rewards": "奖励: ",
                                "defeat": "击败 - {{monsterName}}"
                            },
                            "tutorialQuest": {
                                "purple": "小紫牛",
                                "welcomeStartText": "欢迎来到$t(global.gameName)——一个拥有神奇奶牛的世界!<br /><br />我是小紫牛,首席培训官,也是你的导游!<br /><br />我会用橙色的闪光来引导你完成培训。",
                                "welcomeButtonText": "嗨,小紫牛!",
                                "milkCowStartText": "让我先带你看看我们神奇奶牛最拿手的:生产神奇牛奶!顺便说一下,我的表妹深紫也在这里工作。嗨,深紫!<br /><br />首先,试着收集一些牛奶。",
                                "milkCowCompleteText": "干得好!这里有一些额外的牛奶和一把刷子。刷一刷奶牛,它们会更快乐更高效的产奶!",
                                "smithCheeseStartText": "让我们用牛奶制作一些奶酪!这些特殊的奶酪非常耐用,可以通过奶酪锻造做成许多有用的东西!",
                                "smithCheeseCompleteText": "太好了!带上一些额外的奶酪去完成下一个任务。",
                                "smithSwordStartText": "奶酪是制作工具、武器和盔甲的重要资源。让我教你如何制作奶酪剑吧!我知道这听起来可能有点不可思议,但请相信我。",
                                "smithSwordCompleteText": "真棒!随着你的升级,你也可以使用更强的装备!还可以制作工具来提高你的技艺。",
                                "forageFarmlandStartText": "现在让我们去寻找更多的资源。前往翠野农场,看看你能收集到什么物品!",
                                "forageFarmlandCompleteText": "好快!采摘为你提供了许多技艺所需的资源,包括烹饪、冲泡和缝纫!",
                                "cookDonutStartText": "是时候开始烹饪了,用一些鸡蛋、小麦和糖做一个美味的甜甜圈吧。什么?你不会做饭?你可以学嘛!我听说地球上还有只老鼠会做饭呢,如果它能做到,你肯定也行!试试看!",
                                "cookDonutCompleteText": "太棒了!食物可以在战斗中治愈你。快拿着这一打免费的甜甜圈!",
                                "fightFlyStartText": "现在我想带你去我们的邻近星球之一——臭臭星球!我听说那里有很多会咬人的苍蝇!你最好带上剑和一些甜甜圈。我们出发吧!",
                                "fightFlyCompleteText": "与怪兽战斗可以赚取金币、资源、技能书,甚至稀有物品。<br /><br />如果你在战斗中被击倒,你将在150秒后恢复并继续战斗。",
                                "messageTipsStartText": "看起来旅行快结束了。虽然还有很多东西可以探索,但别担心,你不会孤单!一旦你再升级一点,就可以与其他玩家聊天或获得帮助!<br /><br />你也可以在我们的玩家驱动的市场中买卖物品,除非你在玩铁牛模式。",
                                "messageTipsButtonText": "好的",
                                "messageTips2StartText": "在我走之前,还有一些提示:<br />- 游戏指南可以在左侧导航菜单的底部找到。<br />- 即使你处于离线状态,你依然能继续获得10小时离线进程 (可升级)。<br />- 物品、技能、专业和敌人可以鼠标悬停(在移动设备上长按)以查看更详细信息。<br /><br />好的,我得走了,是时候吃我的第二顿午餐了,我可有四个胃要填饱呢。快去探索世界吧!",
                                "messageTips2ButtonText": "再见,小紫牛!"
                            },
                            "questModal": {
                                "purple": "小紫牛",
                                "task": "任务",
                                "tutorial": "教程",
                                "taskInfo": "任务: {{taskName}}",
                                "progress": "进度: {{currentCount}} / {{goalCount}}",
                                "rewardsLabel": "奖励: ",
                                "defeatMonster": "击败 - {{monsterName}}",
                                "ok": "确定",
                                "accept": "接受",
                                "go": "前往",
                                "claimReward": "领取奖励"
                            },
                            "gatheringProductionSkillPanel": {
                                "consumables": "消耗品"
                            },
                            "alchemyPanel": {
                                "currentAction": "当前行动",
                                "notAlchemizing": "没有行动",
                                "consumables": "消耗品"
                            },
                            "enhancingPanel": {
                                "currentActionTab": "当前行动",
                                "notEnhancing": "没有行动",
                                "consumables": "消耗品"
                            },
                            "combatPanel": {
                                "combatZones": "战斗区域",
                                "findParty": "寻找队伍",
                                "myParty": "我的队伍",
                                "battleCount": "交战 #{{battleId}}"
                            },
                            "combatZones": {
                                "consumables": "消耗品",
                                "abilities": "技能"
                            },
                            "findParty": {
                                "selectZone": "选择区域",
                                "refresh": "刷新",
                                "createParty": "创建队伍",
                                "profile": "个人资料",
                                "join": "加入",
                                "combatZone": "战斗区域",
                                "difficulty": "难度",
                                "fightTimes": "战斗 {{times}} 次",
                                "partyName": "{{name}}的{{partyType}}",
                                "privateParty": "私人队伍",
                                "party": "队伍",
                                "levelRequirement": "等级{{minLevel}}-{{maxLevel}}"
                            },
                            "party": {
                                "noLoadout": "无配装",
                                "selectZone": "选择区域",
                                "fightTimesWithInputs": "战斗 <inputs /> 次",
                                "partyName": "{{name}}的{{partyType}}",
                                "privateParty": "私人队伍",
                                "publicParty": "公开队伍",
                                "autoKickCheckbox": "自动踢出5分钟内未就绪的队员",
                                "autoKickEnabled": "自动踢出已启用",
                                "autoKickDisabled": "自动踢出已禁用",
                                "slot": "槽位 {{number}}",
                                "role": "定位",
                                "minLevel": "最低等级",
                                "maxLevel": "最高等级",
                                "addSlot": "添加槽位",
                                "combatZone": "战斗区域",
                                "difficulty": "难度",
                                "leaveParty": "离开队伍",
                                "confirmLeaveParty": "你确定要离开队伍吗?",
                                "disbandParty": "解散队伍",
                                "confirmDisbandParty": "你确定要解散队伍吗?",
                                "editParty": "修改队伍",
                                "cancel": "取消",
                                "createParty": "创建队伍",
                                "save": "保存",
                                "linkToChat": "链接到聊天频道",
                                "consumables": "消耗品",
                                "abilities": "技能",
                                "profile": "个人资料",
                                "giveLeadership": "给予领导权",
                                "kick": "踢出",
                                "ready": "准备就绪",
                                "unready": "未就绪"
                            },
                            "partyRoles": {
                                "any_role": "任何定位",
                                "damage_dealer": "伤害输出",
                                "support": "辅助",
                                "tank": "坦克"
                            },
                            "partyLink": {
                                "linkText": "队伍: $t(actionNames.{{actionHrid}})"
                            },
                            "battlePanel": {
                                "stats": "属性",
                                "battleInfo": "交战信息",
                                "confirmRunAway": "你确定要逃离战斗吗?",
                                "combatDuration": "战斗时间: {{duration}}",
                                "battles": "交战: {{battleId}}",
                                "deaths": "战败: {{deathCount}}",
                                "itemsLooted": "战利品: ",
                                "experienceGained": "获得经验: ",
                                "waveLabel": "波次 {{currentWave}} / {{maxWaves}}",
                                "battleNumber": "交战 #{{battleId}}",
                                "consumables": "消耗品",
                                "abilities": "技能",
                                "flee": "逃跑"
                            },
                            "combatUnit": {
                                "respawn": "复活",
                                "autoAttack": "自动攻击",
                                "stunned": "眩晕",
                                "blindedSilenced": "失明/沉默",
                                "blinded": "失明",
                                "silenced": "沉默"
                            },
                            "combatMonsterTooltip": {
                                "combatLevel": "战斗等级: {{level}}",
                                "experience": "经验: {{experience}}",
                                "drops": "掉落:",
                                "rareDrops": "稀有掉落:"
                            },
                            "skillActionDetail": {
                                "levelRequirement": "Lv.{{level}}{{bonus}}",
                                "requires": "需要",
                                "upgradesFrom": "升级自",
                                "upgradeItemWarning": "没有选择升级物品",
                                "enhancementTransferAll": "转移所有强化等级。",
                                "enhancementTransfer": "转移70%的强化等级。<br />小数有机会多加1级。",
                                "costs": "费用",
                                "outputs": "产出",
                                "essenceDrops": "精华",
                                "rareDrops": "稀有",
                                "experience": "经验",
                                "duration": "持续时间",
                                "successRate": "成功率",
                                "travel": "旅行时间",
                                "bonuses": "加成",
                                "alchemizeItem": "炼金物品",
                                "selectAlchemyItem": "选择要炼金的物品",
                                "coinifyInfo": "<span>点金:</span> 将物品转换为金币。",
                                "decomposeInfo": "<span>分解:</span> 将物品转换为原材料或精华。",
                                "transmuteInfo": "<span>转化:</span> 将物品转换为随机相关物品。",
                                "invalidCoinifyItem": "此物品无法被点金",
                                "invalidDecomposeItem": "此物品无法被分解",
                                "invalidTransmuteItem": "此物品无法被转化",
                                "recommendedLevel": "推荐等级 {{level}} <Icon />",
                                "bulkMultiplier": "每次使用 {{multiplier}} 个物品",
                                "catalyst": "催化剂",
                                "consumedItem": "消耗物品",
                                "notUsed": "不使用",
                                "enhanceItem": "强化装备",
                                "selectEnhancingItem": "选择要强化的装备",
                                "successInfo": "<span>成功</span>将使物品的强化等级增加1。",
                                "failureInfo": "<span>失败</span>除非使用保护道具,将重置强化等级为0。",
                                "targetLevel": "目标等级",
                                "protection": "保护",
                                "protectFromLevel": "保护起始等级",
                                "protectionMinLevelWarning": "必须≥2才有效",
                                "entryKey": "入口钥匙",
                                "reward": "奖励",
                                "bosses": "BOSS",
                                "bossFight": "BOSS<br />每{{battlesPerBoss}}场<br/>交战出现",
                                "monsters": "怪物",
                                "difficulty": "难度",
                                "repeat": "重复",
                                "gather": "采集",
                                "produce": "生产",
                                "fight": "战斗",
                                "loadout": "配装",
                                "noLoadout": "无配装",
                                "confirmStartNow": "你确定要替换你的行动队列吗?",
                                "buttons": {
                                    "start": "开始",
                                    "startNow": "立即开始",
                                    "stop": "停止",
                                    "upgradeQueue": "升级行动队列",
                                    "addToQueue": "添加到队列 #{{count}}",
                                    "findParty": "寻找队伍"
                                }
                            },
                            "shopPanel": {
                                "minQuantity": "最小数量: 1",
                                "cannotAfford": "无法支付",
                                "itemFilterPlaceholder": "物品筛选",
                                "youPay": "支付: {{count}} {{itemName}}",
                                "buyItem": "购买物品",
                                "quantity": "数量",
                                "buy": "购买",
                                "shop": "商店"
                            },
                            "cowbellStorePanel": {
                                "buyCowbells": "购买牛铃",
                                "mooPass": "哞卡",
                                "upgrades": "便利升级",
                                "chatIcons": "聊天图标",
                                "customChatIcon": "定制聊天图标",
                                "nameColors": "名称颜色",
                                "customNameColor": "定制名称颜色",
                                "avatars": "角色形象",
                                "customAvatar": "定制角色形象",
                                "avatarOutfits": "角色服装",
                                "customAvatarOutfit": "定制角色服装",
                                "communityBuffs": "社区增益",
                                "nameChange": "更改名称",
                                "optIn": "加入",
                                "optOut": "退出",
                                "price": "价格: {{price}}",
                                "supporterPoints": "{{points}} 支持者积分",
                                "minimumQuantity": "最小数量: 1",
                                "notEnoughItems": "你没有足够的 {{itemName}}",
                                "minimumDuration": "最短持续时间: 10分钟",
                                "notEnoughCowbells": "你没有足够的牛铃",
                                "mustBeCharacters": "必须是2-16个字符",
                                "onlyAlphabetsNumbers": "只允许字母和数字",
                                "notAvailable": "不可用",
                                "serverUnreachable": "服务器无法访问或离线",
                                "unexpectedError": "意外错误",
                                "confirmChangeName": "确认更改名称为: {{name}}",
                                "purchaseSuccessful": "购买成功",
                                "thankYouSupport": "感谢你的支持! 购买的牛铃或哞卡应该会在游戏中授予你。",
                                "purchaseNotice": "购买通知",
                                "purchaseAntiFraudMessage": "游戏安全要求:首次购买将触发72小时禁止出售牛铃袋的市场限制,自行使用没有限制。",
                                "waitForSteamOverlay": "等待Steam叠加页面",
                                "steamOverlayMessage": "Steam叠加页面将自动弹出,以继续你的购买。这通常需要几秒钟,但偶尔也会需要更长时间。之后你可以关闭此消息。",
                                "continueToPurchase": "继续购买",
                                "continuePayment": "点击继续,在新窗口中打开我们的支付处理器。",
                                "guestWarning": "注意: 这是一个访客账户。建议在设置->账户中注册以避免意外丢失访问权限",
                                "continue": "继续",
                                "mooPassPerks": "哞卡福利",
                                "buyConvenienceUpgrade": "购买便利升级",
                                "quantity": "数量",
                                "limit": "(限制: {{limit}})",
                                "buyLimit": "购买限制: {{limit}}",
                                "afterPurchaseHoursofflineProgress": "购买后: {{limit}} 小时离线进度",
                                "afterPurchaseMarketListings": "购买后: {{limit}} 市场挂牌",
                                "afterPurchaseActionQueues": "购买后: {{limit}} 行动队列",
                                "afterPurchaseLoadoutSlots": "购买后: {{limit}} 配装槽位",
                                "afterPurchaseTaskSlots": "购买后: {{limit}} 任务槽位",
                                "buyChatIcon": "购买聊天图标",
                                "buyNameColor": "购买名称颜色",
                                "buyAvatar": "购买角色形象",
                                "buyAvatarOutfit": "购买角色服装",
                                "preview": "预览",
                                "unlock": "解锁",
                                "buyCommunityBuff": "购买社区增益",
                                "minute": "分钟",
                                "minutesToAdd": "添加分钟数",
                                "youPay": "支付: {{cost}}",
                                "buy": "购买",
                                "cowbellStore": "牛铃商店",
                                "supporterPointsLabel": "支持者积分: {{points}}",
                                "famePointsLabel": "名誉积分: {{points}}",
                                "buyCowbellsInfo": "你可以购买牛铃来支持游戏。牛铃可用于购买便利升级、聊天图标、名称颜色、角色形象、角色服装、社区增益,或者更改你的名称。",
                                "testServerFreeCowbellsSteam": "测试服务器: 你可以免费获得牛铃。这使用Steam的沙盒支付模式,不会实际扣款。",
                                "testServerFreeCowbellsStripe": "测试服务器: 你可以免费获得牛铃,输入4242-4242-4242-4242作为信用卡,其它字段随意输入。",
                                "buyCowbellsNote": "注意: 购买的牛铃将作为牛铃袋 (每袋10个) 出现在你的[库存]中,可以在市场上出售给其他玩家 ({{cowbellTaxRate}}金币税)。一旦打开就不可出售。",
                                "selectCurrency": "选择货币",
                                "mooPassInfo": "哞卡提供多种实用但不影响主要体验的<PerksLink>福利</PerksLink>。",
                                "characterMooPass": "角色哞卡",
                                "accountMooPass": "账户哞卡",
                                "increaseOfflineProgressLimit": "增加离线进度上限",
                                "increaseMarketListingLimit": "增加市场挂牌上限",
                                "increaseActionQueueLimit": "增加行动队列上限",
                                "increaseLoadoutSlotLimit": "增加配装槽位上限",
                                "increaseTaskSlotLimit": "增加任务槽位上限",
                                "freeMooPass": "14天哞卡赠送",
                                "free": "免费",
                                "confirmClaimFreeMooPass": "激活14天免费哞卡? 这是一次性赠送。如果哞卡已经激活,将延长14天。",
                                "mooPassWithCowbells": "7天哞卡",
                                "buyMooPass": "购买哞卡",
                                "totalMooPassDays": "获得: {{days}}天哞卡",
                                "upgradeLimitsInfo": "升级会永久增加上限。你当前的上限可以在[设置]中查看。",
                                "seasonal": "节日限定",
                                "unlocked": "已解锁",
                                "chatIconsInfo": "聊天图标显示在你名称前面。解锁的聊天图标可以在[设置]->[个人资料]中更改。",
                                "customChatIconInfo": "你可以花费 {{supporterPoints}} 支持者积分和 {{cowbellCost}} 牛铃来定制一个聊天图标。请通过 Discord 的 #new-ticket 频道提交申请。图标将根据你提供的概念或图片,由我们的设计师制作,确保符合游戏的风格和配色主题。图标不得包含任何受版权保护的内容。授予图标时,将从你选择的角色中扣除支持者点数和牛铃费用。",
                                "nameColorsInfo": "点击任意颜色查看预览。解锁的颜色可以在[设置]->[个人资料]中更改。",
                                "customNameColorInfo": "你可以花费 {{supporterPoints}} 支持者积分和 {{cowbellCost}} 牛铃来定制一个名称颜色。请通过 Discord 的 #new-ticket 频道提交申请。名称颜色可以是渐变色,并可选择添加微弱的发光效果。授予名称颜色时,将从你选择的角色中扣除支持者点数和牛铃费用。",
                                "avatarsInfo": "点击任意角色形象查看预览。解锁的角色形象可以在[设置]->[个人资料]中更改。",
                                "customAvatarInfo": "你可以花费 {{supporterPoints}} 支持者积分和 {{cowbellCost}} 牛铃来定制一个角色形象。请通过 Discord 的 #new-ticket 频道提交申请。角色形象将根据你提供的概念或图片,由我们的设计师制作,确保符合游戏的风格和配色主题。角色形象不得包含任何受版权保护的内容。授予角色形象时,将从你选择的角色中扣除支持者点数和牛铃费用。",
                                "avatarOutfitsInfo": "点击任意角色服装查看预览。解锁的角色服装可以在[设置]->[个人资料]中更改。",
                                "customAvatarOutfitInfo": "你可以花费 {{supporterPoints}} 支持者积分和 {{cowbellCost}} 牛铃来定制一个角色服装。请通过 Discord 的 #new-ticket 频道提交申请。角色服装将根据你提供的概念或图片,由我们的设计师制作,确保符合游戏的风格和配色主题。角色服装不得包含任何受版权保护的内容。授予角色服装时,将从你选择的角色中扣除支持者点数和牛铃费用。",
                                "communityBuffsInfo": "社区增益使服务器上所有玩家都受益。每花费一个牛铃在社区增益上,你将获得1个名誉积分。名誉积分在排行榜上排名。",
                                "fameLeaderboard": "名誉排行榜",
                                "currentName": "当前名称",
                                "newName": "新名称",
                                "checkAvailability": "检查可用性",
                                "available": "可用",
                                "cost": "费用",
                                "changeName": "更改名称"
                            },
                            "paymentSuccessPage": {
                                "paymentSuccess": "支付成功",
                                "thankYouMessage": "感谢你的支持!购买的牛铃将在1分钟内出现在你的库存中。你可以关闭此页并返回游戏。"
                            },
                            "paymentCancelPage": {
                                "paymentCancelled": "支付已取消",
                                "closeTabMessage": "你可以关闭此页并返回游戏。"
                            },
                            "lootLogPanel": {
                                "lootTracker": "掉落记录",
                                "refresh": "刷新",
                                "startTime": "开始时间",
                                "duration": "持续时间"
                            },
                            "socialPanel": {
                                "friends": "朋友",
                                "referrals": "推荐",
                                "blockList": "黑名单",
                                "whisper": "私聊",
                                "profile": "资料",
                                "confirmUnfriend": "确认取消好友",
                                "unfriend": "取消好友",
                                "activity": "活动",
                                "status": "状态",
                                "daysAgo": "{{days}}前",
                                "online": "在线",
                                "hidden": "隐藏",
                                "offline": "离线",
                                "playerNamePlaceholder": "玩家名称",
                                "addFriend": "添加好友",
                                "blockedPlayers": "已屏蔽玩家",
                                "blockPlayer": "屏蔽玩家",
                                "unblock": "取消屏蔽",
                                "referralBonusFirstLevel": "推荐的玩家达到了总等级 {{level}}",
                                "referralBonusPurchase": "推荐的玩家购买了牛铃",
                                "reward": "奖励: {{quantity}}",
                                "claim": "领取",
                                "referralInstructions": "当有人使用你的推荐链接注册时,你将有资格获得以下奖励:",
                                "referralInstructionBullets": "<ul><li>获得 {{firstLevelCowbells}}<cowbellIcon />如果推荐的玩家达到总等级 {{firstTotalLevel}}。</li><li>额外获得 {{secondLevelCowbells}}<cowbellIcon />如果玩家达到总等级 {{secondTotalLevel}}。</li><li>玩家购买的任何牛铃的 {{purchaseCowbellPercent}}。</li></ul>",
                                "referralLinkCopied": "链接已复制",
                                "copyLink": "复制链接",
                                "referralCount": "到目前为止,已有 <span>{{count}}</span> 名玩家通过你的推荐链接注册",
                                "socialTitle": "社交"
                            },
                            "guildPanel": {
                                "overview": "概览",
                                "members": "成员",
                                "manage": "管理",
                                "nameLengthError": "名称必须为{{minLength}}-{{maxLength}}个字符",
                                "nameContentError": "名称只能包含字母、数字和单个空格",
                                "confirmDisband": "你确定要解散公会吗?",
                                "confirmLeave": "你确定要离开公会吗?",
                                "guildInvitation": "公会邀请:",
                                "invitedBy": "邀请者:",
                                "decline": "拒绝",
                                "join": "加入",
                                "createGuildInstructions": "你可以花费5M金币创建一个公会。公会目前提供以下功能:",
                                "createGuildInfoBullets": "<ul><li>公会聊天频道和公告板。</li><li>当成员在任何专业获得经验时公会也将获得经验并可升级,经验比例为1:1000。</li><li>{{defaultSlots}} 个成员槽位,每{{levelsPerSlot}}级公会等级增加1个额外槽位。</li><li>可以分配角色: 会长、将军、官员、会员。</li></ul>",
                                "cost5m": "费用: 5,000,000",
                                "guildNamePlaceholder": "公会名称",
                                "createGuild": "创建公会",
                                "joinGuildInfo": "你也可以被邀请加入现有公会。使用招募聊天频道寻找要加入的公会。收到的邀请将显示在下方。",
                                "save": "保存",
                                "edit": "修改",
                                "guildLevel": "公会等级",
                                "guildExperience": "公会经验",
                                "expToLevelUp": "升级所需经验",
                                "guildMembers": "公会成员",
                                "whisper": "私聊",
                                "profile": "资料",
                                "confirmGiveLead": "确认转让会长",
                                "giveLeadership": "转让会长",
                                "promote": "提升",
                                "demote": "降级",
                                "cancelInvite": "取消邀请",
                                "confirmKick": "确认踢出",
                                "kick": "踢出",
                                "playerNamePlaceholder": "玩家名称",
                                "inviteToGuild": "邀请加入公会",
                                "membersHeader": "成员 ({{currentCount}}/{{maxCount}})",
                                "role": "职位",
                                "guildExp": "公会经验",
                                "activity": "活动",
                                "status": "状态",
                                "invited": "已邀请",
                                "daysAgo": "{{days}}前",
                                "online": "在线",
                                "hidden": "隐藏",
                                "offline": "离线",
                                "disbandInstructions": "如果没有其他成员或邀请,你可以解散公会。",
                                "disbandGuild": "解散公会",
                                "leaveInstructions": "你可以离开公会。离开公会没有任何惩罚。",
                                "leaveGuild": "离开公会",
                                "guild": "公会"
                            },
                            "leaderboardPanel": {
                                "leaderboard": "排行榜",
                                "noPlayers": "没有玩家达到此排行榜的最低标准。",
                                "updatesNote": "每20分钟更新一次",
                                "rank": "排名",
                                "name": "名称",
                                "level": "等级",
                                "experience": "经验",
                                "points": "积分",
                                "taskPoints": "任务积分",
                                "famePoints": "名誉积分"
                            },
                            "moderatorPanel": {
                                "reportedFor": "被举报: "
                            },
                            "settingsPanel": {
                                "settings": "设置",
                                "profile": "个人资料",
                                "game": "游戏",
                                "account": "账户",
                                "show": "显示",
                                "hide": "隐藏",
                                "off": "关闭",
                                "enabled": "启用",
                                "disabled": "禁用",
                                "on": "开",
                                "public": "公开",
                                "friendsGuildmates": "好友/公会成员",
                                "private": "隐藏",
                                "partyMembersOnly": "仅限队员",
                                "emailEmpty": "电子邮件不能为空",
                                "validEmail": "请输入有效的电子邮件",
                                "currentPassword": "请输入你的当前密码",
                                "passwordLength": "密码至少为6个字符",
                                "confirmPassword": "确认密码不匹配",
                                "noneOwned": "没有",
                                "unlock": "解锁",
                                "unlockMoreAvatars": "解锁更多角色形象",
                                "unlockMoreOutfits": "解锁更多服装",
                                "setSkillLevel": "更改专业等级",
                                "selectSkill": "选择专业",
                                "setLevel": "更改等级",
                                "preview": "预览:",
                                "viewProfile": "查看我的资料",
                                "chatIcon": "聊天图标:",
                                "nameColor": "名称颜色:",
                                "avatar": "角色形象:",
                                "avatarOutfit": "角色服装:",
                                "onlineStatus": "在线状态:",
                                "equipment": "装备:",
                                "deleteCharacter": "删除角色",
                                "deleteCharacterTimeLimit": "创建后10小时内无法删除",
                                "showDeletionInstructions": "显示删除说明",
                                "deleteCharacterInstructions": "按照说明永久删除此角色 \"{{name}}\"。删除后无法撤销。你必须先退出队伍和公会,然后输入角色的确切名称以确认删除。",
                                "characterName": "角色名称:",
                                "deleteCharacterCaps": "删除角色",
                                "gameMode": "游戏模式:",
                                "mooPass": "哞卡:",
                                "inactive": "未激活",
                                "offlineProgress": "离线进度:",
                                "hours": "小时",
                                "upgrade": "升级",
                                "marketListing": "市场挂牌:",
                                "listings": "挂牌",
                                "actionQueue": "行动队列:",
                                "actions": "行动",
                                "loadoutSlot": "配装槽位:",
                                "slots": "槽位",
                                "taskSlots": "任务槽位:",
                                "tasks": "任务",
                                "displayLanguage": "显示语言:",
                                "generalChat": "英语聊天:",
                                "nonEnglishChat": "非英语聊天:",
                                "ironcowChat": "铁牛聊天:",
                                "tradeChat": "交易聊天:",
                                "recruitChat": "招募聊天:",
                                "beginnerChat": "新手聊天:",
                                "totalLevelMessage": "总等级消息:",
                                "skillLevelMessage": "专业等级消息:",
                                "communityBuffMessage": "社区增益消息:",
                                "profanityFilter": "屏蔽不良语言:",
                                "chatURLWarning": "聊天URL确认:",
                                "cssAnimation": "CSS动画:",
                                "name": "名称:",
                                "accountType": "账户类型:",
                                "guest": "游客",
                                "registeredUser": "注册用户",
                                "guestPassword": "游客密码:",
                                "kongregateId": "Kongregate ID:",
                                "steamId": "Steam ID:",
                                "currentPasswordLabel": "当前密码:",
                                "emailLabel": "电子邮件:",
                                "newPassword": "新密码",
                                "confirmPasswordLabel": "确认密码",
                                "update": "更新",
                                "registerEmailPassword": "注册电子邮件/密码"
                            },
                            "chat": {
                                "generalTip": "提示: 英语频道仅限英语进行游戏讨论和友好交流。为保持积极和相互尊重的气氛,请遵守<gameRulesLink>游戏规则</gameRulesLink>。",
                                "tradeTip": "提示: 贸易频道用于宣传物品交易和服务。请使用私聊进行对话和谈判。",
                                "recruitTip": "提示: 招募频道用于宣传公会/队伍招募和寻找加入公会/队伍的玩家。请使用私聊进行对话。",
                                "beginnerTip": "提示: 欢迎在此提问或与其他玩家聊天。实用链接: <gameGuideLink>游戏指南</gameGuideLink>和<gameRulesLink>游戏规则</gameRulesLink>。",
                                "whisperTip": "提示: 你可以使用命令\"/w [玩家名] [消息]\"与其他玩家私聊,或点击玩家的名称并选择私聊。",
                                "useWhisperCommand": "使用 /w 命令",
                                "needPlayerName": "需要玩家名",
                                "emptyMessage": "消息为空",
                                "invalidCommand": "无效命令",
                                "useTradeChannel": "请使用交易频道",
                                "useRecruitChannel": "请使用招募频道",
                                "mutedMessage": "禁言至 {{muteExpireTime}}。{{muteReason}}",
                                "generalChatRestriction": "你需要至少 {{generalChatMinLevel}} 总等级或 {{generalChatMinExp}} 总经验才能使用英语聊天",
                                "chatRestriction": "你需要至少 {{chatMinLevel}} 总等级才能聊天",
                                "enterMessagePlaceholder": "输入消息...",
                                "sendButton": "发送",
                                "reportChatMessage": "举报聊天消息",
                                "reportInstructions": "举报严重的聊天干扰或违规行为。对于个人间的小争执,请使用屏蔽功能。",
                                "reportReason": "举报原因:",
                                "submitReport": "提交举报",
                                "reportType": {
                                    "selectReason": "选择举报原因",
                                    "harassmentMe": "骚扰我",
                                    "harassmentOthers": "骚扰他人",
                                    "offensiveLanguage": "冒犯性语言",
                                    "illegalViolentSexual": "非法/暴力/性内容",
                                    "controversialTopics": "敏感话题",
                                    "excessiveDrama": "过度闹事/纷争",
                                    "spam": "恶意刷屏/垃圾信息",
                                    "encouragingRuleBreaking": "鼓励违反规则",
                                    "personalInformation": "泄露个人信息",
                                    "wrongChannel": "错误频道",
                                    "cheating": "作弊",
                                    "underage": "未满13岁",
                                    "inappropriateName": "不当名称",
                                    "other": "其他"
                                },
                                "reportTypeDescription": {
                                    "harassmentMe": "针对我的人身攻击或严重骚扰。",
                                    "harassmentOthers": "针对其他玩家的人身攻击或严重骚扰。",
                                    "offensiveLanguage": "使用冒犯性或不当语言。",
                                    "illegalViolentSexual": "包含非法、过度暴力或性内容的消息、讨论或链接。",
                                    "controversialTopics": "敏感话题,如政治、宗教、国际冲突、性别讨论、性取向、禁言/封禁投诉等,以及其他容易引发纷争的话题。",
                                    "excessiveDrama": "蓄意带节奏或煽动性言论,干扰聊天秩序。",
                                    "spam": "一个玩家频繁发送重复或无意义消息或索要免费物品。(多名玩家发送类似消息是允许的)",
                                    "encouragingRuleBreaking": "鼓励或误导其他玩家违反游戏规则。",
                                    "personalInformation": "泄露自己或其他玩家未公开的个人身份信息。",
                                    "wrongChannel": "多次在错误的频道发送消息。",
                                    "cheating": "自称作弊行为,包括多账号、财富转移、线外交易、非法脚本或漏洞利用。",
                                    "underage": "自称未满13岁。",
                                    "inappropriateName": "不当的角色名称。",
                                    "other": "其他未涵盖的问题。"
                                }
                            },
                            "chatMessage": {
                                "whisper": "私聊",
                                "mention": "提及",
                                "profile": "玩家资料",
                                "addFriend": "加好友",
                                "confirmBlock": "确认屏蔽",
                                "block": "屏蔽",
                                "report": "举报",
                                "modInspect": "管理员检查",
                                "undeleteMsg": "恢复消息",
                                "deleteMsg": "删除消息",
                                "warn": "警告",
                                "mute": "禁言",
                                "moderator": "管理员",
                                "privateModeratorTo": "(私密) 管理员对{{receiverName}}说",
                                "toPlayer": "对{{receiverName}}说",
                                "messageDeleted": "消息已删除"
                            },
                            "characterName": {
                                "customIcon": "定制图标"
                            },
                            "textWithLinks": {
                                "externalLinkWarning": "你确定要打开外部链接吗?"
                            },
                            "characterManagement": {
                                "inventory": "库存",
                                "equipment": "装备",
                                "abilities": "技能",
                                "house": "房屋",
                                "loadouts": "配装"
                            },
                            "inventory": {
                                "openedLootHeader": "打开的战利品",
                                "foundItemsLabel": "你找到了",
                                "closeButton": "关闭",
                                "itemFilterPlaceholder": "物品搜索"
                            },
                            "equipmentPanel": {
                                "title": "装备",
                                "viewStats": "查看属性",
                                "combatStats": "战斗属性",
                                "nonCombatStats": "非战斗属性"
                            },
                            "abilitiesPanel": {
                                "title": "技能",
                                "abilitySlotsLabel": "技能槽位",
                                "learnedAbilitiesLabel": "已学技能"
                            },
                            "housePanel": {
                                "house": "房屋",
                                "houseBuffs": "房屋增益",
                                "allSkills": "所有行动",
                                "none": "无",
                                "notBuilt": "未建造",
                                "level": "{{level}} 级",
                                "max": "最大",
                                "constructionCosts": "建造费用",
                                "build": "建造",
                                "viewBuffs": "查看增益",
                                "actionBuff": "{{action}}增益",
                                "allSkillBuffs": "所有行动增益"
                            },
                            "loadoutPanel": {
                                "allSkills": "所有行动",
                                "newLoadout": "新配装",
                                "createLoadout": "创建配装",
                                "loadoutCount": "{{count}} / {{max}} 配装",
                                "upgradeCapacity": "升级容量",
                                "loadouts": "配装",
                                "viewAllLoadouts": "查看所有配装",
                                "deleteLoadout": "删除配装",
                                "confirmDeleteLoadout": "你确定要删除此配装吗?",
                                "name": "名称",
                                "edit": "修改",
                                "save": "保存",
                                "setDefault": "设为{{actionTypeName}}的默认配装",
                                "suppressValidation": "缺失物品时不要提醒",
                                "importCurrentSetup": "导入当前配置",
                                "confirmImportCurrentSetup": "你确定要导入你当前配置吗?这将覆盖现有的配装。",
                                "equipLoadout": "装备配装",
                                "equipment": "装备",
                                "abilities": "技能",
                                "consumables": "消耗品"
                            },
                            "offlineProgressModal": {
                                "welcomeBack": "欢迎回来!",
                                "offlineDuration": "离线时间",
                                "progressDuration": "进展时间",
                                "upgrade": "升级",
                                "itemsGained": "获得物品",
                                "experienceGained": "获得经验",
                                "itemsConsumed": "消耗物品",
                                "close": "关闭"
                            },
                            "sharableProfile": {
                                "overview": "概览",
                                "skills": "专业",
                                "equipment": "装备",
                                "house": "房屋",
                                "guildRole": "{{guildName}} {{role}}",
                                "online": "在线",
                                "offline": "离线",
                                "totalExperience": "总经验: {{experience}}",
                                "totalLevel": "总等级: {{level}}",
                                "combatLevel": "战斗等级: {{level}}",
                                "age": "年龄: {{age}}",
                                "level": "{{level}} 级",
                                "close": "关闭"
                            },
                            "skill": {
                                "level": "等级: {{level}}",
                                "totalExperience": "总经验: {{totalExperience}}",
                                "expToLevelUp": "升级所需经验: {{remainingExperience}}"
                            },
                            "item": {
                                "all": "全部",
                                "learn": "学习",
                                "levelNotMet": "(等级未达到)",
                                "cannotDuringCombat": "(战斗中无法使用)",
                                "newAbility": "(新技能)",
                                "gainXP": "(+{{count}} XP)",
                                "equip": "装备",
                                "enhance": "强化",
                                "alchemize": "炼金",
                                "openLoot": "打开 {{count}} 个",
                                "openLootWithKeys": "打开 {{count}} 个 (钥匙: {{keyCount}})",
                                "viewMarketplace": "前往市场",
                                "viewCowbellStore": "前往牛铃商店",
                                "linkToChat": "链接到聊天频道",
                                "openItemDictionary": "打开物品词典",
                                "sellFor": "卖出 {{count}} 金币",
                                "confirmSellFor": "确认卖出 {{count}} 金币"
                            },
                            "itemTooltipText": {
                                "amount": "数量: {{amount}}",
                                "sellPrice": "商人价格: {{price}}",
                                "openHotkeyHint": "打开 - [右键点击]",
                                "abilityBookType": "类型: 技能书",
                                "requiresLevel": "需要: {{level}} 级{{skill}}",
                                "abilityExpPerBook": "每本书技能经验: {{exp}} ",
                                "learnHotkeyHint": "学习 - [右键点击]",
                                "equipmentType": "类型: {{type}}",
                                "equipHotkeyHint": "装备 - [右键点击]",
                                "consumableType": "类型: 消耗品",
                                "usableIn": "可用于: ",
                                "cooldownInCombat": "冷却 (战斗中): {{seconds}}s",
                                "hpRestore": "HP恢复: {{amount}}HP",
                                "mpRestore": "MP恢复: {{amount}}MP",
                                "overDuration": "持续 {{duration}}"
                            },
                            "equipmentStatsText": {
                                "weaken": "削弱: 被敌人攻击时,降低敌人{{value}}伤害,持续15秒,最多叠加5次。",
                                "fury": "狂怒: 命中敌人时,增加{{value}}精准度和伤害,持续15秒,最多叠加5次。未命中时失去一半叠加层。",
                                "parry": "格挡: {{value}}几率格挡敌人的攻击,避免伤害并立即自动攻击一次。可格挡针对队友的攻击。",
                                "mayhem": "暴乱: 在自动攻击未命中时,有{{value}}几率自动攻击下一个敌人,可多次连续触发。",
                                "pierce": "穿透: 在自动攻击命中后,有{{value}}几率自动攻击下一个敌人,可多次连续触发。",
                                "curse": "诅咒: 命中敌人时,使其受到的伤害增加{{value}},持续15秒,最多叠加5次。",
                                "ripple": "涟漪: 施放技能时,{{value}}几率减少所有技能冷却时间2秒并恢复10MP。",
                                "bloom": "绽放: 施放技能时,{{value}}几率治疗HP%最低的队友10HP+15%魔法伤害。",
                                "blaze": "炽焰: 施放技能时,{{value}}几率攻击所有敌人30%魔法伤害。"
                            },
                            "itemSelector": {
                                "count": "数量",
                                "remove": "移除",
                                "itemFilterPlaceholder": "物品搜索",
                                "cannotChangeWhileInCombat": "战斗中无法更改",
                                "noItemsAvailable": "没有可用物品"
                            },
                            "consumableSlot": {
                                "requireBiggerPouch": "需更大<br />袋子",
                                "food": "食物",
                                "drink": "饮料"
                            },
                            "itemDictionary": {
                                "gatheredFrom": "采集自:",
                                "producedFrom": "生产自",
                                "producedFromCheesesmithing": "生产自奶酪锻造:",
                                "producedFromCrafting": "生产自制作:",
                                "producedFromTailoring": "生产自缝纫:",
                                "producedFromCooking": "生产自烹饪:",
                                "producedFromBrewing": "生产自冲泡:",
                                "producedFromAlchemy": "生产自炼金:",
                                "producedFromEnhancing": "生产自强化:",
                                "rareDropFrom": "稀有掉落来自:",
                                "droppedByMonsters": "怪物掉落:",
                                "droppedByEliteMonsters": "精英怪物掉落:",
                                "decomposedFrom": "分解自(炼金):",
                                "transmutedFrom": "转化自(炼金):",
                                "decomposesInto": "分解成(炼金):",
                                "transmutesInto": "转化成(炼金):",
                                "enhancingCost": "强化成本:",
                                "usedFor": "用于{{actionTypeName}}:",
                                "lootedFromContainer": "从容器中获得:",
                                "openToLoot": "打开可获得:",
                                "anyMilkingAction": "任何挤奶行动。",
                                "anyForagingAction": "任何采摘行动。",
                                "anyWoodcuttingAction": "任何伐木行动。",
                                "anyCheesesmithingAction": "任何奶酪锻造行动。",
                                "anyCraftingAction": "任何制作行动。",
                                "anyTailoringAction": "任何缝纫行动。",
                                "anyCookingAction": "任何烹饪行动。",
                                "anyBrewingAction": "任何冲泡行动。",
                                "anyAlchemyAction": "任何炼金行动。",
                                "anyEnhancingAction": "任何强化行动。",
                                "anyLowLevelGathering": "任何低级采集行动。",
                                "anyMediumLevelGathering": "任何中级采集行动。",
                                "anyHighLevelGathering": "任何高级采集行动。",
                                "anyLowLevelProduction": "任何低级生产、炼金和强化行动。",
                                "anyMediumLevelProduction": "任何中级生产、炼金和强化行动。",
                                "anyHighLevelProduction": "任何高级生产、炼金和强化行动。",
                                "almostAllMonstersDropCoins": "几乎所有怪物都会掉落金币。",
                                "anyLowLevelMonster": "任何低级怪物在普通战斗中。",
                                "anyMediumLevelMonster": "任何中级怪物在普通战斗中。",
                                "anyHighLevelMonster": "任何高级怪物在普通战斗中。",
                                "recommendedLevel": "推荐等级 {{level}} <Icon />"
                            },
                            "ability": {
                                "level": "等级: {{level}}",
                                "totalExperience": "总经验: {{totalExperience}}",
                                "expToLevelUp": "升级所需经验: {{remainingExperience}}",
                                "linkToChat": "链接到聊天频道",
                                "lv": "Lv.{{level}}",
                                "ability": "技能"
                            },
                            "abilityTooltipText": {
                                "description": "描述: {{description}}",
                                "cooldown": "冷却: {{duration}}",
                                "castTime": "施法时间: {{duration}}",
                                "mpCost": "法力消耗: {{cost}} MP",
                                "effect": "效果: {{effectText}}",
                                "attacks": "攻击",
                                "heals": "治疗",
                                "revivesAndHeals": "复活并治疗",
                                "increases": "增加",
                                "decreases": "减少",
                                "target": "目标",
                                "self": "自己",
                                "enemy": "敌人",
                                "allEnemies": "所有敌人",
                                "allAllies": "所有队友",
                                "lowestHpAlly": "HP最低的队友",
                                "deadAlly": "已阵亡的队友",
                                "possessive": {
                                    "target": "目标的",
                                    "self": "自己的",
                                    "enemy": "敌人的",
                                    "allEnemies": "所有敌人的",
                                    "allAllies": "所有队友的",
                                    "lowestHpAlly": "HP最低的队友的",
                                    "deadAlly": "已阵亡的队友的"
                                },
                                "accuracyBonusText": "以{{accuracyBonus}}总精准度,",
                                "baseDamageFlat": "{{baseDamageFlat}}HP",
                                "baseDamageRatio": "{{baseDamageRatio}}",
                                "asDamageType": "{{damageType}}",
                                "takesDamageOverTime": "受持续伤害",
                                "bleeds": "流血",
                                "soaks": "浸湿",
                                "poisons": "中毒",
                                "burns": "燃烧",
                                "dotText": "使目标{{dotVerb}}{{dotDuration}},再造成原攻击100%的伤害。",
                                "armorDamageText": "额外伤害等同于{{armorDamageRatio}}护甲。",
                                "hpDrainText": "吸取{{hpDrainRatio}}的伤害作为HP。",
                                "pierceText": "{{pierceChance}}穿透几率。",
                                "stunText": "{{stunChance}}几率使目标晕眩{{stunDuration}}。",
                                "blindText": "{{blindChance}}几率使目标失明{{blindDuration}}。",
                                "silenceText": "{{silenceChance}}几率使目标沉默{{silenceDuration}}。",
                                "damageHealReviveEffectText": "{{accuracyBonusText}}{{asDamageType}}{{effectType}}{{effectTarget}}{{baseDamageFlat}}{{maybePlus}}{{baseDamageRatio}}{{combatStyle}}伤害。{{dotText}}{{armorDamageText}}{{hpDrainText}}{{pierceText}}{{stunText}}{{blindText}}{{silenceText}}",
                                "spendHpEffectText": "消耗当前HP {{hpCost}}。",
                                "buffEffectText": "{{increaseOrDecrease}}{{targetType}}{{buffName}}{{boostText}},持续{{duration}}。"
                            },
                            "abilitySlot": {
                                "specialAbility": "特殊<br />技能",
                                "ability": "技能",
                                "unlockLevel": "{{level}}智力<br />解锁",
                                "remove": "移除",
                                "cannotChangeInCombat": "战斗中无法更改",
                                "noAbilitiesAvailable": "没有可用技能"
                            },
                            "combatTriggersSetting": {
                                "activateWhen": "使用条件:",
                                "activateOffCooldown": "冷却结束后立即使用",
                                "and": "并且",
                                "combatTriggers": "战斗自动触发",
                                "selectTargetType": "选择目标类型",
                                "selectCondition": "选择条件",
                                "select": "选择",
                                "remove": "移除",
                                "addCondition": "加条件",
                                "resetDefault": "重置为默认",
                                "save": "保存",
                                "setting": "设置",
                                "triggerText": "{{dependency}}{{condition}} {{comparator}} {{value}}",
                                "cannotChangeInCombat": "战斗中无法更改"
                            },
                            "buffText": {
                                "duration": "持续时间",
                                "detail": "详情"
                            },
                            "buffsTooltip": {
                                "bonuses": "加成"
                            },
                            "mooPass": {
                                "mooPass": "哞卡",
                                "durationLabel": "持续时间: ",
                                "mooPassExpBuff": "+{{expBuff}} 经验增益 (限于标准角色)",
                                "mooPassOfflineHourLimit": "+{{count}} 小时离线进度上限",
                                "mooPassMarketListingLimit": "+{{count}} 市场挂牌上限",
                                "mooPassActionQueueLimit": "+{{count}} 行动队列上限",
                                "mooPassTaskSlotLimit": "+{{count}} 任务槽位上限",
                                "mooPassFreeTaskRerolls": "+{{count}} 次免费任务重置 (每个任务)",
                                "mooPassLootTracker": "最后 {{count}} 个行动的掉落记录",
                                "mooPassAvatarBorder": "金色角色边框"
                            },
                            "communityBuff": {
                                "durationLabel": "持续时间: ",
                                "durationDefault": "持续时间: 1分钟",
                                "minutesToNextLevel": "下一级所需分钟数: {{minutes}}",
                                "level": "等级: {{level}}",
                                "max": " (最大)",
                                "usableIn": "可用于: ",
                                "contributor": "{{name}}: {{minutes}} 分钟",
                                "moreContributors": "(+{{count}} 更多贡献者)"
                            },
                            "systemChatMessage": {
                                "communityBuffAdded": "{{name}} 添加了{{minutes}}分钟的社区增益: $t(communityBuffTypeNames.{{buffHrid}})!",
                                "characterLeveledUp": "{{name}} 达到{{level}}$t(skillNames.{{skillHrid}})!",
                                "guildLeveledUp": "公会达到{{level}}级!",
                                "guildNoticeUpdated": "{{name}} 更新了公会公告信息。",
                                "guildMemberPromoted": "{{name}} 被 {{actor}} 提升为$t(guildCharacterRoleNames.{{role}})。",
                                "guildMemberDemoted": "{{name}} 被 {{actor}} 降级为$t(guildCharacterRoleNames.{{role}})。",
                                "guildMemberJoined": "{{name}} 加入了公会!",
                                "guildMemberLeft": "{{name}} 离开了公会。",
                                "guildMemberKicked": "{{name}} 被 {{actor}} 踢出公会。",
                                "partyMemberJoined": "{{name}} 加入了队伍。",
                                "partyMemberLeft": "{{name}} 离开了队伍。",
                                "partyMemberKicked": "{{name}} 被踢出队伍。",
                                "partyMemberReady": "{{name}} 已准备好。",
                                "partyMemberNotReady": "{{name}} 未准备好。",
                                "partyBattleStarted": "战斗开始: $t(actionNames.{{actionHrid}})",
                                "partyBattleEnded": "战斗结束: $t(actionNames.{{actionHrid}})",
                                "partyKeyCount": "钥匙数量: {{keyCountString}}",
                                "partyWaveFailed": "队伍在第{{wave}}波失败。"
                            },
                            "infoNotification": {
                                "addedFriend": "已添加好友: {{0}}",
                                "removedFriend": "已删除好友: {{0}}",
                                "blockedCharacter": "已屏蔽角色: {{0}}\n在[社交]->[黑名单]可查看",
                                "unblockedCharacter": "已取消屏蔽角色: {{0}}",
                                "chatReportSubmitted": "已提交聊天举报",
                                "loadoutCreated": "已创建配装",
                                "loadoutUpdated": "已更新配装",
                                "setupImportedToLoadout": "已导入当前设置到配装",
                                "loadoutEquipped": "已装备配装",
                                "loadoutDeleted": "已删除配装",
                                "boughtItem": "购买了 {{0}} {{1}}",
                                "soldItem": "出售了 {{0}} {{1}}",
                                "buyOrderCompleted": "购买了 {{0}} 个{{1}}{{2}}\n花费 {{3}} 金币",
                                "sellOrderCompleted": "出售了 {{0}} 个{{1}}{{2}}\n获得 {{3}} 金币",
                                "buyListingProgress": "购买挂牌: {{0}}{{1}}\n进度: {{2}}/{{3}}",
                                "sellListingProgress": "出售挂牌: {{0}}{{1}}\n进度: {{2}}/{{3}}",
                                "houseConstructed": "{{0}}级{{1}}已建成",
                                "steamCheckoutRequested": "已请求STEAM结账。请稍候...",
                                "upgradePurchased": "已购买升级: {{0}} (x{{1}})",
                                "chatIconUnlocked": "解锁聊天图标: {{0}}",
                                "nameColorUnlocked": "解锁名称颜色: {{0}}",
                                "avatarUnlocked": "解锁新角色形象",
                                "avatarOutfitUnlocked": "解锁新角色服装",
                                "communityBuffAdded": "添加了 {{0}} 分钟的社区增益: {{1}}",
                                "nameChanged": "名称已更改: {{0}}",
                                "guildCreated": "创建了公会: {{0}}",
                                "guildDisbanded": "解散了公会: {{0}}",
                                "guildLeft": "离开了公会: {{0}}",
                                "guildNoticeUpdated": "{{0}} 更新了公会公告信息。",
                                "guildPromotedTo": "你被提升为公会{{0}}",
                                "guildDemotedTo": "你被降级为公会{{0}}",
                                "guildLeadershipPassed": "将会长权移交给 {{0}}",
                                "guildMemberPromoted": "将 {{0}} 提升为{{1}}",
                                "guildMemberDemoted": "将 {{0}} 降级为{{1}}",
                                "guildKicked": "被踢出公会: {{0}}",
                                "kickedGuildMember": "已踢出 {{0}}",
                                "guildInvited": "邀请加入公会: {{0}}",
                                "guildInviteSent": "发送了公会邀请: {{0}}",
                                "guildInviteCanceled": "已取消公会邀请: {{0}}",
                                "guildJoined": "加入了公会: {{0}}",
                                "guildInviteDeclined": "拒绝了公会邀请: {{0}}",
                                "partyCreated": "已创建队伍",
                                "characterLeveledUp": "你已达到 {{0}} {{1}}!",
                                "partyOptionsSaved": "队伍选项已保存",
                                "partyOpenForRecruiting": "队伍正在招募",
                                "partyLeadershipChanged": "队长权转移给 {{0}}",
                                "partyJoined": "你已加入队伍",
                                "readyToBattle": "你已准备好战斗",
                                "notReadyToBattle": "你未准备好战斗",
                                "partyDisbanded": "队伍已解散",
                                "partyLeft": "你已离开队伍",
                                "partyKicked": "你被踢出队伍",
                                "partyMemberKicked": "已从队伍踢出 {{0}}",
                                "referralJoined": "有新玩家通过你的推荐链接加入了游戏。感谢你的分享!",
                                "newReferralBonus": "新推荐奖励已发放\n在[社交]->[推荐]领取",
                                "cowbellPurchaseCompleted": "已购买 {{0}} 牛铃",
                                "mooPassPurchaseCompleted": "已购买 {{0}} 天哞卡",
                                "mooPassGranted": "已获得: {{0}} 天哞卡",
                                "updateSuccessful": "更新成功"
                            },
                            "errorNotification": {
                                "unexpectedError": "发生意外错误",
                                "characterBlockError": "由于角色屏蔽而失败",
                                "characterNameNotFound": "找不到角色名称",
                                "cannotFriendSelf": "无法添加自己为好友",
                                "friendAlreadyExists": "好友已存在",
                                "friendLimitReached": "好友上限已达到",
                                "characterWasNotFriend": "角色不是好友",
                                "cannotBlockSelf": "无法屏蔽自己",
                                "characterAlreadyBlocked": "角色已被屏蔽",
                                "blockLimitReached": "屏蔽上限已达到",
                                "characterWasNotBlocked": "角色未被屏蔽",
                                "requestSpamProtection": "请勿过快发送游戏指令",
                                "nonPublicModMessage": "无法向非公共频道发送管理员消息",
                                "nonPublicWarningMessage": "无法向非公共频道发送警告消息",
                                "chatSpamProtection": "请勿重复消息或过快发送消息",
                                "waitBetweenTradeMessages": "请等待5分钟后再发送交易消息",
                                "waitBetweenRecruitMessages": "请等待5分钟后再发送招募消息",
                                "chatReportAlreadyExists": "你已举报此聊天消息",
                                "chatReportAlreadyResolved": "此消息的举报已被处理",
                                "stopPartyBattleBeforeSolo": "你必须停止团队战斗后才能开始单人行动",
                                "cannotEquipLoadoutForAction": "无法装备此行动的配装",
                                "cannotEquipLoadoutInCombat": "无法在战斗中装备配装",
                                "orderNotFulfilled": "订单无法完成",
                                "steamCheckoutError": "Steam 结账错误",
                                "stripeCheckoutError": "Stripe 结账错误",
                                "characterNameUnavailable": "角色名称不可用",
                                "guildNameUnavailable": "公会名称不可用",
                                "characterAlreadyInGuild": "角色已有公会",
                                "characterAlreadyInvited": "角色已被邀请",
                                "alreadyInParty": "你已经在队伍中",
                                "characterNotInParty": "角色不在队伍中",
                                "partyNoLongerRecruiting": "此队伍不再招募",
                                "partyGameModeMismatch": "此队伍与你的游戏模式不匹配",
                                "partySlotUnavailable": "队伍槽位已不可用",
                                "currentPasswordIncorrect": "当前密码不正确",
                                "emailAlreadyRegistered": "此电子邮件地址已在另一个账户上注册"
                            },
                            "guideTooltip": {
                                "milkingTitle": "挤奶",
                                "milkingContent": "这些神奇奶牛的牛奶有多种功能。它们可以用来制作消耗品,或者做成特殊奶酪以制作装备。\n奶牛喜欢被刷毛。装备刷子会提升你的挤奶效率。",
                                "foragingTitle": "采摘",
                                "foragingContent": "在各个地区采摘时,你可以找到许多不同的资源。这些资源可以用于烹饪和冲泡消耗品。\n装备剪刀会提升你的采摘效率。",
                                "woodcuttingTitle": "伐木",
                                "woodcuttingContent": "你可以从不同类型的树木中获取木材。木材用于制作各种装备。\n装备斧头会提升你的伐木效率。",
                                "cheesesmithingTitle": "奶酪锻造",
                                "cheesesmithingContent": "用牛奶制作的硬质奶酪坚硬如金属。你可以将它们锻造成装备,为你的战斗或技艺训练提供加成。\n装备可以从一级升级到下一级,通常需要越来越多的奶酪。还有一些特殊的装备可以用战斗中从怪物身上获得的物品来制作。\n装备锤子会提升你的奶酪锻造效率。",
                                "craftingTitle": "制作",
                                "craftingContent": "你可以制作武器、副手装备和珠宝。\n装备凿子会提升你的制作效率。",
                                "tailoringTitle": "缝纫",
                                "tailoringContent": "你可以使用从战斗和采摘中获得的原材料来制作远程和魔法服装。\n装备针会提升你的缝纫效率。",
                                "cookingTitle": "烹饪",
                                "cookingContent": "食物可以用来恢复你的HP或MP。它们可以随身携带在战斗中使用。\n装备锅铲会提升你的烹饪效率。",
                                "brewingTitle": "冲泡",
                                "brewingContent": "饮品可以给你提供临时增益效果。咖啡可以在战斗中携带,茶可以在训练技艺时使用。\n装备壶会提升你的冲泡效率。",
                                "alchemyTitle": "炼金",
                                "alchemyContent": "炼金让你将物品转换为其他物品。每种炼金都有不同的成功率,无论成功或失败,输入的物品都会被消耗。\n点金: 将物品转换为金币。分解: 将物品转换为原材料或精华。转化: 将物品转换为随机相关物品,在某些情况下能获得的特殊物品。\n每次转化都有一个基本成功率。如果你的炼金等级低于物品等级,成功率会降低。催化剂和茶可以用来提高成功率。\n装备蒸馏器会提升你的炼金效率。",
                                "enhancingTitle": "强化",
                                "enhancingContent": "强化可以永久提升你的装备,随着强化等级的提高,装备将获得更高的加成。\n每次尝试强化都需要消耗少量材料。成功率取决于你的强化等级、装备物品的等级和该物品当前的强化等级。成功的强化将使等级增加1,失败会将等级重置为0。\n你可以选择使用基础装备的副本进行保护。失败时使用保护只会将强化等级降低1,但会消耗1个保护道具。\n装备强化器会提升你的强化成功率。",
                                "combatTitle": "战斗",
                                "combatContent": "击败怪物可获得经验和物品掉落。\n你的战斗属性基于你的战斗等级和装备加成的组合。\n你可以带食物来恢复HP或MP,饮品可以提供增益效果,还可以施放各种技能。\n你可以通过下方的设置图标来更改自动化配置。\n如果你在战斗中被击败,你的角色将在重生倒计时结束后自动继续战斗。",
                                "marketplaceTitle": "市场",
                                "marketplaceContent": "市场允许玩家为任何可交易物品创建买卖挂牌。你可以点击任何列出的物品查看现有挂牌或创建自己的挂牌。\n新挂牌将尽可能由市场上最匹配的价格来满足。如果无法立即满足,该挂牌将出现在市场上。\n交易成功时,将收取2%的金币税,收到的物品可以从[我的挂牌]标签中收集。出售价: 已存在的出售挂牌。收购价: 已存在的购买挂牌。",
                                "combatStatsTitle": "战斗属性",
                                "combatStatsContent": "攻击间隔: 自动攻击的速度。\n技能急速: 减少技能冷却时间。\n精准度: 增加成功攻击的几率。\n伤害: 自动攻击伤害在1和最大伤害之间随机。\n暴击: 总是造成最大伤害。远程类型有被动暴击几率。\n任务伤害: 对被指定为任务的怪物增加伤害。\n增幅: 增加该类型的伤害。\n闪避: 增加躲避攻击的几率。\n护甲: 减少一定比例的物理伤害。\n抗性: 减少一定比例的元素伤害。\n穿透: 忽略一定比例的护甲/抗性。\n生命偷取: 自动攻击时恢复一定比例的HP。\n法力吸取: 自动攻击时吸取一定比例的MP。\n荆棘: 被攻击时,将一定比例的防御伤害反射给攻击者。每个护甲或抗性增加1%伤害。\n反伤: 被攻击时,将(防御伤害+被攻击伤害)的一定比例以钝击形式反伤攻击者。\n韧性: 减少失明、沉默或眩晕的几率。\n威胁: 增加被怪物攻击的几率。\n恢复: 每10秒恢复一定比例的最大HP/MP。\n食物急速: 减少食物冷却时间。\n饮料浓度: 增加饮料效果。减少持续时间和冷却时间。",
                                "noncombatStatsTitle": "非战斗属性",
                                "noncombatStatsContent": "速度: 增加行动速度\n任务速度: 增加任务中的行动速度。\n采集数量: 增加采集数量\n效率: 立即重复行动的几率\n专业精华发现: 增加发现精华的几率\n专业稀有发现: 增加稀有物品掉落率。",
                                "abilitiesTitle": "技能",
                                "abilitiesContent": "技能可以从技能书中学习。技能书可以从怪物身上获得,或者在市场上从其他玩家那里购买。\n技能可以放置在槽位中用于战斗。随着智力等级的提升,你将解锁更多的槽位。\n随着经验的获得,技能也会升级。每次在战斗中使用技能时可以获得0.1点经验,从消耗重复的技能书中可以获得更多经验。",
                                "houseTitle": "房屋",
                                "houseContent": "你的房屋可以建造房间,为你提供永久加成。\n每个房间可以升级到最高8级,但升级成本逐渐增加。",
                                "loadoutsTitle": "配装",
                                "loadoutsContent": "配装允许你保存当前的装备、消耗品和技能,以便稍后与行动一起自动加载。配装可以绑定到单个专业或\"所有专业\"。选择\"所有专业\"将只保存装备。\n将配装设置为默认时,在选择与配装关联的专业中的任何行动时会自动选择该配装。",
                                "enhancingProtectionTitle": "强化保护",
                                "enhancingProtectionContent": "强化失败时消耗一个保护道具以确保只损失1级强化,而不是重置为0级。",
                                "alchemyCatalystTitle": "炼金催化剂",
                                "alchemyCatalystContent": "催化剂增加成功率。仅在成功时消耗一个催化剂。"
                            },
                            "newsPanel": {
                                "news": "新闻"
                            },
                            "newsText": {
                                "1755558000000": {
                                    "heading": "大型更新 - 战斗重做、护符和精炼装备",
                                    "content": "<div>\n\t\t\t\t\t本次更新对战斗系统进行了重大改革,同时引入了新的功能,包括护符、精炼的地牢装备,以及扩展的战斗难度层级。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t在长期的游戏过程中,我们发现三种战斗风格(近战、远程和魔法)之间存在平衡性问题。这些问题使得在不同战斗风格和不同进度阶段之间维持经验与收益平衡变得非常困难。其中最严重的问题包括:\n\t\t\t\t\t<br />\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>专业需求:近战玩家需要额外的攻击专业,导致经验分配和增益道具的使用出现不平衡。</li>\n\t\t\t\t\t\t<li>魔法技能增长:因为魔法输出全靠技能,魔法伤害技能每级的DPS提升大约是其他风格的两倍,使得在所有进度阶段中很难公平地平衡输出。</li>\n\t\t\t\t\t\t<li>经验不平衡:经验公式在无意中偏向某些策略,即使DPS相同。</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t<br />\n\t\t\t\t\t本次重做解决了这些不平衡,并为战斗的长期平衡奠定了基础。主要改动包括:\n\t\t\t\t\t<br />\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>所有战斗风格现在都需要依靠攻击专业来提升精准度。玩家将立即根据其远程和魔法经验的15%和12%获得攻击经验,以使其具备可行性。攻击经验比率基于排行榜数据,以允许总经验赶上近战。</li>\n\t\t\t\t\t\t<li>魔法技能的每级伤害增长比例降低至每级0.5%。</li>\n\t\t\t\t\t\t<li>为远程和魔法装备添加了额外的奖励,以保持与之前相似的伤害输出。</li>\n\t\t\t\t\t\t<li>重盾重做并显著提高了伤害,以更接近其他战斗风格的输出。</li>\n\t\t\t\t\t\t<li>光环系统重做,新增基于专业等级的增长机制,并通过技能书提供一次性经验退款。</li>\n\t\t\t\t\t\t<li>新的战斗经验系统与击败的怪物相关联,护符允许你将训练经验分配到特定专业上。</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t<br />\n\t\t\t\t\t随着战斗重做,我们还引入了额外的战斗难度等级。战斗区域难度现在从T0到T5,并且新的护符可以在更高难度的区域中找到。T1和T2地牢也已添加,可以获得精炼碎片以精炼你的T95和背部装备。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t访问更新日志以获取更多详细信息。\n\t\t\t \t</div>"
                                },
                                "1747609200000": {
                                    "heading": "中型更新 - 哞卡和其他新闻",
                                    "content": "<div>\n\t\t\t\t\t哞卡上线啦!这是一项可选的会员系统,能带来一系列实用但并非必要的福利!\n\t\t\t\t\t所有角色都可以免费领取14天哞卡,此外所有现有角色还额外获赠了14天使用时间。\n\t\t\t\t\t想了解更多详情,可以查看更新日志或直接前往牛铃商店看看。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t加入新的付费内容,我们能理解大家会关心游戏未来的方向,尤其是是否会影响公平性。\n\t\t\t\t\t我们想再次明确: 我们没有任何引入强制氪金的打算。\n\t\t\t\t\t哞卡的设计经过了大量玩家反馈的参考,目标是让它对付费玩家和免费玩家都实惠又友好。\n\t\t\t\t\t它不设任何内容限制,不会影响核心玩法体验,确保所有玩家都能公平游戏。\n\t\t\t\t\t同时,哞卡为游戏引入了持续价值,让牛铃的需求不再只依赖一次性购买的便利功能或外观道具,\n\t\t\t\t\t从而有助于 Milky Way Idle 的长期稳定发展。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t另外,随着玩家人数不断上升,我们的管理团队也面临了更大的挑战。\n\t\t\t\t\t目前的管理系统主要依赖志愿管理员在场时主动阅读聊天内容。\n\t\t\t\t\t但我们也收到了一些反馈,有人觉得管理过于严格,也有人指出管理员不在线时有不当言论被漏看。\n\t\t\t\t\t为此,我们正在开发一个更依赖玩家举报的新系统,\n\t\t\t\t\t让大家能更主动参与管理聊天环境。\n\t\t\t\t\t比如,在管理员不在线时,若一条消息被足够多玩家举报,就会自动触发处理机制。\n\t\t\t\t\t这也能减轻管理员的负担,让他们专注处理那些已经被社区标记出来的内容。\n\t\t\t\t\t这个系统预计会在接下来一到两周内上线。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t最后再次提醒大家,请遵守单账号规则和禁止通过小号或财富转移获取不正当利益的规定。\n\t\t\t\t\t现在有很多新玩家加入,可能还不了解我们对于小号牟利或从金商手中购买金币的态度。\n\t\t\t\t\t我们会定期进行封号处理。比如在过去几周内,\n\t\t\t\t\t我们对550多个主账号和数千个小号进行了暂时或永久封禁。\n\t\t\t\t\t被暂时封禁的账号也被移除了2到3倍的不正当金币,总计超过120B金币。\n\t\t\t\t\t作弊风险极高,根本不值得冒险。我们也会持续升级检测系统,保障公平的游戏环境。\n\t\t\t\t</div>"
                                },
                                "1744930800000": {
                                    "heading": "大型更新 - 海盗基地地牢、第四个角色槽位和定制装饰品政策更新",
                                    "content": "<div>\n\t\t\t\t\t海盗基地地牢现已开放探索!这个新地牢有各种新的T95武器和防具,以及新的技能。我们还对现有物品和技能进行了一些调整,以改善游戏平衡性。查看完整的更新日志以获取所有细节!\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t另外,我们为玩家添加了一个新的第四个角色槽位,允许每个人最多拥有1个标准角色和3个铁牛角色。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t我们还更新了我们的定制装饰品政策和定价。虽然这个功能最初是作为一份小礼物,用来表达我们对支持者的感谢,但随着玩家数量的大幅增加,这项工作已经变得难以承受。过去一个月我们花了大约150到200小时处理了约100个请求,我们需要腾出更多时间用于其他开发任务。从5月1日起,申请自定义外观将需要消耗支持者积分和牛铃。所有在4月底前提交的请求,仍将按照之前的支持者积分要求进行处理。\n\t\t\t\t</div>"
                                },
                                "1734825600000": {
                                    "heading": "技艺拓展第二部分 - 星空工具和技艺服装",
                                    "content": "<div>\n\t\t\t\t\t我们很高兴地推出技艺拓展的第二部分-星空工具与技艺服装!在使用神圣工具这么长的时间以来,专精的玩家们终于又能获得进一步的装备升级了!这些新物品并不容易获得,但对于足够勤奋(或富有)的玩家来说,成功获取它们将带来显著的提升。投身其中,将你的技艺推向新一波的高峰吧!\n\t\t\t\t</div>"
                                }
                            },
                            "patchNotesPanel": {
                                "patchNotes": "更新日志"
                            },
                            "patchNotesText": {
                                "1755644400000": {
                                    "heading": "快速修复",
                                    "content": "<div>\n\t\t\t\t\t错误修复:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t修复了在特定情况下战斗中战斗等级计算错误的问题,有时导致队伍成员受到错误的减益效果。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t改正了魔术师帽(精)的等级要求,为110级。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t平衡调整:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t降低了秘法主教的防御伤害,因为反击伤害仍然过高。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t精炼装备的增益由 5% 提升至 8%(背部装备为 16%),让其对更多玩家更具性价比。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                                },
                                "1755558000000": {
                                    "heading": "大型更新 - 战斗重做、护符和精炼装备",
                                    "content": "<div>\n\t\t\t\t\t战斗重做\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t所有战斗风格现在都需要依靠攻击专业来提升精准度。\n\t\t\t\t\t\t\t玩家将立即获得相当于其现有远程经验的15%和魔法经验的12%的攻击经验。\n\t\t\t\t\t\t\t此调整基于排行榜数据,以确保三种战斗风格之间的总经验可比。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t远程专业的魔法闪避加成和魔法专业的抗性加成已被移至防御专业。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t力量更名为近战。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t君王之剑现在可以为队友格挡伤害。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t疫病射击已被重新设计为削弱护甲/抗性,而不是HP/MP恢复。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t远程装备已添加暴击率和其他增益,以弥补精准度损失。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t魔法伤害技能现在每个技能等级的成长为0.5%,而不是1%。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t涟漪三叉戟现在在涟漪激活时恢复10MP。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t技能伤害和其他增益已被添加到魔法装备中,以弥补精准度损失和技能成长降低。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t重盾:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t重盾已被重新设计并添加了一个新的属性,防御伤害,显著提高其输出伤害。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t尖刺外壳已被重新设计为同时包含物理和元素荆棘,基于防御伤害和护甲/抗性的双重属性进行加成。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t奥术反射已被转换为惩戒,赋予反伤增益,将一定比例的即将到来的伤害反射为钝击攻击。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t盾击的护甲加成已从60%提高到70%。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t光环:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t水和火光环已转换为元素光环,为所有元素提供增幅加成\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t自然光环已转换为守护光环,赋予治疗增幅、闪避、护甲和抗性。守护光环暂时可通过商店换成元素光环。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t基础光环属性已被调整。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t每个光环现在还会根据施法者的对应技能进行额外加成:\n\t\t\t\t\t\t\t\t\t速度光环 → 攻击,守护光环 → 防御,物理光环 → 近战,暴击光环 → 远程,元素光环 → 魔法。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t蓝技能经验将以每500点经验1本书的比例转换为书籍。\n\t\t\t\t\t\t\t\t\t任何低于500的剩余经验将保留在该技能上。\n\t\t\t\t\t\t\t\t\t这是一项一次性的转换。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t现在根据击败的怪物固定给予战斗经验值,战斗持续时间越长,生存经验奖励越高。\n\t\t\t\t\t\t\t30%的经验值会分配给由你的武器决定的主要训练专业。\n\t\t\t\t\t\t\t剩余的70%经验可以通过新的护符装备来选择分配。\n\t\t\t\t\t\t\t该系统允许玩家优化他们在专业上的经验分配。\n\t\t\t\t\t\t\t经验值比率经过平衡,玩家可以在主要专业上获得更多经验,但总体上可能获得的总经验值会减少。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t怪物不再具有基础HP/MP恢复。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t怪物现在每过3分钟会获得暴走增益,增加10%的精准度和伤害(最多叠加10次)。\n\t\t\t\t\t\t\tBOSS的暴走计时为10分钟,而非3分钟。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t部分怪物属性已调整以适应上述改动。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t战斗等级公式已更新。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t组队战斗的经验现在会在所有队员间平均分配,与造成伤害多少无关。  \n\t\t\t\t\t\t\t若队员的战斗等级比队伍最高者低至少 20%,将会获得经验与掉落惩罚,每超过1%的等级差额外增加3%惩罚。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t所有战斗风格的伤害和经验获取速率已进行平衡。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t功能和内容:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t战斗区域现在具有可选的难度等级,从T0到T5。\n\t\t\t\t\t\t\tT0对应于之前的普通区域,而T2略高于之前的精英区域。\n\t\t\t\t\t\t\t更高的难度提供额外的经验、增加掉落和一些独特的掉落。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t护符:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t护符是一种新装备,可以装备在护符槽中,为特定专业提供额外经验。\n\t\t\t\t\t\t\t\t\t它们还可以用于在战斗中将经验集中到该专业上。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t实习护符可以在商店以250K购买。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t更高等级的非战斗护符可以使用专业精华制作。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t更高等级的战斗护符可以从更高等级的战斗区域获得掉落。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t护符可以使用制作专业合并为更高等级。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t护符可以被强化,并像其他首饰一样提供5倍的正常强化奖励。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t地下城现在具有更高的难度等级,最高可达T2。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t精炼:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tT1和T2地下城掉落精炼宝箱,使用相同的宝箱钥匙打开以获得精炼碎片。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t精炼碎片可用于升级来自各自地下城的95级装备和背部装备。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t精炼装备提供+5%的额外属性(背部装备为+10%)并增加武器特殊效果。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t精炼现有物品将转移100%的强化等级。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t对+11及以上的强化比例进行了适度提高。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t已添加支持者聊天图标(不同等级的牛铃)到牛铃商店。\n\t\t\t\t\t\t\t它们可以用支持者积分购买,并将显示为特殊的第二个图标。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t基础配装槽数量从2增加到3。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t其他:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t官方市场数据现在每小时更新,而不是每6小时更新。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                                },
                                "1749250800000": {
                                    "heading": "中型更新 - 聊天举报系统和体验优化",
                                    "content": "<div>\n\t\t\t\t\t功能和内容:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t聊天举报系统: 玩家现在可以举报聊天中的违规消息。\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t举报将发送给管理员进行审核,并可能采取相应处理措施。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t如果消息收到足够数量的举报,系统可能会自动进行处理。经人工复核后,相关处罚可能会被调整。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t发送正确的举报将增加你未来举报的权重,而错误的举报将显著降低权重。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t现在可以在设置中删除角色。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t添加了特殊图标(贡献者、BUG发现者等),可以授予对游戏有较大贡献的玩家。它们将显示为第二个图标。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t体验优化:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t现在可以重新排序行动队列。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t现在可以在聊天中链接市场挂牌。这应该改善不同语言的交易频道体验。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t其他:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t添加了官方市场数据,可以在 <a href=\"https://www.milkywayidle.com/game_data/marketplace.json\" target=\"_blank\">https://www.milkywayidle.com/game_data/marketplace.json</a> 访问。\n\t\t\t\t\t\t\t此数据每6小时更新一次(有一定的随机性和延迟以防止操纵),包含每个物品当时的最高出价和最低要价。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t从聊天中移除了 @mod 命令,因为它不再需要。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t服务器优化以改善后端性能,帮助支持更多玩家。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                                },
                                "1747609200000": {
                                    "heading": "中型更新 - 哞卡和其他改进",
                                    "content": "<div>\n\t\t\t\t\t功能和内容:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t哞卡: 可选的会员资格,提供许多有用但非必要的特权。\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t可以在牛铃商店使用牛铃或现实货币购买。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t所有角色可以免费领取14天的哞卡。所有现有角色额外获得14天。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+5% 经验增益。仅限标准角色,以允许铁牛角色不受付费内容的显著影响。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+10 小时离线进度限制\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+6 市场挂牌限制\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+1 行动队列限制\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+8 任务槽限制\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+1 免费任务重置(每个任务)\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t掉落记录: 过去20次活动的掉落记录。你可以在菜单中的牛铃商店下方找到。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t金色角色边框\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tSteam:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t更新了Steam客户端,并将本地保存数据移动到更稳定的文件位置。\n\t\t\t\t\t\t\t更新后第一次打开游戏可能需要重新登录和设置插件。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n                    体验优化:\n                    <ol>\n                        <li>\n                            市场单笔挂单最高价格从10B提升至100B。\n                        </li>\n                        <li>\n                            市场缩写格式的价格单位 (K,M,B,T) 现在会按单位显示不同颜色,降低看错的风险。\n                        </li>\n                        <li>\n                            新增 /r 聊天指令用于快速回复最后一条私聊。\n                        </li>\n                        <li>\n                           对重复刷屏的聊天消息(单人或多人)启用更严格的保护措施。\n                        </li>\n                    </ol>\n                    漏洞修复:\n                    <ol>\n                        <li>\n                            修复强化精华掉落率比显示值低33%的问题(此前仅更新了客户端但遗漏后端)。\n                        </li>\n                        <li>\n                            修复重新进入游戏时未读私聊计数不显示的问题。\n                        </li>\n                        <li>\n                            修复奶酪锻造类胸甲的自动攻击伤害加成数值,现与腿甲一致(特殊装备不受影响)。\n                        </li>\n                        <li>\n                            修正中文队伍聊天链接的翻译错误。\n                        </li>\n                        <li>\n                            移动端排行榜标签现支持换行显示,避免 Steam 排行榜导致界面溢出。\n                        </li>\n                    </ol>\n                    其他:\n                    <ol>\n                        <li>\n                            移除限时周年小紫牛及原版杰瑞聊天图标。\n                        </li>\n                        <li>\n                            地下城商店中移除棕色/白色钥匙碎片兑换 (原本就是临时功能)。\n                        </li>\n                        <li>\n                            市场税率现在改为向上取整 (原为向下取整),以减少低价物品的垄断交易。\n                        </li>\n                    </ol>\n\t\t\t\t</div>"
                                },
                                "1744930800000": {
                                    "heading": "重要更新 - 海盗基地地牢和更多内容",
                                    "content": "<div>\n\t\t\t\t功能和内容:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t海盗基地:\n\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t新T95魔法武器: 涟漪三叉戟、绽放三叉戟、炽焰三叉戟。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t新T95护甲: 锚定胸甲/腿甲、怒涛胸甲/腿甲、克拉肯皮衣/皮裤、掠夺者头盔、神射护腕。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t新技能: 盾击(也添加到奇幻洞穴)、碎裂冲击、生命吸取。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t新炼金配方。所有地牢技能书转化的成功率已统一为50%。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ol>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t狂怒长枪: 新增T95长枪,添加到秘法堡垒。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t使用生产技能升级装备时,现在将保留70%的强化等级。一些T95装备配方已调整为从较低级别的变体升级。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t新增第四个角色槽位。你最多只能拥有3个铁牛角色。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t新增STEAM排行榜,适用于在STEAM发布后创建的角色,并与STEAM关联。仅在符合条件的角色上可见。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t公会成员槽位从25+level/4增加到30+level/3。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t装饰品:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t节日限定(发布两年纪念日): 周年小紫牛,原版杰瑞聊天图标。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t根据小部分地牢BOSS添加了新的聊天图标。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t添加了2个海盗基地主题头像和服装。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t定制装饰品的要求更改为需要花费支持者积分和牛铃。\n\t\t\t\t\t\t由于玩家人数的巨大增加,我们无法继续支持定制装饰品作为礼物。\n\t\t\t\t\t\t新的定价将于5月1日生效。4月底之前发起的任何请求将根据之前的支持者积分要求进行处理。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t平衡:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t调整了奇幻宝箱钥匙和秘法宝箱钥匙的配方,使其棕色和白色钥匙碎片互换。\n\t\t\t\t\t\t这防止了秘法堡垒和海盗基地共享3/4的钥匙碎片。\n\t\t\t\t\t\t你可以在地牢商店临时自由交换棕色和白色钥匙碎片,直到下一个游戏更新。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t所有近战护甲增加了自动攻击伤害,以使近战伤害更接近其他类型。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t增加了重盾的准确性和伤害\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t在巨像胸甲/腿甲上添加了近战准确性\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t致残斩: 重新设计为对所有敌人造成伤害。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t血刃斩: 伤害持续时间从15秒减少到9秒。受到的伤害减益从0%增加到8%。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t冰霜爆裂: 闪避减益从15%降低到10%。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t火焰风暴: 伤害持续时间从10秒减少到6秒。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t烟爆灭影: 准确性减益从20%降低到15%。闪避减益从0%增加到15%。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t魔像洞穴: 怪物防御等级降低10-20。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t暮光之地: 怪物火系性降低20。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tUI:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t添加了一个新设置来隐藏英语聊天系统消息。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t队伍链接不可发在英语、交易和新手聊天中。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t对一些不适合误点击的按钮添加了双重确认。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t在公会和好友列表中添加了不活跃天数计数。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t更改了炼金和强化的\"开始\"按钮文本,使其更明显地显示所执行的行动。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tBUG修复:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t当你在物品上有3个未完成的挂牌时,不要阻止创建即时市场订单。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复可能导致少数玩家的在服务器重启后停止行动的问题。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复了可能导致服务器崩溃的罕见错误。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t其他:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t屏蔽角色将阻止加入队伍(基于队长)和公会邀请。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t服务器和客户端优化,以加快服务器重启、任务生成、滚动性能等速度。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t添加了一个功能,允许ADMIN发布公告栏以传达重要消息。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t翻译改进。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                                },
                                "1741906800000": {
                                    "heading": "小型更新 - 反欺诈措施和BUG修复",
                                    "content": "<div>\n\t\t\t\t反欺诈:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t由于有几次盗用信用卡购买牛铃的发生,添加了反欺诈措施,玩家首次购买牛铃可能会触发72小时的限制,禁止在市场上出售牛铃袋。购买前会收到通知。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tBUG修复:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复了在极少数情况下,玩家可能会卡在不存在的队伍战斗行动中的问题。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复了一些物品名称和相应操作之间的翻译不一致问题。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t其他:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t后台更改以提高数据库连接稳定性。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                                },
                                "1740913200000": {
                                    "heading": "重要更新 - 中国翻译和为STEAM发布的最后准备",
                                    "content": "<div>\n\t\t\t\tUI:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t添加了中文翻译。\n\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t语言将根据你的浏览器语言自动选择。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t玩家也可以在[设置]->[游戏]或主页上手动更改显示语言。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t一些项目尚未翻译,包括大部分新闻和更新日志,使用条款和隐私政策。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t如果你发现任何翻译问题或显示文本错误,请在Discord的#bug-reports频道中报告。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ol>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t已更新弹窗,使其在游戏屏幕上居中显示。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t其他:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t从牛铃商店移除了春节节日限定装饰物品。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t对STEAM集成进行了更多的调整。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t隐私政策已更新,包括使用分析和营销cookie的条款。这使我们能够在其他平台上为《银河奶牛放置》运行广告时优化营销活动。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                                },
                                "1737885600000": {
                                    "heading": "小型更新",
                                    "content": "<div>\n\t\t\t\t春节:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t春节聊天图标、角色形象和服装在牛铃商店中出售,持续到至少3周后的更新。活动结束后,你仍然可以继续使用。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t用户界面:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t每25级专业等级,从100级开始,发送系统消息,而不仅仅是100级和125级。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t修复:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t排行榜公会名称应该是不可点击的。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t改进聊天消息URL链接解析,使其更准确。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复了数据库在维护期间脱机,玩家会被登出的问题。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复了一些罕见情况下导致玩家战斗在离线进度用尽后未正确停止的问题。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t其他:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t添加了@mod和@mods聊天命令,用于紧急情况通知管理员。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t在后台实施了身份验证和支付更改,以支持即将发布的STEAM版本。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                                }
                            },
                            "gameGuidePanel": {
                                "gameGuide": "游戏指南"
                            },
                            "gameGuideContent": {
                                "faq": "常见问题",
                                "faqContent": "<heading>常规问题</heading>\n\t\t\t<question>问: 离线进度如何运作?</question>\n\t\t\t<answer>答: 即使你处于离线状态,你的角色也会继续取得进展。默认情况下,无论何时关闭浏览器或离线,你都可以获得长达10小时的离线进度。你还可以通过牛铃商店提供的便利升级来延长离线时间。</answer>\n\t\t\t<question>问: 我可以从其他设备登录吗?</question>\n\t\t\t<answer>答: 如果你已注册帐户,可以使用电子邮件和密码从任何设备登录。如果你以游客身份玩游戏,可以在[设置]中找到你的游客密码,然后用你的用户名登录。</answer>\n\t\t\t<question>问: 我可以在没有互联网连接的情况下玩游戏吗?</question>\n\t\t\t<answer>答: 不可以,你必须连接到互联网才能玩游戏。不过,默认情况下,你仍可以获得离线进度,最长可达10小时。如果你不想与其他玩家互动,可以关闭聊天频道并选择不使用市场。</answer>\n\t\t\t<question>问: 我可以更改我的角色名称吗?</question>\n\t\t\t<answer>答: 可以。请前往[牛铃商店],点击[更改名称]来更改你的名称。这需要500个牛铃。</answer>\n\t\t\t<question>问: 如何获得聊天图标或名称颜色?</question>\n\t\t\t<answer>答: 可以使用牛铃从[牛铃商店]购买聊天图标或名称颜色。你可以在[设置]中更改显示的图标和名称颜色。</answer>\n\t\t\t<question>问: 如何向其他玩家发送站内私信?</question>\n\t\t\t<answer>答: 要向其他玩家发送私人信息,请点击该玩家信息前方的名称并点击[私聊]。你也可以使用聊天命令\"/w 玩家名称 聊天内容\"。</answer>\n\t\t\t<question>问: 如何屏蔽其他玩家?</question>\n\t\t\t<answer>答: 要屏蔽一名玩家并停止收到其任何信息,请点击该玩家信息前方的名称并选择[屏蔽]。你也可以使用聊天命令\"/block 玩家名称\"。你可以在[社交]菜单中找到你的黑名单,然后从列表解除对玩家的屏蔽。</answer>\n\t\t\t<heading>游戏玩法</heading>\n\t\t\t<question>问: 什么是行动队列?</question>\n\t\t\t<answer>答: 行动队列允许你为角色设置一连串自动执行的行动。要使用它,请点击[添加到队列]按钮,而不是[开始]按钮。队列槽位可以从牛铃商店解锁或升级。</answer>\n\t\t\t<question>问: 什么是牛铃,如何获得更多的牛铃?</question>\n\t\t\t<answer>\n\t\t\t\t答: 牛铃是游戏中的高级货币。玩家可以用牛铃购买便利升级、外观装扮、社区BUFF和名称更改。获得牛铃有三种方法:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>完成教程: 可以获得80个牛铃作为奖励。</li>\n\t\t\t\t\t<li>稀有掉落: 在技艺训练或与敌人战斗时,有机会从稀有战利品箱中获得牛铃。</li>\n\t\t\t\t\t<li>从牛铃商店购买: 你可以在牛铃商店中充值购买牛铃来支持游戏。</li>\n\t\t\t\t\t<li>从市场购买: 你可以在市场上用金币向其他玩家购买可交易的牛铃袋\"。</li>\n\t\t\t\t</ul>\n\t\t\t</answer>\n\t\t\t<question>问: 什么是稀有掉落?</question>\n\t\t\t<answer>\n\t\t\t\t答: 稀有掉落是在游戏中参与不同行动时可以获得的战利品:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>采集专业: 可以获得包含星星碎片的陨石舱。</li>\n\t\t\t\t\t<li>生产专业、炼金和强化: 可以获得工匠匣,里面有保护碎片和宝石。</li>\n\t\t\t\t\t<li>战斗:可以获得装有宝石的宝箱。</li>\n\t\t\t\t</ul>\n\t\t\t\t所有箱子中都会有金币,偶尔还会有牛铃。完成更高级的技艺或对战更高级的敌人,可获得更大的宝箱。\n\t\t\t</answer>\n\t\t\t<question>问: 宝石有什么用?</question>\n\t\t\t<answer>答: 宝石可以用来制作不同的首饰,这些首饰会带来一些加成。此外,还可以使用\"制作\"专业将宝石粉碎成小块,用来冲泡更高效的咖啡和茶。宝石可以从战斗中获取的宝箱里找到。</answer>\n\t\t\t<question>问: 从哪里获得茶叶?</question>\n\t\t\t<answer>答: 在战斗中击败怪兽可以获得茶叶。在查看战斗区域时,你可以将鼠标悬停在怪兽身上(在手机上长按),查看其掉落的物品。茶叶是泡茶的必备材料,可以为非战斗专业加成。</answer>\n\t\t\t<question>问: 什么是精华?</question>\n\t\t\t<answer>答: 精华可以用于强化特殊装备。每个战斗区域的怪兽都会掉落不同类型的精华。</answer>\n\t\t\t<br />",
                                "gathering": "采集类专业",
                                "gatheringContent": "<heading>挤奶</heading>\n\t\t\t<text>\n\t\t\t\t给神奇的奶牛挤奶可以获得不同种类的牛奶,这些牛奶有多种用途:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>奶酪制作:牛奶可以变成奶酪,然后用来制作近战装备或专业工具。</li>\n\t\t\t\t\t<li>烹饪:牛奶是许多食谱中不可或缺的原料。</li>\n\t\t\t\t\t<li>冲泡:牛奶也用于少数的咖啡和茶配方。</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>你可以通过装备刷子来帮助奶牛更快地生产牛奶。</text>\n\t\t\t<br />\n\t\t\t<heading>采摘</heading>\n\t\t\t<text>采摘可以让你在不同的区域采摘不同的资源。你可以在某个区域采摘特定的物品,也可以在整个区域采摘,以获得各种物品。</text>\n\t\t\t<text>\n\t\t\t\t采摘的资源可用于:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>烹饪: 鸡蛋、小麦、糖、莓果和水果是许多食谱中必不可少的配料。</li>\n\t\t\t\t\t<li>冲泡: 莓果、水果和咖啡豆可用于冲泡咖啡和茶。</li>\n\t\t\t\t\t<li>缝纫: 亚麻、竹子、蚕茧和其他材料可以加工成布料,制作魔法服饰。</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>装备剪子可以提高采摘速度。</text>\n\t\t\t<br />\n\t\t\t<heading>伐木</heading>\n\t\t\t<text>你可以砍伐不同种类树木的原木。</text>\n\t\t\t<text>\n\t\t\t\t原木可用于:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>奶酪锻造: 原木是制作一些近战武器和专业工具的原料。</li>\n\t\t\t\t\t<li>制作: 原木可以加工成木材,用于制作远程武器和魔法武器。</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>装备斧头可以提高伐木速度。</text>\n\t\t\t<br />\n\t\t\t<heading>等级加成</heading>\n\t\t\t<text>你的等级每超过行动的等级要求1级,就会获得1%的效率加成。</text>\n\t\t\t<br />",
                                "production": "生产类专业",
                                "productionContent": "<heading>奶酪锻造</heading>\n\t\t\t<text>奶酪锻造是制造近战装备和工具的专业。</text>\n\t\t\t<text>牛奶被加工成不同等级的奶酪。然后制作成装备(有时与其他资源结合使用)。随着等级的提高,装备可以升级到更高的等级。</text>\n\t\t\t<text>装备锤子可以提高奶酪制作的速度。</text>\n\t\t\t<br />\n\t\t\t<heading>制作</heading>\n\t\t\t<text>制作可以产出多种物品,包括远程武器、魔法武器、珠宝和其他特殊资源。</text>\n\t\t\t<text>原木可以加工成不同等级的木材,然后用来制作远程武器和魔法武器。</text>\n\t\t\t<text>首饰可以用星星碎片和宝石制作,这些都是采集或战斗中发现的稀有物品。</text>\n\t\t\t<text>你可以通过装备凿子来提高制作速度。</text>\n\t\t\t<br />\n\t\t\t<heading>缝纫</heading>\n\t\t\t<text>缝纫可以制作各种魔法服饰和袋子。</text>\n\t\t\t<text>亚麻、竹子和蚕茧等采摘得来的原材料可以加工成布料。与怪兽战斗获得的兽皮也可以加工成皮革。</text>\n\t\t\t<text>布料主要用于制作魔法服饰,如袍服和帽子,而皮革则用于制作远程服饰,如皮衣和皮靴。</text>\n\t\t\t<text>除了服饰,你还可以制作袋子,增加战斗中的最大HP和MP。袋子还能为技艺和战斗提供额外的消耗品槽位。</text>\n\t\t\t<text>你可以通过装备针来提高缝纫速度。</text>\n\t\t\t<br />\n\t\t\t<heading>烹饪</heading>\n\t\t\t<text>烹饪产生的食物可在战斗中使用。</text>\n\t\t\t<text>甜甜圈和蛋糕可以恢复HP,软糖和酸奶可以恢复MP。</text>\n\t\t\t<text>装备锅铲可以提高烹饪速度。</text>\n\t\t\t<br />\n\t\t\t<heading>冲泡</heading>\n\t\t\t<text>冲泡饮料可在短时间内提供增益效果。</text>\n\t\t\t<text>在战斗中饮用咖啡可以提升战斗相关属性,而饮用茶则可以提高非战斗专业。</text>\n\t\t\t<text>你可以通过装备一个壶来提高冲泡速度。</text>\n\t\t\t<br />\n\t\t\t<heading>等级加成</heading>\n\t\t\t<text>你的等级每超过行动的等级要求1级,就会获得1%的效率加成。</text>\n\t\t\t<br />",
                                "alchemy": "炼金",
                                "alchemyContent": "<heading>炼金</heading>\n\t\t\t<text>炼金允许你使用点金、分解或转化将物品变为其他物品。每种行动都有不同的成功率,无论成功与否,投入的物品和金币成本都会被消耗。</text>\n\t\t\t<br />\n\t\t\t<heading>点金</heading>\n\t\t\t<text>点金可以将物品转化为金币。获得的金币数量是物品售价的5倍。基本成功率为70%。</text>\n\t\t\t<br />\n\t\t\t<heading>分解</heading>\n\t\t\t<text>分解可以将物品分解成原材料或精华。装备可以分解成原材料,非装备物品可以分解成技艺精华。分解强化装备可以获得额外的强化精华,强化等级越高,数量越多。基本成功率为60%。</text>\n\t\t\t<br />\n\t\t\t<heading>转化</heading>\n\t\t\t<text>转化可以将物品转化为其他相关物品或稀有独特物品,如贤者之石。基本成功率因被转化的物品而异。</text>\n\t\t\t<br />\n\t\t\t<heading>成功率</heading>\n\t\t\t<text>基础成功率取决于炼金行动和被炼金的特定物品。如果你的炼金专业等级低于物品的等级,成功率就会受到影响。使用催化剂和催化茶可以提高成功率。</text>\n\t\t\t<br />\n\t\t\t<heading>催化剂</heading>\n\t\t\t<text>催化剂是可以用来提高炼金成功率的特殊物品。只有在成功时才会消耗一个催化剂。普通催化剂可以使用专业精华制作。至高催化剂可通过转化普通催化剂获得。</text>\n\t\t\t<br />\n\t\t\t<heading>炼金效率</heading>\n\t\t\t<text>你的等级每超过物品建议等级1级,就会获得1%的效率加成。</text>\n\t\t\t<br />\n\t\t\t<heading>炼金说明</heading>\n\t\t\t<text>以下是炼金的步骤:</text>\n\t\t\t<ol>\n\t\t\t\t<li>选择要炼金的物品;</li>\n\t\t\t\t<li>选择要进行的炼金行动;</li>\n\t\t\t\t<li>决定是否使用催化剂。如果使用,请选择催化剂。</li>\n\t\t\t\t<li>点击\"开始\"按钮,就会开始炼金。</li>\n\t\t\t</ol>\n\t\t\t<br />",
                                "enhancing": "强化",
                                "enhancingContent": "<heading>强化</heading>\n\t\t\t<text>强化是增加任何装备(如盔甲、武器、工具、袋子或首饰)属性的过程。当你成功强化一件装备时,其强化等级会增加 1。但是,如果强化失败,等级会重置为 0。</text>\n\t\t\t<br />\n\t\t\t<heading>强化成功率</heading>\n\t\t\t<text>强化的成功率取决于几个因素,包括你的强化等级、装备的等级以及该装备当前的强化等级。一般来说,装备的等级和强化等级越高,成功率就越低。装备强化器可以提高成功率。</text>\n\t\t\t<br />\n\t\t\t<heading>保护</heading>\n\t\t\t<text>保护机制是一个允许玩家使用基础装备副本、保护之镜或制作组件(仅适用于特殊装备)为每次强化提供保护的功能。如果强化失败,装备的等级只会降低1级,但会消耗1件保护道具。这对毕业阶段的玩家来说是达到高强化等级的一种经济有效的方法。</text>\n\t\t\t<br />\n\t\t\t<heading>提升速度</heading>\n\t\t\t<text>你的等级每超过装备推荐等级1级,就会获得1%的行动速度加成。</text>\n\t\t\t<br />\n\t\t\t<heading>说明</heading>\n\t\t\t<text>以下是强化装备的步骤:</text>\n\t\t\t<ol>\n\t\t\t\t<li>选择要强化的装备。</li>\n\t\t\t\t<li>设定目标强化等级。现实一点,考虑以你目前的资源能达到什么水平。</li>\n\t\t\t\t<li>决定是否使用保护。如果使用,则选择保护道具和使用保护的最低强化等级。一般来说,强化物品的等级越高,使用保护的性价比就越高。</li>\n\t\t\t\t<li>点击\"开始\"按钮,你将继续强化,直到达到目标等级或材料耗尽。</li>\n\t\t\t</ol>\n\t\t\t<br />\n\t\t\t<heading>强化加成</heading>\n\t\t\t<text>强化装备的加成属性按基础属性的一定百分比增加。每个强化等级的总加成如下:\n\t\t\t<br />\n\t\t\t+1: 2.0%\n\t\t\t<br />\n\t\t\t+2: 4.2%\n\t\t\t<br />\n\t\t\t+3: 6.6%\n\t\t\t<br />\n\t\t\t+4: 9.2%\n\t\t\t<br />\n\t\t\t+5: 12.0%\n\t\t\t<br />\n\t\t\t+6: 15.0%\n\t\t\t<br />\n\t\t\t+7: 18.2%\n\t\t\t<br />\n\t\t\t+8: 21.6%\n\t\t\t<br />\n\t\t\t+9: 25.2%\n\t\t\t<br />\n\t\t\t+10: 29.0%\n\t\t\t<br />\n\t\t\t+11: 33.4%\n\t\t\t<br />\n\t\t\t+12: 38.4%\n\t\t\t<br />\n\t\t\t+13: 44.0%\n\t\t\t<br />\n\t\t\t+14: 50.2%\n\t\t\t<br />\n\t\t\t+15: 57.0%\n\t\t\t<br />\n\t\t\t+16: 64.4%\n\t\t\t<br />\n\t\t\t+17: 72.4%\n\t\t\t<br />\n\t\t\t+18: 81.0%\n\t\t\t<br />\n\t\t\t+19: 90.2%\n\t\t\t<br />\n\t\t\t+20: 100%\n\t\t\t</text>\n\t\t\t<text>作为例外,佩饰、背部装备和饰品槽位的强化可获得正常加成的5倍。例如,佩饰的+1强化为10%的加成。</text>\n\t\t\t<br />\n\t\t\t<heading>强化基础成功率</heading>\n\t\t\t<text>\n\t\t\t+1: 50%\n\t\t\t<br />\n\t\t\t+2: 45%\n\t\t\t<br />\n\t\t\t+3: 45%\n\t\t\t<br />\n\t\t\t+4: 40%\n\t\t\t<br />\n\t\t\t+5: 40%\n\t\t\t<br />\n\t\t\t+6: 40%\n\t\t\t<br />\n\t\t\t+7: 35%\n\t\t\t<br />\n\t\t\t+8: 35%\n\t\t\t<br />\n\t\t\t+9: 35%\n\t\t\t<br />\n\t\t\t+10: 35%\n\t\t\t<br />\n\t\t\t+11: 30%\n\t\t\t<br />\n\t\t\t+12: 30%\n\t\t\t<br />\n\t\t\t+13: 30%\n\t\t\t<br />\n\t\t\t+14: 30%\n\t\t\t<br />\n\t\t\t+15: 30%\n\t\t\t<br />\n\t\t\t+16: 30%\n\t\t\t<br />\n\t\t\t+17: 30%\n\t\t\t<br />\n\t\t\t+18: 30%\n\t\t\t<br />\n\t\t\t+19: 30%\n\t\t\t<br />\n\t\t\t+20: 30%\n\t\t\t</text>\n\t\t\t<br />",
                                "combat": "战斗",
                                "combatContent": "<heading>战斗</heading>\n\t\t\t<text>与怪兽战斗可以获得金币、茶叶、兽皮、精华、技能书、宝石、特殊物品以及各种常见资源。在不同的战斗区域会有不同难度的敌人。</text>\n\t\t\t<br />\n\t\t\t<heading>装备</heading>\n\t\t\t<text>穿戴装备可以提高战斗中的属性。你可以直接从库存中装备物品,也可以点击库存旁边[装备]中的装备槽位来装备物品。</text>\n\t\t\t<br />\n\t\t\t<heading>消耗品</heading>\n\t\t\t<text>消耗食物可以恢复HP或MP。饮料可以在一定时间内提供增益效果。升级袋子在可以让你在战斗中携带更多的食物和饮料。</text>\n\t\t\t<br />\n\t\t\t<heading>技能</heading>\n\t\t\t<text>你可以学习技能书,并在战斗中消耗MP来使用技能。要解锁新的技能,必须从技能书中学习。技能会随着等级的提升而增强。每次在战斗中使用技能都会获得0.1的经验。你还可以通过消耗重复的技能书来获得大量经验。</text>\n\t\t\t<text>在战斗中使用多个可用的技能时,它们将按照你的设置从左到右的顺序施放。</text>\n\t\t\t<text>你的智力等级决定了你可以携带多少种技能。</text>\n\t\t\t<br />\n\t\t\t<heading>触发器</heading>\n\t\t\t<text>消耗品和技能都有默认设置,用于决定他们何时会自动使用。这些设置被称为触发器,可以在进入战斗前点击技能下方的[齿轮图标]进行修改。</text>\n\t\t\t<br />\n\t\t\t<heading>击败和重生</heading>\n\t\t\t<text>在战斗中被击败后,你的角色需要等待重生倒计时结束,才能复活并自动重新开始战斗。</text>\n\t\t\t<br />\n\t\t\t<heading>团队战斗</heading>\n\t\t\t<text>你可以创建或加入一个队伍,一起在有多个怪物的区域战斗。当所有队员都按下[准备就绪]键后,队伍将自动前往战斗地点。怪物会随机攻击任何一名队员,而威胁值较高的队员会更频繁地成为攻击目标。怪物的经验和掉落将平均分配给所有玩家。战斗等级比最高等级玩家低20%以上的玩家将获得较少的经验和掉落。</text>\n\t\t\t<br />\n\t\t\t<heading>地下城</heading>\n\t\t\t<text>地下城由多波更高级的精英怪物和独特的地下城boss组成。玩家可以使用地下城钥匙进入地下城,这些钥匙可以从常规战斗区域的boss身上找到钥匙碎片后制作。</text>\n\t\t\t<text>一个地下城队伍中最多可有五名玩家。每个人都必须有一把钥匙,在击败最终boss后消耗钥匙会获得地下城宝箱。如果你以较少的玩家完成了一个地下城,就有机会以多付出一个钥匙为代价得到一个额外的宝箱。如果地下城没有完成,你将保留你的地下城钥匙。</text>\n\t\t\t<text>在地下城中被击败不会触发重生倒计时,只能等队员复活你。如果所有成员都被击败了,地下城任务将被视为失败,你们将从第1波重新开始。</text>\n\t\t\t<br />\n\t\t\t<heading>战斗专业</heading>\n\t\t\t<text>你有 7 个可以升级的战斗专业:</text>\n\t\t\t<ul>\n\t\t\t<li>耐力: 每升一级,最大HP增加10。</li>\n\t\t\t<li>智力: 每升一级,最大MP增加10。</li>\n\t\t\t<li>攻击: 提高你的精准度、攻击速度和施法速度。</li>\n\t\t\t<li>防御: 提高你的闪避、护甲和元素抗性。</li>\n\t\t\t<li>近战: 提高你的近战伤害。</li>\n\t\t\t<li>远程: 提高你的远程伤害。</li>\n\t\t\t<li>魔法: 提高你的魔法伤害。</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>状态效果</heading>\n\t\t\t<text>有些状态效果会暂时阻止你采取某些行动:</text>\n\t\t\t<ul>\n\t\t\t<li>失明: 禁止使用自动攻击。</li>\n\t\t\t<li>沉默: 禁止使用技能。</li>\n\t\t\t<li>眩晕: 禁止使用自动攻击、技能和消耗品。</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>属性</heading>\n\t\t\t<text>你还有次要战斗属性,受你的战斗等级、装备和增益影响:</text>\n\t\t\t<ul>\n\t\t\t<li>战斗风格: 每种攻击都有特定的类型 - 刺击、斩击、钝击、远程或魔法。</li>\n\t\t\t<li>伤害类型: 每次攻击都会造成特定类型的伤害 - 物理、水系、自然系或火系。</li>\n\t\t\t<li>攻击间隔: 自动攻击的速度。</li>\n\t\t\t<li>技能急速: 减少技能冷却时间。</li>\n\t\t\t<li>精确度: 增加击中的几率。</li>\n\t\t\t<li>伤害: 击中时的最大伤害。自动攻击伤害在1和最大伤害之间随机。</li>\n\t\t\t<li>暴击: 暴击总是会造成最大伤害。远程战斗风格具有基础的暴击几率。</li>\n\t\t\t<li>增幅: 增加造成的伤害。</li>\n\t\t\t<li>贯穿: 攻击时忽略敌人一定比例的护甲或抗性。</li>\n\t\t\t<li>闪避: 增加闪避攻击的几率。</li>\n\t\t\t<li>护甲: 减轻一定比例的物理伤害。</li>\n\t\t\t<li>抗性: 减轻一定比例的水系、自然系或火系伤害。</li>\n\t\t\t<li>生命窃取: 根据你自动攻击造成伤害的百分比恢复HP。</li>\n\t\t\t<li>法力汲取: 根据你自动攻击造成伤害的百分比恢复MP。</li>\n\t\t\t<li>荆棘: 被攻击时,将一定比例的防御伤害反射给攻击者。每个护甲或抗性(与攻击类型相对应)增加1%伤害。</li>\n\t\t\t<li>反伤: 被攻击时,将(防御伤害+被攻击伤害)的一定比例以钝击形式反伤攻击者。</li>\n\t\t\t<li>韧性: 降低失明、沉默或眩晕的几率。</li>\n\t\t\t<li>威胁: 增加被怪物攻击的几率。</li>\n\t\t\t<li>HP/MP恢复: 每10秒恢复一定百分比的最大HP/MP。</li>\n\t\t\t<li>食物急速: 减少食物冷却时间。</li>\n\t\t\t<li>饮料浓缩: 增加饮料效果。缩短持续时间和冷却时间。</li>\n\t\t\t<li>战斗掉落率: 提高常规物品的掉落率(不超过100%)。</li>\n\t\t\t<li>战斗掉落数量: 增加常规物品的掉落数量。</li>\n\t\t\t<li>战斗稀有发现: 增加稀有物品的掉落率。</li>\n\t\t\t<li>主修训练: 30%的战斗经验会分配给主修训练专业,这取决于你的武器。</li>\n\t\t\t<li>选修训练: 70%的战斗经验会分配给专注训练专业,这取决于你的护符。</li>\n\t\t\t<li>战斗等级: 仅用于显示,代表基于战斗专业等级的综合战斗力。</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>公式</heading>\n\t\t\t<text>对于那些喜欢数学的人,下面是次要战斗属性的计算公式:</text>\n\t\t\t<ul>\n\t\t\t<li>最大HP = 10 * (10 + 耐力)</li>\n\t\t\t<li>最大MP = 10 * (10 + 智力)</li>\n\t\t\t<li>攻击间隔 = 基础间隔 / (1 + (攻击 / 2000)) / (1 + 攻击速度加成)</li>\n\t\t\t<li>施法时间 = 基础施法时间 / (1 + (攻击 / 2000) + 施法速度)</li>\n\t\t\t<li>能力冷却时间 = 基础冷却时间 * 100 / (100 + 技能急速)</li>\n\t\t\t<li>精确度 = (10 + 攻击) * (1 + 加成百分比)</li>\n\t\t\t<li>伤害 = (10 + [近战|远程|魔法|防御]) * (1 + 加成百分比)</li>\n\t\t\t<li>重盾钝击伤害 = 钝击伤害 + 防御伤害</li>\n\t\t\t<li>荆棘伤害 = 防御伤害 * (1 + [护甲|抗性] / 100) * 荆棘%</li>\n\t\t\t<li>反伤伤害 = (防御伤害 + MIN(攻击者未减免伤害, 5 * 防御伤害)) * 反伤%</li>\n\t\t\t<li>命中率 = (我的精准度 ^ 1.4) / (我的精准度 ^ 1.4 + 敌人闪避 ^ 1.4)</li>\n\t\t\t<li>远程暴击加成率 = 0.3 * 命中几率</li>\n\t\t\t<li>闪避 = (10 + 防御) * (1 + 加成百分比)</li>\n\t\t\t<li>护甲 = 0.2 * 防御 + 加成</li>\n\t\t\t<li>受到的物理伤害百分比 = 100 / (100 + 护甲)<br />如果护甲为负值,则 = (100 - 护甲) / 100</li>\n\t\t\t<li>抗性 = 0.2 * 防御 + 加成</li>\n\t\t\t<li>受到的元素伤害百分比 = 100 / (100 + 抗性)<br />如果抗性为负值,则 = (100 - 抗性) / 100</li>\n\t\t\t<li>失明/沉默/眩晕几率 = 基础几率 * 100 / (100 + 韧性)</li>\n\t\t\t<li>被怪物锁定几率 = 我的威胁/(团队总威胁)</li>\n\t\t\t<li>战斗等级 = 0.1 * (耐力 + 智力 + 攻击 + 防御 + MAX(近战, 远程, 魔法)) + 0.5 * MAX(攻击, 防御, 近战, 远程, 魔法)</li>\n\t\t\t</ul>\n\t\t\t<br />",
                                "tasks": "任务",
                                "tasksContent": "<heading>任务功能</heading>\n\t\t\t<text>完成教程后,你将解锁此功能。任务栏会随机生成不同专业长短不一的任务,完成这些任务就会获得奖励。</text>\n\t\t\t<br />\n\t\t\t<heading>任务栏</heading>\n\t\t\t<text>\n\t\t\t<ul>\n\t\t\t\t<li>频率: 任务会定期分配,从每8小时一次开始。升级可以将间隔时间缩短至最低4小时。</li>\n\t\t\t\t<li>种类: 任务可能涉及采集/生产专业或击败怪物。生成的任务会稍微优先考虑玩家等级较高的专业。</li>\n\t\t\t\t<li>重置: 你可以使用金币或牛铃重新选择任务。每次重新选择的费用会翻倍(有上限)。</li>\n\t\t\t\t<li>容量: 任务没有期限,但有任务槽位只有8个。你可以在牛铃商店中升级,增加任务槽位。</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>奖励</heading>\n\t\t\t<text>\n\t\t\t<ul>\n\t\t\t\t<li>完成任务可获得金币和任务代币。每获得一个任务代币还会积累一个任务点数。</li>\n\t\t\t\t<li>累积50个任务点数就可以领取\"小紫牛的礼物\",打开后可以获得金币、任务代币、任务水晶和各种战利品。</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>任务商店</heading>\n\t\t\t<text>任务代币可在任务商店中用于购买永久升级或物品,包括:\n\t\t\t<ul>\n\t\t\t\t<li>任务冷却:减少任务之间的冷却时间。</li>\n\t\t\t\t<li>屏蔽槽位:允许屏蔽被分配特定专业的任务。战斗屏蔽需要额外付费解锁。</li>\n\t\t\t\t<li>任务水晶:用于制作或升级任务徽章。任务徽章可在执行任务时提供大量速度或伤害加成。</li>\n\t\t\t\t<li>战利品箱:大陨石舱、大工匠匣和大宝箱。</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />",
                                "guild": "公会",
                                "guildContent": "<heading>公会</heading>\n\t\t\t<text>通过导航菜单中的[公会]功能发现公会。公会由喜欢一起游戏的玩家组成。虽然公会目前主要作为社交中心,但未来推出的扩展可能会引入更多以团队为导向的活动。</text>\n\t\t\t<br />\n\t\t\t<heading>创建公会</heading>\n\t\t\t<text>你可以投入500万金币并选择一个独特的公会名称,就可以创建自己的公会。作为公会的创建者,你将自动成为公会会长,在公会中拥有最高权力。之后,你可以邀请其他玩家加入你的公会。</text>\n\t\t\t<br />\n\t\t\t<heading>加入公会</heading>\n\t\t\t<text>你可以被邀请加入现有的公会。你可以在招募聊天频道寻找正在招人的公会,公会会在该频道积极寻找新成员。你可以在公会页面上查看你收到的邀请。</text>\n\t\t\t<br />\n\t\t\t<heading>公会功能</heading>\n\t\t\t<text>公会有几个主要功能:\n\t\t\t<ul>\n\t\t\t\t<li>公会聊天频道: 一个私人的、自我管理的空间,供公会成员联系和交谈。</li>\n\t\t\t\t<li>公会公告栏: 一个可由会长或将军编辑的公告板,用于通知所有成员。</li>\n\t\t\t\t<li>公会等级: 随着成员在各种专业获得经验,公会会以1:1000的比例积累公会经验,从而提升公会等级。根据公会等级和经验攀升排行榜。</li>\n\t\t\t\t<li>成员名额: 公会初始时有 {{defaultGuildMemberCount}} 个会员名额,每提升 {{guildLevelsPerMaxMember}} 个公会等级可增加 1 个名额。</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>成员角色</heading>\n\t\t\t<text>公会具有不同的角色和权限。较高等级的角色自动具有任何较低级角色的权限:\n\t\t\t<ul>\n\t\t\t\t<li>会长\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>可将领导权传给另一位成员。</li>\n\t\t\t\t\t\t<li>当公会空无一人时,有权解散公会。</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>将军\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>有权提升或降级任何低级成员。</li>\n\t\t\t\t\t\t<li>可编辑公会公告栏。</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>官员\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>可邀请新成员加入公会。</li>\n\t\t\t\t\t\t<li>可将低级别成员踢出公会。</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>会员\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>可以查看公会概况。</li>\n\t\t\t\t\t\t<li>可以查看公会聊天频道并进行交谈。</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>已邀请\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>在接受公会邀请之前没有访问权限</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />",
                                "chatCommands": "聊天命令",
                                "chatCommandsContent": "<heading>聊天命令</heading>\n\t\t\t<text>\n\t\t\t\t<chatCommand>/w [名称] [信息]</chatCommand> - 与其他玩家私聊<br />\n\t\t\t\t<chatCommand>/r</chatCommand> - 回复最后一条私聊<br />\n\t\t\t\t<chatCommand>/profile [名称]</chatCommand> - 查看玩家资料<br />\n\t\t\t\t<chatCommand>/friend [名称]</chatCommand> - 添加好友<br />\n\t\t\t\t<chatCommand>/block [名称]</chatCommand> - 屏蔽玩家<br />\n\t\t\t</text>\n\t\t\t<br />",
                                "experienceTable": "经验表"
                            },
                            "gameRulesPanel": {
                                "gameRules": "游戏规则"
                            },
                            "gameRulesText": {
                                "content": "<div>\n\t\t\t\t银河奶牛放置的规则旨在确保所有玩家都能获得愉快、公平的游戏体验。\n\t\t\t\t违反规则将根据违规行为的类型和严重程度受到相应的处罚,包括警告、禁言、物品移除、交易禁止或账户封禁。\n\t\t\t\t<br /><br />\n\t\t\t</div>\n\t\t\t<olMain>\n\t\t\t\t<li><b>帐号</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>仅限一个账户: </b>\n\t\t\t\t\t\t\t每个人只能使用一个账户进行游戏。游客也被视为账户。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>不得共享账户: </b>\n\t\t\t\t\t\t\t不得与其他玩家共享账户。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>不得使用不恰当的名称: </b>\n\t\t\t\t\t\t\t名称不得具有冒犯性、色情、冒充他人或使用知名现实人物的名字。不适当的名称可导致禁言和强制更名。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>仅限13岁以上玩家: </b>\n\t\t\t\t\t\t\t根据美国COPPA《儿童在线隐私保护法案》规定,你必须年满 13 周岁才能注册和游戏。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>交易</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止真实世界交易/交叉交易: </b>\n\t\t\t\t\t\t\t请勿在银河奶牛放置中交易物品或服务以换取游戏外的任何东西。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止财富转移: </b>\n\t\t\t\t\t\t\t不得向任何玩家输送财产。玩家接受的所有礼物总价值不得超过 10M 金币。超过该限制的财富转移行为,无论是否故意,均会被视为违规行为。非故意的转移 (例如:在市场上偶然购买到超低价的物品) 会被移除相关收益。故意的转移将根据严重程度受到额外处罚。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止欺诈: </b>\n\t\t\t\t\t\t\t不得使用欺骗或敲诈手段从其他玩家处获得物品。如有足够证据,我们将对欺诈者采取行动。但因欺诈而丢失的物品将不予退还。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>在7天内偿还贷款: </b>\n\t\t\t\t\t\t\t贷款风险自负。7天内未偿还的贷款将被视为财富转移/欺诈行为。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>聊天</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>请相互尊重,友善交流: </b>\n\t\t\t\t\t\t\t聊天规则的第一条就是尊重其他玩家。我们的目标是创建一个人人都能享受的友好社区空间。\n\t\t\t\t\t\t\t请避免故意与他人对立或骚扰他人。\n\t\t\t\t\t\t\t虽然偶尔使用脏话并不违反规定,但请不要过度使用脏话,尤其是针对其他玩家时。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>英语聊天频道仅限英语: </b>\n\t\t\t\t\t\t\t请在英语聊天频道使用英语。其他频道可使用不同语言。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止歧视: </b>\n\t\t\t\t\t\t\t请勿使用针对任何个人或群体的污言秽语、俚语或任何攻击性话语。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止非法或色情话题: </b>\n\t\t\t\t\t\t\t请勿讨论非法或色情话题。禁止发送非法活动或色情话题的外部链接。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>避免敏感话题或闹剧: </b>\n\t\t\t\t\t\t\t请避免讨论容易引发争议或闹剧的敏感话题。\n\t\t\t\t\t\t\t这包括但不限于政治、宗教、国际冲突、性别讨论、性取向、\n\t\t\t\t\t\t\t禁言/封禁投诉,以及其他容易引发纷争的话题。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止恶意刷屏: </b>\n\t\t\t\t\t\t\t请勿在聊天中发送大量不必要的垃圾信息、过度使用大写字母、或向他人乞讨免费物品。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>请勿鼓励他人违反规则: </b>\n\t\t\t\t\t\t\t不要误导或怂恿其他玩家违反游戏规则。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>不要泄露个人信息: </b>\n\t\t\t\t\t\t\t请勿披露可识别的个人信息,包括但不限于你的全名、地址、电话号码和电子邮件。\n\t\t\t\t\t\t\t此外,请勿披露其他玩家未公开的任何个人信息,如姓名、年龄或所在地。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>所有广告必须在适当的渠道发布: </b>\n\t\t\t\t\t\t\t所有购买、出售或服务请求应在交易频道中进行。公会/队伍招募或寻求加入公会/队伍的请求应在招募频道提出。\n\t\t\t\t\t\t\t允许在大多聊天频道中询问价格。禁止邀请/推荐链接。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>听从<modIcon />管理员安排: </b>\n\t\t\t\t\t\t\t为了保持良好的聊天环境,管理员会对各聊天频道进行管理。\n\t\t\t\t\t\t\t请配合并尊重他们的要求。如果对管理员有任何争执或投诉,请通过Discord申诉或发送电子邮件至[email protected]。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>机器人、脚本和扩展</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止机器人: </b>\n\t\t\t\t\t\t\t请勿使用任何自动化程序代替你操作游戏。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>脚本和扩展: </b>\n\t\t\t\t\t\t\t任何脚本或扩展程序都不得为玩家执行任何操作(向服务器发送任何请求),\n\t\t\t\t\t\t\t仅限使用于显示信息或改进用户界面 (例如: 显示战斗摘要、跟踪掉落、将按钮移动到不同位置)。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>错误和漏洞</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>不得滥用漏洞: </b>\n\t\t\t\t\t\t\t请勿滥用游戏错误或漏洞来为自己谋利。请通过Discord告诉我们,谢谢。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t</olMain>\n\t\t\t<br />"
                            },
                            "gameModeNames": {
                                "standard": "标准",
                                "ironcow": "铁牛",
                                "legacy_ironcow": "传统铁牛"
                            },
                            "gameModeDescriptions": {
                                "standard": "标准游戏模式适合大多数玩家,没有功能限制。",
                                "ironcow": "铁牛游戏模式适合喜欢自力更生的玩家。你不能使用市场与其他玩家交易(例外: 允许购买牛铃)。",
                                "legacy_ironcow": ""
                            },
                            "skillNames": {
                                "/skills/total_level": "总等级",
                                "/skills/milking": "挤奶",
                                "/skills/foraging": "采摘",
                                "/skills/woodcutting": "伐木",
                                "/skills/cheesesmithing": "奶酪锻造",
                                "/skills/crafting": "制作",
                                "/skills/tailoring": "缝纫",
                                "/skills/cooking": "烹饪",
                                "/skills/brewing": "冲泡",
                                "/skills/alchemy": "炼金",
                                "/skills/enhancing": "强化",
                                "/skills/stamina": "耐力",
                                "/skills/intelligence": "智力",
                                "/skills/attack": "攻击",
                                "/skills/defense": "防御",
                                "/skills/melee": "近战",
                                "/skills/ranged": "远程",
                                "/skills/magic": "魔法"
                            },
                            "abilityNames": {
                                "/abilities/poke": "破胆之刺",
                                "/abilities/impale": "透骨之刺",
                                "/abilities/puncture": "破甲之刺",
                                "/abilities/penetrating_strike": "贯心之刺",
                                "/abilities/scratch": "爪影斩",
                                "/abilities/cleave": "分裂斩",
                                "/abilities/maim": "血刃斩",
                                "/abilities/crippling_slash": "致残斩",
                                "/abilities/smack": "重碾",
                                "/abilities/sweep": "重扫",
                                "/abilities/stunning_blow": "重锤",
                                "/abilities/fracturing_impact": "碎裂冲击",
                                "/abilities/shield_bash": "盾击",
                                "/abilities/quick_shot": "快速射击",
                                "/abilities/aqua_arrow": "流水箭",
                                "/abilities/flame_arrow": "烈焰箭",
                                "/abilities/rain_of_arrows": "箭雨",
                                "/abilities/silencing_shot": "沉默之箭",
                                "/abilities/steady_shot": "稳定射击",
                                "/abilities/pestilent_shot": "疫病射击",
                                "/abilities/penetrating_shot": "贯穿射击",
                                "/abilities/water_strike": "流水冲击",
                                "/abilities/ice_spear": "冰枪术",
                                "/abilities/frost_surge": "冰霜爆裂",
                                "/abilities/mana_spring": "法力喷泉",
                                "/abilities/entangle": "缠绕",
                                "/abilities/toxic_pollen": "剧毒粉尘",
                                "/abilities/natures_veil": "自然菌幕",
                                "/abilities/life_drain": "生命吸取",
                                "/abilities/fireball": "火球",
                                "/abilities/flame_blast": "熔岩爆裂",
                                "/abilities/firestorm": "火焰风暴",
                                "/abilities/smoke_burst": "烟爆灭影",
                                "/abilities/minor_heal": "初级自愈术",
                                "/abilities/heal": "自愈术",
                                "/abilities/quick_aid": "快速治疗术",
                                "/abilities/rejuvenate": "群体治疗术",
                                "/abilities/taunt": "嘲讽",
                                "/abilities/provoke": "挑衅",
                                "/abilities/toughness": "坚韧",
                                "/abilities/elusiveness": "闪避",
                                "/abilities/precision": "精确",
                                "/abilities/berserk": "狂暴",
                                "/abilities/frenzy": "狂速",
                                "/abilities/elemental_affinity": "元素增幅",
                                "/abilities/spike_shell": "尖刺防护",
                                "/abilities/retribution": "惩戒",
                                "/abilities/vampirism": "吸血",
                                "/abilities/revive": "复活",
                                "/abilities/insanity": "疯狂",
                                "/abilities/invincible": "无敌",
                                "/abilities/speed_aura": "速度光环",
                                "/abilities/guardian_aura": "守护光环",
                                "/abilities/fierce_aura": "物理光环",
                                "/abilities/critical_aura": "暴击光环",
                                "/abilities/mystic_aura": "元素光环",
                                "/abilities/promote": "晋升"
                            },
                            "abilityDescriptions": {
                                "/abilities/poke": "戳向目标敌人",
                                "/abilities/impale": "刺穿目标敌人",
                                "/abilities/puncture": "击破目标敌人的护甲,造成伤害并临时降低其护甲",
                                "/abilities/penetrating_strike": "刺向目标敌人,如果命中,则贯穿并刺向下一个敌人",
                                "/abilities/scratch": "抓伤目标敌人",
                                "/abilities/cleave": "劈砍所有敌人",
                                "/abilities/maim": "划伤目标敌人,并使其流血",
                                "/abilities/crippling_slash": "斩击所有敌人,并减少其伤害",
                                "/abilities/smack": "猛击目标敌人",
                                "/abilities/sweep": "对所有敌人进行横扫攻击",
                                "/abilities/stunning_blow": "重锤目标敌人,并有几率使其眩晕",
                                "/abilities/fracturing_impact": "对所有敌人造成伤害,并增加其所受伤害",
                                "/abilities/shield_bash": "盾击目标敌人",
                                "/abilities/quick_shot": "对目标敌人进行快速射击",
                                "/abilities/aqua_arrow": "向目标敌人射出水箭",
                                "/abilities/flame_arrow": "向目标敌人射出火焰箭",
                                "/abilities/rain_of_arrows": "向所有敌人射出箭雨",
                                "/abilities/silencing_shot": "对目标敌人射击,并使其沉默",
                                "/abilities/steady_shot": "以极高的精准对目标敌人进行射击",
                                "/abilities/pestilent_shot": "对目标敌人射击,并减少护甲和魔抗",
                                "/abilities/penetrating_shot": "射击目标敌人,如果命中,则贯穿并射向下一个敌人",
                                "/abilities/water_strike": "对目标敌人使用流水冲击",
                                "/abilities/ice_spear": "对目标敌人投掷冰矛,造成伤害并降低其攻击速度",
                                "/abilities/frost_surge": "对所有敌人施放冰霜爆裂,造成伤害并减少闪避",
                                "/abilities/mana_spring": "对所有敌人释放法力喷泉,造成伤害并增加友方MP恢复",
                                "/abilities/entangle": "缠绕目标敌人,造成伤害并有几率使其眩晕",
                                "/abilities/toxic_pollen": "对所有敌人施放剧毒粉尘,造成伤害并减少护甲和魔抗",
                                "/abilities/natures_veil": "给所有敌人蒙上一层菌幕,造成伤害并有几率使其失明",
                                "/abilities/life_drain": "吸取目标敌人的生命力,造成伤害并治疗自己",
                                "/abilities/fireball": "对目标敌人施放火球",
                                "/abilities/flame_blast": "对所有敌人施放熔岩爆裂",
                                "/abilities/firestorm": "对所有敌人施放火焰风暴",
                                "/abilities/smoke_burst": "对目标敌人释放烟爆灭影,造成伤害并减少精准",
                                "/abilities/minor_heal": "对自己施放初级治疗术",
                                "/abilities/heal": "对自己施放治疗术",
                                "/abilities/quick_aid": "对HP%最低的队友施放治疗术",
                                "/abilities/rejuvenate": "治疗所有队友",
                                "/abilities/taunt": "大幅增加威胁等级",
                                "/abilities/provoke": "极大地增加威胁等级",
                                "/abilities/toughness": "临时大幅增加护甲和抗性",
                                "/abilities/elusiveness": "临时大幅增加闪避",
                                "/abilities/precision": "临时大幅增加精准",
                                "/abilities/berserk": "临时大幅增加物理伤害",
                                "/abilities/frenzy": "临时大幅增加攻击速度",
                                "/abilities/elemental_affinity": "临时大幅增加元素伤害",
                                "/abilities/spike_shell": "临时获得物理和元素荆棘",
                                "/abilities/retribution": "临时获得反伤强度",
                                "/abilities/vampirism": "临时获得生命偷取",
                                "/abilities/revive": "复活一位死亡的队友",
                                "/abilities/insanity": "以HP为代价,临时增加伤害、攻击速度和施法速度",
                                "/abilities/invincible": "临时极大增加护甲、抗性和韧性",
                                "/abilities/speed_aura": "增加所有队友的攻击速度和施法速度,效果随施法者的攻击每级增加(0.005x)",
                                "/abilities/guardian_aura": "增加所有队友的治疗增幅、闪避、护甲和抗性,效果随施法者的防御每级增加(0.005x)",
                                "/abilities/fierce_aura": "增加所有队友的物理增幅,效果随施法者的近战每级增加(0.005x)",
                                "/abilities/critical_aura": "增加所有队友的暴击率和暴击伤害,效果随施法者的远程每级增加(0.005x)",
                                "/abilities/mystic_aura": "增加所有队友的元素增幅,效果随施法者的魔法每级增加(0.005x)",
                                "/abilities/promote": "晋升一个小兵"
                            },
                            "itemNames": {
                                "/items/coin": "金币",
                                "/items/task_token": "任务代币",
                                "/items/chimerical_token": "奇幻代币",
                                "/items/sinister_token": "阴森代币",
                                "/items/enchanted_token": "秘法代币",
                                "/items/pirate_token": "海盗代币",
                                "/items/cowbell": "牛铃",
                                "/items/bag_of_10_cowbells": "牛铃袋 (10个)",
                                "/items/purples_gift": "小紫牛的礼物",
                                "/items/small_meteorite_cache": "小陨石舱",
                                "/items/medium_meteorite_cache": "中陨石舱",
                                "/items/large_meteorite_cache": "大陨石舱",
                                "/items/small_artisans_crate": "小工匠匣",
                                "/items/medium_artisans_crate": "中工匠匣",
                                "/items/large_artisans_crate": "大工匠匣",
                                "/items/small_treasure_chest": "小宝箱",
                                "/items/medium_treasure_chest": "中宝箱",
                                "/items/large_treasure_chest": "大宝箱",
                                "/items/chimerical_chest": "奇幻宝箱",
                                "/items/chimerical_refinement_chest": "奇幻精炼宝箱",
                                "/items/sinister_chest": "阴森宝箱",
                                "/items/sinister_refinement_chest": "阴森精炼宝箱",
                                "/items/enchanted_chest": "秘法宝箱",
                                "/items/enchanted_refinement_chest": "秘法精炼宝箱",
                                "/items/pirate_chest": "海盗宝箱",
                                "/items/pirate_refinement_chest": "海盗精炼宝箱",
                                "/items/blue_key_fragment": "蓝色钥匙碎片",
                                "/items/green_key_fragment": "绿色钥匙碎片",
                                "/items/purple_key_fragment": "紫色钥匙碎片",
                                "/items/white_key_fragment": "白色钥匙碎片",
                                "/items/orange_key_fragment": "橙色钥匙碎片",
                                "/items/brown_key_fragment": "棕色钥匙碎片",
                                "/items/stone_key_fragment": "石头钥匙碎片",
                                "/items/dark_key_fragment": "黑暗钥匙碎片",
                                "/items/burning_key_fragment": "燃烧钥匙碎片",
                                "/items/chimerical_entry_key": "奇幻钥匙",
                                "/items/chimerical_chest_key": "奇幻宝箱钥匙",
                                "/items/sinister_entry_key": "阴森钥匙",
                                "/items/sinister_chest_key": "阴森宝箱钥匙",
                                "/items/enchanted_entry_key": "秘法钥匙",
                                "/items/enchanted_chest_key": "秘法宝箱钥匙",
                                "/items/pirate_entry_key": "海盗钥匙",
                                "/items/pirate_chest_key": "海盗宝箱钥匙",
                                "/items/donut": "甜甜圈",
                                "/items/blueberry_donut": "蓝莓甜甜圈",
                                "/items/blackberry_donut": "黑莓甜甜圈",
                                "/items/strawberry_donut": "草莓甜甜圈",
                                "/items/mooberry_donut": "哞莓甜甜圈",
                                "/items/marsberry_donut": "火星莓甜甜圈",
                                "/items/spaceberry_donut": "太空莓甜甜圈",
                                "/items/cupcake": "纸杯蛋糕",
                                "/items/blueberry_cake": "蓝莓蛋糕",
                                "/items/blackberry_cake": "黑莓蛋糕",
                                "/items/strawberry_cake": "草莓蛋糕",
                                "/items/mooberry_cake": "哞莓蛋糕",
                                "/items/marsberry_cake": "火星莓蛋糕",
                                "/items/spaceberry_cake": "太空莓蛋糕",
                                "/items/gummy": "软糖",
                                "/items/apple_gummy": "苹果软糖",
                                "/items/orange_gummy": "橙子软糖",
                                "/items/plum_gummy": "李子软糖",
                                "/items/peach_gummy": "桃子软糖",
                                "/items/dragon_fruit_gummy": "火龙果软糖",
                                "/items/star_fruit_gummy": "杨桃软糖",
                                "/items/yogurt": "酸奶",
                                "/items/apple_yogurt": "苹果酸奶",
                                "/items/orange_yogurt": "橙子酸奶",
                                "/items/plum_yogurt": "李子酸奶",
                                "/items/peach_yogurt": "桃子酸奶",
                                "/items/dragon_fruit_yogurt": "火龙果酸奶",
                                "/items/star_fruit_yogurt": "杨桃酸奶",
                                "/items/milking_tea": "挤奶茶",
                                "/items/foraging_tea": "采摘茶",
                                "/items/woodcutting_tea": "伐木茶",
                                "/items/cooking_tea": "烹饪茶",
                                "/items/brewing_tea": "冲泡茶",
                                "/items/alchemy_tea": "炼金茶",
                                "/items/enhancing_tea": "强化茶",
                                "/items/cheesesmithing_tea": "奶酪锻造茶",
                                "/items/crafting_tea": "制作茶",
                                "/items/tailoring_tea": "缝纫茶",
                                "/items/super_milking_tea": "超级挤奶茶",
                                "/items/super_foraging_tea": "超级采摘茶",
                                "/items/super_woodcutting_tea": "超级伐木茶",
                                "/items/super_cooking_tea": "超级烹饪茶",
                                "/items/super_brewing_tea": "超级冲泡茶",
                                "/items/super_alchemy_tea": "超级炼金茶",
                                "/items/super_enhancing_tea": "超级强化茶",
                                "/items/super_cheesesmithing_tea": "超级奶酪锻造茶",
                                "/items/super_crafting_tea": "超级制作茶",
                                "/items/super_tailoring_tea": "超级缝纫茶",
                                "/items/ultra_milking_tea": "究极挤奶茶",
                                "/items/ultra_foraging_tea": "究极采摘茶",
                                "/items/ultra_woodcutting_tea": "究极伐木茶",
                                "/items/ultra_cooking_tea": "究极烹饪茶",
                                "/items/ultra_brewing_tea": "究极冲泡茶",
                                "/items/ultra_alchemy_tea": "究极炼金茶",
                                "/items/ultra_enhancing_tea": "究极强化茶",
                                "/items/ultra_cheesesmithing_tea": "究极奶酪锻造茶",
                                "/items/ultra_crafting_tea": "究极制作茶",
                                "/items/ultra_tailoring_tea": "究极缝纫茶",
                                "/items/gathering_tea": "采集茶",
                                "/items/gourmet_tea": "美食茶",
                                "/items/wisdom_tea": "经验茶",
                                "/items/processing_tea": "加工茶",
                                "/items/efficiency_tea": "效率茶",
                                "/items/artisan_tea": "工匠茶",
                                "/items/catalytic_tea": "催化茶",
                                "/items/blessed_tea": "福气茶",
                                "/items/stamina_coffee": "耐力咖啡",
                                "/items/intelligence_coffee": "智力咖啡",
                                "/items/defense_coffee": "防御咖啡",
                                "/items/attack_coffee": "攻击咖啡",
                                "/items/melee_coffee": "近战咖啡",
                                "/items/ranged_coffee": "远程咖啡",
                                "/items/magic_coffee": "魔法咖啡",
                                "/items/super_stamina_coffee": "超级耐力咖啡",
                                "/items/super_intelligence_coffee": "超级智力咖啡",
                                "/items/super_defense_coffee": "超级防御咖啡",
                                "/items/super_attack_coffee": "超级攻击咖啡",
                                "/items/super_melee_coffee": "超级近战咖啡",
                                "/items/super_ranged_coffee": "超级远程咖啡",
                                "/items/super_magic_coffee": "超级魔法咖啡",
                                "/items/ultra_stamina_coffee": "究极耐力咖啡",
                                "/items/ultra_intelligence_coffee": "究极智力咖啡",
                                "/items/ultra_defense_coffee": "究极防御咖啡",
                                "/items/ultra_attack_coffee": "究极攻击咖啡",
                                "/items/ultra_melee_coffee": "究极近战咖啡",
                                "/items/ultra_ranged_coffee": "究极远程咖啡",
                                "/items/ultra_magic_coffee": "究极魔法咖啡",
                                "/items/wisdom_coffee": "经验咖啡",
                                "/items/lucky_coffee": "幸运咖啡",
                                "/items/swiftness_coffee": "迅捷咖啡",
                                "/items/channeling_coffee": "吟唱咖啡",
                                "/items/critical_coffee": "暴击咖啡",
                                "/items/poke": "破胆之刺",
                                "/items/impale": "透骨之刺",
                                "/items/puncture": "破甲之刺",
                                "/items/penetrating_strike": "贯心之刺",
                                "/items/scratch": "爪影斩",
                                "/items/cleave": "分裂斩",
                                "/items/maim": "血刃斩",
                                "/items/crippling_slash": "致残斩",
                                "/items/smack": "重碾",
                                "/items/sweep": "重扫",
                                "/items/stunning_blow": "重锤",
                                "/items/fracturing_impact": "碎裂冲击",
                                "/items/shield_bash": "盾击",
                                "/items/quick_shot": "快速射击",
                                "/items/aqua_arrow": "流水箭",
                                "/items/flame_arrow": "烈焰箭",
                                "/items/rain_of_arrows": "箭雨",
                                "/items/silencing_shot": "沉默之箭",
                                "/items/steady_shot": "稳定射击",
                                "/items/pestilent_shot": "疫病射击",
                                "/items/penetrating_shot": "贯穿射击",
                                "/items/water_strike": "流水冲击",
                                "/items/ice_spear": "冰枪术",
                                "/items/frost_surge": "冰霜爆裂",
                                "/items/mana_spring": "法力喷泉",
                                "/items/entangle": "缠绕",
                                "/items/toxic_pollen": "剧毒粉尘",
                                "/items/natures_veil": "自然菌幕",
                                "/items/life_drain": "生命吸取",
                                "/items/fireball": "火球",
                                "/items/flame_blast": "熔岩爆裂",
                                "/items/firestorm": "火焰风暴",
                                "/items/smoke_burst": "烟爆灭影",
                                "/items/minor_heal": "初级自愈术",
                                "/items/heal": "自愈术",
                                "/items/quick_aid": "快速治疗术",
                                "/items/rejuvenate": "群体治疗术",
                                "/items/taunt": "嘲讽",
                                "/items/provoke": "挑衅",
                                "/items/toughness": "坚韧",
                                "/items/elusiveness": "闪避",
                                "/items/precision": "精确",
                                "/items/berserk": "狂暴",
                                "/items/elemental_affinity": "元素增幅",
                                "/items/frenzy": "狂速",
                                "/items/spike_shell": "尖刺防护",
                                "/items/retribution": "惩戒",
                                "/items/vampirism": "吸血",
                                "/items/revive": "复活",
                                "/items/insanity": "疯狂",
                                "/items/invincible": "无敌",
                                "/items/speed_aura": "速度光环",
                                "/items/guardian_aura": "守护光环",
                                "/items/fierce_aura": "物理光环",
                                "/items/critical_aura": "暴击光环",
                                "/items/mystic_aura": "元素光环",
                                "/items/gobo_stabber": "哥布林长剑",
                                "/items/gobo_slasher": "哥布林关刀",
                                "/items/gobo_smasher": "哥布林狼牙棒",
                                "/items/spiked_bulwark": "尖刺重盾",
                                "/items/werewolf_slasher": "狼人关刀",
                                "/items/griffin_bulwark": "狮鹫重盾",
                                "/items/griffin_bulwark_refined": "狮鹫重盾(精)",
                                "/items/gobo_shooter": "哥布林弹弓",
                                "/items/vampiric_bow": "吸血弓",
                                "/items/cursed_bow": "咒怨之弓",
                                "/items/cursed_bow_refined": "咒怨之弓(精)",
                                "/items/gobo_boomstick": "哥布林火棍",
                                "/items/cheese_bulwark": "奶酪重盾",
                                "/items/verdant_bulwark": "翠绿重盾",
                                "/items/azure_bulwark": "蔚蓝重盾",
                                "/items/burble_bulwark": "深紫重盾",
                                "/items/crimson_bulwark": "绛红重盾",
                                "/items/rainbow_bulwark": "彩虹重盾",
                                "/items/holy_bulwark": "神圣重盾",
                                "/items/wooden_bow": "木弓",
                                "/items/birch_bow": "桦木弓",
                                "/items/cedar_bow": "雪松弓",
                                "/items/purpleheart_bow": "紫心弓",
                                "/items/ginkgo_bow": "银杏弓",
                                "/items/redwood_bow": "红杉弓",
                                "/items/arcane_bow": "神秘弓",
                                "/items/stalactite_spear": "石钟长枪",
                                "/items/granite_bludgeon": "花岗岩大棒",
                                "/items/furious_spear": "狂怒长枪",
                                "/items/furious_spear_refined": "狂怒长枪(精)",
                                "/items/regal_sword": "君王之剑",
                                "/items/regal_sword_refined": "君王之剑(精)",
                                "/items/chaotic_flail": "混沌连枷",
                                "/items/chaotic_flail_refined": "混沌连枷(精)",
                                "/items/soul_hunter_crossbow": "灵魂猎手弩",
                                "/items/sundering_crossbow": "裂空之弩",
                                "/items/sundering_crossbow_refined": "裂空之弩(精)",
                                "/items/frost_staff": "冰霜法杖",
                                "/items/infernal_battlestaff": "炼狱法杖",
                                "/items/jackalope_staff": "鹿角兔之杖",
                                "/items/rippling_trident": "涟漪三叉戟",
                                "/items/rippling_trident_refined": "涟漪三叉戟(精)",
                                "/items/blooming_trident": "绽放三叉戟",
                                "/items/blooming_trident_refined": "绽放三叉戟(精)",
                                "/items/blazing_trident": "炽焰三叉戟",
                                "/items/blazing_trident_refined": "炽焰三叉戟(精)",
                                "/items/cheese_sword": "奶酪剑",
                                "/items/verdant_sword": "翠绿剑",
                                "/items/azure_sword": "蔚蓝剑",
                                "/items/burble_sword": "深紫剑",
                                "/items/crimson_sword": "绛红剑",
                                "/items/rainbow_sword": "彩虹剑",
                                "/items/holy_sword": "神圣剑",
                                "/items/cheese_spear": "奶酪长枪",
                                "/items/verdant_spear": "翠绿长枪",
                                "/items/azure_spear": "蔚蓝长枪",
                                "/items/burble_spear": "深紫长枪",
                                "/items/crimson_spear": "绛红长枪",
                                "/items/rainbow_spear": "彩虹长枪",
                                "/items/holy_spear": "神圣长枪",
                                "/items/cheese_mace": "奶酪钉头锤",
                                "/items/verdant_mace": "翠绿钉头锤",
                                "/items/azure_mace": "蔚蓝钉头锤",
                                "/items/burble_mace": "深紫钉头锤",
                                "/items/crimson_mace": "绛红钉头锤",
                                "/items/rainbow_mace": "彩虹钉头锤",
                                "/items/holy_mace": "神圣钉头锤",
                                "/items/wooden_crossbow": "木弩",
                                "/items/birch_crossbow": "桦木弩",
                                "/items/cedar_crossbow": "雪松弩",
                                "/items/purpleheart_crossbow": "紫心弩",
                                "/items/ginkgo_crossbow": "银杏弩",
                                "/items/redwood_crossbow": "红杉弩",
                                "/items/arcane_crossbow": "神秘弩",
                                "/items/wooden_water_staff": "木制水法杖",
                                "/items/birch_water_staff": "桦木水法杖",
                                "/items/cedar_water_staff": "雪松水法杖",
                                "/items/purpleheart_water_staff": "紫心水法杖",
                                "/items/ginkgo_water_staff": "银杏水法杖",
                                "/items/redwood_water_staff": "红杉水法杖",
                                "/items/arcane_water_staff": "神秘水法杖",
                                "/items/wooden_nature_staff": "木制自然法杖",
                                "/items/birch_nature_staff": "桦木自然法杖",
                                "/items/cedar_nature_staff": "雪松自然法杖",
                                "/items/purpleheart_nature_staff": "紫心自然法杖",
                                "/items/ginkgo_nature_staff": "银杏自然法杖",
                                "/items/redwood_nature_staff": "红杉自然法杖",
                                "/items/arcane_nature_staff": "神秘自然法杖",
                                "/items/wooden_fire_staff": "木制火法杖",
                                "/items/birch_fire_staff": "桦木火法杖",
                                "/items/cedar_fire_staff": "雪松火法杖",
                                "/items/purpleheart_fire_staff": "紫心火法杖",
                                "/items/ginkgo_fire_staff": "银杏火法杖",
                                "/items/redwood_fire_staff": "红杉火法杖",
                                "/items/arcane_fire_staff": "神秘火法杖",
                                "/items/eye_watch": "掌上监工",
                                "/items/snake_fang_dirk": "蛇牙短剑",
                                "/items/vision_shield": "视觉盾",
                                "/items/gobo_defender": "哥布林防御者",
                                "/items/vampire_fang_dirk": "吸血鬼短剑",
                                "/items/knights_aegis": "骑士盾",
                                "/items/knights_aegis_refined": "骑士盾(精)",
                                "/items/treant_shield": "树人盾",
                                "/items/manticore_shield": "蝎狮盾",
                                "/items/tome_of_healing": "治疗之书",
                                "/items/tome_of_the_elements": "元素之书",
                                "/items/watchful_relic": "警戒遗物",
                                "/items/bishops_codex": "主教法典",
                                "/items/bishops_codex_refined": "主教法典(精)",
                                "/items/cheese_buckler": "奶酪圆盾",
                                "/items/verdant_buckler": "翠绿圆盾",
                                "/items/azure_buckler": "蔚蓝圆盾",
                                "/items/burble_buckler": "深紫圆盾",
                                "/items/crimson_buckler": "绛红圆盾",
                                "/items/rainbow_buckler": "彩虹圆盾",
                                "/items/holy_buckler": "神圣圆盾",
                                "/items/wooden_shield": "木盾",
                                "/items/birch_shield": "桦木盾",
                                "/items/cedar_shield": "雪松盾",
                                "/items/purpleheart_shield": "紫心盾",
                                "/items/ginkgo_shield": "银杏盾",
                                "/items/redwood_shield": "红杉盾",
                                "/items/arcane_shield": "神秘盾",
                                "/items/sinister_cape": "阴森斗篷",
                                "/items/sinister_cape_refined": "阴森斗篷(精)",
                                "/items/chimerical_quiver": "奇幻箭袋",
                                "/items/chimerical_quiver_refined": "奇幻箭袋(精)",
                                "/items/enchanted_cloak": "秘法披风",
                                "/items/enchanted_cloak_refined": "秘法披风(精)",
                                "/items/red_culinary_hat": "红色厨师帽",
                                "/items/snail_shell_helmet": "蜗牛壳头盔",
                                "/items/vision_helmet": "视觉头盔",
                                "/items/fluffy_red_hat": "蓬松红帽子",
                                "/items/corsair_helmet": "掠夺者头盔",
                                "/items/corsair_helmet_refined": "掠夺者头盔(精)",
                                "/items/acrobatic_hood": "杂技师兜帽",
                                "/items/acrobatic_hood_refined": "杂技师兜帽(精)",
                                "/items/magicians_hat": "魔术师帽",
                                "/items/magicians_hat_refined": "魔术师帽(精)",
                                "/items/cheese_helmet": "奶酪头盔",
                                "/items/verdant_helmet": "翠绿头盔",
                                "/items/azure_helmet": "蔚蓝头盔",
                                "/items/burble_helmet": "深紫头盔",
                                "/items/crimson_helmet": "绛红头盔",
                                "/items/rainbow_helmet": "彩虹头盔",
                                "/items/holy_helmet": "神圣头盔",
                                "/items/rough_hood": "粗糙兜帽",
                                "/items/reptile_hood": "爬行动物兜帽",
                                "/items/gobo_hood": "哥布林兜帽",
                                "/items/beast_hood": "野兽兜帽",
                                "/items/umbral_hood": "暗影兜帽",
                                "/items/cotton_hat": "棉帽",
                                "/items/linen_hat": "亚麻帽",
                                "/items/bamboo_hat": "竹帽",
                                "/items/silk_hat": "丝帽",
                                "/items/radiant_hat": "光辉帽",
                                "/items/dairyhands_top": "挤奶工上衣",
                                "/items/foragers_top": "采摘者上衣",
                                "/items/lumberjacks_top": "伐木工上衣",
                                "/items/cheesemakers_top": "奶酪师上衣",
                                "/items/crafters_top": "工匠上衣",
                                "/items/tailors_top": "裁缝上衣",
                                "/items/chefs_top": "厨师上衣",
                                "/items/brewers_top": "饮品师上衣",
                                "/items/alchemists_top": "炼金师上衣",
                                "/items/enhancers_top": "强化师上衣",
                                "/items/gator_vest": "鳄鱼马甲",
                                "/items/turtle_shell_body": "龟壳胸甲",
                                "/items/colossus_plate_body": "巨像胸甲",
                                "/items/demonic_plate_body": "恶魔胸甲",
                                "/items/anchorbound_plate_body": "锚定胸甲",
                                "/items/anchorbound_plate_body_refined": "锚定胸甲(精)",
                                "/items/maelstrom_plate_body": "怒涛胸甲",
                                "/items/maelstrom_plate_body_refined": "怒涛胸甲(精)",
                                "/items/marine_tunic": "海洋皮衣",
                                "/items/revenant_tunic": "亡灵皮衣",
                                "/items/griffin_tunic": "狮鹫皮衣",
                                "/items/kraken_tunic": "克拉肯皮衣",
                                "/items/kraken_tunic_refined": "克拉肯皮衣(精)",
                                "/items/icy_robe_top": "冰霜袍服",
                                "/items/flaming_robe_top": "烈焰袍服",
                                "/items/luna_robe_top": "月神袍服",
                                "/items/royal_water_robe_top": "皇家水系袍服",
                                "/items/royal_water_robe_top_refined": "皇家水系袍服(精)",
                                "/items/royal_nature_robe_top": "皇家自然系袍服",
                                "/items/royal_nature_robe_top_refined": "皇家自然系袍服(精)",
                                "/items/royal_fire_robe_top": "皇家火系袍服",
                                "/items/royal_fire_robe_top_refined": "皇家火系袍服(精)",
                                "/items/cheese_plate_body": "奶酪胸甲",
                                "/items/verdant_plate_body": "翠绿胸甲",
                                "/items/azure_plate_body": "蔚蓝胸甲",
                                "/items/burble_plate_body": "深紫胸甲",
                                "/items/crimson_plate_body": "绛红胸甲",
                                "/items/rainbow_plate_body": "彩虹胸甲",
                                "/items/holy_plate_body": "神圣胸甲",
                                "/items/rough_tunic": "粗糙皮衣",
                                "/items/reptile_tunic": "爬行动物皮衣",
                                "/items/gobo_tunic": "哥布林皮衣",
                                "/items/beast_tunic": "野兽皮衣",
                                "/items/umbral_tunic": "暗影皮衣",
                                "/items/cotton_robe_top": "棉袍服",
                                "/items/linen_robe_top": "亚麻袍服",
                                "/items/bamboo_robe_top": "竹袍服",
                                "/items/silk_robe_top": "丝绸袍服",
                                "/items/radiant_robe_top": "光辉袍服",
                                "/items/dairyhands_bottoms": "挤奶工下装",
                                "/items/foragers_bottoms": "采摘者下装",
                                "/items/lumberjacks_bottoms": "伐木工下装",
                                "/items/cheesemakers_bottoms": "奶酪师下装",
                                "/items/crafters_bottoms": "工匠下装",
                                "/items/tailors_bottoms": "裁缝下装",
                                "/items/chefs_bottoms": "厨师下装",
                                "/items/brewers_bottoms": "饮品师下装",
                                "/items/alchemists_bottoms": "炼金师下装",
                                "/items/enhancers_bottoms": "强化师下装",
                                "/items/turtle_shell_legs": "龟壳腿甲",
                                "/items/colossus_plate_legs": "巨像腿甲",
                                "/items/demonic_plate_legs": "恶魔腿甲",
                                "/items/anchorbound_plate_legs": "锚定腿甲",
                                "/items/anchorbound_plate_legs_refined": "锚定腿甲(精)",
                                "/items/maelstrom_plate_legs": "怒涛腿甲",
                                "/items/maelstrom_plate_legs_refined": "怒涛腿甲(精)",
                                "/items/marine_chaps": "航海皮裤",
                                "/items/revenant_chaps": "亡灵皮裤",
                                "/items/griffin_chaps": "狮鹫皮裤",
                                "/items/kraken_chaps": "克拉肯皮裤",
                                "/items/kraken_chaps_refined": "克拉肯皮裤(精)",
                                "/items/icy_robe_bottoms": "冰霜袍裙",
                                "/items/flaming_robe_bottoms": "烈焰袍裙",
                                "/items/luna_robe_bottoms": "月神袍裙",
                                "/items/royal_water_robe_bottoms": "皇家水系袍裙",
                                "/items/royal_water_robe_bottoms_refined": "皇家水系袍裙(精)",
                                "/items/royal_nature_robe_bottoms": "皇家自然系袍裙",
                                "/items/royal_nature_robe_bottoms_refined": "皇家自然系袍裙(精)",
                                "/items/royal_fire_robe_bottoms": "皇家火系袍裙",
                                "/items/royal_fire_robe_bottoms_refined": "皇家火系袍裙(精)",
                                "/items/cheese_plate_legs": "奶酪腿甲",
                                "/items/verdant_plate_legs": "翠绿腿甲",
                                "/items/azure_plate_legs": "蔚蓝腿甲",
                                "/items/burble_plate_legs": "深紫腿甲",
                                "/items/crimson_plate_legs": "绛红腿甲",
                                "/items/rainbow_plate_legs": "彩虹腿甲",
                                "/items/holy_plate_legs": "神圣腿甲",
                                "/items/rough_chaps": "粗糙皮裤",
                                "/items/reptile_chaps": "爬行动物皮裤",
                                "/items/gobo_chaps": "哥布林皮裤",
                                "/items/beast_chaps": "野兽皮裤",
                                "/items/umbral_chaps": "暗影皮裤",
                                "/items/cotton_robe_bottoms": "棉袍裙",
                                "/items/linen_robe_bottoms": "亚麻袍裙",
                                "/items/bamboo_robe_bottoms": "竹袍裙",
                                "/items/silk_robe_bottoms": "丝绸袍裙",
                                "/items/radiant_robe_bottoms": "光辉袍裙",
                                "/items/enchanted_gloves": "附魔手套",
                                "/items/pincer_gloves": "蟹钳手套",
                                "/items/panda_gloves": "熊猫手套",
                                "/items/magnetic_gloves": "磁力手套",
                                "/items/dodocamel_gauntlets": "渡渡驼护手",
                                "/items/dodocamel_gauntlets_refined": "渡渡驼护手(精)",
                                "/items/sighted_bracers": "瞄准护腕",
                                "/items/marksman_bracers": "神射护腕",
                                "/items/marksman_bracers_refined": "神射护腕(精)",
                                "/items/chrono_gloves": "时空手套",
                                "/items/cheese_gauntlets": "奶酪护手",
                                "/items/verdant_gauntlets": "翠绿护手",
                                "/items/azure_gauntlets": "蔚蓝护手",
                                "/items/burble_gauntlets": "深紫护手",
                                "/items/crimson_gauntlets": "绛红护手",
                                "/items/rainbow_gauntlets": "彩虹护手",
                                "/items/holy_gauntlets": "神圣护手",
                                "/items/rough_bracers": "粗糙护腕",
                                "/items/reptile_bracers": "爬行动物护腕",
                                "/items/gobo_bracers": "哥布林护腕",
                                "/items/beast_bracers": "野兽护腕",
                                "/items/umbral_bracers": "暗影护腕",
                                "/items/cotton_gloves": "棉手套",
                                "/items/linen_gloves": "亚麻手套",
                                "/items/bamboo_gloves": "竹手套",
                                "/items/silk_gloves": "丝手套",
                                "/items/radiant_gloves": "光辉手套",
                                "/items/collectors_boots": "收藏家靴",
                                "/items/shoebill_shoes": "鲸头鹳鞋",
                                "/items/black_bear_shoes": "黑熊鞋",
                                "/items/grizzly_bear_shoes": "棕熊鞋",
                                "/items/polar_bear_shoes": "北极熊鞋",
                                "/items/centaur_boots": "半人马靴",
                                "/items/sorcerer_boots": "巫师靴",
                                "/items/cheese_boots": "奶酪靴",
                                "/items/verdant_boots": "翠绿靴",
                                "/items/azure_boots": "蔚蓝靴",
                                "/items/burble_boots": "深紫靴",
                                "/items/crimson_boots": "绛红靴",
                                "/items/rainbow_boots": "彩虹靴",
                                "/items/holy_boots": "神圣靴",
                                "/items/rough_boots": "粗糙靴",
                                "/items/reptile_boots": "爬行动物靴",
                                "/items/gobo_boots": "哥布林靴",
                                "/items/beast_boots": "野兽靴",
                                "/items/umbral_boots": "暗影靴",
                                "/items/cotton_boots": "棉靴",
                                "/items/linen_boots": "亚麻靴",
                                "/items/bamboo_boots": "竹靴",
                                "/items/silk_boots": "丝靴",
                                "/items/radiant_boots": "光辉靴",
                                "/items/small_pouch": "小袋子",
                                "/items/medium_pouch": "中袋子",
                                "/items/large_pouch": "大袋子",
                                "/items/giant_pouch": "巨大袋子",
                                "/items/gluttonous_pouch": "贪食之袋",
                                "/items/guzzling_pouch": "暴饮之囊",
                                "/items/necklace_of_efficiency": "效率项链",
                                "/items/fighter_necklace": "战士项链",
                                "/items/ranger_necklace": "射手项链",
                                "/items/wizard_necklace": "巫师项链",
                                "/items/necklace_of_wisdom": "经验项链",
                                "/items/necklace_of_speed": "速度项链",
                                "/items/philosophers_necklace": "贤者项链",
                                "/items/earrings_of_gathering": "采集耳环",
                                "/items/earrings_of_essence_find": "精华发现耳环",
                                "/items/earrings_of_armor": "护甲耳环",
                                "/items/earrings_of_regeneration": "恢复耳环",
                                "/items/earrings_of_resistance": "抗性耳环",
                                "/items/earrings_of_rare_find": "稀有发现耳环",
                                "/items/earrings_of_critical_strike": "暴击耳环",
                                "/items/philosophers_earrings": "贤者耳环",
                                "/items/ring_of_gathering": "采集戒指",
                                "/items/ring_of_essence_find": "精华发现戒指",
                                "/items/ring_of_armor": "护甲戒指",
                                "/items/ring_of_regeneration": "恢复戒指",
                                "/items/ring_of_resistance": "抗性戒指",
                                "/items/ring_of_rare_find": "稀有发现戒指",
                                "/items/ring_of_critical_strike": "暴击戒指",
                                "/items/philosophers_ring": "贤者戒指",
                                "/items/trainee_milking_charm": "实习挤奶护符",
                                "/items/basic_milking_charm": "基础挤奶护符",
                                "/items/advanced_milking_charm": "高级挤奶护符",
                                "/items/expert_milking_charm": "专家挤奶护符",
                                "/items/master_milking_charm": "大师挤奶护符",
                                "/items/grandmaster_milking_charm": "宗师挤奶护符",
                                "/items/trainee_foraging_charm": "实习采摘护符",
                                "/items/basic_foraging_charm": "基础采摘护符",
                                "/items/advanced_foraging_charm": "高级采摘护符",
                                "/items/expert_foraging_charm": "专家采摘护符",
                                "/items/master_foraging_charm": "大师采摘护符",
                                "/items/grandmaster_foraging_charm": "宗师采摘护符",
                                "/items/trainee_woodcutting_charm": "实习伐木护符",
                                "/items/basic_woodcutting_charm": "基础伐木护符",
                                "/items/advanced_woodcutting_charm": "高级伐木护符",
                                "/items/expert_woodcutting_charm": "专家伐木护符",
                                "/items/master_woodcutting_charm": "大师伐木护符",
                                "/items/grandmaster_woodcutting_charm": "宗师伐木护符",
                                "/items/trainee_cheesesmithing_charm": "实习奶酪锻造护符",
                                "/items/basic_cheesesmithing_charm": "基础奶酪锻造护符",
                                "/items/advanced_cheesesmithing_charm": "高级奶酪锻造护符",
                                "/items/expert_cheesesmithing_charm": "专家奶酪锻造护符",
                                "/items/master_cheesesmithing_charm": "大师奶酪锻造护符",
                                "/items/grandmaster_cheesesmithing_charm": "宗师奶酪锻造护符",
                                "/items/trainee_crafting_charm": "实习制作护符",
                                "/items/basic_crafting_charm": "基础制作护符",
                                "/items/advanced_crafting_charm": "高级制作护符",
                                "/items/expert_crafting_charm": "专家制作护符",
                                "/items/master_crafting_charm": "大师制作护符",
                                "/items/grandmaster_crafting_charm": "宗师制作护符",
                                "/items/trainee_tailoring_charm": "实习缝纫护符",
                                "/items/basic_tailoring_charm": "基础缝纫护符",
                                "/items/advanced_tailoring_charm": "高级缝纫护符",
                                "/items/expert_tailoring_charm": "专家缝纫护符",
                                "/items/master_tailoring_charm": "大师缝纫护符",
                                "/items/grandmaster_tailoring_charm": "宗师缝纫护符",
                                "/items/trainee_cooking_charm": "实习烹饪护符",
                                "/items/basic_cooking_charm": "基础烹饪护符",
                                "/items/advanced_cooking_charm": "高级烹饪护符",
                                "/items/expert_cooking_charm": "专家烹饪护符",
                                "/items/master_cooking_charm": "大师烹饪护符",
                                "/items/grandmaster_cooking_charm": "宗师烹饪护符",
                                "/items/trainee_brewing_charm": "实习冲泡护符",
                                "/items/basic_brewing_charm": "基础冲泡护符",
                                "/items/advanced_brewing_charm": "高级冲泡护符",
                                "/items/expert_brewing_charm": "专家冲泡护符",
                                "/items/master_brewing_charm": "大师冲泡护符",
                                "/items/grandmaster_brewing_charm": "宗师冲泡护符",
                                "/items/trainee_alchemy_charm": "实习炼金护符",
                                "/items/basic_alchemy_charm": "基础炼金护符",
                                "/items/advanced_alchemy_charm": "高级炼金护符",
                                "/items/expert_alchemy_charm": "专家炼金护符",
                                "/items/master_alchemy_charm": "大师炼金护符",
                                "/items/grandmaster_alchemy_charm": "宗师炼金护符",
                                "/items/trainee_enhancing_charm": "实习强化护符",
                                "/items/basic_enhancing_charm": "基础强化护符",
                                "/items/advanced_enhancing_charm": "高级强化护符",
                                "/items/expert_enhancing_charm": "专家强化护符",
                                "/items/master_enhancing_charm": "大师强化护符",
                                "/items/grandmaster_enhancing_charm": "宗师强化护符",
                                "/items/trainee_stamina_charm": "实习耐力护符",
                                "/items/basic_stamina_charm": "基础耐力护符",
                                "/items/advanced_stamina_charm": "高级耐力护符",
                                "/items/expert_stamina_charm": "专家耐力护符",
                                "/items/master_stamina_charm": "大师耐力护符",
                                "/items/grandmaster_stamina_charm": "宗师耐力护符",
                                "/items/trainee_intelligence_charm": "实习智力护符",
                                "/items/basic_intelligence_charm": "基础智力护符",
                                "/items/advanced_intelligence_charm": "高级智力护符",
                                "/items/expert_intelligence_charm": "专家智力护符",
                                "/items/master_intelligence_charm": "大师智力护符",
                                "/items/grandmaster_intelligence_charm": "宗师智力护符",
                                "/items/trainee_attack_charm": "实习攻击护符",
                                "/items/basic_attack_charm": "基础攻击护符",
                                "/items/advanced_attack_charm": "高级攻击护符",
                                "/items/expert_attack_charm": "专家攻击护符",
                                "/items/master_attack_charm": "大师攻击护符",
                                "/items/grandmaster_attack_charm": "宗师攻击护符",
                                "/items/trainee_defense_charm": "实习防御护符",
                                "/items/basic_defense_charm": "基础防御护符",
                                "/items/advanced_defense_charm": "高级防御护符",
                                "/items/expert_defense_charm": "专家防御护符",
                                "/items/master_defense_charm": "大师防御护符",
                                "/items/grandmaster_defense_charm": "宗师防御护符",
                                "/items/trainee_melee_charm": "实习近战护符",
                                "/items/basic_melee_charm": "基础近战护符",
                                "/items/advanced_melee_charm": "高级近战护符",
                                "/items/expert_melee_charm": "专家近战护符",
                                "/items/master_melee_charm": "大师近战护符",
                                "/items/grandmaster_melee_charm": "宗师近战护符",
                                "/items/trainee_ranged_charm": "实习远程护符",
                                "/items/basic_ranged_charm": "基础远程护符",
                                "/items/advanced_ranged_charm": "高级远程护符",
                                "/items/expert_ranged_charm": "专家远程护符",
                                "/items/master_ranged_charm": "大师远程护符",
                                "/items/grandmaster_ranged_charm": "宗师远程护符",
                                "/items/trainee_magic_charm": "实习魔法护符",
                                "/items/basic_magic_charm": "基础魔法护符",
                                "/items/advanced_magic_charm": "高级魔法护符",
                                "/items/expert_magic_charm": "专家魔法护符",
                                "/items/master_magic_charm": "大师魔法护符",
                                "/items/grandmaster_magic_charm": "宗师魔法护符",
                                "/items/basic_task_badge": "基础任务徽章",
                                "/items/advanced_task_badge": "高级任务徽章",
                                "/items/expert_task_badge": "专家任务徽章",
                                "/items/celestial_brush": "星空刷子",
                                "/items/cheese_brush": "奶酪刷子",
                                "/items/verdant_brush": "翠绿刷子",
                                "/items/azure_brush": "蔚蓝刷子",
                                "/items/burble_brush": "深紫刷子",
                                "/items/crimson_brush": "绛红刷子",
                                "/items/rainbow_brush": "彩虹刷子",
                                "/items/holy_brush": "神圣刷子",
                                "/items/celestial_shears": "星空剪刀",
                                "/items/cheese_shears": "奶酪剪刀",
                                "/items/verdant_shears": "翠绿剪刀",
                                "/items/azure_shears": "蔚蓝剪刀",
                                "/items/burble_shears": "深紫剪刀",
                                "/items/crimson_shears": "绛红剪刀",
                                "/items/rainbow_shears": "彩虹剪刀",
                                "/items/holy_shears": "神圣剪刀",
                                "/items/celestial_hatchet": "星空斧头",
                                "/items/cheese_hatchet": "奶酪斧头",
                                "/items/verdant_hatchet": "翠绿斧头",
                                "/items/azure_hatchet": "蔚蓝斧头",
                                "/items/burble_hatchet": "深紫斧头",
                                "/items/crimson_hatchet": "绛红斧头",
                                "/items/rainbow_hatchet": "彩虹斧头",
                                "/items/holy_hatchet": "神圣斧头",
                                "/items/celestial_hammer": "星空锤子",
                                "/items/cheese_hammer": "奶酪锤子",
                                "/items/verdant_hammer": "翠绿锤子",
                                "/items/azure_hammer": "蔚蓝锤子",
                                "/items/burble_hammer": "深紫锤子",
                                "/items/crimson_hammer": "绛红锤子",
                                "/items/rainbow_hammer": "彩虹锤子",
                                "/items/holy_hammer": "神圣锤子",
                                "/items/celestial_chisel": "星空凿子",
                                "/items/cheese_chisel": "奶酪凿子",
                                "/items/verdant_chisel": "翠绿凿子",
                                "/items/azure_chisel": "蔚蓝凿子",
                                "/items/burble_chisel": "深紫凿子",
                                "/items/crimson_chisel": "绛红凿子",
                                "/items/rainbow_chisel": "彩虹凿子",
                                "/items/holy_chisel": "神圣凿子",
                                "/items/celestial_needle": "星空针",
                                "/items/cheese_needle": "奶酪针",
                                "/items/verdant_needle": "翠绿针",
                                "/items/azure_needle": "蔚蓝针",
                                "/items/burble_needle": "深紫针",
                                "/items/crimson_needle": "绛红针",
                                "/items/rainbow_needle": "彩虹针",
                                "/items/holy_needle": "神圣针",
                                "/items/celestial_spatula": "星空锅铲",
                                "/items/cheese_spatula": "奶酪锅铲",
                                "/items/verdant_spatula": "翠绿锅铲",
                                "/items/azure_spatula": "蔚蓝锅铲",
                                "/items/burble_spatula": "深紫锅铲",
                                "/items/crimson_spatula": "绛红锅铲",
                                "/items/rainbow_spatula": "彩虹锅铲",
                                "/items/holy_spatula": "神圣锅铲",
                                "/items/celestial_pot": "星空壶",
                                "/items/cheese_pot": "奶酪壶",
                                "/items/verdant_pot": "翠绿壶",
                                "/items/azure_pot": "蔚蓝壶",
                                "/items/burble_pot": "深紫壶",
                                "/items/crimson_pot": "绛红壶",
                                "/items/rainbow_pot": "彩虹壶",
                                "/items/holy_pot": "神圣壶",
                                "/items/celestial_alembic": "星空蒸馏器",
                                "/items/cheese_alembic": "奶酪蒸馏器",
                                "/items/verdant_alembic": "翠绿蒸馏器",
                                "/items/azure_alembic": "蔚蓝蒸馏器",
                                "/items/burble_alembic": "深紫蒸馏器",
                                "/items/crimson_alembic": "绛红蒸馏器",
                                "/items/rainbow_alembic": "彩虹蒸馏器",
                                "/items/holy_alembic": "神圣蒸馏器",
                                "/items/celestial_enhancer": "星空强化器",
                                "/items/cheese_enhancer": "奶酪强化器",
                                "/items/verdant_enhancer": "翠绿强化器",
                                "/items/azure_enhancer": "蔚蓝强化器",
                                "/items/burble_enhancer": "深紫强化器",
                                "/items/crimson_enhancer": "绛红强化器",
                                "/items/rainbow_enhancer": "彩虹强化器",
                                "/items/holy_enhancer": "神圣强化器",
                                "/items/milk": "牛奶",
                                "/items/verdant_milk": "翠绿牛奶",
                                "/items/azure_milk": "蔚蓝牛奶",
                                "/items/burble_milk": "深紫牛奶",
                                "/items/crimson_milk": "绛红牛奶",
                                "/items/rainbow_milk": "彩虹牛奶",
                                "/items/holy_milk": "神圣牛奶",
                                "/items/cheese": "奶酪",
                                "/items/verdant_cheese": "翠绿奶酪",
                                "/items/azure_cheese": "蔚蓝奶酪",
                                "/items/burble_cheese": "深紫奶酪",
                                "/items/crimson_cheese": "绛红奶酪",
                                "/items/rainbow_cheese": "彩虹奶酪",
                                "/items/holy_cheese": "神圣奶酪",
                                "/items/log": "原木",
                                "/items/birch_log": "白桦原木",
                                "/items/cedar_log": "雪松原木",
                                "/items/purpleheart_log": "紫心原木",
                                "/items/ginkgo_log": "银杏原木",
                                "/items/redwood_log": "红杉原木",
                                "/items/arcane_log": "神秘原木",
                                "/items/lumber": "木板",
                                "/items/birch_lumber": "白桦木板",
                                "/items/cedar_lumber": "雪松木板",
                                "/items/purpleheart_lumber": "紫心木板",
                                "/items/ginkgo_lumber": "银杏木板",
                                "/items/redwood_lumber": "红杉木板",
                                "/items/arcane_lumber": "神秘木板",
                                "/items/rough_hide": "粗糙兽皮",
                                "/items/reptile_hide": "爬行动物皮",
                                "/items/gobo_hide": "哥布林皮",
                                "/items/beast_hide": "野兽皮",
                                "/items/umbral_hide": "暗影皮",
                                "/items/rough_leather": "粗糙皮革",
                                "/items/reptile_leather": "爬行动物皮革",
                                "/items/gobo_leather": "哥布林皮革",
                                "/items/beast_leather": "野兽皮革",
                                "/items/umbral_leather": "暗影皮革",
                                "/items/cotton": "棉花",
                                "/items/flax": "亚麻",
                                "/items/bamboo_branch": "竹子",
                                "/items/cocoon": "蚕茧",
                                "/items/radiant_fiber": "光辉纤维",
                                "/items/cotton_fabric": "棉花布料",
                                "/items/linen_fabric": "亚麻布料",
                                "/items/bamboo_fabric": "竹子布料",
                                "/items/silk_fabric": "丝绸",
                                "/items/radiant_fabric": "光辉布料",
                                "/items/egg": "鸡蛋",
                                "/items/wheat": "小麦",
                                "/items/sugar": "糖",
                                "/items/blueberry": "蓝莓",
                                "/items/blackberry": "黑莓",
                                "/items/strawberry": "草莓",
                                "/items/mooberry": "哞莓",
                                "/items/marsberry": "火星莓",
                                "/items/spaceberry": "太空莓",
                                "/items/apple": "苹果",
                                "/items/orange": "橙子",
                                "/items/plum": "李子",
                                "/items/peach": "桃子",
                                "/items/dragon_fruit": "火龙果",
                                "/items/star_fruit": "杨桃",
                                "/items/arabica_coffee_bean": "低级咖啡豆",
                                "/items/robusta_coffee_bean": "中级咖啡豆",
                                "/items/liberica_coffee_bean": "高级咖啡豆",
                                "/items/excelsa_coffee_bean": "特级咖啡豆",
                                "/items/fieriosa_coffee_bean": "火山咖啡豆",
                                "/items/spacia_coffee_bean": "太空咖啡豆",
                                "/items/green_tea_leaf": "绿茶叶",
                                "/items/black_tea_leaf": "黑茶叶",
                                "/items/burble_tea_leaf": "紫茶叶",
                                "/items/moolong_tea_leaf": "哞龙茶叶",
                                "/items/red_tea_leaf": "红茶叶",
                                "/items/emp_tea_leaf": "虚空茶叶",
                                "/items/catalyst_of_coinification": "点金催化剂",
                                "/items/catalyst_of_decomposition": "分解催化剂",
                                "/items/catalyst_of_transmutation": "转化催化剂",
                                "/items/prime_catalyst": "至高催化剂",
                                "/items/snake_fang": "蛇牙",
                                "/items/shoebill_feather": "鲸头鹳羽毛",
                                "/items/snail_shell": "蜗牛壳",
                                "/items/crab_pincer": "蟹钳",
                                "/items/turtle_shell": "乌龟壳",
                                "/items/marine_scale": "海洋鳞片",
                                "/items/treant_bark": "树皮",
                                "/items/centaur_hoof": "半人马蹄",
                                "/items/luna_wing": "月神翼",
                                "/items/gobo_rag": "哥布林抹布",
                                "/items/goggles": "护目镜",
                                "/items/magnifying_glass": "放大镜",
                                "/items/eye_of_the_watcher": "观察者之眼",
                                "/items/icy_cloth": "冰霜织物",
                                "/items/flaming_cloth": "烈焰织物",
                                "/items/sorcerers_sole": "魔法师鞋底",
                                "/items/chrono_sphere": "时空球",
                                "/items/frost_sphere": "冰霜球",
                                "/items/panda_fluff": "熊猫绒",
                                "/items/black_bear_fluff": "黑熊绒",
                                "/items/grizzly_bear_fluff": "棕熊绒",
                                "/items/polar_bear_fluff": "北极熊绒",
                                "/items/red_panda_fluff": "小熊猫绒",
                                "/items/magnet": "磁铁",
                                "/items/stalactite_shard": "钟乳石碎片",
                                "/items/living_granite": "花岗岩",
                                "/items/colossus_core": "巨像核心",
                                "/items/vampire_fang": "吸血鬼之牙",
                                "/items/werewolf_claw": "狼人之爪",
                                "/items/revenant_anima": "亡者之魂",
                                "/items/soul_fragment": "灵魂碎片",
                                "/items/infernal_ember": "地狱余烬",
                                "/items/demonic_core": "恶魔核心",
                                "/items/griffin_leather": "狮鹫之皮",
                                "/items/manticore_sting": "蝎狮之刺",
                                "/items/jackalope_antler": "鹿角兔之角",
                                "/items/dodocamel_plume": "渡渡驼之翎",
                                "/items/griffin_talon": "狮鹫之爪",
                                "/items/chimerical_refinement_shard": "奇幻精炼碎片",
                                "/items/acrobats_ribbon": "杂技师彩带",
                                "/items/magicians_cloth": "魔术师织物",
                                "/items/chaotic_chain": "混沌锁链",
                                "/items/cursed_ball": "诅咒之球",
                                "/items/sinister_refinement_shard": "阴森精炼碎片",
                                "/items/royal_cloth": "皇家织物",
                                "/items/knights_ingot": "骑士之锭",
                                "/items/bishops_scroll": "主教卷轴",
                                "/items/regal_jewel": "君王宝石",
                                "/items/sundering_jewel": "裂空宝石",
                                "/items/enchanted_refinement_shard": "秘法精炼碎片",
                                "/items/marksman_brooch": "神射胸针",
                                "/items/corsair_crest": "掠夺者徽章",
                                "/items/damaged_anchor": "破损船锚",
                                "/items/maelstrom_plating": "怒涛甲片",
                                "/items/kraken_leather": "克拉肯皮革",
                                "/items/kraken_fang": "克拉肯之牙",
                                "/items/pirate_refinement_shard": "海盗精炼碎片",
                                "/items/butter_of_proficiency": "精通之油",
                                "/items/thread_of_expertise": "专精之线",
                                "/items/branch_of_insight": "洞察之枝",
                                "/items/gluttonous_energy": "贪食能量",
                                "/items/guzzling_energy": "暴饮能量",
                                "/items/milking_essence": "挤奶精华",
                                "/items/foraging_essence": "采摘精华",
                                "/items/woodcutting_essence": "伐木精华",
                                "/items/cheesesmithing_essence": "奶酪锻造精华",
                                "/items/crafting_essence": "制作精华",
                                "/items/tailoring_essence": "缝纫精华",
                                "/items/cooking_essence": "烹饪精华",
                                "/items/brewing_essence": "冲泡精华",
                                "/items/alchemy_essence": "炼金精华",
                                "/items/enhancing_essence": "强化精华",
                                "/items/swamp_essence": "沼泽精华",
                                "/items/aqua_essence": "海洋精华",
                                "/items/jungle_essence": "丛林精华",
                                "/items/gobo_essence": "哥布林精华",
                                "/items/eyessence": "眼精华",
                                "/items/sorcerer_essence": "法师精华",
                                "/items/bear_essence": "熊熊精华",
                                "/items/golem_essence": "魔像精华",
                                "/items/twilight_essence": "暮光精华",
                                "/items/abyssal_essence": "地狱精华",
                                "/items/chimerical_essence": "奇幻精华",
                                "/items/sinister_essence": "阴森精华",
                                "/items/enchanted_essence": "秘法精华",
                                "/items/pirate_essence": "海盗精华",
                                "/items/task_crystal": "任务水晶",
                                "/items/star_fragment": "星光碎片",
                                "/items/pearl": "珍珠",
                                "/items/amber": "琥珀",
                                "/items/garnet": "石榴石",
                                "/items/jade": "翡翠",
                                "/items/amethyst": "紫水晶",
                                "/items/moonstone": "月亮石",
                                "/items/sunstone": "太阳石",
                                "/items/philosophers_stone": "贤者之石",
                                "/items/crushed_pearl": "珍珠碎片",
                                "/items/crushed_amber": "琥珀碎片",
                                "/items/crushed_garnet": "石榴石碎片",
                                "/items/crushed_jade": "翡翠碎片",
                                "/items/crushed_amethyst": "紫水晶碎片",
                                "/items/crushed_moonstone": "月亮石碎片",
                                "/items/crushed_sunstone": "太阳石碎片",
                                "/items/crushed_philosophers_stone": "贤者之石碎片",
                                "/items/shard_of_protection": "保护碎片",
                                "/items/mirror_of_protection": "保护之镜"
                            },
                            "itemDescriptions": {
                                "/items/coin": "基础货币",
                                "/items/task_token": "任务代币。可在任务商店中使用这些代币",
                                "/items/chimerical_token": "来自【奇幻洞穴】的地下城代币。可以在地下城商店里消费",
                                "/items/sinister_token": "来自【阴森马戏团】的地下城代币。可以在地下城商店里消费",
                                "/items/enchanted_token": "来自【秘法要塞】的地下城代币。可以在地下城商店里消费",
                                "/items/pirate_token": "来自【海盗基地】的地下城代币。可以在地下城商店里消费",
                                "/items/cowbell": "高级货币。可在牛铃商店购买或使用这些货币",
                                "/items/bag_of_10_cowbells": "可交易的一袋牛铃,每袋包含10个牛铃。只能整袋交易,一旦打开将无法出售",
                                "/items/purples_gift": "获得任务积分后小紫牛赠送的礼物,看起来里面装着物品!",
                                "/items/small_meteorite_cache": "在采集时可以找到,看起来里面装着物品!",
                                "/items/medium_meteorite_cache": "在采集时可以找到,看起来里面装着物品!",
                                "/items/large_meteorite_cache": "在采集时可以找到,看起来里面装着物品!",
                                "/items/small_artisans_crate": "在生产时可以找到,看起来里面装着物品!",
                                "/items/medium_artisans_crate": "在生产时可以找到,看起来里面装着物品!",
                                "/items/large_artisans_crate": "在生产时可以找到,看起来里面装着物品!",
                                "/items/small_treasure_chest": "可以从怪物身上找到,看起来里面装着物品!",
                                "/items/medium_treasure_chest": "可以从怪物身上找到,看起来里面装着物品!",
                                "/items/large_treasure_chest": "可以从怪物身上找到,看起来里面装着物品!",
                                "/items/chimerical_chest": "攻克【奇幻洞穴】后的奖励,可以用【奇幻宝箱钥匙】打开",
                                "/items/chimerical_refinement_chest": "攻克【奇幻洞穴】(T1+) 后的奖励,可以用【奇幻宝箱钥匙】打开",
                                "/items/sinister_chest": "攻克【阴森马戏团】后的奖励,可以用【阴森宝箱钥匙】打开",
                                "/items/sinister_refinement_chest": "攻克【阴森马戏团】(T1+)后的奖励,可以用【阴森宝箱钥匙】打开",
                                "/items/enchanted_chest": "攻克【秘法要塞】后的奖励,可以用【秘法宝箱钥匙】打开",
                                "/items/enchanted_refinement_chest": "攻克【秘法要塞】(T1+)后的奖励,可以用【秘法宝箱钥匙】打开",
                                "/items/pirate_chest": "攻克【海盗基地】后的奖励,可以用【海盗宝箱钥匙】打开",
                                "/items/pirate_refinement_chest": "攻克【海盗基地】(T1+)后的奖励,可以用【海盗宝箱钥匙】打开",
                                "/items/blue_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                                "/items/green_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                                "/items/purple_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                                "/items/white_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                                "/items/orange_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                                "/items/brown_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                                "/items/stone_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                                "/items/dark_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                                "/items/burning_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                                "/items/chimerical_entry_key": "允许进入地下城【奇幻洞穴】1次",
                                "/items/chimerical_chest_key": "开启一个奇幻宝箱",
                                "/items/sinister_entry_key": "允许进入地下城【阴森马戏团】1次",
                                "/items/sinister_chest_key": "开启一个阴森宝箱",
                                "/items/enchanted_entry_key": "允许进入地下城【秘法要塞】1次",
                                "/items/enchanted_chest_key": "开启一个秘法宝箱",
                                "/items/pirate_entry_key": "允许进入地下城【海盗基地】1次",
                                "/items/pirate_chest_key": "开启一个海盗宝箱",
                                "/items/donut": "",
                                "/items/blueberry_donut": "",
                                "/items/blackberry_donut": "",
                                "/items/strawberry_donut": "",
                                "/items/mooberry_donut": "",
                                "/items/marsberry_donut": "",
                                "/items/spaceberry_donut": "",
                                "/items/cupcake": "",
                                "/items/blueberry_cake": "",
                                "/items/blackberry_cake": "",
                                "/items/strawberry_cake": "",
                                "/items/mooberry_cake": "",
                                "/items/marsberry_cake": "",
                                "/items/spaceberry_cake": "",
                                "/items/gummy": "",
                                "/items/apple_gummy": "",
                                "/items/orange_gummy": "",
                                "/items/plum_gummy": "",
                                "/items/peach_gummy": "",
                                "/items/dragon_fruit_gummy": "",
                                "/items/star_fruit_gummy": "",
                                "/items/yogurt": "",
                                "/items/apple_yogurt": "",
                                "/items/orange_yogurt": "",
                                "/items/plum_yogurt": "",
                                "/items/peach_yogurt": "",
                                "/items/dragon_fruit_yogurt": "",
                                "/items/star_fruit_yogurt": "",
                                "/items/milking_tea": "",
                                "/items/foraging_tea": "",
                                "/items/woodcutting_tea": "",
                                "/items/cooking_tea": "",
                                "/items/brewing_tea": "",
                                "/items/alchemy_tea": "",
                                "/items/enhancing_tea": "",
                                "/items/cheesesmithing_tea": "",
                                "/items/crafting_tea": "",
                                "/items/tailoring_tea": "",
                                "/items/super_milking_tea": "",
                                "/items/super_foraging_tea": "",
                                "/items/super_woodcutting_tea": "",
                                "/items/super_cooking_tea": "",
                                "/items/super_brewing_tea": "",
                                "/items/super_alchemy_tea": "",
                                "/items/super_enhancing_tea": "",
                                "/items/super_cheesesmithing_tea": "",
                                "/items/super_crafting_tea": "",
                                "/items/super_tailoring_tea": "",
                                "/items/ultra_milking_tea": "",
                                "/items/ultra_foraging_tea": "",
                                "/items/ultra_woodcutting_tea": "",
                                "/items/ultra_cooking_tea": "",
                                "/items/ultra_brewing_tea": "",
                                "/items/ultra_alchemy_tea": "",
                                "/items/ultra_enhancing_tea": "",
                                "/items/ultra_cheesesmithing_tea": "",
                                "/items/ultra_crafting_tea": "",
                                "/items/ultra_tailoring_tea": "",
                                "/items/gathering_tea": "",
                                "/items/gourmet_tea": "",
                                "/items/wisdom_tea": "",
                                "/items/processing_tea": "",
                                "/items/efficiency_tea": "",
                                "/items/artisan_tea": "",
                                "/items/catalytic_tea": "",
                                "/items/blessed_tea": "",
                                "/items/stamina_coffee": "",
                                "/items/intelligence_coffee": "",
                                "/items/defense_coffee": "",
                                "/items/attack_coffee": "",
                                "/items/melee_coffee": "",
                                "/items/ranged_coffee": "",
                                "/items/magic_coffee": "",
                                "/items/super_stamina_coffee": "",
                                "/items/super_intelligence_coffee": "",
                                "/items/super_defense_coffee": "",
                                "/items/super_attack_coffee": "",
                                "/items/super_melee_coffee": "",
                                "/items/super_ranged_coffee": "",
                                "/items/super_magic_coffee": "",
                                "/items/ultra_stamina_coffee": "",
                                "/items/ultra_intelligence_coffee": "",
                                "/items/ultra_defense_coffee": "",
                                "/items/ultra_attack_coffee": "",
                                "/items/ultra_melee_coffee": "",
                                "/items/ultra_ranged_coffee": "",
                                "/items/ultra_magic_coffee": "",
                                "/items/wisdom_coffee": "",
                                "/items/lucky_coffee": "",
                                "/items/swiftness_coffee": "",
                                "/items/channeling_coffee": "",
                                "/items/critical_coffee": "",
                                "/items/poke": "",
                                "/items/impale": "",
                                "/items/puncture": "",
                                "/items/penetrating_strike": "",
                                "/items/scratch": "",
                                "/items/cleave": "",
                                "/items/maim": "",
                                "/items/crippling_slash": "",
                                "/items/smack": "",
                                "/items/sweep": "",
                                "/items/stunning_blow": "",
                                "/items/fracturing_impact": "",
                                "/items/shield_bash": "",
                                "/items/quick_shot": "",
                                "/items/aqua_arrow": "",
                                "/items/flame_arrow": "",
                                "/items/rain_of_arrows": "",
                                "/items/silencing_shot": "",
                                "/items/steady_shot": "",
                                "/items/pestilent_shot": "",
                                "/items/penetrating_shot": "",
                                "/items/water_strike": "",
                                "/items/ice_spear": "",
                                "/items/frost_surge": "",
                                "/items/mana_spring": "",
                                "/items/entangle": "",
                                "/items/toxic_pollen": "",
                                "/items/natures_veil": "",
                                "/items/life_drain": "",
                                "/items/fireball": "",
                                "/items/flame_blast": "",
                                "/items/firestorm": "",
                                "/items/smoke_burst": "",
                                "/items/minor_heal": "",
                                "/items/heal": "",
                                "/items/quick_aid": "",
                                "/items/rejuvenate": "",
                                "/items/taunt": "",
                                "/items/provoke": "",
                                "/items/toughness": "",
                                "/items/elusiveness": "",
                                "/items/precision": "",
                                "/items/berserk": "",
                                "/items/elemental_affinity": "",
                                "/items/frenzy": "",
                                "/items/spike_shell": "",
                                "/items/retribution": "",
                                "/items/vampirism": "",
                                "/items/revive": "",
                                "/items/insanity": "",
                                "/items/invincible": "",
                                "/items/speed_aura": "",
                                "/items/guardian_aura": "",
                                "/items/fierce_aura": "",
                                "/items/critical_aura": "",
                                "/items/mystic_aura": "",
                                "/items/gobo_stabber": "",
                                "/items/gobo_slasher": "",
                                "/items/gobo_smasher": "",
                                "/items/spiked_bulwark": "",
                                "/items/werewolf_slasher": "",
                                "/items/griffin_bulwark": "",
                                "/items/griffin_bulwark_refined": "",
                                "/items/gobo_shooter": "",
                                "/items/vampiric_bow": "",
                                "/items/cursed_bow": "",
                                "/items/cursed_bow_refined": "",
                                "/items/gobo_boomstick": "",
                                "/items/cheese_bulwark": "",
                                "/items/verdant_bulwark": "",
                                "/items/azure_bulwark": "",
                                "/items/burble_bulwark": "",
                                "/items/crimson_bulwark": "",
                                "/items/rainbow_bulwark": "",
                                "/items/holy_bulwark": "",
                                "/items/wooden_bow": "",
                                "/items/birch_bow": "",
                                "/items/cedar_bow": "",
                                "/items/purpleheart_bow": "",
                                "/items/ginkgo_bow": "",
                                "/items/redwood_bow": "",
                                "/items/arcane_bow": "",
                                "/items/stalactite_spear": "",
                                "/items/granite_bludgeon": "",
                                "/items/furious_spear": "",
                                "/items/furious_spear_refined": "",
                                "/items/regal_sword": "",
                                "/items/regal_sword_refined": "",
                                "/items/chaotic_flail": "",
                                "/items/chaotic_flail_refined": "",
                                "/items/soul_hunter_crossbow": "",
                                "/items/sundering_crossbow": "",
                                "/items/sundering_crossbow_refined": "",
                                "/items/frost_staff": "",
                                "/items/infernal_battlestaff": "",
                                "/items/jackalope_staff": "",
                                "/items/rippling_trident": "",
                                "/items/rippling_trident_refined": "",
                                "/items/blooming_trident": "",
                                "/items/blooming_trident_refined": "",
                                "/items/blazing_trident": "",
                                "/items/blazing_trident_refined": "",
                                "/items/cheese_sword": "",
                                "/items/verdant_sword": "",
                                "/items/azure_sword": "",
                                "/items/burble_sword": "",
                                "/items/crimson_sword": "",
                                "/items/rainbow_sword": "",
                                "/items/holy_sword": "",
                                "/items/cheese_spear": "",
                                "/items/verdant_spear": "",
                                "/items/azure_spear": "",
                                "/items/burble_spear": "",
                                "/items/crimson_spear": "",
                                "/items/rainbow_spear": "",
                                "/items/holy_spear": "",
                                "/items/cheese_mace": "",
                                "/items/verdant_mace": "",
                                "/items/azure_mace": "",
                                "/items/burble_mace": "",
                                "/items/crimson_mace": "",
                                "/items/rainbow_mace": "",
                                "/items/holy_mace": "",
                                "/items/wooden_crossbow": "",
                                "/items/birch_crossbow": "",
                                "/items/cedar_crossbow": "",
                                "/items/purpleheart_crossbow": "",
                                "/items/ginkgo_crossbow": "",
                                "/items/redwood_crossbow": "",
                                "/items/arcane_crossbow": "",
                                "/items/wooden_water_staff": "",
                                "/items/birch_water_staff": "",
                                "/items/cedar_water_staff": "",
                                "/items/purpleheart_water_staff": "",
                                "/items/ginkgo_water_staff": "",
                                "/items/redwood_water_staff": "",
                                "/items/arcane_water_staff": "",
                                "/items/wooden_nature_staff": "",
                                "/items/birch_nature_staff": "",
                                "/items/cedar_nature_staff": "",
                                "/items/purpleheart_nature_staff": "",
                                "/items/ginkgo_nature_staff": "",
                                "/items/redwood_nature_staff": "",
                                "/items/arcane_nature_staff": "",
                                "/items/wooden_fire_staff": "",
                                "/items/birch_fire_staff": "",
                                "/items/cedar_fire_staff": "",
                                "/items/purpleheart_fire_staff": "",
                                "/items/ginkgo_fire_staff": "",
                                "/items/redwood_fire_staff": "",
                                "/items/arcane_fire_staff": "",
                                "/items/eye_watch": "",
                                "/items/snake_fang_dirk": "",
                                "/items/vision_shield": "",
                                "/items/gobo_defender": "",
                                "/items/vampire_fang_dirk": "",
                                "/items/knights_aegis": "",
                                "/items/knights_aegis_refined": "",
                                "/items/treant_shield": "",
                                "/items/manticore_shield": "",
                                "/items/tome_of_healing": "",
                                "/items/tome_of_the_elements": "",
                                "/items/watchful_relic": "",
                                "/items/bishops_codex": "",
                                "/items/bishops_codex_refined": "",
                                "/items/cheese_buckler": "",
                                "/items/verdant_buckler": "",
                                "/items/azure_buckler": "",
                                "/items/burble_buckler": "",
                                "/items/crimson_buckler": "",
                                "/items/rainbow_buckler": "",
                                "/items/holy_buckler": "",
                                "/items/wooden_shield": "",
                                "/items/birch_shield": "",
                                "/items/cedar_shield": "",
                                "/items/purpleheart_shield": "",
                                "/items/ginkgo_shield": "",
                                "/items/redwood_shield": "",
                                "/items/arcane_shield": "",
                                "/items/sinister_cape": "",
                                "/items/sinister_cape_refined": "",
                                "/items/chimerical_quiver": "",
                                "/items/chimerical_quiver_refined": "",
                                "/items/enchanted_cloak": "",
                                "/items/enchanted_cloak_refined": "",
                                "/items/red_culinary_hat": "",
                                "/items/snail_shell_helmet": "",
                                "/items/vision_helmet": "",
                                "/items/fluffy_red_hat": "",
                                "/items/corsair_helmet": "",
                                "/items/corsair_helmet_refined": "",
                                "/items/acrobatic_hood": "",
                                "/items/acrobatic_hood_refined": "",
                                "/items/magicians_hat": "",
                                "/items/magicians_hat_refined": "",
                                "/items/cheese_helmet": "",
                                "/items/verdant_helmet": "",
                                "/items/azure_helmet": "",
                                "/items/burble_helmet": "",
                                "/items/crimson_helmet": "",
                                "/items/rainbow_helmet": "",
                                "/items/holy_helmet": "",
                                "/items/rough_hood": "",
                                "/items/reptile_hood": "",
                                "/items/gobo_hood": "",
                                "/items/beast_hood": "",
                                "/items/umbral_hood": "",
                                "/items/cotton_hat": "",
                                "/items/linen_hat": "",
                                "/items/bamboo_hat": "",
                                "/items/silk_hat": "",
                                "/items/radiant_hat": "",
                                "/items/dairyhands_top": "",
                                "/items/foragers_top": "",
                                "/items/lumberjacks_top": "",
                                "/items/cheesemakers_top": "",
                                "/items/crafters_top": "",
                                "/items/tailors_top": "",
                                "/items/chefs_top": "",
                                "/items/brewers_top": "",
                                "/items/alchemists_top": "",
                                "/items/enhancers_top": "",
                                "/items/gator_vest": "",
                                "/items/turtle_shell_body": "",
                                "/items/colossus_plate_body": "",
                                "/items/demonic_plate_body": "",
                                "/items/anchorbound_plate_body": "",
                                "/items/anchorbound_plate_body_refined": "",
                                "/items/maelstrom_plate_body": "",
                                "/items/maelstrom_plate_body_refined": "",
                                "/items/marine_tunic": "",
                                "/items/revenant_tunic": "",
                                "/items/griffin_tunic": "",
                                "/items/kraken_tunic": "",
                                "/items/kraken_tunic_refined": "",
                                "/items/icy_robe_top": "",
                                "/items/flaming_robe_top": "",
                                "/items/luna_robe_top": "",
                                "/items/royal_water_robe_top": "",
                                "/items/royal_water_robe_top_refined": "",
                                "/items/royal_nature_robe_top": "",
                                "/items/royal_nature_robe_top_refined": "",
                                "/items/royal_fire_robe_top": "",
                                "/items/royal_fire_robe_top_refined": "",
                                "/items/cheese_plate_body": "",
                                "/items/verdant_plate_body": "",
                                "/items/azure_plate_body": "",
                                "/items/burble_plate_body": "",
                                "/items/crimson_plate_body": "",
                                "/items/rainbow_plate_body": "",
                                "/items/holy_plate_body": "",
                                "/items/rough_tunic": "",
                                "/items/reptile_tunic": "",
                                "/items/gobo_tunic": "",
                                "/items/beast_tunic": "",
                                "/items/umbral_tunic": "",
                                "/items/cotton_robe_top": "",
                                "/items/linen_robe_top": "",
                                "/items/bamboo_robe_top": "",
                                "/items/silk_robe_top": "",
                                "/items/radiant_robe_top": "",
                                "/items/dairyhands_bottoms": "",
                                "/items/foragers_bottoms": "",
                                "/items/lumberjacks_bottoms": "",
                                "/items/cheesemakers_bottoms": "",
                                "/items/crafters_bottoms": "",
                                "/items/tailors_bottoms": "",
                                "/items/chefs_bottoms": "",
                                "/items/brewers_bottoms": "",
                                "/items/alchemists_bottoms": "",
                                "/items/enhancers_bottoms": "",
                                "/items/turtle_shell_legs": "",
                                "/items/colossus_plate_legs": "",
                                "/items/demonic_plate_legs": "",
                                "/items/anchorbound_plate_legs": "",
                                "/items/anchorbound_plate_legs_refined": "",
                                "/items/maelstrom_plate_legs": "",
                                "/items/maelstrom_plate_legs_refined": "",
                                "/items/marine_chaps": "",
                                "/items/revenant_chaps": "",
                                "/items/griffin_chaps": "",
                                "/items/kraken_chaps": "",
                                "/items/kraken_chaps_refined": "",
                                "/items/icy_robe_bottoms": "",
                                "/items/flaming_robe_bottoms": "",
                                "/items/luna_robe_bottoms": "",
                                "/items/royal_water_robe_bottoms": "",
                                "/items/royal_water_robe_bottoms_refined": "",
                                "/items/royal_nature_robe_bottoms": "",
                                "/items/royal_nature_robe_bottoms_refined": "",
                                "/items/royal_fire_robe_bottoms": "",
                                "/items/royal_fire_robe_bottoms_refined": "",
                                "/items/cheese_plate_legs": "",
                                "/items/verdant_plate_legs": "",
                                "/items/azure_plate_legs": "",
                                "/items/burble_plate_legs": "",
                                "/items/crimson_plate_legs": "",
                                "/items/rainbow_plate_legs": "",
                                "/items/holy_plate_legs": "",
                                "/items/rough_chaps": "",
                                "/items/reptile_chaps": "",
                                "/items/gobo_chaps": "",
                                "/items/beast_chaps": "",
                                "/items/umbral_chaps": "",
                                "/items/cotton_robe_bottoms": "",
                                "/items/linen_robe_bottoms": "",
                                "/items/bamboo_robe_bottoms": "",
                                "/items/silk_robe_bottoms": "",
                                "/items/radiant_robe_bottoms": "",
                                "/items/enchanted_gloves": "",
                                "/items/pincer_gloves": "",
                                "/items/panda_gloves": "",
                                "/items/magnetic_gloves": "",
                                "/items/dodocamel_gauntlets": "",
                                "/items/dodocamel_gauntlets_refined": "",
                                "/items/sighted_bracers": "",
                                "/items/marksman_bracers": "",
                                "/items/marksman_bracers_refined": "",
                                "/items/chrono_gloves": "",
                                "/items/cheese_gauntlets": "",
                                "/items/verdant_gauntlets": "",
                                "/items/azure_gauntlets": "",
                                "/items/burble_gauntlets": "",
                                "/items/crimson_gauntlets": "",
                                "/items/rainbow_gauntlets": "",
                                "/items/holy_gauntlets": "",
                                "/items/rough_bracers": "",
                                "/items/reptile_bracers": "",
                                "/items/gobo_bracers": "",
                                "/items/beast_bracers": "",
                                "/items/umbral_bracers": "",
                                "/items/cotton_gloves": "",
                                "/items/linen_gloves": "",
                                "/items/bamboo_gloves": "",
                                "/items/silk_gloves": "",
                                "/items/radiant_gloves": "",
                                "/items/collectors_boots": "",
                                "/items/shoebill_shoes": "",
                                "/items/black_bear_shoes": "",
                                "/items/grizzly_bear_shoes": "",
                                "/items/polar_bear_shoes": "",
                                "/items/centaur_boots": "",
                                "/items/sorcerer_boots": "",
                                "/items/cheese_boots": "",
                                "/items/verdant_boots": "",
                                "/items/azure_boots": "",
                                "/items/burble_boots": "",
                                "/items/crimson_boots": "",
                                "/items/rainbow_boots": "",
                                "/items/holy_boots": "",
                                "/items/rough_boots": "",
                                "/items/reptile_boots": "",
                                "/items/gobo_boots": "",
                                "/items/beast_boots": "",
                                "/items/umbral_boots": "",
                                "/items/cotton_boots": "",
                                "/items/linen_boots": "",
                                "/items/bamboo_boots": "",
                                "/items/silk_boots": "",
                                "/items/radiant_boots": "",
                                "/items/small_pouch": "",
                                "/items/medium_pouch": "",
                                "/items/large_pouch": "",
                                "/items/giant_pouch": "",
                                "/items/gluttonous_pouch": "",
                                "/items/guzzling_pouch": "",
                                "/items/necklace_of_efficiency": "",
                                "/items/fighter_necklace": "",
                                "/items/ranger_necklace": "",
                                "/items/wizard_necklace": "",
                                "/items/necklace_of_wisdom": "",
                                "/items/necklace_of_speed": "",
                                "/items/philosophers_necklace": "",
                                "/items/earrings_of_gathering": "",
                                "/items/earrings_of_essence_find": "",
                                "/items/earrings_of_armor": "",
                                "/items/earrings_of_regeneration": "",
                                "/items/earrings_of_resistance": "",
                                "/items/earrings_of_rare_find": "",
                                "/items/earrings_of_critical_strike": "",
                                "/items/philosophers_earrings": "",
                                "/items/ring_of_gathering": "",
                                "/items/ring_of_essence_find": "",
                                "/items/ring_of_armor": "",
                                "/items/ring_of_regeneration": "",
                                "/items/ring_of_resistance": "",
                                "/items/ring_of_rare_find": "",
                                "/items/ring_of_critical_strike": "",
                                "/items/philosophers_ring": "",
                                "/items/trainee_milking_charm": "",
                                "/items/basic_milking_charm": "",
                                "/items/advanced_milking_charm": "",
                                "/items/expert_milking_charm": "",
                                "/items/master_milking_charm": "",
                                "/items/grandmaster_milking_charm": "",
                                "/items/trainee_foraging_charm": "",
                                "/items/basic_foraging_charm": "",
                                "/items/advanced_foraging_charm": "",
                                "/items/expert_foraging_charm": "",
                                "/items/master_foraging_charm": "",
                                "/items/grandmaster_foraging_charm": "",
                                "/items/trainee_woodcutting_charm": "",
                                "/items/basic_woodcutting_charm": "",
                                "/items/advanced_woodcutting_charm": "",
                                "/items/expert_woodcutting_charm": "",
                                "/items/master_woodcutting_charm": "",
                                "/items/grandmaster_woodcutting_charm": "",
                                "/items/trainee_cheesesmithing_charm": "",
                                "/items/basic_cheesesmithing_charm": "",
                                "/items/advanced_cheesesmithing_charm": "",
                                "/items/expert_cheesesmithing_charm": "",
                                "/items/master_cheesesmithing_charm": "",
                                "/items/grandmaster_cheesesmithing_charm": "",
                                "/items/trainee_crafting_charm": "",
                                "/items/basic_crafting_charm": "",
                                "/items/advanced_crafting_charm": "",
                                "/items/expert_crafting_charm": "",
                                "/items/master_crafting_charm": "",
                                "/items/grandmaster_crafting_charm": "",
                                "/items/trainee_tailoring_charm": "",
                                "/items/basic_tailoring_charm": "",
                                "/items/advanced_tailoring_charm": "",
                                "/items/expert_tailoring_charm": "",
                                "/items/master_tailoring_charm": "",
                                "/items/grandmaster_tailoring_charm": "",
                                "/items/trainee_cooking_charm": "",
                                "/items/basic_cooking_charm": "",
                                "/items/advanced_cooking_charm": "",
                                "/items/expert_cooking_charm": "",
                                "/items/master_cooking_charm": "",
                                "/items/grandmaster_cooking_charm": "",
                                "/items/trainee_brewing_charm": "",
                                "/items/basic_brewing_charm": "",
                                "/items/advanced_brewing_charm": "",
                                "/items/expert_brewing_charm": "",
                                "/items/master_brewing_charm": "",
                                "/items/grandmaster_brewing_charm": "",
                                "/items/trainee_alchemy_charm": "",
                                "/items/basic_alchemy_charm": "",
                                "/items/advanced_alchemy_charm": "",
                                "/items/expert_alchemy_charm": "",
                                "/items/master_alchemy_charm": "",
                                "/items/grandmaster_alchemy_charm": "",
                                "/items/trainee_enhancing_charm": "",
                                "/items/basic_enhancing_charm": "",
                                "/items/advanced_enhancing_charm": "",
                                "/items/expert_enhancing_charm": "",
                                "/items/master_enhancing_charm": "",
                                "/items/grandmaster_enhancing_charm": "",
                                "/items/trainee_stamina_charm": "",
                                "/items/basic_stamina_charm": "",
                                "/items/advanced_stamina_charm": "",
                                "/items/expert_stamina_charm": "",
                                "/items/master_stamina_charm": "",
                                "/items/grandmaster_stamina_charm": "",
                                "/items/trainee_intelligence_charm": "",
                                "/items/basic_intelligence_charm": "",
                                "/items/advanced_intelligence_charm": "",
                                "/items/expert_intelligence_charm": "",
                                "/items/master_intelligence_charm": "",
                                "/items/grandmaster_intelligence_charm": "",
                                "/items/trainee_attack_charm": "",
                                "/items/basic_attack_charm": "",
                                "/items/advanced_attack_charm": "",
                                "/items/expert_attack_charm": "",
                                "/items/master_attack_charm": "",
                                "/items/grandmaster_attack_charm": "",
                                "/items/trainee_defense_charm": "",
                                "/items/basic_defense_charm": "",
                                "/items/advanced_defense_charm": "",
                                "/items/expert_defense_charm": "",
                                "/items/master_defense_charm": "",
                                "/items/grandmaster_defense_charm": "",
                                "/items/trainee_melee_charm": "",
                                "/items/basic_melee_charm": "",
                                "/items/advanced_melee_charm": "",
                                "/items/expert_melee_charm": "",
                                "/items/master_melee_charm": "",
                                "/items/grandmaster_melee_charm": "",
                                "/items/trainee_ranged_charm": "",
                                "/items/basic_ranged_charm": "",
                                "/items/advanced_ranged_charm": "",
                                "/items/expert_ranged_charm": "",
                                "/items/master_ranged_charm": "",
                                "/items/grandmaster_ranged_charm": "",
                                "/items/trainee_magic_charm": "",
                                "/items/basic_magic_charm": "",
                                "/items/advanced_magic_charm": "",
                                "/items/expert_magic_charm": "",
                                "/items/master_magic_charm": "",
                                "/items/grandmaster_magic_charm": "",
                                "/items/basic_task_badge": "",
                                "/items/advanced_task_badge": "",
                                "/items/expert_task_badge": "",
                                "/items/celestial_brush": "",
                                "/items/cheese_brush": "",
                                "/items/verdant_brush": "",
                                "/items/azure_brush": "",
                                "/items/burble_brush": "",
                                "/items/crimson_brush": "",
                                "/items/rainbow_brush": "",
                                "/items/holy_brush": "",
                                "/items/celestial_shears": "",
                                "/items/cheese_shears": "",
                                "/items/verdant_shears": "",
                                "/items/azure_shears": "",
                                "/items/burble_shears": "",
                                "/items/crimson_shears": "",
                                "/items/rainbow_shears": "",
                                "/items/holy_shears": "",
                                "/items/celestial_hatchet": "",
                                "/items/cheese_hatchet": "",
                                "/items/verdant_hatchet": "",
                                "/items/azure_hatchet": "",
                                "/items/burble_hatchet": "",
                                "/items/crimson_hatchet": "",
                                "/items/rainbow_hatchet": "",
                                "/items/holy_hatchet": "",
                                "/items/celestial_hammer": "",
                                "/items/cheese_hammer": "",
                                "/items/verdant_hammer": "",
                                "/items/azure_hammer": "",
                                "/items/burble_hammer": "",
                                "/items/crimson_hammer": "",
                                "/items/rainbow_hammer": "",
                                "/items/holy_hammer": "",
                                "/items/celestial_chisel": "",
                                "/items/cheese_chisel": "",
                                "/items/verdant_chisel": "",
                                "/items/azure_chisel": "",
                                "/items/burble_chisel": "",
                                "/items/crimson_chisel": "",
                                "/items/rainbow_chisel": "",
                                "/items/holy_chisel": "",
                                "/items/celestial_needle": "",
                                "/items/cheese_needle": "",
                                "/items/verdant_needle": "",
                                "/items/azure_needle": "",
                                "/items/burble_needle": "",
                                "/items/crimson_needle": "",
                                "/items/rainbow_needle": "",
                                "/items/holy_needle": "",
                                "/items/celestial_spatula": "",
                                "/items/cheese_spatula": "",
                                "/items/verdant_spatula": "",
                                "/items/azure_spatula": "",
                                "/items/burble_spatula": "",
                                "/items/crimson_spatula": "",
                                "/items/rainbow_spatula": "",
                                "/items/holy_spatula": "",
                                "/items/celestial_pot": "",
                                "/items/cheese_pot": "",
                                "/items/verdant_pot": "",
                                "/items/azure_pot": "",
                                "/items/burble_pot": "",
                                "/items/crimson_pot": "",
                                "/items/rainbow_pot": "",
                                "/items/holy_pot": "",
                                "/items/celestial_alembic": "",
                                "/items/cheese_alembic": "",
                                "/items/verdant_alembic": "",
                                "/items/azure_alembic": "",
                                "/items/burble_alembic": "",
                                "/items/crimson_alembic": "",
                                "/items/rainbow_alembic": "",
                                "/items/holy_alembic": "",
                                "/items/celestial_enhancer": "",
                                "/items/cheese_enhancer": "",
                                "/items/verdant_enhancer": "",
                                "/items/azure_enhancer": "",
                                "/items/burble_enhancer": "",
                                "/items/crimson_enhancer": "",
                                "/items/rainbow_enhancer": "",
                                "/items/holy_enhancer": "",
                                "/items/milk": "哞",
                                "/items/verdant_milk": "哞哞",
                                "/items/azure_milk": "哞哞哞",
                                "/items/burble_milk": "哞哞哞哞",
                                "/items/crimson_milk": "哞哞哞哞哞",
                                "/items/rainbow_milk": "哞哞哞哞哞哞",
                                "/items/holy_milk": "哞哞哞哞哞哞哞",
                                "/items/cheese": "",
                                "/items/verdant_cheese": "",
                                "/items/azure_cheese": "",
                                "/items/burble_cheese": "",
                                "/items/crimson_cheese": "",
                                "/items/rainbow_cheese": "",
                                "/items/holy_cheese": "",
                                "/items/log": "",
                                "/items/birch_log": "",
                                "/items/cedar_log": "",
                                "/items/purpleheart_log": "",
                                "/items/ginkgo_log": "",
                                "/items/redwood_log": "",
                                "/items/arcane_log": "",
                                "/items/lumber": "",
                                "/items/birch_lumber": "",
                                "/items/cedar_lumber": "",
                                "/items/purpleheart_lumber": "",
                                "/items/ginkgo_lumber": "",
                                "/items/redwood_lumber": "",
                                "/items/arcane_lumber": "",
                                "/items/rough_hide": "",
                                "/items/reptile_hide": "",
                                "/items/gobo_hide": "",
                                "/items/beast_hide": "",
                                "/items/umbral_hide": "",
                                "/items/rough_leather": "",
                                "/items/reptile_leather": "",
                                "/items/gobo_leather": "",
                                "/items/beast_leather": "",
                                "/items/umbral_leather": "",
                                "/items/cotton": "",
                                "/items/flax": "",
                                "/items/bamboo_branch": "",
                                "/items/cocoon": "",
                                "/items/radiant_fiber": "",
                                "/items/cotton_fabric": "",
                                "/items/linen_fabric": "",
                                "/items/bamboo_fabric": "",
                                "/items/silk_fabric": "",
                                "/items/radiant_fabric": "",
                                "/items/egg": "",
                                "/items/wheat": "",
                                "/items/sugar": "",
                                "/items/blueberry": "",
                                "/items/blackberry": "",
                                "/items/strawberry": "",
                                "/items/mooberry": "",
                                "/items/marsberry": "",
                                "/items/spaceberry": "",
                                "/items/apple": "",
                                "/items/orange": "",
                                "/items/plum": "",
                                "/items/peach": "",
                                "/items/dragon_fruit": "",
                                "/items/star_fruit": "",
                                "/items/arabica_coffee_bean": "",
                                "/items/robusta_coffee_bean": "",
                                "/items/liberica_coffee_bean": "",
                                "/items/excelsa_coffee_bean": "",
                                "/items/fieriosa_coffee_bean": "",
                                "/items/spacia_coffee_bean": "",
                                "/items/green_tea_leaf": "",
                                "/items/black_tea_leaf": "",
                                "/items/burble_tea_leaf": "",
                                "/items/moolong_tea_leaf": "",
                                "/items/red_tea_leaf": "",
                                "/items/emp_tea_leaf": "",
                                "/items/catalyst_of_coinification": "在炼金时使用,可提高15%的点金成功率 (乘法)。成功时消耗一个催化剂。",
                                "/items/catalyst_of_decomposition": "在炼金时使用,可将分解成功率提高 15% (乘法)。成功时消耗一个催化剂。",
                                "/items/catalyst_of_transmutation": "在炼金时使用,可将转化成功率提高 15% (乘法)。成功时消耗一个催化剂。",
                                "/items/prime_catalyst": "在炼金时使用,可将任何行动的成功率提高 25% (乘法)。成功时消耗一个催化剂。",
                                "/items/snake_fang": "用于锻造蛇牙短剑的材料",
                                "/items/shoebill_feather": "用于缝纫鲸头鹳鞋的材料",
                                "/items/snail_shell": "用于锻造蜗牛壳头盔的材料",
                                "/items/crab_pincer": "用于锻造蟹钳手套的材料",
                                "/items/turtle_shell": "用于锻造龟壳胸甲或腿甲的材料",
                                "/items/marine_scale": "用于缝纫海洋皮衣或皮裤的材料",
                                "/items/treant_bark": "用于制作树人盾的材料",
                                "/items/centaur_hoof": "用于缝纫半人马靴的材料",
                                "/items/luna_wing": "用于缝纫月神袍服或袍裙的材料",
                                "/items/gobo_rag": "用于缝纫收藏家靴的材料",
                                "/items/goggles": "用于锻造视觉头盔的材料",
                                "/items/magnifying_glass": "用于锻造视觉盾或缝纫瞄准护腕的材料",
                                "/items/eye_of_the_watcher": "用于制作掌上监工或警戒遗物的材料",
                                "/items/icy_cloth": "用于缝纫冰霜袍服或袍裙的材料",
                                "/items/flaming_cloth": "用于缝纫烈焰袍服或袍裙的材料",
                                "/items/sorcerers_sole": "用于缝纫魔法师靴的材料",
                                "/items/chrono_sphere": "用于缝纫附魔手套或时空手套的材料",
                                "/items/frost_sphere": "用于制作冰霜法杖的材料",
                                "/items/panda_fluff": "用于锻造熊猫手套的材料",
                                "/items/black_bear_fluff": "用于锻造黑熊鞋的材料",
                                "/items/grizzly_bear_fluff": "用于锻造棕熊鞋的材料",
                                "/items/polar_bear_fluff": "用于锻造北极熊鞋的材料",
                                "/items/red_panda_fluff": "用于缝纫红色厨师帽或蓬松红帽的材料",
                                "/items/magnet": "用于锻造磁力手套的材料",
                                "/items/stalactite_shard": "用于锻造石钟长枪或尖刺重盾的材料",
                                "/items/living_granite": "用于锻造花岗岩大棒或尖刺重盾的材料",
                                "/items/colossus_core": "用于锻造巨像胸甲或腿甲的材料",
                                "/items/vampire_fang": "用于锻造吸血鬼短剑或制作吸血弓的材料",
                                "/items/werewolf_claw": "用于锻造狼人关刀或制作吸血弓的材料",
                                "/items/revenant_anima": "用于缝纫亡灵皮衣或皮裤的材料",
                                "/items/soul_fragment": "用于制作灵魂猎手弩的材料",
                                "/items/infernal_ember": "用于制作炼狱法杖的材料",
                                "/items/demonic_core": "用于锻造恶魔胸甲或腿甲的材料",
                                "/items/griffin_leather": "用于锻造狮鹫重盾跟缝纫狮鹫皮衣或皮裤的材料",
                                "/items/manticore_sting": "用于制作蝎狮盾的材料",
                                "/items/jackalope_antler": "用于制作鹿角兔之杖的材料",
                                "/items/dodocamel_plume": "用于锻造渡渡驼护手的材料",
                                "/items/griffin_talon": "用于锻造狮鹫重盾的材料",
                                "/items/chimerical_refinement_shard": "用于升级【奇幻洞穴】95级装备和奇幻箭袋的材料",
                                "/items/acrobats_ribbon": "用于缝纫杂技师兜帽的材料",
                                "/items/magicians_cloth": "用于缝纫魔术师帽的材料",
                                "/items/chaotic_chain": "用于锻造混沌连枷的材料",
                                "/items/cursed_ball": "用于制作咒怨之弓的材料",
                                "/items/sinister_refinement_shard": "用于升级【阴森马戏团】95级装备和阴森斗篷的材料",
                                "/items/royal_cloth": "用于缝纫皇家袍服和皇家袍裙的材料",
                                "/items/knights_ingot": "用于锻造骑士之盾的材料",
                                "/items/bishops_scroll": "用于制作主教之书的材料",
                                "/items/regal_jewel": "用于锻造君王之剑和狂怒长枪的材料",
                                "/items/sundering_jewel": "用于制作裂空之弩和锻造狂怒长枪的材料",
                                "/items/enchanted_refinement_shard": "用于升级【秘法要塞】95级装备和秘法披风的材料",
                                "/items/marksman_brooch": "用于缝纫神射护腕的材料",
                                "/items/corsair_crest": "用于锻造掠夺者头盔的材料",
                                "/items/damaged_anchor": "用于锻造锚定胸甲或腿甲的材料",
                                "/items/maelstrom_plating": "用于锻造怒涛胸甲或腿甲的材料",
                                "/items/kraken_leather": "用于缝纫克拉肯皮衣或皮裤的材料",
                                "/items/kraken_fang": "用于制作涟漪、绽放或炽焰三叉戟的材料",
                                "/items/pirate_refinement_shard": "用于升级【海盗基地】95级装备的材料",
                                "/items/butter_of_proficiency": "用于制作特殊专业工具和服装的材料",
                                "/items/thread_of_expertise": "用于制作特殊专业服装的材料",
                                "/items/branch_of_insight": "用于制作特殊专业工具和服装的材料",
                                "/items/gluttonous_energy": "用于缝纫贪食之袋",
                                "/items/guzzling_energy": "用于缝纫暴饮之囊",
                                "/items/milking_essence": "用于冲泡奶茶和制作炼金催化剂",
                                "/items/foraging_essence": "用于冲泡采摘茶和制作炼金催化剂",
                                "/items/woodcutting_essence": "用于冲泡伐木茶和制作炼金催化剂",
                                "/items/cheesesmithing_essence": "用于冲泡奶酪锻造茶和制作炼金催化剂",
                                "/items/crafting_essence": "用于冲泡制作茶和制作炼金催化剂",
                                "/items/tailoring_essence": "用于冲泡缝纫茶和制作炼金催化剂",
                                "/items/cooking_essence": "用于冲泡烹饪茶和制作炼金催化剂",
                                "/items/brewing_essence": "用于冲泡冲泡茶和制作炼金催化剂",
                                "/items/alchemy_essence": "用于冲泡炼金茶和制作炼金催化剂",
                                "/items/enhancing_essence": "用于冲泡强化茶和制作炼金催化剂",
                                "/items/swamp_essence": "用于强化沼泽星球特殊装备的材料",
                                "/items/aqua_essence": "用于强化海洋星球特殊装备的材料",
                                "/items/jungle_essence": "用于强化丛林星球特殊装备的材料",
                                "/items/gobo_essence": "用于强化哥布林星球特殊装备的材料",
                                "/items/eyessence": "用于强化眼球星球特殊装备的材料",
                                "/items/sorcerer_essence": "用于强化巫师之塔特殊装备的材料",
                                "/items/bear_essence": "用于强化熊熊星球特殊装备的材料",
                                "/items/golem_essence": "用于强化魔像洞穴特殊装备的材料",
                                "/items/twilight_essence": "用于强化暮光之城特殊装备的材料",
                                "/items/abyssal_essence": "用于强化地狱深渊特殊装备的材料",
                                "/items/chimerical_essence": "用于强化奇幻洞穴特殊装备的材料",
                                "/items/sinister_essence": "用于强化阴森马戏团特殊装备的材料",
                                "/items/enchanted_essence": "用于强化秘法要塞特殊装备的材料",
                                "/items/pirate_essence": "用于强化海盗基地特殊装备的材料",
                                "/items/task_crystal": "小紫牛给的水晶,可以用来制作特殊的饰品。",
                                "/items/star_fragment": "在陨石舱里发现的碎片,可以用来制作珠宝。",
                                "/items/pearl": "一种闪亮的宝石,通常在宝箱中找到",
                                "/items/amber": "一种闪亮的宝石,通常在宝箱中找到",
                                "/items/garnet": "一种闪亮的宝石,通常在宝箱中找到",
                                "/items/jade": "一种闪亮的宝石,通常在宝箱中找到",
                                "/items/amethyst": "一种闪亮的宝石,通常在宝箱中找到",
                                "/items/moonstone": "一种闪亮的宝石,通常在宝箱中找到",
                                "/items/sunstone": "一种闪亮的太阳形状的宝石",
                                "/items/philosophers_stone": "传说中拥有无穷力量的石头",
                                "/items/crushed_pearl": "曾经是一粒珍珠",
                                "/items/crushed_amber": "曾经是一块琥珀",
                                "/items/crushed_garnet": "曾经是一颗石榴石",
                                "/items/crushed_jade": "曾经是一块翡翠",
                                "/items/crushed_amethyst": "曾经是一颗紫水晶",
                                "/items/crushed_moonstone": "曾经是一枚月亮石",
                                "/items/crushed_sunstone": "曾经是一枚太阳石",
                                "/items/crushed_philosophers_stone": "曾经是一块贤者之石",
                                "/items/shard_of_protection": "从工匠匣中获得,用于合成保护之镜",
                                "/items/mirror_of_protection": "一种稀有神器,可在强化时作为任何保护装备的副本"
                            },
                            "itemCategoryNames": {
                                "/item_categories/currency": "货币",
                                "/item_categories/loot": "战利品",
                                "/item_categories/key": "钥匙",
                                "/item_categories/food": "食物",
                                "/item_categories/drink": "饮料",
                                "/item_categories/ability_book": "技能书",
                                "/item_categories/equipment": "装备",
                                "/item_categories/resource": "资源"
                            },
                            "itemCategoryPluralNames": {
                                "/item_categories/currency": "货币",
                                "/item_categories/loot": "战利品",
                                "/item_categories/key": "钥匙",
                                "/item_categories/food": "食物",
                                "/item_categories/drink": "饮料",
                                "/item_categories/ability_book": "技能书",
                                "/item_categories/equipment": "装备",
                                "/item_categories/resource": "资源"
                            },
                            "equipmentTypeNames": {
                                "/equipment_types/two_hand": "双手",
                                "/equipment_types/main_hand": "主手",
                                "/equipment_types/off_hand": "副手",
                                "/equipment_types/back": "背部",
                                "/equipment_types/head": "头部",
                                "/equipment_types/body": "身体",
                                "/equipment_types/legs": "腿部",
                                "/equipment_types/hands": "手部",
                                "/equipment_types/feet": "脚部",
                                "/equipment_types/pouch": "袋子",
                                "/equipment_types/neck": "项链",
                                "/equipment_types/earrings": "耳环",
                                "/equipment_types/ring": "戒指",
                                "/equipment_types/charm": "护符",
                                "/equipment_types/trinket": "饰品",
                                "/equipment_types/milking_tool": "挤奶工具",
                                "/equipment_types/foraging_tool": "采摘工具",
                                "/equipment_types/woodcutting_tool": "伐木工具",
                                "/equipment_types/cheesesmithing_tool": "奶酪锻造工具",
                                "/equipment_types/crafting_tool": "制作工具",
                                "/equipment_types/tailoring_tool": "缝纫工具",
                                "/equipment_types/cooking_tool": "烹饪工具",
                                "/equipment_types/brewing_tool": "冲泡工具",
                                "/equipment_types/alchemy_tool": "炼金工具",
                                "/equipment_types/enhancing_tool": "强化工具"
                            },
                            "combatStyleNames": {
                                "/combat_styles/stab": "刺击",
                                "/combat_styles/slash": "斩击",
                                "/combat_styles/smash": "钝击",
                                "/combat_styles/ranged": "远程",
                                "/combat_styles/magic": "魔法",
                                "/combat_styles/heal": "治疗"
                            },
                            "damageTypeNames": {
                                "/damage_types/physical": "物理",
                                "/damage_types/water": "水系",
                                "/damage_types/nature": "自然系",
                                "/damage_types/fire": "火系"
                            },
                            "monsterNames": {
                                "/monsters/abyssal_imp": "深渊小鬼",
                                "/monsters/acrobat": "杂技师",
                                "/monsters/anchor_shark": "持锚鲨",
                                "/monsters/aquahorse": "水马",
                                "/monsters/black_bear": "黑熊",
                                "/monsters/gobo_boomy": "轰轰",
                                "/monsters/brine_marksman": "海盐射手",
                                "/monsters/captain_fishhook": "鱼钩船长",
                                "/monsters/butterjerry": "蝶鼠",
                                "/monsters/centaur_archer": "半人马弓箭手",
                                "/monsters/chronofrost_sorcerer": "霜时巫师",
                                "/monsters/crystal_colossus": "水晶巨像",
                                "/monsters/demonic_overlord": "恶魔霸主",
                                "/monsters/deranged_jester": "小丑皇",
                                "/monsters/dodocamel": "渡渡驼",
                                "/monsters/dusk_revenant": "黄昏亡灵",
                                "/monsters/elementalist": "元素法师",
                                "/monsters/enchanted_bishop": "秘法主教",
                                "/monsters/enchanted_king": "秘法国王",
                                "/monsters/enchanted_knight": "秘法骑士",
                                "/monsters/enchanted_pawn": "秘法士兵",
                                "/monsters/enchanted_queen": "秘法王后",
                                "/monsters/enchanted_rook": "秘法堡垒",
                                "/monsters/eye": "独眼",
                                "/monsters/eyes": "叠眼",
                                "/monsters/flame_sorcerer": "火焰巫师",
                                "/monsters/fly": "苍蝇",
                                "/monsters/frog": "青蛙",
                                "/monsters/sea_snail": "蜗牛",
                                "/monsters/giant_shoebill": "鲸头鹳",
                                "/monsters/gobo_chieftain": "哥布林酋长",
                                "/monsters/granite_golem": "花岗魔像",
                                "/monsters/griffin": "狮鹫",
                                "/monsters/grizzly_bear": "棕熊",
                                "/monsters/gummy_bear": "软糖熊",
                                "/monsters/crab": "螃蟹",
                                "/monsters/ice_sorcerer": "冰霜巫师",
                                "/monsters/infernal_warlock": "地狱术士",
                                "/monsters/jackalope": "鹿角兔",
                                "/monsters/rat": "杰瑞",
                                "/monsters/juggler": "杂耍者",
                                "/monsters/jungle_sprite": "丛林精灵",
                                "/monsters/luna_empress": "月神之蝶",
                                "/monsters/magician": "魔术师",
                                "/monsters/magnetic_golem": "磁力魔像",
                                "/monsters/manticore": "狮蝎兽",
                                "/monsters/marine_huntress": "海洋猎手",
                                "/monsters/myconid": "蘑菇人",
                                "/monsters/nom_nom": "咬咬鱼",
                                "/monsters/novice_sorcerer": "新手巫师",
                                "/monsters/panda": "熊猫",
                                "/monsters/polar_bear": "北极熊",
                                "/monsters/porcupine": "豪猪",
                                "/monsters/rabid_rabbit": "疯魔兔",
                                "/monsters/red_panda": "小熊猫",
                                "/monsters/alligator": "夏洛克",
                                "/monsters/gobo_shooty": "咻咻",
                                "/monsters/skunk": "臭鼬",
                                "/monsters/gobo_slashy": "砍砍",
                                "/monsters/slimy": "史莱姆",
                                "/monsters/gobo_smashy": "锤锤",
                                "/monsters/soul_hunter": "灵魂猎手",
                                "/monsters/squawker": "鹦鹉",
                                "/monsters/gobo_stabby": "刺刺",
                                "/monsters/stalactite_golem": "钟乳石魔像",
                                "/monsters/swampy": "沼泽虫",
                                "/monsters/the_kraken": "克拉肯",
                                "/monsters/the_watcher": "观察者",
                                "/monsters/snake": "蛇",
                                "/monsters/tidal_conjuror": "潮汐召唤师",
                                "/monsters/treant": "树人",
                                "/monsters/turtle": "忍者龟",
                                "/monsters/vampire": "吸血鬼",
                                "/monsters/veyes": "复眼",
                                "/monsters/werewolf": "狼人",
                                "/monsters/zombie": "僵尸",
                                "/monsters/zombie_bear": "僵尸熊"
                            },
                            "combatTriggerDependencyNames": {
                                "/combat_trigger_dependencies/all_allies": "所有队友的",
                                "/combat_trigger_dependencies/all_enemies": "所有敌人的",
                                "/combat_trigger_dependencies/self": "我的",
                                "/combat_trigger_dependencies/targeted_enemy": "目标敌人的"
                            },
                            "combatTriggerConditionNames": {
                                "/combat_trigger_conditions/number_of_active_units": "存活数",
                                "/combat_trigger_conditions/number_of_dead_units": "死亡数",
                                "/combat_trigger_conditions/attack_coffee": "攻击咖啡",
                                "/combat_trigger_conditions/berserk": "狂暴",
                                "/combat_trigger_conditions/blind_status": "失明状态",
                                "/combat_trigger_conditions/channeling_coffee": "吟唱咖啡",
                                "/combat_trigger_conditions/crippling_slash": "致残斩减益",
                                "/combat_trigger_conditions/critical_aura": "致命光环",
                                "/combat_trigger_conditions/critical_coffee": "暴击咖啡",
                                "/combat_trigger_conditions/current_hp": "当前HP",
                                "/combat_trigger_conditions/current_mp": "当前MP",
                                "/combat_trigger_conditions/curse": "诅咒",
                                "/combat_trigger_conditions/defense_coffee": "防御咖啡",
                                "/combat_trigger_conditions/elemental_affinity": "元素增幅",
                                "/combat_trigger_conditions/elusiveness": "闪避",
                                "/combat_trigger_conditions/enrage": "暴走",
                                "/combat_trigger_conditions/fierce_aura": "物理光环",
                                "/combat_trigger_conditions/fracturing_impact": "碎裂冲击减益",
                                "/combat_trigger_conditions/frenzy": "狂速",
                                "/combat_trigger_conditions/frost_surge": "冰霜爆裂减益",
                                "/combat_trigger_conditions/fury": "狂怒",
                                "/combat_trigger_conditions/guardian_aura": "守护光环",
                                "/combat_trigger_conditions/ice_spear": "冰枪减益",
                                "/combat_trigger_conditions/insanity": "疯狂",
                                "/combat_trigger_conditions/intelligence_coffee": "智力咖啡",
                                "/combat_trigger_conditions/invincible": "无敌光环",
                                "/combat_trigger_conditions/lowest_hp_percentage": "最低HP%",
                                "/combat_trigger_conditions/lucky_coffee": "幸运咖啡",
                                "/combat_trigger_conditions/magic_coffee": "魔法咖啡",
                                "/combat_trigger_conditions/maim": "血刃斩减益",
                                "/combat_trigger_conditions/mana_spring": "法力喷泉",
                                "/combat_trigger_conditions/melee_coffee": "近战咖啡",
                                "/combat_trigger_conditions/missing_hp": "缺失HP",
                                "/combat_trigger_conditions/missing_mp": "缺失MP",
                                "/combat_trigger_conditions/mystic_aura": "元素光环",
                                "/combat_trigger_conditions/pestilent_shot": "疫病射击减益",
                                "/combat_trigger_conditions/precision": "精确",
                                "/combat_trigger_conditions/provoke": "挑衅",
                                "/combat_trigger_conditions/puncture": "破甲之刺减益",
                                "/combat_trigger_conditions/ranged_coffee": "远程咖啡",
                                "/combat_trigger_conditions/retribution": "惩戒",
                                "/combat_trigger_conditions/silence_status": "沉默状态",
                                "/combat_trigger_conditions/smoke_burst": "烟爆灭影减益",
                                "/combat_trigger_conditions/speed_aura": "速度光环",
                                "/combat_trigger_conditions/spike_shell": "尖刺防护",
                                "/combat_trigger_conditions/stamina_coffee": "耐力咖啡",
                                "/combat_trigger_conditions/stun_status": "眩晕状态",
                                "/combat_trigger_conditions/swiftness_coffee": "迅捷咖啡",
                                "/combat_trigger_conditions/taunt": "嘲讽",
                                "/combat_trigger_conditions/toughness": "坚韧",
                                "/combat_trigger_conditions/toxic_pollen": "剧毒粉尘减益",
                                "/combat_trigger_conditions/vampirism": "吸血",
                                "/combat_trigger_conditions/weaken": "虚弱状态",
                                "/combat_trigger_conditions/wisdom_coffee": "经验咖啡"
                            },
                            "combatTriggerComparatorNames": {
                                "/combat_trigger_comparators/less_than_equal": "<=",
                                "/combat_trigger_comparators/greater_than_equal": ">=",
                                "/combat_trigger_comparators/is_active": "已生效",
                                "/combat_trigger_comparators/is_inactive": "未生效"
                            },
                            "shopCategoryNames": {
                                "/shop_categories/dungeon": "地下城",
                                "/shop_categories/general": "杂货",
                                "/shop_categories/tester": "测试"
                            },
                            "actionNames": {
                                "/actions/milking/cow": "奶牛",
                                "/actions/milking/verdant_cow": "翠绿奶牛",
                                "/actions/milking/azure_cow": "蔚蓝奶牛",
                                "/actions/milking/burble_cow": "深紫奶牛",
                                "/actions/milking/crimson_cow": "绛红奶牛",
                                "/actions/milking/unicow": "彩虹奶牛",
                                "/actions/milking/holy_cow": "神圣奶牛",
                                "/actions/foraging/egg": "鸡蛋",
                                "/actions/foraging/wheat": "小麦",
                                "/actions/foraging/sugar": "糖",
                                "/actions/foraging/cotton": "棉花",
                                "/actions/foraging/farmland": "翠野农场",
                                "/actions/foraging/blueberry": "蓝莓",
                                "/actions/foraging/apple": "苹果",
                                "/actions/foraging/arabica_coffee_bean": "低级咖啡豆",
                                "/actions/foraging/flax": "亚麻",
                                "/actions/foraging/shimmering_lake": "波光湖泊",
                                "/actions/foraging/blackberry": "黑莓",
                                "/actions/foraging/orange": "橙子",
                                "/actions/foraging/robusta_coffee_bean": "中级咖啡豆",
                                "/actions/foraging/misty_forest": "迷雾森林",
                                "/actions/foraging/strawberry": "草莓",
                                "/actions/foraging/plum": "李子",
                                "/actions/foraging/liberica_coffee_bean": "高级咖啡豆",
                                "/actions/foraging/bamboo_branch": "竹子",
                                "/actions/foraging/burble_beach": "深紫沙滩",
                                "/actions/foraging/mooberry": "哞莓",
                                "/actions/foraging/peach": "桃子",
                                "/actions/foraging/excelsa_coffee_bean": "特级咖啡豆",
                                "/actions/foraging/cocoon": "蚕茧",
                                "/actions/foraging/silly_cow_valley": "傻牛山谷",
                                "/actions/foraging/marsberry": "火星莓",
                                "/actions/foraging/dragon_fruit": "火龙果",
                                "/actions/foraging/fieriosa_coffee_bean": "火山咖啡豆",
                                "/actions/foraging/olympus_mons": "奥林匹斯山",
                                "/actions/foraging/spaceberry": "太空莓",
                                "/actions/foraging/star_fruit": "杨桃",
                                "/actions/foraging/spacia_coffee_bean": "太空咖啡豆",
                                "/actions/foraging/radiant_fiber": "光辉纤维",
                                "/actions/foraging/asteroid_belt": "小行星带",
                                "/actions/woodcutting/tree": "树",
                                "/actions/woodcutting/birch_tree": "桦树",
                                "/actions/woodcutting/cedar_tree": "雪松树",
                                "/actions/woodcutting/purpleheart_tree": "紫心树",
                                "/actions/woodcutting/ginkgo_tree": "银杏树",
                                "/actions/woodcutting/redwood_tree": "红杉树",
                                "/actions/woodcutting/arcane_tree": "奥秘树",
                                "/actions/cheesesmithing/cheese": "奶酪",
                                "/actions/cheesesmithing/cheese_boots": "奶酪靴",
                                "/actions/cheesesmithing/cheese_gauntlets": "奶酪护手",
                                "/actions/cheesesmithing/cheese_sword": "奶酪剑",
                                "/actions/cheesesmithing/cheese_brush": "奶酪刷子",
                                "/actions/cheesesmithing/cheese_shears": "奶酪剪刀",
                                "/actions/cheesesmithing/cheese_hatchet": "奶酪斧头",
                                "/actions/cheesesmithing/cheese_spear": "奶酪长枪",
                                "/actions/cheesesmithing/cheese_hammer": "奶酪锤子",
                                "/actions/cheesesmithing/cheese_chisel": "奶酪凿子",
                                "/actions/cheesesmithing/cheese_needle": "奶酪针",
                                "/actions/cheesesmithing/cheese_spatula": "奶酪锅铲",
                                "/actions/cheesesmithing/cheese_pot": "奶酪壶",
                                "/actions/cheesesmithing/cheese_mace": "奶酪钉头锤",
                                "/actions/cheesesmithing/cheese_alembic": "奶酪蒸馏器",
                                "/actions/cheesesmithing/cheese_enhancer": "奶酪强化器",
                                "/actions/cheesesmithing/cheese_helmet": "奶酪头盔",
                                "/actions/cheesesmithing/cheese_buckler": "奶酪圆盾",
                                "/actions/cheesesmithing/cheese_bulwark": "奶酪重盾",
                                "/actions/cheesesmithing/cheese_plate_legs": "奶酪腿甲",
                                "/actions/cheesesmithing/cheese_plate_body": "奶酪胸甲",
                                "/actions/cheesesmithing/verdant_cheese": "翠绿奶酪",
                                "/actions/cheesesmithing/verdant_boots": "翠绿靴",
                                "/actions/cheesesmithing/verdant_gauntlets": "翠绿护手",
                                "/actions/cheesesmithing/verdant_sword": "翠绿剑",
                                "/actions/cheesesmithing/verdant_brush": "翠绿刷子",
                                "/actions/cheesesmithing/verdant_shears": "翠绿剪刀",
                                "/actions/cheesesmithing/verdant_hatchet": "翠绿斧头",
                                "/actions/cheesesmithing/verdant_spear": "翠绿长枪",
                                "/actions/cheesesmithing/verdant_hammer": "翠绿锤子",
                                "/actions/cheesesmithing/verdant_chisel": "翠绿凿子",
                                "/actions/cheesesmithing/verdant_needle": "翠绿针",
                                "/actions/cheesesmithing/verdant_spatula": "翠绿锅铲",
                                "/actions/cheesesmithing/verdant_pot": "翠绿壶",
                                "/actions/cheesesmithing/verdant_mace": "翠绿钉头锤",
                                "/actions/cheesesmithing/snake_fang_dirk": "蛇牙短剑",
                                "/actions/cheesesmithing/verdant_alembic": "翠绿蒸馏器",
                                "/actions/cheesesmithing/verdant_enhancer": "翠绿强化器",
                                "/actions/cheesesmithing/verdant_helmet": "翠绿头盔",
                                "/actions/cheesesmithing/verdant_buckler": "翠绿圆盾",
                                "/actions/cheesesmithing/verdant_bulwark": "翠绿重盾",
                                "/actions/cheesesmithing/verdant_plate_legs": "翠绿腿甲",
                                "/actions/cheesesmithing/verdant_plate_body": "翠绿胸甲",
                                "/actions/cheesesmithing/azure_cheese": "蔚蓝奶酪",
                                "/actions/cheesesmithing/azure_boots": "蔚蓝靴",
                                "/actions/cheesesmithing/azure_gauntlets": "蔚蓝护手",
                                "/actions/cheesesmithing/azure_sword": "蔚蓝剑",
                                "/actions/cheesesmithing/azure_brush": "蔚蓝刷子",
                                "/actions/cheesesmithing/azure_shears": "蔚蓝剪刀",
                                "/actions/cheesesmithing/azure_hatchet": "蔚蓝斧头",
                                "/actions/cheesesmithing/azure_spear": "蔚蓝长枪",
                                "/actions/cheesesmithing/azure_hammer": "蔚蓝锤子",
                                "/actions/cheesesmithing/azure_chisel": "蔚蓝凿子",
                                "/actions/cheesesmithing/azure_needle": "蔚蓝针",
                                "/actions/cheesesmithing/azure_spatula": "蔚蓝锅铲",
                                "/actions/cheesesmithing/azure_pot": "蔚蓝壶",
                                "/actions/cheesesmithing/azure_mace": "蔚蓝钉头锤",
                                "/actions/cheesesmithing/pincer_gloves": "蟹钳手套",
                                "/actions/cheesesmithing/azure_alembic": "蔚蓝蒸馏器",
                                "/actions/cheesesmithing/azure_enhancer": "蔚蓝强化器",
                                "/actions/cheesesmithing/azure_helmet": "蔚蓝头盔",
                                "/actions/cheesesmithing/azure_buckler": "蔚蓝圆盾",
                                "/actions/cheesesmithing/azure_bulwark": "蔚蓝重盾",
                                "/actions/cheesesmithing/azure_plate_legs": "蔚蓝腿甲",
                                "/actions/cheesesmithing/snail_shell_helmet": "蜗牛壳头盔",
                                "/actions/cheesesmithing/azure_plate_body": "蔚蓝胸甲",
                                "/actions/cheesesmithing/turtle_shell_legs": "龟壳腿甲",
                                "/actions/cheesesmithing/turtle_shell_body": "龟壳胸甲",
                                "/actions/cheesesmithing/burble_cheese": "深紫奶酪",
                                "/actions/cheesesmithing/burble_boots": "深紫靴",
                                "/actions/cheesesmithing/burble_gauntlets": "深紫护手",
                                "/actions/cheesesmithing/burble_sword": "深紫剑",
                                "/actions/cheesesmithing/burble_brush": "深紫刷子",
                                "/actions/cheesesmithing/burble_shears": "深紫剪刀",
                                "/actions/cheesesmithing/burble_hatchet": "深紫斧头",
                                "/actions/cheesesmithing/burble_spear": "深紫长枪",
                                "/actions/cheesesmithing/burble_hammer": "深紫锤子",
                                "/actions/cheesesmithing/burble_chisel": "深紫凿子",
                                "/actions/cheesesmithing/burble_needle": "深紫针",
                                "/actions/cheesesmithing/burble_spatula": "深紫锅铲",
                                "/actions/cheesesmithing/burble_pot": "深紫壶",
                                "/actions/cheesesmithing/burble_mace": "深紫钉头锤",
                                "/actions/cheesesmithing/burble_alembic": "深紫蒸馏器",
                                "/actions/cheesesmithing/burble_enhancer": "深紫强化器",
                                "/actions/cheesesmithing/burble_helmet": "深紫头盔",
                                "/actions/cheesesmithing/burble_buckler": "深紫圆盾",
                                "/actions/cheesesmithing/burble_bulwark": "深紫重盾",
                                "/actions/cheesesmithing/burble_plate_legs": "深紫腿甲",
                                "/actions/cheesesmithing/burble_plate_body": "深紫胸甲",
                                "/actions/cheesesmithing/crimson_cheese": "绛红奶酪",
                                "/actions/cheesesmithing/crimson_boots": "绛红靴",
                                "/actions/cheesesmithing/crimson_gauntlets": "绛红护手",
                                "/actions/cheesesmithing/crimson_sword": "绛红剑",
                                "/actions/cheesesmithing/crimson_brush": "绛红刷子",
                                "/actions/cheesesmithing/crimson_shears": "绛红剪刀",
                                "/actions/cheesesmithing/crimson_hatchet": "绛红斧头",
                                "/actions/cheesesmithing/crimson_spear": "绛红长枪",
                                "/actions/cheesesmithing/crimson_hammer": "绛红锤子",
                                "/actions/cheesesmithing/crimson_chisel": "绛红凿子",
                                "/actions/cheesesmithing/crimson_needle": "绛红针",
                                "/actions/cheesesmithing/crimson_spatula": "绛红锅铲",
                                "/actions/cheesesmithing/crimson_pot": "绛红壶",
                                "/actions/cheesesmithing/crimson_mace": "绛红钉头锤",
                                "/actions/cheesesmithing/crimson_alembic": "绛红蒸馏器",
                                "/actions/cheesesmithing/crimson_enhancer": "绛红强化器",
                                "/actions/cheesesmithing/crimson_helmet": "绛红头盔",
                                "/actions/cheesesmithing/crimson_buckler": "绛红圆盾",
                                "/actions/cheesesmithing/crimson_bulwark": "绛红重盾",
                                "/actions/cheesesmithing/crimson_plate_legs": "绛红腿甲",
                                "/actions/cheesesmithing/vision_helmet": "视觉头盔",
                                "/actions/cheesesmithing/vision_shield": "视觉盾",
                                "/actions/cheesesmithing/crimson_plate_body": "绛红胸甲",
                                "/actions/cheesesmithing/rainbow_cheese": "彩虹奶酪",
                                "/actions/cheesesmithing/rainbow_boots": "彩虹靴",
                                "/actions/cheesesmithing/black_bear_shoes": "黑熊鞋",
                                "/actions/cheesesmithing/grizzly_bear_shoes": "棕熊鞋",
                                "/actions/cheesesmithing/polar_bear_shoes": "北极熊鞋",
                                "/actions/cheesesmithing/rainbow_gauntlets": "彩虹护手",
                                "/actions/cheesesmithing/rainbow_sword": "彩虹剑",
                                "/actions/cheesesmithing/panda_gloves": "熊猫手套",
                                "/actions/cheesesmithing/rainbow_brush": "彩虹刷子",
                                "/actions/cheesesmithing/rainbow_shears": "彩虹剪刀",
                                "/actions/cheesesmithing/rainbow_hatchet": "彩虹斧头",
                                "/actions/cheesesmithing/rainbow_spear": "彩虹长枪",
                                "/actions/cheesesmithing/rainbow_hammer": "彩虹锤子",
                                "/actions/cheesesmithing/rainbow_chisel": "彩虹凿子",
                                "/actions/cheesesmithing/rainbow_needle": "彩虹针",
                                "/actions/cheesesmithing/rainbow_spatula": "彩虹锅铲",
                                "/actions/cheesesmithing/rainbow_pot": "彩虹壶",
                                "/actions/cheesesmithing/rainbow_mace": "彩虹钉头锤",
                                "/actions/cheesesmithing/rainbow_alembic": "彩虹蒸馏器",
                                "/actions/cheesesmithing/rainbow_enhancer": "彩虹强化器",
                                "/actions/cheesesmithing/rainbow_helmet": "彩虹头盔",
                                "/actions/cheesesmithing/rainbow_buckler": "彩虹圆盾",
                                "/actions/cheesesmithing/rainbow_bulwark": "彩虹重盾",
                                "/actions/cheesesmithing/rainbow_plate_legs": "彩虹腿甲",
                                "/actions/cheesesmithing/rainbow_plate_body": "彩虹胸甲",
                                "/actions/cheesesmithing/holy_cheese": "神圣奶酪",
                                "/actions/cheesesmithing/holy_boots": "神圣靴",
                                "/actions/cheesesmithing/holy_gauntlets": "神圣护手",
                                "/actions/cheesesmithing/holy_sword": "神圣剑",
                                "/actions/cheesesmithing/holy_brush": "神圣刷子",
                                "/actions/cheesesmithing/holy_shears": "神圣剪刀",
                                "/actions/cheesesmithing/holy_hatchet": "神圣斧头",
                                "/actions/cheesesmithing/holy_spear": "神圣长枪",
                                "/actions/cheesesmithing/holy_hammer": "神圣锤子",
                                "/actions/cheesesmithing/holy_chisel": "神圣凿子",
                                "/actions/cheesesmithing/holy_needle": "神圣针",
                                "/actions/cheesesmithing/holy_spatula": "神圣锅铲",
                                "/actions/cheesesmithing/holy_pot": "神圣壶",
                                "/actions/cheesesmithing/holy_mace": "神圣钉头锤",
                                "/actions/cheesesmithing/magnetic_gloves": "磁力手套",
                                "/actions/cheesesmithing/stalactite_spear": "石钟长枪",
                                "/actions/cheesesmithing/granite_bludgeon": "花岗岩大棒",
                                "/actions/cheesesmithing/vampire_fang_dirk": "吸血鬼短剑",
                                "/actions/cheesesmithing/werewolf_slasher": "狼人关刀",
                                "/actions/cheesesmithing/holy_alembic": "神圣蒸馏器",
                                "/actions/cheesesmithing/holy_enhancer": "神圣强化器",
                                "/actions/cheesesmithing/holy_helmet": "神圣头盔",
                                "/actions/cheesesmithing/holy_buckler": "神圣圆盾",
                                "/actions/cheesesmithing/holy_bulwark": "神圣重盾",
                                "/actions/cheesesmithing/holy_plate_legs": "神圣腿甲",
                                "/actions/cheesesmithing/holy_plate_body": "神圣胸甲",
                                "/actions/cheesesmithing/celestial_brush": "星空刷子",
                                "/actions/cheesesmithing/celestial_shears": "星空剪刀",
                                "/actions/cheesesmithing/celestial_hatchet": "星空斧头",
                                "/actions/cheesesmithing/celestial_hammer": "星空锤子",
                                "/actions/cheesesmithing/celestial_chisel": "星空凿子",
                                "/actions/cheesesmithing/celestial_needle": "星空针",
                                "/actions/cheesesmithing/celestial_spatula": "星空锅铲",
                                "/actions/cheesesmithing/celestial_pot": "星空壶",
                                "/actions/cheesesmithing/celestial_alembic": "星空蒸馏器",
                                "/actions/cheesesmithing/celestial_enhancer": "星空强化器",
                                "/actions/cheesesmithing/colossus_plate_body": "巨像胸甲",
                                "/actions/cheesesmithing/colossus_plate_legs": "巨像腿甲",
                                "/actions/cheesesmithing/demonic_plate_body": "恶魔胸甲",
                                "/actions/cheesesmithing/demonic_plate_legs": "恶魔腿甲",
                                "/actions/cheesesmithing/spiked_bulwark": "尖刺重盾",
                                "/actions/cheesesmithing/dodocamel_gauntlets": "渡渡驼护手",
                                "/actions/cheesesmithing/corsair_helmet": "掠夺者头盔",
                                "/actions/cheesesmithing/knights_aegis": "骑士盾",
                                "/actions/cheesesmithing/anchorbound_plate_legs": "锚定腿甲",
                                "/actions/cheesesmithing/maelstrom_plate_legs": "怒涛腿甲",
                                "/actions/cheesesmithing/griffin_bulwark": "狮鹫重盾",
                                "/actions/cheesesmithing/furious_spear": "狂怒长枪",
                                "/actions/cheesesmithing/chaotic_flail": "混沌连枷",
                                "/actions/cheesesmithing/regal_sword": "君王之剑",
                                "/actions/cheesesmithing/anchorbound_plate_body": "锚定胸甲",
                                "/actions/cheesesmithing/maelstrom_plate_body": "怒涛胸甲",
                                "/actions/cheesesmithing/dodocamel_gauntlets_refined": "渡渡驼护手(精)",
                                "/actions/cheesesmithing/corsair_helmet_refined": "掠夺者头盔(精)",
                                "/actions/cheesesmithing/knights_aegis_refined": "骑士盾(精)",
                                "/actions/cheesesmithing/anchorbound_plate_legs_refined": "锚定腿甲(精)",
                                "/actions/cheesesmithing/maelstrom_plate_legs_refined": "怒涛腿甲(精)",
                                "/actions/cheesesmithing/griffin_bulwark_refined": "狮鹫重盾(精)",
                                "/actions/cheesesmithing/furious_spear_refined": "狂怒长枪(精)",
                                "/actions/cheesesmithing/chaotic_flail_refined": "混沌连枷(精)",
                                "/actions/cheesesmithing/regal_sword_refined": "君王之剑(精)",
                                "/actions/cheesesmithing/anchorbound_plate_body_refined": "锚定胸甲(精)",
                                "/actions/cheesesmithing/maelstrom_plate_body_refined": "怒涛胸甲(精)",
                                "/actions/crafting/lumber": "木板",
                                "/actions/crafting/wooden_crossbow": "木弩",
                                "/actions/crafting/wooden_water_staff": "木制水法杖",
                                "/actions/crafting/basic_task_badge": "基础任务徽章",
                                "/actions/crafting/advanced_task_badge": "高级任务徽章",
                                "/actions/crafting/expert_task_badge": "专家任务徽章",
                                "/actions/crafting/wooden_shield": "木盾",
                                "/actions/crafting/wooden_nature_staff": "木制自然法杖",
                                "/actions/crafting/wooden_bow": "木弓",
                                "/actions/crafting/wooden_fire_staff": "木制火法杖",
                                "/actions/crafting/birch_lumber": "白桦木板",
                                "/actions/crafting/birch_crossbow": "桦木弩",
                                "/actions/crafting/birch_water_staff": "桦木水法杖",
                                "/actions/crafting/crushed_pearl": "珍珠碎片",
                                "/actions/crafting/birch_shield": "桦木盾",
                                "/actions/crafting/birch_nature_staff": "桦木自然法杖",
                                "/actions/crafting/birch_bow": "桦木弓",
                                "/actions/crafting/ring_of_gathering": "采集戒指",
                                "/actions/crafting/birch_fire_staff": "桦木火法杖",
                                "/actions/crafting/earrings_of_gathering": "采集耳环",
                                "/actions/crafting/cedar_lumber": "雪松木板",
                                "/actions/crafting/cedar_crossbow": "雪松弩",
                                "/actions/crafting/cedar_water_staff": "雪松水法杖",
                                "/actions/crafting/basic_milking_charm": "基础挤奶护符",
                                "/actions/crafting/basic_foraging_charm": "基础采摘护符",
                                "/actions/crafting/basic_woodcutting_charm": "基础伐木护符",
                                "/actions/crafting/basic_cheesesmithing_charm": "基础奶酪锻造护符",
                                "/actions/crafting/basic_crafting_charm": "基础制作护符",
                                "/actions/crafting/basic_tailoring_charm": "基础缝纫护符",
                                "/actions/crafting/basic_cooking_charm": "基础烹饪护符",
                                "/actions/crafting/basic_brewing_charm": "基础冲泡护符",
                                "/actions/crafting/basic_alchemy_charm": "基础炼金护符",
                                "/actions/crafting/basic_enhancing_charm": "基础强化护符",
                                "/actions/crafting/cedar_shield": "雪松盾",
                                "/actions/crafting/cedar_nature_staff": "雪松自然法杖",
                                "/actions/crafting/cedar_bow": "雪松弓",
                                "/actions/crafting/crushed_amber": "琥珀碎片",
                                "/actions/crafting/cedar_fire_staff": "雪松火法杖",
                                "/actions/crafting/ring_of_essence_find": "精华发现戒指",
                                "/actions/crafting/earrings_of_essence_find": "精华发现耳环",
                                "/actions/crafting/necklace_of_efficiency": "效率项链",
                                "/actions/crafting/purpleheart_lumber": "紫心木板",
                                "/actions/crafting/purpleheart_crossbow": "紫心弩",
                                "/actions/crafting/purpleheart_water_staff": "紫心水法杖",
                                "/actions/crafting/purpleheart_shield": "紫心盾",
                                "/actions/crafting/purpleheart_nature_staff": "紫心自然法杖",
                                "/actions/crafting/purpleheart_bow": "紫心弓",
                                "/actions/crafting/advanced_milking_charm": "高级挤奶护符",
                                "/actions/crafting/advanced_foraging_charm": "高级采摘护符",
                                "/actions/crafting/advanced_woodcutting_charm": "高级伐木护符",
                                "/actions/crafting/advanced_cheesesmithing_charm": "高级奶酪锻造护符",
                                "/actions/crafting/advanced_crafting_charm": "高级制作护符",
                                "/actions/crafting/advanced_tailoring_charm": "高级缝纫护符",
                                "/actions/crafting/advanced_cooking_charm": "高级烹饪护符",
                                "/actions/crafting/advanced_brewing_charm": "高级冲泡护符",
                                "/actions/crafting/advanced_alchemy_charm": "高级炼金护符",
                                "/actions/crafting/advanced_enhancing_charm": "高级强化护符",
                                "/actions/crafting/advanced_stamina_charm": "高级耐力护符",
                                "/actions/crafting/advanced_intelligence_charm": "高级智力护符",
                                "/actions/crafting/advanced_attack_charm": "高级攻击护符",
                                "/actions/crafting/advanced_defense_charm": "高级防御护符",
                                "/actions/crafting/advanced_melee_charm": "高级近战护符",
                                "/actions/crafting/advanced_ranged_charm": "高级远程护符",
                                "/actions/crafting/advanced_magic_charm": "高级魔法护符",
                                "/actions/crafting/crushed_garnet": "石榴石碎片",
                                "/actions/crafting/crushed_jade": "翡翠碎片",
                                "/actions/crafting/crushed_amethyst": "紫水晶碎片",
                                "/actions/crafting/catalyst_of_coinification": "点金催化剂",
                                "/actions/crafting/treant_shield": "树人盾",
                                "/actions/crafting/purpleheart_fire_staff": "紫心火法杖",
                                "/actions/crafting/ring_of_regeneration": "恢复戒指",
                                "/actions/crafting/earrings_of_regeneration": "恢复耳环",
                                "/actions/crafting/fighter_necklace": "战士项链",
                                "/actions/crafting/ginkgo_lumber": "银杏木板",
                                "/actions/crafting/ginkgo_crossbow": "银杏弩",
                                "/actions/crafting/ginkgo_water_staff": "银杏水法杖",
                                "/actions/crafting/ring_of_armor": "护甲戒指",
                                "/actions/crafting/catalyst_of_decomposition": "分解催化剂",
                                "/actions/crafting/ginkgo_shield": "银杏盾",
                                "/actions/crafting/earrings_of_armor": "护甲耳环",
                                "/actions/crafting/ginkgo_nature_staff": "银杏自然法杖",
                                "/actions/crafting/ranger_necklace": "射手项链",
                                "/actions/crafting/ginkgo_bow": "银杏弓",
                                "/actions/crafting/ring_of_resistance": "抗性戒指",
                                "/actions/crafting/crushed_moonstone": "月亮石碎片",
                                "/actions/crafting/ginkgo_fire_staff": "银杏火法杖",
                                "/actions/crafting/earrings_of_resistance": "抗性耳环",
                                "/actions/crafting/wizard_necklace": "巫师项链",
                                "/actions/crafting/ring_of_rare_find": "稀有发现戒指",
                                "/actions/crafting/expert_milking_charm": "专家挤奶护符",
                                "/actions/crafting/expert_foraging_charm": "专家采摘护符",
                                "/actions/crafting/expert_woodcutting_charm": "专家伐木护符",
                                "/actions/crafting/expert_cheesesmithing_charm": "专家奶酪锻造护符",
                                "/actions/crafting/expert_crafting_charm": "专家制作护符",
                                "/actions/crafting/expert_tailoring_charm": "专家缝纫护符",
                                "/actions/crafting/expert_cooking_charm": "专家烹饪护符",
                                "/actions/crafting/expert_brewing_charm": "专家冲泡护符",
                                "/actions/crafting/expert_alchemy_charm": "专家炼金护符",
                                "/actions/crafting/expert_enhancing_charm": "专家强化护符",
                                "/actions/crafting/expert_stamina_charm": "专家耐力护符",
                                "/actions/crafting/expert_intelligence_charm": "专家智力护符",
                                "/actions/crafting/expert_attack_charm": "专家攻击护符",
                                "/actions/crafting/expert_defense_charm": "专家防御护符",
                                "/actions/crafting/expert_melee_charm": "专家近战护符",
                                "/actions/crafting/expert_ranged_charm": "专家远程护符",
                                "/actions/crafting/expert_magic_charm": "专家魔法护符",
                                "/actions/crafting/catalyst_of_transmutation": "转化催化剂",
                                "/actions/crafting/earrings_of_rare_find": "稀有发现耳环",
                                "/actions/crafting/necklace_of_wisdom": "经验项链",
                                "/actions/crafting/redwood_lumber": "红杉木板",
                                "/actions/crafting/redwood_crossbow": "红杉弩",
                                "/actions/crafting/redwood_water_staff": "红杉水法杖",
                                "/actions/crafting/redwood_shield": "红杉盾",
                                "/actions/crafting/redwood_nature_staff": "红杉自然法杖",
                                "/actions/crafting/redwood_bow": "红杉弓",
                                "/actions/crafting/crushed_sunstone": "太阳石碎片",
                                "/actions/crafting/chimerical_entry_key": "奇幻钥匙",
                                "/actions/crafting/chimerical_chest_key": "奇幻宝箱钥匙",
                                "/actions/crafting/eye_watch": "掌上监工",
                                "/actions/crafting/watchful_relic": "警戒遗物",
                                "/actions/crafting/redwood_fire_staff": "红杉火法杖",
                                "/actions/crafting/ring_of_critical_strike": "暴击戒指",
                                "/actions/crafting/mirror_of_protection": "保护之镜",
                                "/actions/crafting/earrings_of_critical_strike": "暴击耳环",
                                "/actions/crafting/necklace_of_speed": "速度项链",
                                "/actions/crafting/arcane_lumber": "神秘木板",
                                "/actions/crafting/arcane_crossbow": "神秘弩",
                                "/actions/crafting/arcane_water_staff": "神秘水法杖",
                                "/actions/crafting/master_milking_charm": "大师挤奶护符",
                                "/actions/crafting/master_foraging_charm": "大师采摘护符",
                                "/actions/crafting/master_woodcutting_charm": "大师伐木护符",
                                "/actions/crafting/master_cheesesmithing_charm": "大师奶酪锻造护符",
                                "/actions/crafting/master_crafting_charm": "大师制作护符",
                                "/actions/crafting/master_tailoring_charm": "大师缝纫护符",
                                "/actions/crafting/master_cooking_charm": "大师烹饪护符",
                                "/actions/crafting/master_brewing_charm": "大师冲泡护符",
                                "/actions/crafting/master_alchemy_charm": "大师炼金护符",
                                "/actions/crafting/master_enhancing_charm": "大师强化护符",
                                "/actions/crafting/master_stamina_charm": "大师耐力护符",
                                "/actions/crafting/master_intelligence_charm": "大师智力护符",
                                "/actions/crafting/master_attack_charm": "大师攻击护符",
                                "/actions/crafting/master_defense_charm": "大师防御护符",
                                "/actions/crafting/master_melee_charm": "大师近战护符",
                                "/actions/crafting/master_ranged_charm": "大师远程护符",
                                "/actions/crafting/master_magic_charm": "大师魔法护符",
                                "/actions/crafting/sinister_entry_key": "阴森钥匙",
                                "/actions/crafting/sinister_chest_key": "阴森宝箱钥匙",
                                "/actions/crafting/arcane_shield": "神秘盾",
                                "/actions/crafting/arcane_nature_staff": "神秘自然法杖",
                                "/actions/crafting/manticore_shield": "蝎狮盾",
                                "/actions/crafting/arcane_bow": "神秘弓",
                                "/actions/crafting/enchanted_entry_key": "秘法钥匙",
                                "/actions/crafting/enchanted_chest_key": "秘法宝箱钥匙",
                                "/actions/crafting/pirate_entry_key": "海盗钥匙",
                                "/actions/crafting/pirate_chest_key": "海盗宝箱钥匙",
                                "/actions/crafting/arcane_fire_staff": "神秘火法杖",
                                "/actions/crafting/vampiric_bow": "吸血弓",
                                "/actions/crafting/soul_hunter_crossbow": "灵魂猎手弩",
                                "/actions/crafting/frost_staff": "冰霜法杖",
                                "/actions/crafting/infernal_battlestaff": "炼狱法杖",
                                "/actions/crafting/jackalope_staff": "鹿角兔之杖",
                                "/actions/crafting/philosophers_ring": "贤者戒指",
                                "/actions/crafting/crushed_philosophers_stone": "贤者之石碎片",
                                "/actions/crafting/philosophers_earrings": "贤者耳环",
                                "/actions/crafting/philosophers_necklace": "贤者项链",
                                "/actions/crafting/bishops_codex": "主教法典",
                                "/actions/crafting/cursed_bow": "咒怨之弓",
                                "/actions/crafting/sundering_crossbow": "裂空之弩",
                                "/actions/crafting/rippling_trident": "涟漪三叉戟",
                                "/actions/crafting/blooming_trident": "绽放三叉戟",
                                "/actions/crafting/blazing_trident": "炽焰三叉戟",
                                "/actions/crafting/grandmaster_milking_charm": "宗师挤奶护符",
                                "/actions/crafting/grandmaster_foraging_charm": "宗师采摘护符",
                                "/actions/crafting/grandmaster_woodcutting_charm": "宗师伐木护符",
                                "/actions/crafting/grandmaster_cheesesmithing_charm": "宗师奶酪锻造护符",
                                "/actions/crafting/grandmaster_crafting_charm": "宗师制作护符",
                                "/actions/crafting/grandmaster_tailoring_charm": "宗师缝纫护符",
                                "/actions/crafting/grandmaster_cooking_charm": "宗师烹饪护符",
                                "/actions/crafting/grandmaster_brewing_charm": "宗师冲泡护符",
                                "/actions/crafting/grandmaster_alchemy_charm": "宗师炼金护符",
                                "/actions/crafting/grandmaster_enhancing_charm": "宗师强化护符",
                                "/actions/crafting/grandmaster_stamina_charm": "宗师耐力护符",
                                "/actions/crafting/grandmaster_intelligence_charm": "宗师智力护符",
                                "/actions/crafting/grandmaster_attack_charm": "宗师攻击护符",
                                "/actions/crafting/grandmaster_defense_charm": "宗师防御护符",
                                "/actions/crafting/grandmaster_melee_charm": "宗师近战护符",
                                "/actions/crafting/grandmaster_ranged_charm": "宗师远程护符",
                                "/actions/crafting/grandmaster_magic_charm": "宗师魔法护符",
                                "/actions/crafting/bishops_codex_refined": "主教法典(精)",
                                "/actions/crafting/cursed_bow_refined": "咒怨之弓(精)",
                                "/actions/crafting/sundering_crossbow_refined": "裂空之弩(精)",
                                "/actions/crafting/rippling_trident_refined": "涟漪三叉戟(精)",
                                "/actions/crafting/blooming_trident_refined": "绽放三叉戟(精)",
                                "/actions/crafting/blazing_trident_refined": "炽焰三叉戟(精)",
                                "/actions/tailoring/rough_leather": "粗糙皮革",
                                "/actions/tailoring/cotton_fabric": "棉花布料",
                                "/actions/tailoring/rough_boots": "粗糙靴",
                                "/actions/tailoring/cotton_boots": "棉靴",
                                "/actions/tailoring/rough_bracers": "粗糙护腕",
                                "/actions/tailoring/cotton_gloves": "棉手套",
                                "/actions/tailoring/small_pouch": "小袋子",
                                "/actions/tailoring/rough_hood": "粗糙兜帽",
                                "/actions/tailoring/cotton_hat": "棉帽",
                                "/actions/tailoring/rough_chaps": "粗糙皮裤",
                                "/actions/tailoring/cotton_robe_bottoms": "棉袍裙",
                                "/actions/tailoring/rough_tunic": "粗糙皮衣",
                                "/actions/tailoring/cotton_robe_top": "棉袍服",
                                "/actions/tailoring/reptile_leather": "爬行动物皮革",
                                "/actions/tailoring/linen_fabric": "亚麻布料",
                                "/actions/tailoring/reptile_boots": "爬行动物靴",
                                "/actions/tailoring/linen_boots": "亚麻靴",
                                "/actions/tailoring/reptile_bracers": "爬行动物护腕",
                                "/actions/tailoring/linen_gloves": "亚麻手套",
                                "/actions/tailoring/reptile_hood": "爬行动物兜帽",
                                "/actions/tailoring/linen_hat": "亚麻帽",
                                "/actions/tailoring/reptile_chaps": "爬行动物皮裤",
                                "/actions/tailoring/linen_robe_bottoms": "亚麻袍裙",
                                "/actions/tailoring/medium_pouch": "中袋子",
                                "/actions/tailoring/reptile_tunic": "爬行动物皮衣",
                                "/actions/tailoring/linen_robe_top": "亚麻袍服",
                                "/actions/tailoring/shoebill_shoes": "鲸头鹳鞋",
                                "/actions/tailoring/gobo_leather": "哥布林皮革",
                                "/actions/tailoring/bamboo_fabric": "竹子布料",
                                "/actions/tailoring/gobo_boots": "哥布林靴",
                                "/actions/tailoring/bamboo_boots": "竹靴",
                                "/actions/tailoring/gobo_bracers": "哥布林护腕",
                                "/actions/tailoring/bamboo_gloves": "竹手套",
                                "/actions/tailoring/gobo_hood": "哥布林兜帽",
                                "/actions/tailoring/bamboo_hat": "竹帽",
                                "/actions/tailoring/gobo_chaps": "哥布林皮裤",
                                "/actions/tailoring/bamboo_robe_bottoms": "竹袍裙",
                                "/actions/tailoring/large_pouch": "大袋子",
                                "/actions/tailoring/gobo_tunic": "哥布林皮衣",
                                "/actions/tailoring/bamboo_robe_top": "竹袍服",
                                "/actions/tailoring/marine_tunic": "海洋皮衣",
                                "/actions/tailoring/marine_chaps": "航海皮裤",
                                "/actions/tailoring/icy_robe_top": "冰霜袍服",
                                "/actions/tailoring/icy_robe_bottoms": "冰霜袍裙",
                                "/actions/tailoring/flaming_robe_top": "烈焰袍服",
                                "/actions/tailoring/flaming_robe_bottoms": "烈焰袍裙",
                                "/actions/tailoring/beast_leather": "野兽皮革",
                                "/actions/tailoring/silk_fabric": "丝绸",
                                "/actions/tailoring/beast_boots": "野兽靴",
                                "/actions/tailoring/silk_boots": "丝靴",
                                "/actions/tailoring/beast_bracers": "野兽护腕",
                                "/actions/tailoring/silk_gloves": "丝手套",
                                "/actions/tailoring/collectors_boots": "收藏家靴",
                                "/actions/tailoring/sighted_bracers": "瞄准护腕",
                                "/actions/tailoring/beast_hood": "野兽兜帽",
                                "/actions/tailoring/silk_hat": "丝帽",
                                "/actions/tailoring/beast_chaps": "野兽皮裤",
                                "/actions/tailoring/silk_robe_bottoms": "丝绸袍裙",
                                "/actions/tailoring/centaur_boots": "半人马靴",
                                "/actions/tailoring/sorcerer_boots": "巫师靴",
                                "/actions/tailoring/giant_pouch": "巨大袋子",
                                "/actions/tailoring/beast_tunic": "野兽皮衣",
                                "/actions/tailoring/silk_robe_top": "丝绸袍服",
                                "/actions/tailoring/red_culinary_hat": "红色厨师帽",
                                "/actions/tailoring/luna_robe_top": "月神袍服",
                                "/actions/tailoring/luna_robe_bottoms": "月神袍裙",
                                "/actions/tailoring/umbral_leather": "暗影皮革",
                                "/actions/tailoring/radiant_fabric": "光辉布料",
                                "/actions/tailoring/umbral_boots": "暗影靴",
                                "/actions/tailoring/radiant_boots": "光辉靴",
                                "/actions/tailoring/umbral_bracers": "暗影护腕",
                                "/actions/tailoring/radiant_gloves": "光辉手套",
                                "/actions/tailoring/enchanted_gloves": "附魔手套",
                                "/actions/tailoring/fluffy_red_hat": "蓬松红帽子",
                                "/actions/tailoring/chrono_gloves": "时空手套",
                                "/actions/tailoring/umbral_hood": "暗影兜帽",
                                "/actions/tailoring/radiant_hat": "光辉帽",
                                "/actions/tailoring/umbral_chaps": "暗影皮裤",
                                "/actions/tailoring/radiant_robe_bottoms": "光辉袍裙",
                                "/actions/tailoring/umbral_tunic": "暗影皮衣",
                                "/actions/tailoring/radiant_robe_top": "光辉袍服",
                                "/actions/tailoring/revenant_chaps": "亡灵皮裤",
                                "/actions/tailoring/griffin_chaps": "狮鹫皮裤",
                                "/actions/tailoring/dairyhands_top": "挤奶工上衣",
                                "/actions/tailoring/dairyhands_bottoms": "挤奶工下装",
                                "/actions/tailoring/foragers_top": "采摘者上衣",
                                "/actions/tailoring/foragers_bottoms": "采摘者下装",
                                "/actions/tailoring/lumberjacks_top": "伐木工上衣",
                                "/actions/tailoring/lumberjacks_bottoms": "伐木工下装",
                                "/actions/tailoring/cheesemakers_top": "奶酪师上衣",
                                "/actions/tailoring/cheesemakers_bottoms": "奶酪师下装",
                                "/actions/tailoring/crafters_top": "工匠上衣",
                                "/actions/tailoring/crafters_bottoms": "工匠下装",
                                "/actions/tailoring/tailors_top": "裁缝上衣",
                                "/actions/tailoring/tailors_bottoms": "裁缝下装",
                                "/actions/tailoring/chefs_top": "厨师上衣",
                                "/actions/tailoring/chefs_bottoms": "厨师下装",
                                "/actions/tailoring/brewers_top": "饮品师上衣",
                                "/actions/tailoring/brewers_bottoms": "饮品师下装",
                                "/actions/tailoring/alchemists_top": "炼金师上衣",
                                "/actions/tailoring/alchemists_bottoms": "炼金师下装",
                                "/actions/tailoring/enhancers_top": "强化师上衣",
                                "/actions/tailoring/enhancers_bottoms": "强化师下装",
                                "/actions/tailoring/revenant_tunic": "亡灵皮衣",
                                "/actions/tailoring/griffin_tunic": "狮鹫皮衣",
                                "/actions/tailoring/gluttonous_pouch": "贪食之袋",
                                "/actions/tailoring/guzzling_pouch": "暴饮之囊",
                                "/actions/tailoring/marksman_bracers": "神射护腕",
                                "/actions/tailoring/acrobatic_hood": "杂技师兜帽",
                                "/actions/tailoring/magicians_hat": "魔术师帽",
                                "/actions/tailoring/kraken_chaps": "克拉肯皮裤",
                                "/actions/tailoring/royal_water_robe_bottoms": "皇家水系袍裙",
                                "/actions/tailoring/royal_nature_robe_bottoms": "皇家自然系袍裙",
                                "/actions/tailoring/royal_fire_robe_bottoms": "皇家火系袍裙",
                                "/actions/tailoring/kraken_tunic": "克拉肯皮衣",
                                "/actions/tailoring/royal_water_robe_top": "皇家水系袍服",
                                "/actions/tailoring/royal_nature_robe_top": "皇家自然系袍服",
                                "/actions/tailoring/royal_fire_robe_top": "皇家火系袍服",
                                "/actions/tailoring/chimerical_quiver_refined": "奇幻箭袋(精)",
                                "/actions/tailoring/sinister_cape_refined": "阴森斗篷(精)",
                                "/actions/tailoring/enchanted_cloak_refined": "秘法披风(精)",
                                "/actions/tailoring/marksman_bracers_refined": "神射护腕(精)",
                                "/actions/tailoring/acrobatic_hood_refined": "杂技师兜帽(精)",
                                "/actions/tailoring/magicians_hat_refined": "魔术师帽(精)",
                                "/actions/tailoring/kraken_chaps_refined": "克拉肯皮裤(精)",
                                "/actions/tailoring/royal_water_robe_bottoms_refined": "皇家水系袍裙(精)",
                                "/actions/tailoring/royal_nature_robe_bottoms_refined": "皇家自然系袍裙(精)",
                                "/actions/tailoring/royal_fire_robe_bottoms_refined": "皇家火系袍裙(精)",
                                "/actions/tailoring/kraken_tunic_refined": "克拉肯皮衣(精)",
                                "/actions/tailoring/royal_water_robe_top_refined": "皇家水系袍服(精)",
                                "/actions/tailoring/royal_nature_robe_top_refined": "皇家自然系袍服(精)",
                                "/actions/tailoring/royal_fire_robe_top_refined": "皇家火系袍服(精)",
                                "/actions/cooking/donut": "甜甜圈",
                                "/actions/cooking/cupcake": "纸杯蛋糕",
                                "/actions/cooking/gummy": "软糖",
                                "/actions/cooking/yogurt": "酸奶",
                                "/actions/cooking/blueberry_donut": "蓝莓甜甜圈",
                                "/actions/cooking/blueberry_cake": "蓝莓蛋糕",
                                "/actions/cooking/apple_gummy": "苹果软糖",
                                "/actions/cooking/apple_yogurt": "苹果酸奶",
                                "/actions/cooking/blackberry_donut": "黑莓甜甜圈",
                                "/actions/cooking/blackberry_cake": "黑莓蛋糕",
                                "/actions/cooking/orange_gummy": "橙子软糖",
                                "/actions/cooking/orange_yogurt": "橙子酸奶",
                                "/actions/cooking/strawberry_donut": "草莓甜甜圈",
                                "/actions/cooking/strawberry_cake": "草莓蛋糕",
                                "/actions/cooking/plum_gummy": "李子软糖",
                                "/actions/cooking/plum_yogurt": "李子酸奶",
                                "/actions/cooking/mooberry_donut": "哞莓甜甜圈",
                                "/actions/cooking/mooberry_cake": "哞莓蛋糕",
                                "/actions/cooking/peach_gummy": "桃子软糖",
                                "/actions/cooking/peach_yogurt": "桃子酸奶",
                                "/actions/cooking/marsberry_donut": "火星莓甜甜圈",
                                "/actions/cooking/marsberry_cake": "火星莓蛋糕",
                                "/actions/cooking/dragon_fruit_gummy": "火龙果软糖",
                                "/actions/cooking/dragon_fruit_yogurt": "火龙果酸奶",
                                "/actions/cooking/spaceberry_donut": "太空莓甜甜圈",
                                "/actions/cooking/spaceberry_cake": "太空莓蛋糕",
                                "/actions/cooking/star_fruit_gummy": "杨桃软糖",
                                "/actions/cooking/star_fruit_yogurt": "杨桃酸奶",
                                "/actions/brewing/milking_tea": "挤奶茶",
                                "/actions/brewing/stamina_coffee": "耐力咖啡",
                                "/actions/brewing/foraging_tea": "采摘茶",
                                "/actions/brewing/intelligence_coffee": "智力咖啡",
                                "/actions/brewing/gathering_tea": "采集茶",
                                "/actions/brewing/woodcutting_tea": "伐木茶",
                                "/actions/brewing/cooking_tea": "烹饪茶",
                                "/actions/brewing/defense_coffee": "防御咖啡",
                                "/actions/brewing/brewing_tea": "冲泡茶",
                                "/actions/brewing/attack_coffee": "攻击咖啡",
                                "/actions/brewing/gourmet_tea": "美食茶",
                                "/actions/brewing/alchemy_tea": "炼金茶",
                                "/actions/brewing/enhancing_tea": "强化茶",
                                "/actions/brewing/cheesesmithing_tea": "奶酪锻造茶",
                                "/actions/brewing/melee_coffee": "近战咖啡",
                                "/actions/brewing/crafting_tea": "制作茶",
                                "/actions/brewing/ranged_coffee": "远程咖啡",
                                "/actions/brewing/wisdom_tea": "经验茶",
                                "/actions/brewing/wisdom_coffee": "经验咖啡",
                                "/actions/brewing/tailoring_tea": "缝纫茶",
                                "/actions/brewing/magic_coffee": "魔法咖啡",
                                "/actions/brewing/super_milking_tea": "超级挤奶茶",
                                "/actions/brewing/super_stamina_coffee": "超级耐力咖啡",
                                "/actions/brewing/super_foraging_tea": "超级采摘茶",
                                "/actions/brewing/super_intelligence_coffee": "超级智力咖啡",
                                "/actions/brewing/processing_tea": "加工茶",
                                "/actions/brewing/lucky_coffee": "幸运咖啡",
                                "/actions/brewing/super_woodcutting_tea": "超级伐木茶",
                                "/actions/brewing/super_cooking_tea": "超级烹饪茶",
                                "/actions/brewing/super_defense_coffee": "超级防御咖啡",
                                "/actions/brewing/super_brewing_tea": "超级冲泡茶",
                                "/actions/brewing/ultra_milking_tea": "究极挤奶茶",
                                "/actions/brewing/super_attack_coffee": "超级攻击咖啡",
                                "/actions/brewing/ultra_stamina_coffee": "究极耐力咖啡",
                                "/actions/brewing/efficiency_tea": "效率茶",
                                "/actions/brewing/swiftness_coffee": "迅捷咖啡",
                                "/actions/brewing/super_alchemy_tea": "超级炼金茶",
                                "/actions/brewing/super_enhancing_tea": "超级强化茶",
                                "/actions/brewing/ultra_foraging_tea": "究极采摘茶",
                                "/actions/brewing/ultra_intelligence_coffee": "究极智力咖啡",
                                "/actions/brewing/channeling_coffee": "吟唱咖啡",
                                "/actions/brewing/super_cheesesmithing_tea": "超级奶酪锻造茶",
                                "/actions/brewing/ultra_woodcutting_tea": "究极伐木茶",
                                "/actions/brewing/super_melee_coffee": "超级近战咖啡",
                                "/actions/brewing/artisan_tea": "工匠茶",
                                "/actions/brewing/super_crafting_tea": "超级制作茶",
                                "/actions/brewing/ultra_cooking_tea": "究极烹饪茶",
                                "/actions/brewing/super_ranged_coffee": "超级远程咖啡",
                                "/actions/brewing/ultra_defense_coffee": "究极防御咖啡",
                                "/actions/brewing/catalytic_tea": "催化茶",
                                "/actions/brewing/critical_coffee": "暴击咖啡",
                                "/actions/brewing/super_tailoring_tea": "超级缝纫茶",
                                "/actions/brewing/ultra_brewing_tea": "究极冲泡茶",
                                "/actions/brewing/super_magic_coffee": "超级魔法咖啡",
                                "/actions/brewing/ultra_attack_coffee": "究极攻击咖啡",
                                "/actions/brewing/blessed_tea": "福气茶",
                                "/actions/brewing/ultra_alchemy_tea": "究极炼金茶",
                                "/actions/brewing/ultra_enhancing_tea": "究极强化茶",
                                "/actions/brewing/ultra_cheesesmithing_tea": "究极奶酪锻造茶",
                                "/actions/brewing/ultra_melee_coffee": "究极近战咖啡",
                                "/actions/brewing/ultra_crafting_tea": "究极制作茶",
                                "/actions/brewing/ultra_ranged_coffee": "究极远程咖啡",
                                "/actions/brewing/ultra_tailoring_tea": "究极缝纫茶",
                                "/actions/brewing/ultra_magic_coffee": "究极魔法咖啡",
                                "/actions/alchemy/coinify": "点金",
                                "/actions/alchemy/transmute": "转化",
                                "/actions/alchemy/decompose": "分解",
                                "/actions/enhancing/enhance": "强化",
                                "/actions/combat/fly": "苍蝇",
                                "/actions/combat/rat": "杰瑞",
                                "/actions/combat/skunk": "臭鼬",
                                "/actions/combat/porcupine": "豪猪",
                                "/actions/combat/slimy": "史莱姆",
                                "/actions/combat/smelly_planet": "臭臭星球",
                                "/actions/combat/frog": "青蛙",
                                "/actions/combat/snake": "蛇",
                                "/actions/combat/swampy": "沼泽虫",
                                "/actions/combat/alligator": "夏洛克",
                                "/actions/combat/swamp_planet": "沼泽星球",
                                "/actions/combat/sea_snail": "蜗牛",
                                "/actions/combat/crab": "螃蟹",
                                "/actions/combat/aquahorse": "水马",
                                "/actions/combat/nom_nom": "咬咬鱼",
                                "/actions/combat/turtle": "忍者龟",
                                "/actions/combat/aqua_planet": "海洋星球",
                                "/actions/combat/jungle_sprite": "丛林精灵",
                                "/actions/combat/myconid": "蘑菇人",
                                "/actions/combat/treant": "树人",
                                "/actions/combat/centaur_archer": "半人马弓箭手",
                                "/actions/combat/jungle_planet": "丛林星球",
                                "/actions/combat/gobo_stabby": "刺刺",
                                "/actions/combat/gobo_slashy": "砍砍",
                                "/actions/combat/gobo_smashy": "锤锤",
                                "/actions/combat/gobo_shooty": "咻咻",
                                "/actions/combat/gobo_boomy": "轰轰",
                                "/actions/combat/gobo_planet": "哥布林星球",
                                "/actions/combat/eye": "独眼",
                                "/actions/combat/eyes": "叠眼",
                                "/actions/combat/veyes": "复眼",
                                "/actions/combat/planet_of_the_eyes": "眼球星球",
                                "/actions/combat/novice_sorcerer": "新手巫师",
                                "/actions/combat/ice_sorcerer": "冰霜巫师",
                                "/actions/combat/flame_sorcerer": "火焰巫师",
                                "/actions/combat/elementalist": "元素法师",
                                "/actions/combat/sorcerers_tower": "巫师之塔",
                                "/actions/combat/gummy_bear": "软糖熊",
                                "/actions/combat/panda": "熊猫",
                                "/actions/combat/black_bear": "黑熊",
                                "/actions/combat/grizzly_bear": "棕熊",
                                "/actions/combat/polar_bear": "北极熊",
                                "/actions/combat/bear_with_it": "熊熊星球",
                                "/actions/combat/magnetic_golem": "磁力魔像",
                                "/actions/combat/stalactite_golem": "钟乳石魔像",
                                "/actions/combat/granite_golem": "花岗岩魔像",
                                "/actions/combat/golem_cave": "魔像洞穴",
                                "/actions/combat/zombie": "僵尸",
                                "/actions/combat/vampire": "吸血鬼",
                                "/actions/combat/werewolf": "狼人",
                                "/actions/combat/twilight_zone": "暮光之地",
                                "/actions/combat/abyssal_imp": "深渊小鬼",
                                "/actions/combat/soul_hunter": "灵魂猎手",
                                "/actions/combat/infernal_warlock": "地狱术士",
                                "/actions/combat/infernal_abyss": "地狱深渊",
                                "/actions/combat/chimerical_den": "奇幻洞穴",
                                "/actions/combat/sinister_circus": "阴森马戏团",
                                "/actions/combat/enchanted_fortress": "秘法要塞",
                                "/actions/combat/pirate_cove": "海盗基地"
                            },
                            "actionTypeNames": {
                                "/action_types/milking": "挤奶",
                                "/action_types/foraging": "采摘",
                                "/action_types/woodcutting": "伐木",
                                "/action_types/cheesesmithing": "奶酪锻造",
                                "/action_types/crafting": "制作",
                                "/action_types/tailoring": "缝纫",
                                "/action_types/cooking": "烹饪",
                                "/action_types/brewing": "冲泡",
                                "/action_types/alchemy": "炼金",
                                "/action_types/enhancing": "强化",
                                "/action_types/combat": "战斗"
                            },
                            "actionCategoryNames": {
                                "/action_categories/milking/cows": "奶牛",
                                "/action_categories/foraging/farmland": "翠野农场",
                                "/action_categories/foraging/shimmering_lake": "波光湖泊",
                                "/action_categories/foraging/misty_forest": "迷雾森林",
                                "/action_categories/foraging/burble_beach": "深紫沙滩",
                                "/action_categories/foraging/silly_cow_valley": "傻牛山谷",
                                "/action_categories/foraging/olympus_mons": "奥林匹斯山",
                                "/action_categories/foraging/asteroid_belt": "小行星带",
                                "/action_categories/woodcutting/trees": "树",
                                "/action_categories/cheesesmithing/material": "材料",
                                "/action_categories/cheesesmithing/tool": "工具",
                                "/action_categories/cheesesmithing/main_hand": "主手",
                                "/action_categories/cheesesmithing/two_hand": "双手",
                                "/action_categories/cheesesmithing/off_hand": "副手",
                                "/action_categories/cheesesmithing/feet": "脚部",
                                "/action_categories/cheesesmithing/hands": "手部",
                                "/action_categories/cheesesmithing/head": "头部",
                                "/action_categories/cheesesmithing/legs": "腿部",
                                "/action_categories/cheesesmithing/body": "身体",
                                "/action_categories/crafting/lumber": "木板",
                                "/action_categories/crafting/crossbow": "弩",
                                "/action_categories/crafting/bow": "弓",
                                "/action_categories/crafting/staff": "法杖",
                                "/action_categories/crafting/off_hand": "副手",
                                "/action_categories/crafting/ring": "戒指",
                                "/action_categories/crafting/earrings": "耳环",
                                "/action_categories/crafting/neck": "项链",
                                "/action_categories/crafting/charm": "护符",
                                "/action_categories/crafting/trinket": "饰品",
                                "/action_categories/crafting/special": "特殊",
                                "/action_categories/crafting/dungeon_keys": "地下城钥匙",
                                "/action_categories/tailoring/material": "材料",
                                "/action_categories/tailoring/feet": "脚部",
                                "/action_categories/tailoring/hands": "手部",
                                "/action_categories/tailoring/head": "头部",
                                "/action_categories/tailoring/legs": "腿部",
                                "/action_categories/tailoring/body": "身体",
                                "/action_categories/tailoring/pouch": "袋子",
                                "/action_categories/tailoring/back": "背部",
                                "/action_categories/cooking/instant_heal": "即时回血",
                                "/action_categories/cooking/heal_over_time": "持续回血",
                                "/action_categories/cooking/instant_mana": "即时回蓝",
                                "/action_categories/cooking/mana_over_time": "持续回蓝",
                                "/action_categories/brewing/tea": "茶",
                                "/action_categories/brewing/coffee": "咖啡",
                                "/action_categories/alchemy/alchemy": "炼金",
                                "/action_categories/enhancing/enhance": "强化",
                                "/action_categories/combat/smelly_planet": "臭臭星球",
                                "/action_categories/combat/swamp_planet": "沼泽星球",
                                "/action_categories/combat/aqua_planet": "海洋星球",
                                "/action_categories/combat/jungle_planet": "丛林星球",
                                "/action_categories/combat/gobo_planet": "哥布林星球",
                                "/action_categories/combat/planet_of_the_eyes": "眼球星球",
                                "/action_categories/combat/sorcerers_tower": "巫师之塔",
                                "/action_categories/combat/bear_with_it": "熊熊星球",
                                "/action_categories/combat/golem_cave": "魔像洞穴",
                                "/action_categories/combat/twilight_zone": "暮光之地",
                                "/action_categories/combat/infernal_abyss": "地狱深渊",
                                "/action_categories/combat/dungeons": "地下城"
                            },
                            "buffTypeNames": {
                                "/buff_types/gathering": "采集数量",
                                "/buff_types/efficiency": "效率",
                                "/buff_types/alchemy_success": "炼金成功率",
                                "/buff_types/enhancing_success": "强化成功率",
                                "/buff_types/action_speed": "行动速度",
                                "/buff_types/task_action_speed": "任务行动速度",
                                "/buff_types/milking_level": "挤奶等级",
                                "/buff_types/foraging_level": "采摘等级",
                                "/buff_types/woodcutting_level": "伐木等级",
                                "/buff_types/cheesesmithing_level": "奶酪锻造等级",
                                "/buff_types/crafting_level": "制作等级",
                                "/buff_types/tailoring_level": "缝纫等级",
                                "/buff_types/cooking_level": "烹饪等级",
                                "/buff_types/brewing_level": "冲泡等级",
                                "/buff_types/alchemy_level": "炼金等级",
                                "/buff_types/enhancing_level": "强化等级",
                                "/buff_types/gourmet": "美食",
                                "/buff_types/wisdom": "经验",
                                "/buff_types/processing": "加工",
                                "/buff_types/artisan": "工匠",
                                "/buff_types/blessed": "福气",
                                "/buff_types/action_level": "行动所需等级",
                                "/buff_types/essence_find": "精华发现",
                                "/buff_types/rare_find": "稀有发现",
                                "/buff_types/stamina_level": "耐力等级",
                                "/buff_types/intelligence_level": "智力等级",
                                "/buff_types/defense_level": "防御等级",
                                "/buff_types/attack_level": "攻击等级",
                                "/buff_types/melee_level": "近战等级",
                                "/buff_types/ranged_level": "远程等级",
                                "/buff_types/magic_level": "魔法等级",
                                "/buff_types/attack_speed": "攻击速度",
                                "/buff_types/cast_speed": "施法速度",
                                "/buff_types/critical_rate": "暴击率",
                                "/buff_types/critical_damage": "暴击伤害",
                                "/buff_types/accuracy": "精准",
                                "/buff_types/damage": "伤害",
                                "/buff_types/physical_amplify": "物理增幅",
                                "/buff_types/water_amplify": "水系增幅",
                                "/buff_types/nature_amplify": "自然系增幅",
                                "/buff_types/fire_amplify": "火系增幅",
                                "/buff_types/healing_amplify": "治疗增幅",
                                "/buff_types/evasion": "闪避",
                                "/buff_types/armor": "护甲",
                                "/buff_types/water_resistance": "水系抗性",
                                "/buff_types/nature_resistance": "自然系抗性",
                                "/buff_types/fire_resistance": "火系抗性",
                                "/buff_types/damage_taken": "所受伤害",
                                "/buff_types/life_steal": "生命窃取",
                                "/buff_types/mana_leech": "法力吸取",
                                "/buff_types/physical_thorns": "物理荆棘",
                                "/buff_types/elemental_thorns": "元素荆棘",
                                "/buff_types/retaliation": "反伤强度",
                                "/buff_types/tenacity": "韧性",
                                "/buff_types/hp_regen": "HP恢复",
                                "/buff_types/mp_regen": "MP恢复",
                                "/buff_types/threat": "威胁",
                                "/buff_types/combat_drop_rate": "战斗掉落率",
                                "/buff_types/combat_drop_quantity": "战斗掉落数量"
                            },
                            "buffTypeDescriptions": {
                                "/buff_types/gathering": "增加采集数量",
                                "/buff_types/efficiency": "立即重复行动的几率",
                                "/buff_types/alchemy_success": "炼金成功率的乘法加成",
                                "/buff_types/enhancing_success": "强化成功率的乘法加成",
                                "/buff_types/action_speed": "减少行动所需时间",
                                "/buff_types/task_action_speed": "减少任务行动所需时间",
                                "/buff_types/milking_level": "增益挤奶等级",
                                "/buff_types/foraging_level": "增益采摘等级",
                                "/buff_types/woodcutting_level": "增益伐木等级",
                                "/buff_types/cheesesmithing_level": "增益奶酪锻造等级",
                                "/buff_types/crafting_level": "增益制作等级",
                                "/buff_types/tailoring_level": "增益缝纫等级",
                                "/buff_types/cooking_level": "增益烹饪等级",
                                "/buff_types/brewing_level": "增益冲泡等级",
                                "/buff_types/alchemy_level": "增益炼金等级",
                                "/buff_types/enhancing_level": "增益强化等级",
                                "/buff_types/gourmet": "有机会免费获得一个额外物品",
                                "/buff_types/wisdom": "增加获得经验",
                                "/buff_types/processing": "有机会立即将原材料转化成产品 (奶酪、布料、和木材)",
                                "/buff_types/artisan": "减少生产过程中所需材料",
                                "/buff_types/blessed": "有机会在强化成功时获得+2而不是+1",
                                "/buff_types/action_level": "增加行动所需等级",
                                "/buff_types/essence_find": "增加精华的掉落率",
                                "/buff_types/rare_find": "增加稀有物品的掉落率",
                                "/buff_types/stamina_level": "增益耐力等级",
                                "/buff_types/intelligence_level": "增益智力等级",
                                "/buff_types/defense_level": "增益防御等级",
                                "/buff_types/attack_level": "增益攻击等级",
                                "/buff_types/melee_level": "增益近战等级",
                                "/buff_types/ranged_level": "增益远程等级",
                                "/buff_types/magic_level": "增益魔法等级",
                                "/buff_types/attack_speed": "增加自动攻击速度",
                                "/buff_types/cast_speed": "增加施法速度",
                                "/buff_types/critical_rate": "增加暴击率",
                                "/buff_types/critical_damage": "增加暴击伤害",
                                "/buff_types/accuracy": "增加精准度",
                                "/buff_types/damage": "增加伤害",
                                "/buff_types/physical_amplify": "增加物理伤害",
                                "/buff_types/water_amplify": "增加水系伤害",
                                "/buff_types/nature_amplify": "增加自然系伤害",
                                "/buff_types/fire_amplify": "增加火系伤害",
                                "/buff_types/healing_amplify": "增加治疗量",
                                "/buff_types/evasion": "增加闪避率",
                                "/buff_types/armor": "减少所受物理伤害",
                                "/buff_types/water_resistance": "减少所受水系伤害",
                                "/buff_types/nature_resistance": "减少所受自然系伤害",
                                "/buff_types/fire_resistance": "减少所受火系伤害",
                                "/buff_types/damage_taken": "增加所受伤害",
                                "/buff_types/life_steal": "自动攻击时获得生命窃取",
                                "/buff_types/mana_leech": "自动攻击时获得法力吸取",
                                "/buff_types/physical_thorns": "受到物理攻击时,对攻击者造成基于你护甲的一定物理伤害",
                                "/buff_types/elemental_thorns": "受到元素攻击时,对攻击者造成基于你抗性的一定元素伤害",
                                "/buff_types/retaliation": "将攻击原始伤害的一定比例以钝击形式反伤攻击者",
                                "/buff_types/tenacity": "降低失明、沉默或眩晕的几率",
                                "/buff_types/hp_regen": "增加HP恢复",
                                "/buff_types/mp_regen": "增加MP恢复",
                                "/buff_types/threat": "增加战斗中被攻击的几率",
                                "/buff_types/combat_drop_rate": "增加战斗战利品的掉落率",
                                "/buff_types/combat_drop_quantity": "增加战斗战利品数量"
                            },
                            "buffTypeDebuffDescriptions": {
                                "/buff_types/gathering": "减少采集数量",
                                "/buff_types/efficiency": "降低立即重复行动的可能性",
                                "/buff_types/alchemy_success": "",
                                "/buff_types/enhancing_success": "",
                                "/buff_types/action_speed": "",
                                "/buff_types/task_action_speed": "",
                                "/buff_types/milking_level": "",
                                "/buff_types/foraging_level": "",
                                "/buff_types/woodcutting_level": "",
                                "/buff_types/cheesesmithing_level": "",
                                "/buff_types/crafting_level": "",
                                "/buff_types/tailoring_level": "",
                                "/buff_types/cooking_level": "",
                                "/buff_types/brewing_level": "",
                                "/buff_types/alchemy_level": "",
                                "/buff_types/enhancing_level": "",
                                "/buff_types/gourmet": "",
                                "/buff_types/wisdom": "",
                                "/buff_types/processing": "",
                                "/buff_types/artisan": "",
                                "/buff_types/blessed": "",
                                "/buff_types/action_level": "",
                                "/buff_types/essence_find": "",
                                "/buff_types/rare_find": "",
                                "/buff_types/stamina_level": "",
                                "/buff_types/intelligence_level": "",
                                "/buff_types/defense_level": "",
                                "/buff_types/attack_level": "",
                                "/buff_types/melee_level": "",
                                "/buff_types/ranged_level": "",
                                "/buff_types/magic_level": "",
                                "/buff_types/attack_speed": "",
                                "/buff_types/cast_speed": "",
                                "/buff_types/critical_rate": "",
                                "/buff_types/critical_damage": "",
                                "/buff_types/accuracy": "",
                                "/buff_types/damage": "",
                                "/buff_types/physical_amplify": "",
                                "/buff_types/water_amplify": "",
                                "/buff_types/nature_amplify": "",
                                "/buff_types/fire_amplify": "",
                                "/buff_types/healing_amplify": "",
                                "/buff_types/evasion": "",
                                "/buff_types/armor": "",
                                "/buff_types/water_resistance": "",
                                "/buff_types/nature_resistance": "",
                                "/buff_types/fire_resistance": "",
                                "/buff_types/damage_taken": "",
                                "/buff_types/life_steal": "",
                                "/buff_types/mana_leech": "",
                                "/buff_types/physical_thorns": "",
                                "/buff_types/elemental_thorns": "",
                                "/buff_types/retaliation": "",
                                "/buff_types/tenacity": "",
                                "/buff_types/hp_regen": "",
                                "/buff_types/mp_regen": "",
                                "/buff_types/threat": "",
                                "/buff_types/combat_drop_rate": "",
                                "/buff_types/combat_drop_quantity": ""
                            },
                            "houseRoomNames": {
                                "/house_rooms/dairy_barn": "奶牛棚",
                                "/house_rooms/garden": "花园",
                                "/house_rooms/log_shed": "木棚",
                                "/house_rooms/forge": "锻造台",
                                "/house_rooms/workshop": "工作间",
                                "/house_rooms/sewing_parlor": "缝纫室",
                                "/house_rooms/kitchen": "厨房",
                                "/house_rooms/brewery": "冲泡坊",
                                "/house_rooms/laboratory": "实验室",
                                "/house_rooms/observatory": "天文台",
                                "/house_rooms/dining_room": "餐厅",
                                "/house_rooms/library": "图书馆",
                                "/house_rooms/dojo": "道场",
                                "/house_rooms/armory": "军械库",
                                "/house_rooms/gym": "健身房",
                                "/house_rooms/archery_range": "射箭场",
                                "/house_rooms/mystical_study": "神秘研究室"
                            },
                            "purchaseBundleNames": {
                                "/purchase_bundles/cowbells_500": "500个牛铃",
                                "/purchase_bundles/cowbells_1050": "1050个牛铃",
                                "/purchase_bundles/cowbells_2700": "2700个牛铃",
                                "/purchase_bundles/cowbells_5500": "5500个牛铃",
                                "/purchase_bundles/cowbells_11500": "11500个牛铃",
                                "/purchase_bundles/moo_pass_standard_30": "30天哞卡(标准)",
                                "/purchase_bundles/moo_pass_standard_90": "90天哞卡(标准)",
                                "/purchase_bundles/moo_pass_standard_365": "1年哞卡(标准)",
                                "/purchase_bundles/moo_pass_ironcow_30": "30天哞卡(铁牛)",
                                "/purchase_bundles/moo_pass_ironcow_90": "90天哞卡(铁牛)",
                                "/purchase_bundles/moo_pass_ironcow_365": "1年哞卡(铁牛)",
                                "/purchase_bundles/moo_pass_account_30": "30天哞卡(所有角色)",
                                "/purchase_bundles/moo_pass_account_90": "90天哞卡(所有角色)",
                                "/purchase_bundles/moo_pass_account_365": "1年哞卡(所有角色)"
                            },
                            "buyableUpgradeNames": {
                                "/buyable_upgrades/offline_hour_cap_1": "+1小时离线进度",
                                "/buyable_upgrades/offline_hour_cap_2": "+1小时离线进度",
                                "/buyable_upgrades/offline_hour_cap_3": "+1小时离线进度",
                                "/buyable_upgrades/offline_hour_cap_4": "+1小时离线进度",
                                "/buyable_upgrades/market_listing_cap_1": "+1市场挂牌",
                                "/buyable_upgrades/market_listing_cap_2": "+1市场挂牌",
                                "/buyable_upgrades/market_listing_cap_3": "+1市场挂牌",
                                "/buyable_upgrades/market_listing_cap_4": "+1市场挂牌",
                                "/buyable_upgrades/market_listing_cap_5": "+1市场挂牌",
                                "/buyable_upgrades/action_queue_cap_1": "+1行动队列",
                                "/buyable_upgrades/action_queue_cap_2": "+1行动队列",
                                "/buyable_upgrades/action_queue_cap_3": "+1行动队列",
                                "/buyable_upgrades/action_queue_cap_4": "+1行动队列",
                                "/buyable_upgrades/loadout_slot_cap_1": "+1配装槽位",
                                "/buyable_upgrades/loadout_slot_cap_2": "+1配装槽位",
                                "/buyable_upgrades/loadout_slot_cap_3": "+1配装槽位",
                                "/buyable_upgrades/loadout_slot_cap_4": "+1配装槽位",
                                "/buyable_upgrades/task_slot_cap_1": "+1任务槽位",
                                "/buyable_upgrades/task_slot_cap_2": "+1任务槽位",
                                "/buyable_upgrades/task_slot_cap_3": "+1任务槽位",
                                "/buyable_upgrades/task_slot_cap_4": "+1任务槽位"
                            },
                            "chatIconNames": {
                                "/chat_icons/admin": "Admin",
                                "/chat_icons/cco": "CCO",
                                "/chat_icons/community_manager": "社区经理",
                                "/chat_icons/super_moderator": "超级管理员",
                                "/chat_icons/moderator": "管理员",
                                "/chat_icons/bug_finder": "BUG发现者",
                                "/chat_icons/super_bug_finder": "超级BUG发现者",
                                "/chat_icons/contributor": "贡献者",
                                "/chat_icons/super_contributor": "超级贡献者",
                                "/chat_icons/supporter": "支持者",
                                "/chat_icons/verdant_supporter": "翠绿支持者",
                                "/chat_icons/azure_supporter": "蔚蓝支持者",
                                "/chat_icons/burble_supporter": "深紫支持者",
                                "/chat_icons/crimson_supporter": "绛红支持者",
                                "/chat_icons/rainbow_supporter": "彩虹支持者",
                                "/chat_icons/holy_supporter": "神圣支持者",
                                "/chat_icons/beta_bunny": "测试兔",
                                "/chat_icons/jack_o_lantern": "杰克灯笼",
                                "/chat_icons/santa_hat": "圣诞帽",
                                "/chat_icons/spring_festival_lantern": "春节灯笼",
                                "/chat_icons/anniversary_purple": "周年小紫牛",
                                "/chat_icons/og_jerry": "原版杰瑞",
                                "/chat_icons/milking": "挤奶",
                                "/chat_icons/foraging": "采摘",
                                "/chat_icons/woodcutting": "伐木",
                                "/chat_icons/cheesesmithing": "奶酪锻造",
                                "/chat_icons/crafting": "制作",
                                "/chat_icons/tailoring": "缝纫",
                                "/chat_icons/cooking": "烹饪",
                                "/chat_icons/brewing": "冲泡",
                                "/chat_icons/alchemy": "炼金",
                                "/chat_icons/enhancing": "强化",
                                "/chat_icons/combat": "战斗",
                                "/chat_icons/stamina": "耐力",
                                "/chat_icons/intelligence": "智力",
                                "/chat_icons/attack": "攻击",
                                "/chat_icons/melee": "近战",
                                "/chat_icons/defense": "防御",
                                "/chat_icons/ranged": "远程",
                                "/chat_icons/magic": "魔法",
                                "/chat_icons/marketplace": "市场",
                                "/chat_icons/tasks": "任务",
                                "/chat_icons/blueberry": "蓝莓",
                                "/chat_icons/blackberry": "黑莓",
                                "/chat_icons/strawberry": "草莓",
                                "/chat_icons/mooberry": "哞莓",
                                "/chat_icons/marsberry": "火星莓",
                                "/chat_icons/spaceberry": "太空莓",
                                "/chat_icons/apple": "苹果",
                                "/chat_icons/orange": "橙子",
                                "/chat_icons/plum": "李子",
                                "/chat_icons/peach": "桃子",
                                "/chat_icons/dragon_fruit": "火龙果",
                                "/chat_icons/star_fruit": "杨桃",
                                "/chat_icons/egg": "鸡蛋",
                                "/chat_icons/bamboo": "竹子",
                                "/chat_icons/cheese": "奶酪",
                                "/chat_icons/cupcake": "纸杯蛋糕",
                                "/chat_icons/clover": "幸运草",
                                "/chat_icons/tea": "茶",
                                "/chat_icons/coffee": "咖啡",
                                "/chat_icons/task_crystal": "任务水晶",
                                "/chat_icons/star_fragment": "星光碎片",
                                "/chat_icons/pearl": "珍珠",
                                "/chat_icons/amber": "琥珀",
                                "/chat_icons/garnet": "石榴石",
                                "/chat_icons/jade": "翡翠",
                                "/chat_icons/amethyst": "紫水晶",
                                "/chat_icons/moonstone": "月亮石",
                                "/chat_icons/sunstone": "太阳石",
                                "/chat_icons/philosophers_stone": "贤者之石",
                                "/chat_icons/sword": "剑",
                                "/chat_icons/spear": "枪",
                                "/chat_icons/mace": "钉头锤",
                                "/chat_icons/bulwark": "重盾",
                                "/chat_icons/bow": "弓",
                                "/chat_icons/crossbow": "弩",
                                "/chat_icons/staff": "法杖",
                                "/chat_icons/book": "书籍",
                                "/chat_icons/mages_hat": "法师帽",
                                "/chat_icons/panda_paw": "熊猫爪",
                                "/chat_icons/fly": "苍蝇",
                                "/chat_icons/rat": "杰瑞",
                                "/chat_icons/skunk": "臭鼬",
                                "/chat_icons/porcupine": "豪猪",
                                "/chat_icons/slimy": "史莱姆",
                                "/chat_icons/frog": "青蛙",
                                "/chat_icons/snake": "蛇",
                                "/chat_icons/swampy": "沼泽虫",
                                "/chat_icons/alligator": "夏洛克",
                                "/chat_icons/giant_shoebill": "鲸头鹳",
                                "/chat_icons/sea_snail": "蜗牛",
                                "/chat_icons/crab": "螃蟹",
                                "/chat_icons/aquahorse": "水马",
                                "/chat_icons/nom_nom": "咬咬鱼",
                                "/chat_icons/turtle": "忍者龟",
                                "/chat_icons/marine_huntress": "海洋猎手",
                                "/chat_icons/jungle_sprite": "丛林精灵",
                                "/chat_icons/myconid": "蘑菇人",
                                "/chat_icons/treant": "树人",
                                "/chat_icons/centaur_archer": "半人马弓箭手",
                                "/chat_icons/luna_empress": "月神之蝶",
                                "/chat_icons/eyes": "叠眼",
                                "/chat_icons/the_watcher": "观察者",
                                "/chat_icons/ice_sorcerer": "冰霜巫师",
                                "/chat_icons/flame_sorcerer": "火焰巫师",
                                "/chat_icons/elementalist": "元素法师",
                                "/chat_icons/chronofrost_sorcerer": "霜时巫师",
                                "/chat_icons/gummy_bear": "软糖熊",
                                "/chat_icons/panda": "熊猫",
                                "/chat_icons/black_bear": "黑熊",
                                "/chat_icons/grizzly_bear": "棕熊",
                                "/chat_icons/polar_bear": "北极熊",
                                "/chat_icons/red_panda": "小熊猫",
                                "/chat_icons/zombie": "僵尸",
                                "/chat_icons/vampire": "吸血鬼",
                                "/chat_icons/werewolf": "狼人",
                                "/chat_icons/dusk_revenant": "黄昏亡灵",
                                "/chat_icons/abyssal_imp": "深渊小鬼",
                                "/chat_icons/soul_hunter": "灵魂猎手",
                                "/chat_icons/infernal_warlock": "地狱术士",
                                "/chat_icons/demonic_overlord": "恶魔霸主",
                                "/chat_icons/butterjerry": "蝶鼠",
                                "/chat_icons/rabid_rabbit": "疯魔兔",
                                "/chat_icons/enchanted_knight": "秘法骑士",
                                "/chat_icons/enchanted_bishop": "秘法主教",
                                "/chat_icons/squawker": "鹦鹉",
                                "/chat_icons/iron_cow": "铁牛",
                                "/chat_icons/cow": "奶牛",
                                "/chat_icons/verdant_cow": "翠绿奶牛",
                                "/chat_icons/azure_cow": "蔚蓝奶牛",
                                "/chat_icons/burble_cow": "深紫奶牛",
                                "/chat_icons/crimson_cow": "绛红奶牛",
                                "/chat_icons/unicow": "彩虹奶牛",
                                "/chat_icons/holy_cow": "神圣奶牛",
                                "/chat_icons/duckling": "小鸭",
                                "/chat_icons/whale": "鲸鱼",
                                "/chat_icons/golden_coin": "金币",
                                "/chat_icons/golden_marketplace": "金色市场",
                                "/chat_icons/golden_egg": "金蛋",
                                "/chat_icons/golden_berry": "金色莓果",
                                "/chat_icons/golden_apple": "金色苹果",
                                "/chat_icons/golden_donut": "金色甜甜圈",
                                "/chat_icons/golden_cupcake": "金色纸杯蛋糕",
                                "/chat_icons/golden_clover": "金色幸运草",
                                "/chat_icons/golden_biceps": "金色二头肌",
                                "/chat_icons/golden_frog": "金色青蛙",
                                "/chat_icons/golden_piggy": "金色小猪",
                                "/chat_icons/golden_duckling": "金色小鸭",
                                "/chat_icons/golden_whale": "金色鲸鱼"
                            },
                            "nameColorNames": {
                                "/name_colors/burble": "紫色",
                                "/name_colors/blue": "蓝色",
                                "/name_colors/green": "绿色",
                                "/name_colors/yellow": "黄色",
                                "/name_colors/coral": "珊瑚",
                                "/name_colors/pink": "粉色",
                                "/name_colors/fancy_burble": "华丽紫色",
                                "/name_colors/fancy_blue": "华丽蓝色",
                                "/name_colors/fancy_green": "华丽绿色",
                                "/name_colors/fancy_yellow": "华丽黄色",
                                "/name_colors/fancy_coral": "华丽珊瑚",
                                "/name_colors/fancy_pink": "华丽粉色",
                                "/name_colors/iron": "铁色",
                                "/name_colors/rainbow": "彩虹色",
                                "/name_colors/golden": "金色"
                            },
                            "communityBuffTypeNames": {
                                "/community_buff_types/experience": "经验",
                                "/community_buff_types/gathering_quantity": "采集数量",
                                "/community_buff_types/production_efficiency": "生产效率",
                                "/community_buff_types/enhancing_speed": "强化速度",
                                "/community_buff_types/combat_drop_quantity": "战斗掉落数量"
                            },
                            "chatChannelTypeNames": {
                                "/chat_channel_types/general": "英语",
                                "/chat_channel_types/chinese": "中文",
                                "/chat_channel_types/french": "Français",
                                "/chat_channel_types/german": "Deutsch",
                                "/chat_channel_types/spanish": "Español",
                                "/chat_channel_types/portuguese": "Português",
                                "/chat_channel_types/russian": "Русский",
                                "/chat_channel_types/hebrew": "עברית",
                                "/chat_channel_types/arabic": "العربية",
                                "/chat_channel_types/hindi": "हिंदी",
                                "/chat_channel_types/japanese": "日本語",
                                "/chat_channel_types/korean": "한국어",
                                "/chat_channel_types/vietnamese": "Tiếng Việt",
                                "/chat_channel_types/ironcow": "铁牛",
                                "/chat_channel_types/trade": "交易",
                                "/chat_channel_types/recruit": "招募",
                                "/chat_channel_types/beginner": "新手",
                                "/chat_channel_types/guild": "公会",
                                "/chat_channel_types/party": "队伍",
                                "/chat_channel_types/moderator": "管理员",
                                "/chat_channel_types/whisper": "私聊"
                            },
                            "guildCharacterRoleNames": {
                                "leader": "会长",
                                "general": "将军",
                                "officer": "官员",
                                "member": "会员"
                            },
                            "leaderboardTypeNames": {
                                "standard": "标准",
                                "ironcow": "铁牛",
                                "legacy_ironcow": "传统铁牛",
                                "steam_standard": "标准 (Steam)",
                                "steam_ironcow": "铁牛 (Steam)",
                                "guild": "公会"
                            },
                            "leaderboardCategoryNames": {
                                "total_level": "总等级",
                                "milking": "挤奶",
                                "foraging": "采摘",
                                "woodcutting": "伐木",
                                "cheesesmithing": "奶酪锻造",
                                "crafting": "制作",
                                "tailoring": "缝纫",
                                "cooking": "烹饪",
                                "brewing": "冲泡",
                                "alchemy": "炼金",
                                "enhancing": "强化",
                                "stamina": "耐力",
                                "intelligence": "智力",
                                "attack": "攻击",
                                "melee": "近战",
                                "defense": "防御",
                                "ranged": "远程",
                                "magic": "魔法",
                                "task_points": "任务积分",
                                "fame_points": "名望积分",
                                "guild": "公会"
                            }
                        }
                    }
                },
                "detection": {
                    "order": [
                        "localStorage",
                        "navigator",
                        "htmlTag",
                        "path",
                        "subdomain"
                    ],
                    "lookupQuerystring": "lng",
                    "lookupCookie": "i18next",
                    "lookupLocalStorage": "i18nextLng",
                    "lookupSessionStorage": "i18nextLng",
                    "caches": [
                        "localStorage"
                    ],
                    "excludeCacheFor": [
                        "cimode"
                    ]
                },
                "ignoreJSONStructure": true
            },
            "store": {
                "en": {
                    "translation": {
                        "global": {
                            "gameName": "Milky Way Idle"
                        },
                        "modalProvider": {
                            "ok": "OK",
                            "cancel": "Cancel",
                            "yes": "Yes",
                            "no": "No"
                        },
                        "actionsUtil": {
                            "itemNotAvailable": "[Item not available]",
                            "doingNothing": "Doing nothing...",
                            "partySuffix": " (Party)"
                        },
                        "characterItemsUtil": {
                            "mainHand": "Main Hand",
                            "offHand": "Off Hand",
                            "back": "Back",
                            "head": "Head",
                            "charm": "Charm",
                            "body": "Body",
                            "legs": "Legs",
                            "hands": "Hands",
                            "feet": "Feet",
                            "pouch": "Pouch",
                            "neck": "Necklace",
                            "earrings": "Earrings",
                            "ring": "Ring",
                            "trinket": "Trinket",
                            "milkingTool": "Milking Tool",
                            "foragingTool": "Foraging Tool",
                            "woodcuttingTool": "Wood-Cutting Tool",
                            "cheesesmithingTool": "Cheese-Smithing Tool",
                            "craftingTool": "Crafting Tool",
                            "tailoringTool": "Tailoring Tool",
                            "cookingTool": "Cooking Tool",
                            "brewingTool": "Brewing Tool",
                            "alchemyTool": "Alchemy Tool",
                            "enhancingTool": "Enhancing Tool"
                        },
                        "combatStats": {
                            "primaryTraining": "Primary Training",
                            "focusTraining": "Focus Training",
                            "combatStyleHrids": "Combat Style",
                            "damageType": "Damage Type",
                            "attackInterval": "Attack Interval",
                            "autoAttackDamage": "Auto Attack Damage",
                            "abilityDamage": "Ability Damage",
                            "attackSpeed": "Attack Speed",
                            "castSpeed": "Cast Speed",
                            "abilityHaste": "Ability Haste",
                            "criticalRate": "Critical Rate",
                            "criticalDamage": "Critical Damage",
                            "stabAccuracy": "Stab Accuracy",
                            "slashAccuracy": "Slash Accuracy",
                            "smashAccuracy": "Smash Accuracy",
                            "rangedAccuracy": "Ranged Accuracy",
                            "magicAccuracy": "Magic Accuracy",
                            "stabDamage": "Stab Damage",
                            "slashDamage": "Slash Damage",
                            "smashDamage": "Smash Damage",
                            "rangedDamage": "Ranged Damage",
                            "magicDamage": "Magic Damage",
                            "defensiveDamage": "Defensive Damage",
                            "taskDamage": "Task Damage",
                            "physicalAmplify": "Physical Amplify",
                            "waterAmplify": "Water Amplify",
                            "natureAmplify": "Nature Amplify",
                            "fireAmplify": "Fire Amplify",
                            "healingAmplify": "Healing Amplify",
                            "armorPenetration": "Armor Penetration",
                            "waterPenetration": "Water Penetration",
                            "naturePenetration": "Nature Penetration",
                            "firePenetration": "Fire Penetration",
                            "physicalThorns": "Physical Thorns",
                            "elementalThorns": "Elemental Thorns",
                            "retaliation": "Retaliation",
                            "maxHitpoints": "Max Hitpoints",
                            "maxManapoints": "Max Manapoints",
                            "stabEvasion": "Stab Evasion",
                            "slashEvasion": "Slash Evasion",
                            "smashEvasion": "Smash Evasion",
                            "rangedEvasion": "Ranged Evasion",
                            "magicEvasion": "Magic Evasion",
                            "armor": "Armor",
                            "waterResistance": "Water Resistance",
                            "natureResistance": "Nature Resistance",
                            "fireResistance": "Fire Resistance",
                            "damageTaken": "Damage Taken",
                            "lifeSteal": "Life Steal",
                            "manaLeech": "Mana Leech",
                            "tenacity": "Tenacity",
                            "threat": "Threat",
                            "hpRegenPer10": "HP Regen",
                            "mpRegenPer10": "MP Regen",
                            "foodHaste": "Food Haste",
                            "drinkConcentration": "Drink Concentration",
                            "combatDropRate": "Combat Drop Rate",
                            "combatDropQuantity": "Combat Drop Quantity",
                            "combatRareFind": "Combat Rare Find",
                            "combatExperience": "Combat Experience",
                            "staminaExperience": "Stamina Experience",
                            "intelligenceExperience": "Intelligence Experience",
                            "attackExperience": "Attack Experience",
                            "defenseExperience": "Defense Experience",
                            "meleeExperience": "Melee Experience",
                            "rangedExperience": "Ranged Experience",
                            "magicExperience": "Magic Experience",
                            "foodSlots": "Food Slots",
                            "drinkSlots": "Drink Slots",
                            "weaken": "Weaken",
                            "fury": "Fury",
                            "parry": "Parry",
                            "mayhem": "Mayhem",
                            "pierce": "Pierce",
                            "curse": "Curse",
                            "ripple": "Ripple",
                            "bloom": "Bloom",
                            "blaze": "Blaze"
                        },
                        "noncombatStats": {
                            "skillingSpeed": "Skilling Speed",
                            "milkingSpeed": "Milking Speed",
                            "foragingSpeed": "Foraging Speed",
                            "woodcuttingSpeed": "Woodcutting Speed",
                            "cheesesmithingSpeed": "Cheesesmithing Speed",
                            "craftingSpeed": "Crafting Speed",
                            "tailoringSpeed": "Tailoring Speed",
                            "cookingSpeed": "Cooking Speed",
                            "brewingSpeed": "Brewing Speed",
                            "alchemySpeed": "Alchemy Speed",
                            "enhancingSpeed": "Enhancing Speed",
                            "taskSpeed": "Task Speed",
                            "milkingEfficiency": "Milking Efficiency",
                            "foragingEfficiency": "Foraging Efficiency",
                            "woodcuttingEfficiency": "Woodcutting Efficiency",
                            "cheesesmithingEfficiency": "Cheesesmithing Efficiency",
                            "craftingEfficiency": "Crafting Efficiency",
                            "tailoringEfficiency": "Tailoring Efficiency",
                            "cookingEfficiency": "Cooking Efficiency",
                            "brewingEfficiency": "Brewing Efficiency",
                            "alchemyEfficiency": "Alchemy Efficiency",
                            "skillingEfficiency": "Skilling Efficiency",
                            "enhancingSuccess": "Enhancing Success",
                            "gatheringQuantity": "Gathering Quantity",
                            "drinkConcentration": "Drink Concentration",
                            "skillingEssenceFind": "Skilling Essence Find",
                            "skillingRareFind": "Skilling Rare Find",
                            "milkingRareFind": "Milking Rare Find",
                            "foragingRareFind": "Foraging Rare Find",
                            "woodcuttingRareFind": "Woodcutting Rare Find",
                            "cheesesmithingRareFind": "Cheesesmithing Rare Find",
                            "craftingRareFind": "Crafting Rare Find",
                            "tailoringRareFind": "Tailoring Rare Find",
                            "cookingRareFind": "Cooking Rare Find",
                            "brewingRareFind": "Brewing Rare Find",
                            "alchemyRareFind": "Alchemy Rare Find",
                            "enhancingRareFind": "Enhancing Rare Find",
                            "skillingExperience": "Skilling Experience",
                            "milkingExperience": "Milking Experience",
                            "foragingExperience": "Foraging Experience",
                            "woodcuttingExperience": "Woodcutting Experience",
                            "cheesesmithingExperience": "Cheesesmithing Experience",
                            "craftingExperience": "Crafting Experience",
                            "tailoringExperience": "Tailoring Experience",
                            "cookingExperience": "Cooking Experience",
                            "brewingExperience": "Brewing Experience",
                            "alchemyExperience": "Alchemy Experience",
                            "enhancingExperience": "Enhancing Experience"
                        },
                        "home": {
                            "nav": {
                                "home": "Home",
                                "news": "News",
                                "patchNotes": "Patch Notes",
                                "gameGuide": "Game Guide"
                            },
                            "title": "$t(global.gameName) - Free Idle MMO Game - Gather, Craft, Battle, Trade, and Cows!",
                            "subtitle": "Multiplayer Idle RPG",
                            "bannerText": "Embark on a journey through the $t(global.gameName) universe, a unique multiplayer idle game. Whether you enjoy resource gathering, item crafting, or engaging in epic battles against alien monsters, we have something to offer for everyone. Immerse yourself in our thriving community, where you can trade in the player-driven marketplace, form a guild with friends, chat with fellow players, or climb to the top of the leaderboards!",
                            "testServer": "Test Server",
                            "activePlayerCount": "Currently {{count}} players in game!",
                            "showcases": {
                                "gatherAndCraft": {
                                    "title": "Gather and Craft",
                                    "text": "Milking, Foraging, Woodcutting, Cheesesmithing, Crafting, Tailoring, Cooking, Brewing, Alchemy, Enhancing"
                                },
                                "combat": {
                                    "title": "Combat",
                                    "text": "Multiple styles of combat with highly customizable consumable and ability auto-usage. Battle solo or with a party."
                                },
                                "marketplace": {
                                    "title": "Marketplace",
                                    "text": "Buy and sell resources, consumables, equipment, and more"
                                },
                                "community": {
                                    "title": "Community",
                                    "text": "Party and chat with friends. Compete for a spot on the leaderboard!"
                                }
                            },
                            "footer": {
                                "termsOfUse": "Terms of Use",
                                "privacyPolicy": "Privacy Policy",
                                "emailContact": "Email Contact"
                            }
                        },
                        "auth": {
                            "tabs": {
                                "playAsGuest": "Play As Guest",
                                "register": "Register",
                                "login": "Login"
                            },
                            "serverError": {
                                "title": "Unable To Reach Server",
                                "message": "You are currently unable to reach the game server. This could be due to the game updating, server maintenance, or a network issue (such as firewall) between you and the server. Please refresh to try again in 5-10 minutes."
                            },
                            "thirdPartyCookieMessage": {
                                "title": "Login",
                                "message": "Your browser does not support third-party cookies which is needed to play from within an iframe. Please enable third-party cookies or play from <a href='https://www.milkywayidle.com' target='_blank'>www.milkywayidle.com</a>."
                            },
                            "welcomeBack": {
                                "title": "Welcome Back!",
                                "logout": "Logout"
                            },
                            "buttons": {
                                "enterGame": "ENTER GAME"
                            },
                            "confirmationMessages": {
                                "guestWarning": "WARNING: Guest accounts can only login again using the guest password found under Settings.",
                                "logoutConfirmation": "Are you sure you want to logout?"
                            },
                            "shared": {
                                "agreeToRulesLabel": "I agree to the <termsLink>Terms</termsLink>, <privacyPolicyLink>Privacy Policy</privacyPolicyLink>, and <gameRulesLink>Game Rules</gameRulesLink>",
                                "agreeToOneAccountLabel": "I agree to play only 1 account",
                                "errors": {
                                    "agreeToRulesError": "You must agree to the game rules",
                                    "agreeToOneAccountError": "You must agree to play only 1 account",
                                    "serverUnreachable": "Server unreachable or offline",
                                    "captchaBlockedError": "Captcha verification blocked by browser privacy setting",
                                    "captchaFailedError": "Captcha verification failed",
                                    "unexpectedError": "Unexpected error"
                                }
                            }
                        },
                        "playAsGuestForm": {
                            "title": "Play As Guest",
                            "info": "Your session will be saved in this browser. To play across multiple devices, you can go in <b>Settings</b> in game to find your <b>guest password</b> or to fully <b>register</b>.",
                            "playButton": "Play"
                        },
                        "registerForm": {
                            "title": "Register",
                            "emailLabel": "Email",
                            "passwordLabel": "Password",
                            "passwordConfirmationLabel": "Password Confirmation",
                            "registerButton": "Register",
                            "errors": {
                                "emailEmpty": "Email must not be empty",
                                "invalidEmail": "Please enter a valid email",
                                "passwordTooShort": "Password must be at least 6 characters",
                                "passwordsDoNotMatch": "passwords do not match"
                            }
                        },
                        "loginForm": {
                            "back": "< Back",
                            "title": "Login",
                            "titleSteam": "Login $t(global.gameName)",
                            "emailOrNameLabel": "Email or Username",
                            "passwordLabel": "Password",
                            "loginButton": "Login",
                            "forgotPassword": "Forgot Password",
                            "errors": {
                                "emailOrNameEmpty": "Email/Name must not be empty",
                                "passwordEmpty": "Password must not be empty"
                            }
                        },
                        "forgotPassword": {
                            "title": "Forgot Password",
                            "infoMessage": "If your account is fully registered with a valid email, you will receive a password reset email with instructions. (may need to check junk/spam folder)",
                            "emailLabel": "Email",
                            "resetPasswordButton": "Reset Password",
                            "backToLogin": "Back to Login",
                            "successMessage": "An email has been sent if the email address is associated with an account.",
                            "errors": {
                                "emailEmptyError": "Email must not be empty",
                                "invalidEmailError": "Please enter a valid email"
                            }
                        },
                        "playFromKongregate": {
                            "title": "Play From Kongregate",
                            "noAccountMessage": "You must have a Kongregate account to be able to play.",
                            "registerButton": "Register",
                            "signInInfo": "Sign in to $t(global.gameName) or create a new account if this is your first time!",
                            "signInButton": "Sign in from Kongregate"
                        },
                        "loginWithSteam": {
                            "signInTitle": "Play From Steam",
                            "signInInfo": "Start playing $t(global.gameName) with your Steam account",
                            "signInButton": "Play From Steam",
                            "linkAccountTitle": "Have a $t(global.gameName) account?",
                            "linkAccountInfo": "If you have played $t(global.gameName) before from our website, you can link your existing account to Steam.",
                            "linkAccountButton": "Yes, link my account",
                            "createAccountButton": "No, create new account",
                            "steamAuthTicketError": "Failed to fetch Steam auth ticket. Please restart Steam and try again."
                        },
                        "characterSelectPage": {
                            "title": "Select Character - $t(global.gameName)",
                            "header": "Select Character",
                            "loading": "Loading characters...",
                            "createCharacterModal": {
                                "title": "Create Character",
                                "nameLabel": "Character Name:",
                                "namePlaceholder": "Enter character name...",
                                "gameModeLabel": "Game Mode:",
                                "maxCharacter": "Max: {{count}} Character",
                                "maxCharacter_one": "Max: {{count}} Character",
                                "maxCharacter_other": "Max: {{count}} Characters",
                                "submitButton": "Create",
                                "errors": {
                                    "nameLength": "Must be 2-16 characters long",
                                    "nameInvalid": "Only alphabets and numbers allowed"
                                }
                            },
                            "slots": {
                                "slot": "Slot {{slotNum}}",
                                "empty": "Empty",
                                "online": "Online",
                                "lastOnline": "Last Online: {{duration}} ago"
                            },
                            "errors": {
                                "fetchCharacters": "Unable to retrieve characters. Please try again later.",
                                "fetchGameModes": "Unable to fetch game mode data. Please try again later.",
                                "serverUnreachable": "Server unreachable or offline",
                                "unexpectedError": "Unexpected error"
                            }
                        },
                        "gamePage": {
                            "disconnectedFromServer": "Disconnected from server...",
                            "bannedMessage": "You are banned until {{banExpireTime}}. {{banReason}}",
                            "refresh": "Refresh",
                            "attemptingToConnect": "Attempting to connect to server...",
                            "loadingTitle": "Loading - $t(global.gameName)",
                            "disconnectedTitle": "Disconnected - $t(global.gameName)",
                            "guestLogoutWarning": "WARNING: Guest accounts can only login again using the guest password found under Settings.",
                            "logoutConfirmation": "Are you sure you want to logout?",
                            "refreshPrompt": " Please refresh.",
                            "gameServerRestarted": "Game server has been restarted. Please refresh the page."
                        },
                        "header": {
                            "flee": "Flee",
                            "stop": "Stop",
                            "loadoutWithName": "Loadout: {{name}}",
                            "loadoutUnavailable": "Loadout contains unavailable item",
                            "loadoutDeleted": "Loadout was deleted",
                            "totalExperience": "Total Experience: {{totalExp}}",
                            "totalLevel": "Total Level: {{totalLevel}}",
                            "activePlayers": "Active Characters: {{activePlayerCount}}",
                            "confirmRunAway": "Are you sure you want to run away from combat?",
                            "newTutorialMessage": "New Tutorial Message",
                            "newMessage": "New Message",
                            "newTutorialTask": "New Tutorial Task",
                            "newTask": "New Task",
                            "progress": "Progress: {{currentCount}} / {{goalCount}}",
                            "successRate": "Success: {{successRate}}",
                            "usingCatalyst": "Using Catalyst",
                            "targetEnhance": "Target: +{{enhancingMaxLevel}}",
                            "protectEnhance": "Protect: +{{enhancingProtectionMinLevel}}"
                        },
                        "actionProgressBar": {
                            "fighting": "Fighting",
                            "travelingToBattle": "Traveling To Battle"
                        },
                        "queuedActions": {
                            "loadout": "Loadout: {{name}}",
                            "loadoutUnavailable": "Loadout contains unavailable item",
                            "loadoutDeleted": "Loadout was deleted",
                            "useItem": "Use: {{itemName}}",
                            "catalystUnavailable": "Catalyst: [Item not available]",
                            "targetLevel": "Target: +{{level}}",
                            "protectFromLevel": "Protect From: +{{level}}",
                            "repeat": "Repeat",
                            "gather": "Gather",
                            "produce": "Produce",
                            "fight": "Fight",
                            "actionCountTimes": "{{action}} {{count}} times",
                            "queuedActionsHeader": "Queued Actions",
                            "queuedActionsSlotCount": "Queued Actions ({{current}}/{{max}})",
                            "upgradeCapacity": "Upgrade Capacity",
                            "queuedActionsCount": "+{{count}} Queued<br />Actions",
                            "remove": "remove",
                            "moveActionToFrontConfirm": "Run this action now? The current action will pause and continue after."
                        },
                        "navigationBar": {
                            "myStuff": "My Stuff",
                            "marketplace": "Marketplace",
                            "tasks": "Tasks",
                            "combat": "Combat",
                            "shop": "Shop",
                            "cowbellStore": "Cowbell Store",
                            "lootTracker": "Loot Tracker",
                            "social": "Social",
                            "guild": "Guild",
                            "leaderboard": "Leaderboard",
                            "moderator": "Moderator",
                            "settings": "Settings",
                            "news": "News",
                            "patchNotes": "Patch Notes",
                            "gameGuide": "Game Guide",
                            "gameRules": "Game Rules",
                            "wiki": "Game Wiki",
                            "discord": "Discord",
                            "testServer": "Test Server",
                            "privacyPolicy": "Privacy Policy",
                            "switchCharacter": "Switch Character",
                            "logout": "Logout",
                            "myStuffTooltip": "Inventory, equipment, abilities, houses, and loadouts.",
                            "marketplaceTooltip": "Player-driven market where you can buy and sell items with coins.",
                            "tasksTooltip": "Randomly generated tasks that players can complete for rewards.",
                            "milkingTooltip": "mooooooooo...",
                            "foragingTooltip": "Master the skill of picking up things.",
                            "woodcuttingTooltip": "Chop chop chop.",
                            "cheesesmithingTooltip": "Did you know you can make equipment using these special hardened cheeses?",
                            "craftingTooltip": "Create weapons, jewelry, and more.",
                            "tailoringTooltip": "Create ranged and magic clothing.",
                            "cookingTooltip": "The art of making healthy food.",
                            "brewingTooltip": "The art of making tasty drinks.",
                            "alchemyTooltip": "Transform unwanted items into wanted ones. (hopefully)",
                            "enhancingTooltip": "+5 takes effort, +10 takes luck, +15 is a miracle, and +20 is destiny.",
                            "combatTooltip": "Fight monsters. Your combat level represents your overall combat effectiveness based on the combination of individual combat skill levels",
                            "shopTooltip": "Purchase items from the vendor.",
                            "cowbellStoreTooltip": "Purchase and spend cowbells.",
                            "lootTrackerTooltip": "Track the loot from your recent actions.",
                            "socialTooltip": "Friends, referrals, and block list.",
                            "guildTooltip": "Join forces with a community of players.",
                            "leaderboardTooltip": "Shows the top ranked players of each skill.",
                            "moderatorTooltip": "Banhammer users.",
                            "settingsTooltip": "Update account information and other settings.",
                            "staminaTooltip": "Increases max HP by 10 per level.",
                            "intelligenceTooltip": "Increases max MP by 10 per level.",
                            "attackTooltip": "Increases your accuracy, base attack speed, and cast speed.",
                            "defenseTooltip": "Increases your evasion, armor, elemental resistances, and retaliation damage.",
                            "meleeTooltip": "Increases your melee damage.",
                            "rangedTooltip": "Increases your ranged damage. Ranged attacks have bonus chance to critical strike.",
                            "magicTooltip": "Increases your magic damage.",
                            "activePlayers": "Active Characters: {{count}}",
                            "level": "Level: {{count}}",
                            "totalExperience": "Total Experience: {{count}}",
                            "xpToLevelUp": "XP To Level Up: {{count}}"
                        },
                        "marketplacePanel": {
                            "marketplace": "Marketplace",
                            "marketListings": "Market Listings",
                            "myListings": "My Listings",
                            "resources": "Resources",
                            "consumables": "Consumables",
                            "books": "Books",
                            "keys": "Keys",
                            "equipment": "Equipment",
                            "accessories": "Accessories",
                            "tools": "Tools",
                            "mustBeBetween0And20": "Must be between 0 - 20",
                            "mustBeAtLeast1": "Must be at least 1",
                            "youDontHaveEnoughItems": "You don't have enough items",
                            "youCantAffordThisMany": "You can't afford this many",
                            "mustBeAtLeastVendorPrice": "Must be at least vendor price",
                            "itemFilterPlaceholder": "Item Filter",
                            "viewAllItems": "View All Items",
                            "viewAllEnhancementLevels": "View All Enhancement Levels",
                            "refresh": "Refresh",
                            "sell": "Sell",
                            "buy": "Buy",
                            "sellNow": "Sell Now",
                            "postSellOrder": "Post Sell Order",
                            "sellListing": "Sell Listing",
                            "postSellListing": "Post Sell Listing",
                            "buyNow": "Buy Now",
                            "postBuyOrder": "Post Buy Order",
                            "buyListing": "Buy Listing",
                            "postBuyListing": "Post Buy Listing",
                            "max": "Max",
                            "all": "All",
                            "enhancementLevel": "Enhancement Level",
                            "quantityYouHave": "Quantity (You Have: {{maxQuantity}})",
                            "quantityYouCanAfford": "Quantity (You Can Afford: {{maxQuantity}})",
                            "quantityAvailableAtPrice": "Quantity (Available At Price: {{marketQuantity}})",
                            "priceBestSellOffer": "Price (Best Sell Offer: <bestPrice />)",
                            "priceBestBuyOffer": "Price (Best Buy Offer: <bestPrice />)",
                            "youGetOrMore": "You Get: {{totalValue}}<coin /> ({{taxRate}} Taxed)<br />(more if better offers exist)",
                            "youPayOrLess": "You Pay: {{totalValue}}<coin /><br />(less if better offers exist)",
                            "sellRestricted": "Sell Restricted",
                            "listingLimitReached": "Listing Limit Reached",
                            "newSellListing": "+ New Sell Listing",
                            "newBuyListing": "+ New Buy Listing",
                            "loading": "Loading...",
                            "item": "Item",
                            "bestAskPrice": "Best Ask Price",
                            "bestBidPrice": "Best Bid Price",
                            "viewAll": "View All",
                            "nope": "Nope...",
                            "quantity": "Quantity",
                            "askPrice": "Ask Price",
                            "bidPrice": "Bid Price",
                            "action": "Action",
                            "upgradeCapacity": "Upgrade Capacity",
                            "collectAll": "Collect All ({{claimableCount}})",
                            "status": "Status",
                            "type": "Type",
                            "progress": "Progress",
                            "price": "Price",
                            "taxTaken": "Tax Taken",
                            "collect": "Collect",
                            "chatLink": "Chat Link",
                            "link": "Link",
                            "cancel": "Cancel",
                            "confirmCancelMarketListing": "Are you sure you want to cancel this listing?",
                            "active": "Active",
                            "filled": "Filled",
                            "cancelled": "Cancelled",
                            "expired": "Expired",
                            "listingsCount": "{{currentListings}} / {{listingCap}} Listings"
                        },
                        "marketListingLink": {
                            "buying": "Buying",
                            "selling": "Selling",
                            "price": "Price: <color>{{price}}</color>"
                        },
                        "tasksPanel": {
                            "tasks": "Tasks",
                            "taskBoard": "Task Board",
                            "taskShop": "Task Shop",
                            "taskCooldownUpgrade": "-1 Hour Task Cooldown",
                            "taskCooldownDescription": "Permanently reduces the waiting time between tasks by 1 hour.",
                            "blockSlotUpgrade": "+1 Block Slot",
                            "blockSlotDescription": "Adds a block slot, allowing you to block a non-combat skill from being selected for tasks.",
                            "combatBlockUpgrade": "Unlock Combat Block",
                            "combatBlockDescription": "Unlocks the ability to block combat tasks. You need at least 1 available block slot to use this.",
                            "tutorialIncomplete": "Complete your tutorial tasks to unlock the task board.<br />Your current task can be found in the top-right corner.",
                            "purplesGift": "Purple's Gift: {{unclaimedTaskPoints}} / {{claimCost}} Task Points",
                            "claim": "Claim",
                            "unreadTasks": "You have {{count}} unread task",
                            "unreadTasks_one": "You have {{count}} unread task",
                            "unreadTasks_other": "You have {{count}} unread tasks",
                            "read": "Read",
                            "taskSlotCount": "{{taskCount}} / {{taskSlotCap}} Tasks",
                            "upgradeCapacity": "Upgrade Capacity",
                            "nextTask": "Next Task: ",
                            "waitingForNextTask": "Generating next task. Please wait...",
                            "blockedSkills": "Blocked<br />Skills",
                            "buyTaskUpgrade": "Buy Task Upgrade",
                            "buyTaskShopItem": "Buy Task Shop Item",
                            "quantity": "Quantity",
                            "youPay": "You Pay: {{totalCost}}",
                            "buy": "Buy",
                            "upgrades": "Upgrades",
                            "items": "Items",
                            "lifetimeTaskPoints": "Lifetime Task Points: {{totalTaskPoints}}",
                            "minimumQuantity": "Minimum Quantity: 1",
                            "notEnoughItems": "You don't have enough {{itemName}}"
                        },
                        "taskBlockSlot": {
                            "remove": "Remove",
                            "blockSlot": "Block Slot {{slotIndex}}"
                        },
                        "randomTask": {
                            "back": "Back",
                            "confirmDiscard": "Confirm Discard",
                            "payCowbells": "Pay {{cowbellCost}}",
                            "payCoins": "Pay {{coinCost}}",
                            "reroll": "Reroll",
                            "mooPassFreeReroll": "MooPass Free Reroll",
                            "go": "Go",
                            "claimReward": "Claim Reward",
                            "progress": "Progress: {{currentCount}} / {{goalCount}}",
                            "rewards": "Rewards: ",
                            "defeat": "Defeat - {{monsterName}}"
                        },
                        "tutorialQuest": {
                            "purple": "Purple",
                            "welcomeStartText": "Welcome to $t(global.gameName) - a world with magical cows!<br /><br />I'm Purple, the Chief Training Officer (CTO), and also your tour guide today!<br /><br />I'll cast an orange glow to guide you through the training.",
                            "welcomeButtonText": "Hi Purple!",
                            "milkCowStartText": "Let me first show you what we magical cows are best known for: producing magical milk! By the way, my cousin Burble also works here. Hi Burble!<br /><br />First, try and gather some milk.",
                            "milkCowCompleteText": "Good job! Here's some extra milk and a brush. Magical cows love to be brushed, and happy cows produce milk faster!",
                            "smithCheeseStartText": "Let's make some cheese with the milk! These special cheeses are very durable and can be turned into many useful things through cheesesmithing!",
                            "smithCheeseCompleteText": "Great! Take some extra cheese with you for the next task.",
                            "smithSwordStartText": "Cheeses are essential resources for making tools, weapons, and armor. Let me show you how to make a cheese sword. I know it might sound crazy and maybe a little bit smelly too, but trust me.",
                            "smithSwordCompleteText": "Awesome! As you level up, equipment can be upgraded to higher tiers! Tools can also be made to improve each of your skills.",
                            "forageFarmlandStartText": "Now let's go forage for some more resources. Head to Farmland and see what items you can gather!",
                            "forageFarmlandCompleteText": "That was fast! Foraging gives you resources used in many skills, including cooking, brewing, and tailoring!",
                            "cookDonutStartText": "It's time to make use of your cooking skill and whip up a delicious donut using some eggs, wheat, and sugar. What? You can't cook? Of course you can! There's a rat from Earth that can cook, and if he can do it, so can you! Give it a try!",
                            "cookDonutCompleteText": "Fantastic! Food can heal you while in combat. Here's a dozen more donuts for free!",
                            "fightFlyStartText": "Now I want to take you on an expedition to one of our neighboring planets - the Smelly Planet! I hear there are lots of flies, and they bite! You'll want to bring your sword and some donuts. Let's go!",
                            "fightFlyCompleteText": "Battling monsters earns you coins, resources, ability books, and even rare items.<br /><br />If you are knocked out during combat, you will recover in 150 seconds and continue fighting.",
                            "messageTipsStartText": "Looks like the tour is almost over. There's still much more to explore, but don't worry, you won't be alone! Once you level up a little more, you can chat with or get help from other players!<br /><br />You can also buy or sell items in our player-driven marketplace, unless you are playing Ironcow mode.",
                            "messageTipsButtonText": "OK",
                            "messageTips2StartText": "Before I go, here's a few more tips:<br />- A Game Guide can be found at the bottom of the navigation menu on the left.<br />- If you go offline, you'll continue to make progress for 10 hours (upgradable).<br />- Items, abilities, skills, and enemies can be hovered over (long press on mobile) to see more detailed tooltips.<br /><br />I have to go now. It's time for my second lunch, and I have four stomachs to fill. Now go explore the Milky Way!",
                            "messageTips2ButtonText": "Bye Purple!"
                        },
                        "questModal": {
                            "purple": "Purple",
                            "task": "Task",
                            "tutorial": "Tutorial",
                            "taskInfo": "Task: {{taskName}}",
                            "progress": "Progress: {{currentCount}} / {{goalCount}}",
                            "rewardsLabel": "Rewards: ",
                            "defeatMonster": "Defeat - {{monsterName}}",
                            "ok": "OK",
                            "accept": "Accept",
                            "go": "Go",
                            "claimReward": "Claim Reward"
                        },
                        "gatheringProductionSkillPanel": {
                            "consumables": "Consumables"
                        },
                        "alchemyPanel": {
                            "currentAction": "Current Action",
                            "notAlchemizing": "You are currently not alchemizing anything.",
                            "consumables": "Consumables"
                        },
                        "enhancingPanel": {
                            "currentActionTab": "Current Action",
                            "notEnhancing": "You are currently not enhancing anything.",
                            "consumables": "Consumables"
                        },
                        "combatPanel": {
                            "combatZones": "Combat Zones",
                            "findParty": "Find Party",
                            "myParty": "My Party",
                            "battleCount": "Battle #{{battleId}}"
                        },
                        "combatZones": {
                            "consumables": "Consumables",
                            "abilities": "Abilities"
                        },
                        "findParty": {
                            "selectZone": "Select Zone",
                            "refresh": "Refresh",
                            "createParty": "Create Party",
                            "profile": "Profile",
                            "join": "Join",
                            "combatZone": "Combat Zone",
                            "difficulty": "Difficulty",
                            "fightTimes": "Fight {{times}} times",
                            "partyName": "{{name}}'s {{partyType}}",
                            "privateParty": "private party",
                            "party": "party",
                            "levelRequirement": "Lv.{{minLevel}}-{{maxLevel}}"
                        },
                        "party": {
                            "noLoadout": "No Loadout",
                            "selectZone": "Select Zone",
                            "fightTimesWithInputs": "Fight <inputs /> times",
                            "partyName": "{{name}}'s {{partyType}}",
                            "privateParty": "Private party",
                            "publicParty": "Public party",
                            "autoKickCheckbox": "Auto-kick if not ready over 5 minutes",
                            "autoKickEnabled": "Auto-kick enabled",
                            "autoKickDisabled": "Auto-kick disabled",
                            "slot": "Slot {{number}}",
                            "role": "Role",
                            "minLevel": "Min Lv.",
                            "maxLevel": "Max Lv.",
                            "addSlot": "Add Slot",
                            "combatZone": "Combat Zone",
                            "difficulty": "Difficulty",
                            "leaveParty": "Leave Party",
                            "confirmLeaveParty": "Are you sure you want to leave the party?",
                            "disbandParty": "Disband Party",
                            "confirmDisbandParty": "Are you sure you want to disband the party?",
                            "editParty": "Edit Party",
                            "cancel": "Cancel",
                            "createParty": "Create Party",
                            "save": "Save",
                            "linkToChat": "Link To Chat",
                            "consumables": "Consumables",
                            "abilities": "Abilities",
                            "profile": "Profile",
                            "giveLeadership": "Give Leadership",
                            "kick": "Kick",
                            "ready": "Ready",
                            "unready": "Unready"
                        },
                        "partyRoles": {
                            "any_role": "Any Role",
                            "damage_dealer": "Damage",
                            "support": "Support",
                            "tank": "Tank"
                        },
                        "partyLink": {
                            "linkText": "Party: $t(actionNames.{{actionHrid}})"
                        },
                        "battlePanel": {
                            "stats": "Stats",
                            "battleInfo": "Battle Info",
                            "confirmRunAway": "Are you sure you want to run away from combat?",
                            "combatDuration": "Combat Duration: {{duration}}",
                            "battles": "Battles: {{battleId}}",
                            "deaths": "Deaths: {{deathCount}}",
                            "itemsLooted": "Items looted:",
                            "experienceGained": "Experience gained:",
                            "waveLabel": "Wave {{currentWave}} / {{maxWaves}}",
                            "battleNumber": "Battle #{{battleId}}",
                            "consumables": "Consumables",
                            "abilities": "Abilities",
                            "flee": "Flee"
                        },
                        "combatUnit": {
                            "respawn": "Respawn",
                            "autoAttack": "Auto Attack",
                            "stunned": "Stunned",
                            "blindedSilenced": "Blinded/Silenced",
                            "blinded": "Blinded",
                            "silenced": "Silenced"
                        },
                        "combatMonsterTooltip": {
                            "combatLevel": "Combat Level: {{level}}",
                            "experience": "Experience: {{experience}}",
                            "drops": "Drops:",
                            "rareDrops": "Rare Drops:"
                        },
                        "skillActionDetail": {
                            "levelRequirement": "Level {{level}}{{bonus}}",
                            "requires": "Requires",
                            "upgradesFrom": "Upgrades<br />From",
                            "upgradeItemWarning": "No upgrade item selected",
                            "enhancementTransferAll": "All enhancement levels<br />transferred.",
                            "enhancementTransfer": "70% of enhancement levels<br />transferred. Decimals grant<br />chance of 1 extra level.",
                            "costs": "Costs",
                            "outputs": "Outputs",
                            "essenceDrops": "Essences",
                            "rareDrops": "Rares",
                            "experience": "Experience",
                            "duration": "Duration",
                            "successRate": "Success Rate",
                            "travel": "Travel",
                            "bonuses": "Bonuses",
                            "alchemizeItem": "Alchemize Item",
                            "selectAlchemyItem": "Select an item to alchemize",
                            "coinifyInfo": "<span>Coinify:</span> Converts item into coins.",
                            "decomposeInfo": "<span>Decompose:</span> Converts item into component materials.",
                            "transmuteInfo": "<span>Transmute:</span> Converts item into a random related item.",
                            "invalidCoinifyItem": "This item cannot be coinified",
                            "invalidDecomposeItem": "This item cannot be decomposed",
                            "invalidTransmuteItem": "This item cannot be transmuted",
                            "recommendedLevel": "Level {{level}} <Icon /> Recommended",
                            "bulkMultiplier": "Uses {{multiplier}} items per action",
                            "catalyst": "Catalyst",
                            "consumedItem": "Consumed Item",
                            "notUsed": "Not<br />Used",
                            "enhanceItem": "Enhance Item",
                            "selectEnhancingItem": "Select an equipment to enhance",
                            "successInfo": "<span>Success</span> increases the item's enhancement level by 1.",
                            "failureInfo": "<span>Failure</span> resets the enhancement level to 0 unless protection is used.",
                            "targetLevel": "Target Level",
                            "protection": "Protection",
                            "protectFromLevel": "Protect From Level",
                            "protectionMinLevelWarning": "Must Be ≥ 2 To Be Effective",
                            "entryKey": "Entry Key",
                            "reward": "Reward",
                            "bosses": "Bosses",
                            "bossFight": "Boss Fight<br />Every {{battlesPerBoss}} <br />Battles",
                            "monsters": "Monsters",
                            "difficulty": "Difficulty",
                            "repeat": "Repeat",
                            "gather": "Gather",
                            "produce": "Produce",
                            "fight": "Fight",
                            "loadout": "Loadout",
                            "noLoadout": "No Loadout",
                            "confirmStartNow": "Are you sure you want to replace your queued actions?",
                            "buttons": {
                                "start": "Start",
                                "startNow": "Start Now",
                                "stop": "Stop",
                                "upgradeQueue": "Upgrade Queue Capacity",
                                "addToQueue": "Add Queue #{{count}}",
                                "findParty": "Find Party"
                            }
                        },
                        "shopPanel": {
                            "minQuantity": "Minimum quantity: 1",
                            "cannotAfford": "Cannot afford",
                            "itemFilterPlaceholder": "Item Filter",
                            "youPay": "You Pay: {{count}} {{itemName}}",
                            "buyItem": "Buy Item",
                            "quantity": "Quantity",
                            "buy": "Buy",
                            "shop": "Shop"
                        },
                        "cowbellStorePanel": {
                            "buyCowbells": "Buy Cowbells",
                            "mooPass": "MooPass",
                            "upgrades": "Convenience",
                            "chatIcons": "Chat Icons",
                            "customChatIcon": "Custom Chat Icon",
                            "nameColors": "Name Colors",
                            "customNameColor": "Custom Name Color",
                            "avatars": "Avatars",
                            "customAvatar": "Custom Avatar",
                            "avatarOutfits": "Avatar Outfits",
                            "customAvatarOutfit": "Custom Avatar Outfit",
                            "communityBuffs": "Community Buffs",
                            "nameChange": "Name Change",
                            "optIn": "Opt In",
                            "optOut": "Opt Out",
                            "price": "Price: {{price}}",
                            "supporterPoints": "{{points}} Supporter Points",
                            "minimumQuantity": "Minimum Quantity: 1",
                            "notEnoughItems": "You don't have enough {{itemName}}s",
                            "minimumDuration": "Minimum duration: 10 minutes",
                            "notEnoughCowbells": "You don't have enough cowbells",
                            "mustBeCharacters": "Must be 2-16 characters long",
                            "onlyAlphabetsNumbers": "Only alphabets and numbers allowed",
                            "notAvailable": "Not available",
                            "serverUnreachable": "server unreachable or offline",
                            "unexpectedError": "unexpected error",
                            "confirmChangeName": "Confirm change name to: {{name}}",
                            "purchaseSuccessful": "Purchase Successful",
                            "thankYouSupport": "Thank you for the support! The purchased Cowbells or MooPass should be granted in game",
                            "purchaseNotice": "Purchase Notice",
                            "purchaseAntiFraudMessage": "Security requirement: first-time purchase will trigger a 72-hour market restriction on selling bags of cowbells. You can still use them for yourself at any time.",
                            "waitForSteamOverlay": "Wait For Steam Overlay",
                            "steamOverlayMessage": "The Steam overlay will automatically appear to continue your purchase. This usually takes a few seconds but can occasionally take longer. You can close this message afterwards.",
                            "continueToPurchase": "Continue to Purchase",
                            "continuePayment": "Click continue to proceed to our payment processor in a new window.",
                            "guestWarning": "Note: This is a guest account. It's recommended to register in Settings -> Account to avoid accidental loss of access",
                            "continue": "Continue",
                            "mooPassPerks": "MooPass Perks",
                            "buyConvenienceUpgrade": "Buy Convenience Upgrade",
                            "quantity": "Quantity",
                            "limit": "(Limit: {{limit}})",
                            "buyLimit": "Buy Limit: {{limit}}",
                            "afterPurchaseHoursofflineProgress": "After Purchase: {{limit}} hours offline progress",
                            "afterPurchaseMarketListings": "After Purchase: {{limit}} market listings",
                            "afterPurchaseActionQueues": "After Purchase: {{limit}} action queues",
                            "afterPurchaseLoadoutSlots": "After Purchase: {{limit}} loadout slots",
                            "afterPurchaseTaskSlots": "After Purchase: {{limit}} task slots",
                            "buyChatIcon": "Buy Chat Icon",
                            "buyNameColor": "Buy Name Color",
                            "buyAvatar": "Buy Avatar",
                            "buyAvatarOutfit": "Buy Avatar Outfit",
                            "preview": "Preview",
                            "unlock": "Unlock",
                            "buyCommunityBuff": "Buy Community Buff",
                            "minute": "Minute",
                            "minutesToAdd": "Minutes to Add",
                            "youPay": "You Pay: {{cost}}",
                            "buy": "Buy",
                            "cowbellStore": "Cowbell Store",
                            "supporterPointsLabel": "Supporter Points: {{points}}",
                            "famePointsLabel": "Fame Points: {{points}}",
                            "buyCowbellsInfo": "Cowbells can be purchased to help support the game. You can use them to buy convenience upgrades, chat icons, name colors, avatars, avatar outfits, community buffs, or change your name.",
                            "testServerFreeCowbellsSteam": "TEST SERVER: You can get cowbells for free. This uses Steam's sandbox payment mode which doesn't actually charge you.",
                            "testServerFreeCowbellsStripe": "TEST SERVER: You can get cowbells for free by putting 4242-4242-4242-4242 as credit card and any inputs for other fields.",
                            "buyCowbellsNote": "NOTE: Purchased Cowbells will appear in your inventory as Bags of 10 Cowbells which can be sold on the market ({{cowbellTaxRate}} coin tax) to other players. Once opened, they are no longer tradable.",
                            "selectCurrency": "Select Currency",
                            "mooPassInfo": "MooPass grants a number of helpful but non-essential <PerksLink>Perks</PerksLink>.",
                            "characterMooPass": "Character MooPass",
                            "accountMooPass": "Account MooPass",
                            "increaseOfflineProgressLimit": "Increase Offline Progress Limit",
                            "increaseMarketListingLimit": "Increase Market Listing Limit",
                            "increaseActionQueueLimit": "Increase Action Queue Limit",
                            "increaseLoadoutSlotLimit": "Increase Loadout Slot Limit",
                            "increaseTaskSlotLimit": "Increase Task Slot Limit",
                            "freeMooPass": "14-Day MooPass Gift",
                            "free": "Free",
                            "confirmClaimFreeMooPass": "Activate the Free 14-Day MooPass? This is a one time gift. If MooPass is already active, it will be extended by 14 days.",
                            "mooPassWithCowbells": "7-Day MooPass",
                            "buyMooPass": "Buy MooPass",
                            "totalMooPassDays": "Grants: {{days}} days of MooPass",
                            "upgradeLimitsInfo": "Upgrades permanently increases limits. Your current limits can be viewed in Settings.",
                            "seasonal": "Seasonal",
                            "unlocked": "Unlocked",
                            "chatIconsInfo": "Chat icons are displayed in front of your name in the chat. Unlocked chat icons can be changed in Settings -> Profile.",
                            "customChatIconInfo": "You can request a custom chat icon for the cost of {{supporterPoints}} Supporter Points and {{cowbellCost}} Cowbells. The icon can be requested via #new-ticket on Discord. The icon will be based on a concept or image you provide and will be designed by our artist to fit the style and color theme of the game. It must not contain copyrighted content. Supporter Points and Cowbell costs are deducted from a character of your choice when the icon is granted.",
                            "nameColorsInfo": "Click any of the colors to see a preview with your name. Unlocked colors can be changed in Settings -> Profile.",
                            "customNameColorInfo": "You can request a custom name color for the cost of {{supporterPoints}} Supporter Points and {{cowbellCost}} Cowbells. The color can be requested via #new-ticket on Discord. The name color can consist of a color gradient and optionally a subtle glow effect. Supporter Points and Cowbell costs are deducted from a character of your choice when the name color is granted.",
                            "avatarsInfo": "Click any of the avatars to see a larger preview. Unlocked avatars can be changed in Settings -> Profile.",
                            "customAvatarInfo": "You can request a custom avatar for the cost of {{supporterPoints}} Supporter Points and {{cowbellCost}} Cowbells. The avatar can be requested via #new-ticket on Discord. The avatar will be based on a concept or image you provide and will be designed by our artist to fit the style and color theme of the game. It must not contain copyrighted content. Supporter Points and Cowbell costs are deducted from a character of your choice when the avatar is granted.",
                            "avatarOutfitsInfo": "Click any of the outfits to see a preview with your avatar. Unlocked outfits can be changed in Settings -> Profile.",
                            "customAvatarOutfitInfo": "You can request a custom avatar outfit for the cost of {{supporterPoints}} Supporter Points and {{cowbellCost}} Cowbells. The outfit can be requested via #new-ticket on Discord. The outfit will be based on a concept or image you provide and will be designed by our artist to fit the style and color theme of the game. It must not contain copyrighted content. Supporter Points and Cowbell costs are deducted from a character of your choice when the outfit is granted.",
                            "communityBuffsInfo": "Community buffs are bonuses granted to all players on the server. For every Cowbell spent on community buffs, you will gain 1 fame point. Fame points are ranked on the leaderboard.",
                            "fameLeaderboard": "Fame Leaderboard",
                            "currentName": "Current Name",
                            "newName": "New Name",
                            "checkAvailability": "Check Availability",
                            "available": "Available",
                            "cost": "Cost",
                            "changeName": "Change Name"
                        },
                        "paymentSuccessPage": {
                            "paymentSuccess": "Payment Successful",
                            "thankYouMessage": "Thank you for the support! The purchased Cowbells should appear in your inventory within 1 minute. You can close this tab and go back to the game."
                        },
                        "paymentCancelPage": {
                            "paymentCancelled": "Payment Cancelled",
                            "closeTabMessage": "You can close this tab and go back to the game."
                        },
                        "lootLogPanel": {
                            "lootTracker": "Loot Tracker",
                            "refresh": "Refresh",
                            "startTime": "Start Time",
                            "duration": "Duration"
                        },
                        "socialPanel": {
                            "friends": "Friends",
                            "referrals": "Referrals",
                            "blockList": "Block List",
                            "whisper": "Whisper",
                            "profile": "Profile",
                            "confirmUnfriend": "Confirm Unfriend",
                            "unfriend": "Unfriend",
                            "activity": "Activity",
                            "status": "Status",
                            "daysAgo": "{{days}} ago",
                            "online": "Online",
                            "hidden": "Hidden",
                            "offline": "Offline",
                            "playerNamePlaceholder": "Player Name",
                            "addFriend": "Add Friend",
                            "blockedPlayers": "Blocked Players",
                            "blockPlayer": "Block Player",
                            "unblock": "Unblock",
                            "referralBonusFirstLevel": "A referred player reached Total Level {{level}}",
                            "referralBonusPurchase": "A referred player made a purchase",
                            "reward": "Reward: {{quantity}}",
                            "claim": "Claim",
                            "referralInstructions": "When someone signs up using your referral link, you'll be eligible for the following rewards:",
                            "referralInstructionBullets": "<ul><li>{{firstLevelCowbells}}<cowbellIcon /> if they reach Total Level {{firstTotalLevel}}.</li><li>Additional {{secondLevelCowbells}}<cowbellIcon /> if they reach Total Level {{secondTotalLevel}}.</li><li>{{purchaseCowbellPercent}} of any Cowbells they purchase.</li></ul>",
                            "referralLinkCopied": "Link Copied",
                            "copyLink": "Copy Link",
                            "referralCount": "So far, <span>{{count}}</span> players have signed up using your referral link",
                            "socialTitle": "Social"
                        },
                        "guildPanel": {
                            "overview": "Overview",
                            "members": "Members",
                            "manage": "Manage",
                            "nameLengthError": "Name must be {{minLength}}-{{maxLength}} characters long",
                            "nameContentError": "Name can only contain alphabets, numbers, and single spaces between words",
                            "confirmDisband": "Are you sure you want to disband the guild?",
                            "confirmLeave": "Are you sure you want to leave the guild?",
                            "guildInvitation": "Guild Invitation: ",
                            "invitedBy": "Invited by: ",
                            "decline": "Decline",
                            "join": "Join",
                            "createGuildInstructions": "You can create a guild for 5M coins. A guild currently provides the following features:",
                            "createGuildInfoBullets": "<ul><li>Guild chat channel and notice board.</li><li>Guild will receive XP and level up as members gain XP in any skill at a ratio of 1:1000.</li><li>{{defaultSlots}} member slots and 1 additional slot for every {{levelsPerSlot}} guild levels.</li><li>Roles can be assigned: Leader, General, Officer, Member.</li></ul>",
                            "cost5m": "Cost: 5,000,000",
                            "guildNamePlaceholder": "Guild Name",
                            "createGuild": "Create Guild",
                            "joinGuildInfo": "You can also be invited to existing guilds. Use the Recruit chat channel to find a guild to join. Received invitations will be displayed below.",
                            "save": "Save",
                            "edit": "Edit",
                            "guildLevel": "Guild Level",
                            "guildExperience": "Guild Experience",
                            "expToLevelUp": "Exp to Level Up",
                            "guildMembers": "Guild Members",
                            "whisper": "Whisper",
                            "profile": "Profile",
                            "confirmGiveLead": "Confirm Give Lead",
                            "giveLeadership": "Give Leadership",
                            "promote": "Promote",
                            "demote": "Demote",
                            "cancelInvite": "Cancel Invite",
                            "confirmKick": "Confirm Kick",
                            "kick": "Kick",
                            "playerNamePlaceholder": "Player Name",
                            "inviteToGuild": "Invite to Guild",
                            "membersHeader": "Members ({{currentCount}}/{{maxCount}})",
                            "role": "Role",
                            "guildExp": "Guild Exp",
                            "activity": "Activity",
                            "status": "Status",
                            "invited": "Invited",
                            "daysAgo": "{{days}} ago",
                            "online": "Online",
                            "hidden": "Hidden",
                            "offline": "Offline",
                            "disbandInstructions": "You can disband if there are no other members or open invites.",
                            "disbandGuild": "Disband Guild",
                            "leaveInstructions": "You can leave the guild. There are no penalties for leaving.",
                            "leaveGuild": "Leave Guild",
                            "guild": "Guild"
                        },
                        "leaderboardPanel": {
                            "leaderboard": "Leaderboard",
                            "noPlayers": "No players meet the minimum threshold for this leaderboard.",
                            "updatesNote": "Updates every 20 minutes",
                            "rank": "Rank",
                            "name": "Name",
                            "level": "Level",
                            "experience": "Experience",
                            "points": "Points",
                            "taskPoints": "Task Points",
                            "famePoints": "Fame Points"
                        },
                        "moderatorPanel": {
                            "reportedFor": "Reported for: "
                        },
                        "settingsPanel": {
                            "settings": "Settings",
                            "profile": "Profile",
                            "game": "Game",
                            "account": "Account",
                            "show": "Show",
                            "hide": "Hide",
                            "off": "Off",
                            "enabled": "Enabled",
                            "disabled": "Disabled",
                            "on": "On",
                            "public": "Public",
                            "friendsGuildmates": "Friends/Guildmates",
                            "private": "Private",
                            "partyMembersOnly": "Party Members Only",
                            "emailEmpty": "Email must not be empty",
                            "validEmail": "Please enter a valid email",
                            "currentPassword": "Please enter your current password",
                            "passwordLength": "Password must be at least 6 characters",
                            "confirmPassword": "Confirm password does not match",
                            "noneOwned": "None Owned",
                            "unlock": "Unlock",
                            "unlockMoreAvatars": "Unlock More Avatars",
                            "unlockMoreOutfits": "Unlock More Outfits",
                            "setSkillLevel": "Set Skill Level",
                            "selectSkill": "Select Skill",
                            "setLevel": "Set Level",
                            "preview": "Preview:",
                            "viewProfile": "View My Profile",
                            "chatIcon": "Chat Icon:",
                            "nameColor": "Name Color:",
                            "avatar": "Avatar:",
                            "avatarOutfit": "Avatar Outfit:",
                            "onlineStatus": "Online Status:",
                            "equipment": "Equipment:",
                            "deleteCharacter": "Delete Character",
                            "deleteCharacterTimeLimit": "Cannot delete within 10 hours of creation",
                            "showDeletionInstructions": "Show Deletion Instructions",
                            "deleteCharacterInstructions": "Follow the instructions to permanently delete this character \"{{name}}\". This action cannot be undone. You must exit party and guild before proceeding. Type the exact name of the character to confirm deletion.",
                            "characterName": "Character Name:",
                            "deleteCharacterCaps": "DELETE CHARACTER",
                            "gameMode": "Game Mode:",
                            "mooPass": "MooPass:",
                            "inactive": "Inactive",
                            "offlineProgress": "Offline Progress:",
                            "hours": "hours",
                            "upgrade": "Upgrade",
                            "marketListing": "Market Listing:",
                            "listings": "listings",
                            "actionQueue": "Action Queue:",
                            "actions": "actions",
                            "loadoutSlot": "Loadout Slot:",
                            "slots": "slots",
                            "taskSlots": "Task Slots:",
                            "tasks": "tasks",
                            "displayLanguage": "Display Language:",
                            "generalChat": "General Chat:",
                            "nonEnglishChat": "Non-English Language Chat:",
                            "ironcowChat": "Ironcow Chat:",
                            "tradeChat": "Trade Chat:",
                            "recruitChat": "Recruit Chat:",
                            "beginnerChat": "Beginner Chat:",
                            "totalLevelMessage": "Total Level Message:",
                            "skillLevelMessage": "Skill Level Message:",
                            "communityBuffMessage": "Community Buff Message:",
                            "profanityFilter": "Profanity Filter:",
                            "chatURLWarning": "Chat URL Warning:",
                            "cssAnimation": "CSS Animation:",
                            "name": "Name:",
                            "accountType": "Account Type:",
                            "guest": "Guest",
                            "registeredUser": "Registered User",
                            "guestPassword": "Guest Password:",
                            "kongregateId": "Kongregate ID:",
                            "steamId": "Steam ID:",
                            "currentPasswordLabel": "Current Password:",
                            "emailLabel": "Email:",
                            "newPassword": "New Password",
                            "confirmPasswordLabel": "Confirm Password",
                            "update": "Update",
                            "registerEmailPassword": "Register Email/Password"
                        },
                        "chat": {
                            "generalTip": "Tip: General channel is an English-only channel for game-related discussions and friendly chats. To maintain a positive and respectful atmosphere, please adhere to the <gameRulesLink>Game Rules</gameRulesLink>.",
                            "tradeTip": "Tip: Trade channel is for advertising item trading and services. Please use whispers for conversations and negotiations.",
                            "recruitTip": "Tip: Recruit channel is for advertising guild/party recruitment and players seeking to join a guild/party. Please use whispers for conversations.",
                            "beginnerTip": "Tip: Feel free to ask questions or chat with other players here. Useful links: <gameGuideLink>Game Guide</gameGuideLink> and <gameRulesLink>Game Rules</gameRulesLink>.",
                            "whisperTip": "Tip: You can whisper other players using the command \"/w [playerName] [message]\" or simply click on a player's name and select whisper.",
                            "useWhisperCommand": "Use /w Command",
                            "needPlayerName": "Need Player Name",
                            "emptyMessage": "Empty Message",
                            "invalidCommand": "Invalid Command",
                            "useTradeChannel": "Use Trade Channel",
                            "useRecruitChannel": "Use Recruit Channel",
                            "mutedMessage": "Muted until {{muteExpireTime}}. {{muteReason}}",
                            "generalChatRestriction": "You need at least {{generalChatMinLevel}} total level or {{generalChatMinExp}} XP to use general chat",
                            "chatRestriction": "You need at least {{chatMinLevel}} total level to chat",
                            "enterMessagePlaceholder": "Enter message...",
                            "sendButton": "Send",
                            "reportChatMessage": "Report Chat Message",
                            "reportInstructions": "Submit a report for serious chat disruptions or rule violations. For minor personal disagreements, please use the block feature instead.",
                            "reportReason": "Report Reason:",
                            "submitReport": "Submit Report",
                            "reportType": {
                                "selectReason": "Select Reason",
                                "harassmentMe": "Harassing Me",
                                "harassmentOthers": "Harassing Others",
                                "offensiveLanguage": "Offensive Language",
                                "illegalViolentSexual": "Illegal/Violent/Sexual Topics",
                                "controversialTopics": "Divisive/Disruptive Topics",
                                "excessiveDrama": "Excessive Drama",
                                "spam": "Spam",
                                "encouragingRuleBreaking": "Encouraging Rule Breaking",
                                "personalInformation": "Disclosing Personal Information",
                                "wrongChannel": "Wrong Channel",
                                "cheating": "Cheating",
                                "underage": "Under 13 Years Old",
                                "inappropriateName": "Inappropriate Name",
                                "other": "Other"
                            },
                            "reportTypeDescription": {
                                "harassmentMe": "Personal attacks or harassment directed at me.",
                                "harassmentOthers": "Personal attacks or harassment directed at someone else.",
                                "offensiveLanguage": "Use of offensive or inappropriate language.",
                                "illegalViolentSexual": "Message, discussion, or URL link that is illegal, excessively violent, or sexual in nature.",
                                "controversialTopics": "Divisive topics such as politics, religion, international conflicts, gender discussions, sexuality, mute/ban complaints, or other topics that frequently become disruptive.",
                                "excessiveDrama": "Excessive drama or heated arguments that disrupt the chat.",
                                "spam": "Single player spamming chat with meaningless messages, excessive duplicate messages, or begging others for free items. (Multiple players posting similar messages is not considered spam)",
                                "encouragingRuleBreaking": "Encouraging or misleading other players into breaking game rules.",
                                "personalInformation": "Disclosing identifying personal information about themselves or any personal information about other players that they have not made public themselves.",
                                "wrongChannel": "Repeatedly posting messages in the wrong channel.",
                                "cheating": "Admission of cheating, including but not limited to multi-accounts, boosting, real world trading, botting, or bug abuse.",
                                "underage": "Admission of being underage, which is defined as 12 years old or younger.",
                                "inappropriateName": "Inappropriate character name.",
                                "other": "Other issues not covered by the above categories."
                            }
                        },
                        "chatMessage": {
                            "whisper": "Whisper",
                            "mention": "Mention",
                            "profile": "Profile",
                            "addFriend": "Add Friend",
                            "confirmBlock": "Confirm Block",
                            "block": "Block",
                            "report": "Report",
                            "modInspect": "Mod Inspect",
                            "undeleteMsg": "Undelete Msg",
                            "deleteMsg": "Delete Msg",
                            "warn": "Warn",
                            "mute": "Mute",
                            "moderator": "Moderator",
                            "privateModeratorTo": "(Private) Moderator to {{receiverName}}",
                            "toPlayer": "to {{receiverName}}",
                            "messageDeleted": "Message Deleted"
                        },
                        "characterName": {
                            "customIcon": "Custom Icon"
                        },
                        "textWithLinks": {
                            "externalLinkWarning": "Are you sure you want to open an external link?"
                        },
                        "characterManagement": {
                            "inventory": "Inventory",
                            "equipment": "Equipment",
                            "abilities": "Abilities",
                            "house": "House",
                            "loadouts": "Loadouts"
                        },
                        "inventory": {
                            "openedLootHeader": "Opened Loot",
                            "foundItemsLabel": "You found:",
                            "closeButton": "Close",
                            "itemFilterPlaceholder": "Item Filter"
                        },
                        "equipmentPanel": {
                            "title": "Equipment",
                            "viewStats": "View Stats",
                            "combatStats": "Combat Stats",
                            "nonCombatStats": "Non-combat Stats"
                        },
                        "abilitiesPanel": {
                            "title": "Abilities",
                            "abilitySlotsLabel": "Ability Slots",
                            "learnedAbilitiesLabel": "Learned Abilities"
                        },
                        "housePanel": {
                            "house": "House",
                            "houseBuffs": "House Buffs",
                            "allSkills": "All Skills",
                            "none": "None",
                            "notBuilt": "Not built",
                            "level": "Level {{level}}",
                            "max": "Max",
                            "constructionCosts": "Construction Costs",
                            "build": "Build",
                            "viewBuffs": "View Buffs",
                            "actionBuff": "{{action}} Buff",
                            "allSkillBuffs": "All Skill Buffs"
                        },
                        "loadoutPanel": {
                            "allSkills": "All Skills",
                            "newLoadout": "New Loadout",
                            "createLoadout": "Create Loadout",
                            "loadoutCount": "{{count}} / {{max}} Loadouts",
                            "upgradeCapacity": "Upgrade Capacity",
                            "loadouts": "Loadouts",
                            "viewAllLoadouts": "View All Loadouts",
                            "deleteLoadout": "Delete Loadout",
                            "confirmDeleteLoadout": "Are you sure you want to delete this loadout?",
                            "name": "Name",
                            "edit": "Edit",
                            "save": "Save",
                            "setDefault": "Set as the default loadout for {{actionTypeName}}",
                            "suppressValidation": "Do not notify when items are unavailable",
                            "importCurrentSetup": "Import Current Setup",
                            "confirmImportCurrentSetup": "Are you sure you want to import your current setup? This will overwrite the current loadout.",
                            "equipLoadout": "Equip Loadout",
                            "equipment": "Equipment",
                            "abilities": "Abilities",
                            "consumables": "Consumables"
                        },
                        "offlineProgressModal": {
                            "welcomeBack": "Welcome Back!",
                            "offlineDuration": "Offline duration",
                            "progressDuration": "Progress duration",
                            "upgrade": "Upgrade",
                            "itemsGained": "Items gained",
                            "experienceGained": "Experience gained",
                            "itemsConsumed": "Items consumed",
                            "close": "Close"
                        },
                        "sharableProfile": {
                            "overview": "Overview",
                            "skills": "Skills",
                            "equipment": "Equipment",
                            "house": "House",
                            "guildRole": "{{role}} of {{guildName}}",
                            "online": "Online",
                            "offline": "Offline",
                            "totalExperience": "Total Experience: {{experience}}",
                            "totalLevel": "Total Level: {{level}}",
                            "combatLevel": "Combat Level: {{level}}",
                            "age": "Age: {{age}}",
                            "level": "Level {{level}}",
                            "close": "Close"
                        },
                        "skill": {
                            "level": "Level: {{level}}",
                            "totalExperience": "Total Experience: {{totalExperience}}",
                            "expToLevelUp": "Exp to Level Up: {{remainingExperience}}"
                        },
                        "item": {
                            "all": "All",
                            "learn": "Learn",
                            "levelNotMet": "(Level Not Met)",
                            "cannotDuringCombat": "(Cannot During Combat)",
                            "newAbility": "(New Ability)",
                            "gainXP": "(+{{count}} XP)",
                            "equip": "Equip",
                            "enhance": "Enhance",
                            "alchemize": "Alchemize",
                            "openLoot": "Open {{count}}",
                            "openLootWithKeys": "Open {{count}} (Keys: {{keyCount}})",
                            "viewMarketplace": "View Marketplace",
                            "viewCowbellStore": "View Cowbell Store",
                            "linkToChat": "Link To Chat",
                            "openItemDictionary": "Open Item Dictionary",
                            "sellFor": "Sell For {{count}} Coins",
                            "confirmSellFor": "Confirm Sell For {{count}} Coins"
                        },
                        "itemTooltipText": {
                            "amount": "Amount: {{amount}}",
                            "sellPrice": "Sell Price: {{price}}",
                            "openHotkeyHint": "Open - [Right Click]",
                            "abilityBookType": "Type: Ability Book",
                            "requiresLevel": "Requires: {{level}} {{skill}}",
                            "abilityExpPerBook": "Ability Exp Per Book: {{exp}} ",
                            "learnHotkeyHint": "Learn - [Right Click]",
                            "equipmentType": "Type: {{type}}",
                            "equipHotkeyHint": "Equip - [Right Click]",
                            "consumableType": "Type: Consumable",
                            "usableIn": "Usable: ",
                            "cooldownInCombat": "Cooldown(in combat): {{seconds}}s",
                            "hpRestore": "HP Restore: {{amount}} HP",
                            "mpRestore": "MP Restore: {{amount}} MP",
                            "overDuration": "over {{duration}}"
                        },
                        "equipmentStatsText": {
                            "weaken": "Weaken: When attacked by enemy, reduce enemy's damage by {{value}} for 15s, stacking up to 5 times.",
                            "fury": "Fury: On hit, increases accuracy and damage by {{value}} for 15s, stacking up to 5 times. Lose half stacks on miss.",
                            "parry": "Parry: {{value}} chance to parry enemy's attack, avoiding damage and retaliating with an instant auto attack. Can also parry attacks targeting party members",
                            "mayhem": "Mayhem: Upon missing an auto-attack, {{value}} chance to auto-attack next enemy. Can chain multiple times.",
                            "curse": "Curse: On hit, increases enemy's damage taken by {{value}} for 15s, stacking up to 5 times.",
                            "pierce": "Pierce: On successful auto-attack, {{value}} chance to auto-attack next enemy. Can chain multiple times.",
                            "ripple": "Ripple: On ability cast, {{value}} chance to reduce all ability cooldowns by 2s and restore 10 MP.",
                            "bloom": "Bloom: On ability cast, {{value}} chance to heal lowest HP% ally for 10HP+15% magic damage.",
                            "blaze": "Blaze: On ability cast, {{value}} chance to attack all enemies for 30% magic damage."
                        },
                        "itemSelector": {
                            "count": "Count",
                            "remove": "Remove",
                            "itemFilterPlaceholder": "Item Filter",
                            "cannotChangeWhileInCombat": "Cannot change while in combat",
                            "noItemsAvailable": "No items available"
                        },
                        "consumableSlot": {
                            "requireBiggerPouch": "Require<br />Bigger<br />Pouch",
                            "food": "Food",
                            "drink": "Drink"
                        },
                        "itemDictionary": {
                            "gatheredFrom": "Gathered From:",
                            "producedFrom": "Produced From",
                            "producedFromCheesesmithing": "Produced From Cheesesmithing:",
                            "producedFromCrafting": "Produced From Crafting:",
                            "producedFromTailoring": "Produced From Tailoring:",
                            "producedFromCooking": "Produced From Cooking:",
                            "producedFromBrewing": "Produced From Brewing:",
                            "producedFromAlchemy": "Produced From Alchemy:",
                            "producedFromEnhancing": "Produced From Enhancing:",
                            "rareDropFrom": "Rare Drop From:",
                            "droppedByMonsters": "Dropped By Monsters:",
                            "droppedByEliteMonsters": "Dropped By Elite Monsters:",
                            "decomposedFrom": "Decomposed From(Alchemy):",
                            "transmutedFrom": "Transmuted From(Alchemy):",
                            "decomposesInto": "Decomposes Into(Alchemy):",
                            "transmutesInto": "Transmutes Into(Alchemy):",
                            "enhancingCost": "Enhancing Cost:",
                            "usedFor": "Used For {{actionTypeName}}:",
                            "lootedFromContainer": "Looted From Container:",
                            "openToLoot": "Open To Loot:",
                            "anyMilkingAction": "Any Milking action.",
                            "anyForagingAction": "Any Foraging action.",
                            "anyWoodcuttingAction": "Any Woodcutting action.",
                            "anyCheesesmithingAction": "Any Cheesesmithing action.",
                            "anyCraftingAction": "Any Crafting action.",
                            "anyTailoringAction": "Any Tailoring action.",
                            "anyCookingAction": "Any Cooking action.",
                            "anyBrewingAction": "Any Brewing action.",
                            "anyAlchemyAction": "Any Alchemy action.",
                            "anyEnhancingAction": "Any Enhancing action.",
                            "anyLowLevelGathering": "Any low level gathering actions.",
                            "anyMediumLevelGathering": "Any medium level gathering actions.",
                            "anyHighLevelGathering": "Any high level gathering actions.",
                            "anyLowLevelProduction": "Any low level production, alchemy, and enhancing actions.",
                            "anyMediumLevelProduction": "Any medium level production, alchemy, and enhancing actions.",
                            "anyHighLevelProduction": "Any high level production, alchemy, and enhancing actions.",
                            "almostAllMonstersDropCoins": "Almost all monsters drop coins.",
                            "anyLowLevelMonster": "Any low level monster in normal combat.",
                            "anyMediumLevelMonster": "Any medium level monsters in normal combat.",
                            "anyHighLevelMonster": "Any high level monsters in normal combat.",
                            "recommendedLevel": "Level {{level}} <Icon /> Recommended"
                        },
                        "ability": {
                            "level": "Level: {{level}}",
                            "totalExperience": "Total Experience: {{totalExperience}}",
                            "expToLevelUp": "Exp to Level Up: {{remainingExperience}}",
                            "linkToChat": "Link To Chat",
                            "lv": "Lv.{{level}}",
                            "ability": "Ability"
                        },
                        "abilityTooltipText": {
                            "description": "Description: {{description}}",
                            "cooldown": "Cooldown: {{duration}}",
                            "castTime": "Cast Time: {{duration}}",
                            "mpCost": "MP Cost: {{cost}} MP",
                            "effect": "Effect: {{effectText}}",
                            "attacks": "Attacks",
                            "heals": "Heals",
                            "revivesAndHeals": "Revives and heals",
                            "increases": "Increases",
                            "decreases": "Decreases",
                            "target": "target",
                            "self": "self",
                            "enemy": "enemy",
                            "allEnemies": "all enemies",
                            "allAllies": "all allies",
                            "lowestHpAlly": "lowest HP ally",
                            "deadAlly": "a defeated ally",
                            "possessive": {
                                "target": "target's",
                                "self": "my",
                                "enemy": "enemy's",
                                "allEnemies": "all enemies'",
                                "allAllies": "all allies'",
                                "lowestHpAlly": "lowest HP ally's",
                                "deadAlly": "a defeated ally's"
                            },
                            "accuracyBonusText": " with {{accuracyBonus}} total accuracy",
                            "baseDamageFlat": "{{baseDamageFlat}}HP",
                            "baseDamageRatio": "{{baseDamageRatio}}",
                            "asDamageType": " as {{damageType}} damage",
                            "takesDamageOverTime": "takes damage over time",
                            "bleeds": "Bleeds",
                            "soaks": "Soaks",
                            "poisons": "Poisons",
                            "burns": "Burns",
                            "dotText": "{{dotVerb}} for {{dotRatio}} dealt damage over {{dotDuration}}. ",
                            "armorDamageText": "Bonus damage equal to {{armorDamageRatio}} armor. ",
                            "hpDrainText": "Drains {{hpDrainRatio}} of dealt damage as HP. ",
                            "pierceText": "{{pierceChance}} chance to pierce. ",
                            "stunText": "{{stunChance}} chance to stun for {{stunDuration}}. ",
                            "blindText": "{{blindChance}} chance to blind for {{blindDuration}}. ",
                            "silenceText": "{{silenceChance}} chance to silence for {{silenceDuration}}. ",
                            "damageHealReviveEffectText": "{{effectType}} {{effectTarget}}{{accuracyBonusText}} for {{baseDamageFlat}}{{maybePlus}}{{baseDamageRatio}} {{combatStyle}} damage{{asDamageType}}. {{dotText}}{{armorDamageText}}{{hpDrainText}}{{pierceText}}{{stunText}}{{blindText}}{{silenceText}}",
                            "spendHpEffectText": "Costs {{hpCost}} of current HP. ",
                            "buffEffectText": "{{increaseOrDecrease}} {{targetType}} {{buffName}} by {{boostText}} for {{duration}}. "
                        },
                        "abilitySlot": {
                            "specialAbility": "Special<br />Ability",
                            "ability": "Ability",
                            "unlockLevel": "Unlock:<br />Lv.{{level}} INT",
                            "remove": "Remove",
                            "cannotChangeInCombat": "Cannot change in combat",
                            "noAbilitiesAvailable": "No abilities available"
                        },
                        "combatTriggersSetting": {
                            "activateWhen": "Activate when:",
                            "activateOffCooldown": "Activate as soon as it's off cooldown",
                            "and": "AND",
                            "combatTriggers": "Combat Triggers",
                            "selectTargetType": "Select Target Type",
                            "selectCondition": "Select Condition",
                            "select": "Select",
                            "remove": "remove",
                            "addCondition": "+ Condition",
                            "resetDefault": "Reset Default",
                            "save": "Save",
                            "setting": "Setting",
                            "triggerText": "{{dependency}} {{condition}} {{comparator}} {{value}}",
                            "cannotChangeInCombat": "Cannot change in combat"
                        },
                        "buffText": {
                            "duration": "Duration",
                            "detail": "Detail"
                        },
                        "buffsTooltip": {
                            "bonuses": "Bonuses"
                        },
                        "mooPass": {
                            "mooPass": "MooPass",
                            "durationLabel": "Duration: ",
                            "mooPassExpBuff": "+{{expBuff}} XP buff (limited to Standard character)",
                            "mooPassOfflineHourLimit": "+{{count}} Hour Offline Progress Limit",
                            "mooPassMarketListingLimit": "+{{count}} Market Listing Limit",
                            "mooPassActionQueueLimit": "+{{count}} Action Queue Limit",
                            "mooPassTaskSlotLimit": "+{{count}} Task Slot Limit",
                            "mooPassFreeTaskRerolls": "+{{count}} Free Task Reroll (per task)",
                            "mooPassLootTracker": "Loot Tracker of last {{count}} activities",
                            "mooPassAvatarBorder": "Golden Avatar Border"
                        },
                        "communityBuff": {
                            "durationLabel": "Duration: ",
                            "durationDefault": "Duration: 1 Minute",
                            "minutesToNextLevel": "Minutes To Add For Next Level: {{minutes}}",
                            "level": "Level: {{level}}",
                            "max": " (Max)",
                            "usableIn": "Usable:",
                            "contributor": "{{name}}: {{minutes}} minutes",
                            "moreContributors": "(+{{count}} more contributors)"
                        },
                        "systemChatMessage": {
                            "communityBuffAdded": "{{name}} has added {{minutes}} minutes of community buff: $t(communityBuffTypeNames.{{buffHrid}})!",
                            "characterLeveledUp": "{{name}} has reached {{level}} $t(skillNames.{{skillHrid}})!",
                            "guildLeveledUp": "Guild has reached level {{level}}!",
                            "guildNoticeUpdated": "Guild notice message has been updated by {{name}}.",
                            "guildMemberPromoted": "{{name}} has been promoted by {{actor}} to $t(guildCharacterRoleNames.{{role}}).",
                            "guildMemberDemoted": "{{name}} has been demoted by {{actor}} to $t(guildCharacterRoleNames.{{role}}).",
                            "guildMemberJoined": "{{name}} has joined the guild!",
                            "guildMemberLeft": "{{name}} has left the guild.",
                            "guildMemberKicked": "{{name}} has been kicked by {{actor}}.",
                            "partyMemberJoined": "{{name}} has joined the party.",
                            "partyMemberLeft": "{{name}} has left the party.",
                            "partyMemberKicked": "{{name}} has been kicked from the party.",
                            "partyMemberReady": "{{name}} is ready.",
                            "partyMemberNotReady": "{{name}} is not ready.",
                            "partyBattleStarted": "Battle started: $t(actionNames.{{actionHrid}})",
                            "partyBattleEnded": "Battle ended: $t(actionNames.{{actionHrid}})",
                            "partyKeyCount": "Key counts: {{keyCountString}}",
                            "partyWaveFailed": "Party failed on wave {{wave}}."
                        },
                        "infoNotification": {
                            "addedFriend": "Added friend: {{0}}",
                            "removedFriend": "Removed friend: {{0}}",
                            "blockedCharacter": "Blocked character: {{0}}\nView at Social -> Block List",
                            "unblockedCharacter": "Unblocked character: {{0}}",
                            "chatReportSubmitted": "Chat report submitted",
                            "loadoutCreated": "Loadout created",
                            "loadoutUpdated": "Loadout updated",
                            "setupImportedToLoadout": "Imported current setup to loadout",
                            "loadoutEquipped": "Loadout equipped",
                            "loadoutDeleted": "Loadout deleted",
                            "boughtItem": "Bought {{0}} {{1}}",
                            "soldItem": "Sold {{0}} {{1}}",
                            "buyOrderCompleted": "Bought {{0}} {{1}}{{2}}\nSpent {{3}} Coins",
                            "sellOrderCompleted": "Sold {{0}} {{1}}{{2}}\nReceived {{3}} Coins",
                            "buyListingProgress": "Buy listing: {{0}}{{1}}\nProgress: {{2}}/{{3}}",
                            "sellListingProgress": "Sell listing: {{0}}{{1}}\nProgress: {{2}}/{{3}}",
                            "houseConstructed": "Level {{0}} {{1}} constructed",
                            "steamCheckoutRequested": "Steam checkout requested. Please wait...",
                            "upgradePurchased": "Upgrade purchased: {{0}} (x{{1}})",
                            "chatIconUnlocked": "Unlocked chat icon: {{0}}",
                            "nameColorUnlocked": "Unlocked name color: {{0}}",
                            "avatarUnlocked": "Unlocked new avatar",
                            "avatarOutfitUnlocked": "Unlocked new avatar outfit",
                            "communityBuffAdded": "Added {{0}} minutes of community buff: {{1}}",
                            "nameChanged": "Name changed: {{0}}",
                            "guildCreated": "Created guild: {{0}}",
                            "guildDisbanded": "Disbanded guild: {{0}}",
                            "guildLeft": "Left guild: {{0}}",
                            "guildNoticeUpdated": "Guild notice message has been updated by {{0}}.",
                            "guildPromotedTo": "You have been promoted to guild {{0}}",
                            "guildDemotedTo": "You have been demoted to guild {{0}}",
                            "guildLeadershipPassed": "Passed leadership to {{0}}",
                            "guildMemberPromoted": "Promoted {{0}} to {{1}}",
                            "guildMemberDemoted": "Demoted {{0}} to {{1}}",
                            "guildKicked": "Kicked by guild: {{0}}",
                            "kickedGuildMember": "Kicked guild member: {{0}}",
                            "guildInvited": "Invited to guild: {{0}}",
                            "guildInviteSent": "Sent guild invite: {{0}}",
                            "guildInviteCanceled": "Guild invite canceled: {{0}}",
                            "guildJoined": "Guild joined: {{0}}",
                            "guildInviteDeclined": "Guild invite declined: {{0}}",
                            "partyCreated": "Party created",
                            "characterLeveledUp": "You have reached {{0}} {{1}}!",
                            "partyOptionsSaved": "Party options saved",
                            "partyOpenForRecruiting": "Party is open for recruiting",
                            "partyLeadershipChanged": "Party leadership changed to {{0}}",
                            "partyJoined": "You have joined the party",
                            "readyToBattle": "You are ready to battle",
                            "notReadyToBattle": "You are not ready to battle",
                            "partyDisbanded": "Party disbanded",
                            "partyLeft": "You have left the party",
                            "partyKicked": "You have been kicked from the party",
                            "partyMemberKicked": "Kicked {{0}} from the party",
                            "referralJoined": "A new player joined with your referral link. Thanks for sharing!",
                            "newReferralBonus": "New referral bonus granted\nClaim it at Social -> Referrals",
                            "cowbellPurchaseCompleted": "Purchase completed: {{0}} Cowbells",
                            "mooPassPurchaseCompleted": "Purchase completed: {{0}} days of MooPass",
                            "mooPassGranted": "Granted: {{0}} days of MooPass",
                            "updateSuccessful": "Update successful"
                        },
                        "errorNotification": {
                            "unexpectedError": "Unexpected error",
                            "characterBlockError": "Failed due to character block",
                            "characterNameNotFound": "Character name not found",
                            "cannotFriendSelf": "Cannot friend yourself",
                            "friendAlreadyExists": "Friend already exists",
                            "friendLimitReached": "Friend limit reached",
                            "characterWasNotFriend": "Character was not a friend",
                            "cannotBlockSelf": "Cannot block yourself",
                            "characterAlreadyBlocked": "Character already blocked",
                            "blockLimitReached": "Block limit reached",
                            "characterWasNotBlocked": "Character was not blocked",
                            "requestSpamProtection": "Spam Protection: Please do not make actions too quickly",
                            "nonPublicModMessage": "Cannot send mod message to non-public channels",
                            "nonPublicWarningMessage": "Cannot send warning message to non-public channels",
                            "chatSpamProtection": "Spam Protection: Please do not duplicate messages or send messages too quickly",
                            "waitBetweenTradeMessages": "Please wait 5 minutes between trade messages",
                            "waitBetweenRecruitMessages": "Please wait 5 minutes between recruit messages",
                            "chatReportAlreadyExists": "You have already reported this chat message",
                            "chatReportAlreadyResolved": "Report regarding this message has already been resolved",
                            "stopPartyBattleBeforeSolo": "You must stop party battle before starting a solo action",
                            "cannotEquipLoadoutForAction": "Cannot equip loadout for this action",
                            "cannotEquipLoadoutInCombat": "Cannot equip loadout in combat",
                            "orderNotFulfilled": "Order could not be fulfilled",
                            "steamCheckoutError": "Steam checkout error",
                            "stripeCheckoutError": "Stripe checkout error",
                            "characterNameUnavailable": "Character name is unavailable",
                            "guildNameUnavailable": "Guild name is unavailable",
                            "characterAlreadyInGuild": "Character already in guild",
                            "characterAlreadyInvited": "Character already invited",
                            "alreadyInParty": "You are already in a party",
                            "characterNotInParty": "Character not in party",
                            "partyNoLongerRecruiting": "This party is no longer recruiting",
                            "partyGameModeMismatch": "This party does not match your game mode",
                            "partySlotUnavailable": "Party slot no longer available",
                            "currentPasswordIncorrect": "Current password is incorrect",
                            "emailAlreadyRegistered": "This email address has already been registered on another account"
                        },
                        "guideTooltip": {
                            "milkingTitle": "Milking",
                            "milkingContent": "The milks from these magical cows have a wide variety of functions.They can be used to produce consumables or craft into special cheese to make equipment.\nCows love to be brushed. Equipping a brush will boost your milking skill.",
                            "foragingTitle": "Foraging",
                            "foragingContent": "You can find many different resources while foraging in the various areas.These resources can be used for cooking and brewing consumables.\nEquipping shears will boost your foraging skill.",
                            "woodcuttingTitle": "Woodcutting",
                            "woodcuttingContent": "You can gather logs from different types of trees.Logs are used for crafting various equipments.\nEquipping a hatchet will boost your woodcutting skill.",
                            "cheesesmithingTitle": "Cheesesmithing",
                            "cheesesmithingContent": "The hardened cheeses made with milks from the magical cows are as tough as metal.You can smith them into equipment that gives you bonuses in combat or skilling.\nEquipment is upgradable from one tier to the next, often requiring increasing amount of cheese.There is also special equipment that can be crafted with items found from monsters in combat.\nEquipping a hammer will boost your cheesesmithing skill.",
                            "craftingTitle": "Crafting",
                            "craftingContent": "You can craft weapons, offhands, and jewelry.\nEquipping a chisel will boost your crafting skill.",
                            "tailoringTitle": "Tailoring",
                            "tailoringContent": "You can tailor ranged and magic clothing using raw materials gathered from combat and foraging.\nEquipping a needle will boost your tailoring skill.",
                            "cookingTitle": "Cooking",
                            "cookingContent": "Food can be used to recover your HP or MP.They can be brought with you to combat.\nEquipping a spatula will boost your cooking skill.",
                            "brewingTitle": "Brewing",
                            "brewingContent": "Drinks can provide you with temporary buffs.Coffee can be brought with you to combat and tea can be used while skilling.\nEquipping a pot will boost your brewing skill.",
                            "alchemyTitle": "Alchemy",
                            "alchemyContent": "Alchemy allows you to transform items into other items.Each alchemy action has a different success rate, and the input items will always be consumed regardless of success or failure.\nCoinify: Converts item into coins.Decompose: Converts item into component materials.Transmute: Converts item into a random related item, and in some cases unique items that cannot be acquired elsewhere.\nEach transformation has a base success rate.The success rate is lower if your alchemy level is lower than the item level.Catalyst and tea can be used to increase the success rate.\nEquipping an Alembic will boost your alchemy skill.",
                            "enhancingTitle": "Enhancing",
                            "enhancingContent": "Enhancing allows you to permanently improve your equipment, giving them increasing bonuses as their enhancement level go up.\nEnhancing costs a small amount of materials for each attempt.The success rate depends on your enhancing skill level, the tier of the equipment, and the equipment's current enhancement level.A successful enhancement will increase the level by 1 and failure will reset the level back to 0.\nYou can optionally use copies of the base equipment for protection.Failure with protection will only reduce the enhancement level by 1 but consume 1 protection item.\nEquipping an enhancer will boost your enhancing success.",
                            "combatTitle": "Combat",
                            "combatContent": "Fighting monsters will earn you experience and item drops.Your combat stats are based on a combination of your combat skill levels and your equipment bonuses.\nYou can bring food to recover HP or MP, drinks to give you buffs, and abilities that can be cast.You can change the automation configuration from the settings icon below them.\nIf you are defeated in combat, your character will wait through a respawn timer before automatically continuing combat.",
                            "marketplaceTitle": "Marketplace",
                            "marketplaceContent": "The marketplace allows players to make buy or sell listings for any tradable item.You can click on any item listed to view existing listings or to create your own.\nNew listings will always be fulfilled by the best matching prices on market when possible.If no immediate fulfillment is possible, the listing will appear on the marketplace.\nWhen a trade is successful, a tax of 2% coins is taken and the received items can be collected from \"My Listings\" tab.Asks: existing sell listings.Bids: existing buy listings.",
                            "combatStatsTitle": "Combat Stats",
                            "combatStatsContent": "Attack Interval: How fast you can auto-attack.\nAbility Haste: Reduces ability cooldown.\nAccuracy: Increases chance to successfully attack.\nDamage: Auto-attack damage is random between 1 and the maximum damage.\nCritical Hit: Always rolls maximum damage. Ranged style has passive critical chance.\nTask Damage: Increases damage to monsters assigned as tasks.\nAmplify: Increases damage of that type.\nEvasion: Increases chance to dodge an attack.\nArmor: Mitigates % of physical damage.\nResistance: Mitigates % of elemental damage.\nPenetration: Ignores % of armor/resistance.\nLife Steal: Heal for % of auto-attack.\nMana Leech: Leeches for % of auto-attack.\nThorn: When attacked, deals a percentage of your defensive damage back to the attacker. Damage is increased by 1% per armor or resistance.\nRetaliation: When attacked, reflects a percentage of (defensive damage + incoming damage) as a smash attack back to the attacker.\nTenacity: Reduces chance of being blinded, silenced, or stunned.\nThreat: Increases chance of being targeted by monsters.\nRegen: Recover % of Max HP/MP per 10s.\nFood Haste: Reduces food cooldown.\nDrink Concentration: Increases drink effect. Reduces duration and cooldown.",
                            "noncombatStatsTitle": "Non-combat Stats",
                            "noncombatStatsContent": "Speed: Increases action speed\nTask Speed: Increases speed on actions assigned as tasks.\nGathering Quantity: Increases gathering quantity\nEfficiency: Chance of repeating the action instantly\nSkilling Essence Find: Increases chance of finding essences\nSkilling Rare Find: Increase rare item drop rate.",
                            "abilitiesTitle": "Abilities",
                            "abilitiesContent": "Abilities can be learned from ability books.You can acquire ability books as drops from monsters or purchase them from other players in the marketplace.\nAbilities can be placed into slots to be used in combat.You unlock more slots as your intelligence skill level increases.\nAbilities can level up as you gain experience.You get 0.1 experience for every use in combat and a much larger amount from consuming duplicate ability books.",
                            "houseTitle": "House",
                            "houseContent": "Rooms in your house can be built to give you permanent bonuses.\nEach room can be leveled up to a maximum of level 8 with increasing costs.",
                            "loadoutsTitle": "Loadouts",
                            "loadoutsContent": "Loadouts allow you to save your current equipment, consumables, and abilities to be automatically loaded later with actions.Loadouts can be tied to a single skill or \"All Skills.\"Selecting \"All Skills\" will only save equipment.\nSetting a loadout as default will auto-select the loadout when choosing any action in the skill(s) the loadout is associated with.",
                            "enhancingProtectionTitle": "Enhancing Protection",
                            "enhancingProtectionContent": "One protection item is consumed on failure to ensure that only 1 enhancement level is lost instead of being reset to 0.",
                            "alchemyCatalystTitle": "Alchemy Catalyst",
                            "alchemyCatalystContent": "Catalyst increases success rate.One catalyst is consumed per success."
                        },
                        "newsPanel": {
                            "news": "News"
                        },
                        "newsText": {
                            "1755558000000": {
                                "heading": "Major Patch - Combat Rework, Charms, and Refined Equipment",
                                "content": "<div>\n\t\t\t\t\tThis update introduces a major overhaul to the combat system, alongside new features such as charms, refined dungeon equipment, and expanded combat difficulty tiers.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tOver time, we identified long-term balance issues between the three combat styles (Melee, Ranged, and Magic). These issues made it very difficult to balance experience and income for different combat styles and across different states of progression. Some of the biggest issues included:\n\t\t\t\t\t<br />\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>Uneven skill requirements: Melee players relies on an extra Attack skill, leading to imbalance in experience distribution and coffee boosts.</li>\n\t\t\t\t\t\t<li>Magic ability scaling: Because magic does not auto attack, magic damaging abilities were granting roughly twice as much DPS increase per level compared to other styles, making it hard to balance damage outputs fairly across all levels of progression.</li>\n\t\t\t\t\t\t<li>Experience imbalances: XP formulas unintentionally favored certain strategies, even when DPS was the same.</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t<br />\n\t\t\t\t\tThe rework addresses these issues and sets up combat for long-term balance. The key changes include:\n\t\t\t\t\t<br />\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>All combat styles now require Attack skill for accuracy. Players will immediately receive Attack XP based on 15% of their Ranged and 12% of Magic experience as it's needed to be viable. The attack experience ratio is based on leaderboard data to allow total experience to catch up with Melee.</li>\n\t\t\t\t\t\t<li>Magic ability damage scaling per level decreased to 0.5% per level.</li>\n\t\t\t\t\t\t<li>Additional bonuses are added to ranged and magic equipment to maintain similar damage output as before.</li>\n\t\t\t\t\t\t<li>Bulwark reworked and significantly increased damage output to be more comparable to other combat styles.</li>\n\t\t\t\t\t\t<li>Aura system rework with new scaling mechanics based on skill levels, and a one-time XP refund via books.</li>\n\t\t\t\t\t\t<li>New combat XP system tied to monsters defeated, with Charms allowing you to distribute training XP toward specific skills.</li>\n\t\t\t\t\t\t<li>Party system update: XP divided equally, with decreased experience and drops for large level differences.</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t<br />\n\t\t\t\t\tAlong with the combat rework, we are introducing additional combat difficulty tiers. Combat zones now scale from T0 up to T5, and the new charm equipment can be found in higher difficulty zones. T1 and T2 dungeons are also added, where refinement shards can be obtained to refine your T95 and back slot items.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tVisit the Patch Notes for more details.\n\t\t\t\t</div>"
                            },
                            "1747609200000": {
                                "heading": "Medium Patch - MooPass and Other News",
                                "content": "<div>\n\t\t\t\t\tThe MooPass is here, an optional membership that provides a variety of helpful but non-essential perks!\n\t\t\t\t\tAll characters can claim 14 days of MooPass for free, and an additional 14 days have been granted to all existing characters.\n\t\t\t\t\tFor more details, check out the Patch Notes or directly in Cowbell Store.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tAs with any new form of monetization, we understand there are concerns about the game's future direction and the potential for pay-to-win.\n\t\t\t\t\tWe want to reassure you that we have no plans to introduce any monetization that could be considered predatory.\n\t\t\t\t\tWe've carefully considered community feedback and designed the MooPass to be affordable and fair for both paying and free-to-play players.\n\t\t\t\t\tIt introduces no content paywalls and has no impact on core gameplay, ensuring a level playing field.\n\t\t\t\t\tBy offering recurring value, MooPass also helps maintain demand for Cowbells beyond one-time convenience upgrades and cosmetics,\n\t\t\t\t\twhich supports the long-term sustainability of Milky Way Idle.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tIn other news, the continued growth of our playerbase has posed new challenges for our moderation team.\n\t\t\t\t\tOur current system depends on volunteer moderators actively monitoring the in-game chat.\n\t\t\t\t\tWe've seen feedback both regarding moderation strictness and inappropriate messages being missed during low-coverage times.\n\t\t\t\t\tTo address this, we're developing a new system that will rely more heavily on player reports,\n\t\t\t\t\tgiving players more control over their chat experience. For example, when moderators are unavailable,\n\t\t\t\t\tmessages that receive enough reports will be subject to automated moderation.\n\t\t\t\t\tThis also allows our moderators to take a less proactive role and instead focus on messages that have been flagged by the community.\n\t\t\t\t\tWe expect to release this system within the next week or two.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tLastly, a reminder to follow our rules regarding the single-account policy and trade boosting.\n\t\t\t\t\tWith many new players joining, some may not be familiar with our stance on funenlng wealth from alt accounts or coin purchases from gold sellers.\n\t\t\t\t\tWe regularly conduct ban waves. For example, over the past couple of weeks,\n\t\t\t\t\twe've issued temporary or permanent bans to 500+ main accounts and thousands of alt accounts.\n\t\t\t\t\tPlayers receiving temp bans also had 2–3x the boosted wealth removed, totaling over 100 billion coins.\n\t\t\t\t\tCheating is not worth the risk, and we will continue to improve our detection systems.\n\t\t\t\t</div>"
                            },
                            "1744930800000": {
                                "heading": "Pirate Cove Dungeon, 4th Character Slot, and Custom Cosmetic Policy Update",
                                "content": "<div>\n\t\t\t\t\tThe Pirate Cove Dungeon is now open for exploration! This new dungeon features a variety of new T95 weapons and armors, as well as new abilities. We've also made some adjustments to existing items and abilities to improve balance and gameplay. Check out the full patch notes for all the details!\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tIn other news, we've added a new 4th character slot for players, allowing everyone the same opportunity of having up to 1 Standard and 3 Ironcow characters.\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\tWe are also updating our custom cosmetic policy and pricing. While the feature started as nice gift to show our appreciation to our supporters, it's now too overwhelming with the huge increase in playerbase. We've spent 150-200 hours to work on about 100 requests in the past month, and we need to be able to allocate more time for other development tasks. Starting May 1st, custom cosmetics will require spending supporter points and cowbells. Any requests initiated before the end of April will be granted based on the previous supporter point requirements.\n\t\t\t\t</div>"
                            },
                            "1734825600000": {
                                "heading": "Skilling Expansion Part 2 - Celestial Tools and Skilling Outfits",
                                "content": "<div>\n                    We're excited to release the second part of the skilling expansion, introducing Celestial Tools and Skilling Outfits! After using Holy tools for such a long time, skilling specialists can finally get their hands on some upgrades. These items are not easy to acquire, but those who are dedicated (or wealthy) enough to obtain them will be rewarded with a significant boost. Dive in and take your skilling to the next level!\n\t\t\t\t</div>"
                            }
                        },
                        "patchNotesPanel": {
                            "patchNotes": "Patch Notes"
                        },
                        "patchNotesText": {
                            "1755644400000": {
                                "heading": "Hotfix",
                                "content": "<div>\n\t\t\t\t\tBug Fix:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tFixed combat level calculated incorrectly in battle under certain conditions, occasionally resulting in incorrect debuffs for party members.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMagician's Hat (R) now has the correct level requirement of 110.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tBalancing:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tEnchanted Bishop's defensive damage reduced as the retaliation damage was still too high making it more difficult than it should be.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRefined equipment bonus increased from 5% to 8% (16% for back slot equipment) to allow it to be cost effective for more players.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                            },
                            "1755558000000": {
                                "heading": "Major Patch - Combat Rework, Charms, and Refined Equipment",
                                "content": "<div>\n\t\t\t\t\tCombat Rework\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAll combat styles now require the Attack skill for accuracy.\n\t\t\t\t\t\t\tPlayers will now receive Attack experience equal to 15% of their existing Ranged experience and 12% of their Magic experience.\n\t\t\t\t\t\t\tThis adjustment is based on leaderboard data to ensure comparable total experience across the three combat styles.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tBonus magic evasion from the Ranged skill and bonus resistances from the Magic skill have been moved to the Defense skill.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tThe Power skill has been renamed to Melee.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tThe Regal Sword can now parry damage for party members.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tPestilent Shot has been reworked to debuff Armor/Resistances instead of HP/MP regeneration.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCritical rate and other buffs have been added to Ranged equipment to compensate for the loss of accuracy.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMagic damaging abilities now scale by 0.5% per ability level instead of 1%.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRippling Trident now restores 10 MP when Ripple activates.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAbility damage and other buffs have been added to Magic equipment to compensate for the loss of accuracy and reduced ability scaling.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tBulwark:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tBulwark has been reworked to include a new stat, Defensive Damage, significantly increasing its damage output.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tSpiked Shell has been reworked to include both physical and elemental thorns, scaling based on both Defensive Damage and Armor/Resistances.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tArcane Reflection has been converted to Retribution, granting a Retaliation buff that reflects a percentage of incoming damage as a Smash attack.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tShield Bash's Armor scaling has been increased from 60% to 70%.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAuras:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tAqua and Flame Auras have been converted into Mystic Aura, which grants an amplify bonus to all elements.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tSylvan Aura has been converted into Guardian Aura, which grants healing amplify, evasion, Armor, and Resistances. Guardian Aura can temporarily be traded into Mystic Aura in the Shop.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tBase Aura stats have been adjusted.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tEach Aura now additionally scales with the caster's corresponding skill:  \n\t\t\t\t\t\t\t\t\tSpeed Aura → Attack, Guardian Aura → Defense, Fierce Aura → Melee, Critical Aura → Ranged, Mystic Aura → Magic.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tAll blue ability experience will be reverted into books at a rate of 1 book per 500 experience.\n\t\t\t\t\t\t\t\t\tAny remaining experience below 500 will stay on the ability.\n\t\t\t\t\t\t\t\t\tThis is a one-time conversion.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tA fixed amount of combat experience is now granted based on the monster defeated, with an increasing Survival XP bonus the longer the fight lasts.\n\t\t\t\t\t\t\t30% of the experience is granted to the primary training skill determined by your weapon.\n\t\t\t\t\t\t\tThe distribution of the remaining 70% can be chosen using the new Charm equipment.\n\t\t\t\t\t\t\tThis system allows players to optimize their experience distribution across preferred skills.\n\t\t\t\t\t\t\tExperience rates are balanced so that players can gain more in their primary skill, but potentially less total experience overall.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMonsters no longer have base regeneration.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMonsters will now enrage every 3 minutes, increasing their accuracy and damage by 10% (stacking up to 10 times).\n\t\t\t\t\t\t\tBosses use a 10-minute timer instead of 3 minutes.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tSome monster stats have been adjusted to balance around these changes.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCombat level formula has been updated.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tParty combat experience is now divided equally among all party members, regardless of damage contribution.\n\t\t\t\t\t\t\tParty members who are at least 20% below the highest combat level will receive an experience and drop debuff, increasing by 3% for each 1% level difference beyond 20%.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAll combat styles have been balanced to deal comparable damage and achieve similar experience rates.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tFeatures and Content:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCombat Zones now have selectable difficulty tiers ranging from T0 to T5.\n\t\t\t\t\t\t\tT0 corresponds to the previous normal zones, while T2 is slightly above the previous Elite zones.\n\t\t\t\t\t\t\tHigher difficulty grants additional experience, increased drops, and some unique drops.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCharms:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tCharms are new equipment that can be equipped in the Charm slot to grant bonus experience to a specific skill.\n\t\t\t\t\t\t\t\t\tThey can also be used to focus experience toward that skill in combat.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tTrainee Charms can be purchased from the Shop for 250K.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tHigher-tier non-combat Charms can be crafted using Skilling Essences.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tHigher-tier combat Charms can be obtained as drops from higher-tier combat zones.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tCharms can be combined into higher tiers using the Crafting skill.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tCharms can be enhanced and grant 5x the normal enhancement bonus, like other jewelry equipment.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tDungeons now have higher difficulty tiers, up to T2.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRefinement:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tT1 and T2 dungeons drop Refinement Chests, which are opened using the same Chest Keys to obtain Refinement Shards.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tRefinement Shards can be used to upgrade Lv.95 equipment and back-slot items from their respective dungeons.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tRefined equipment grants +5% extra stats (+10% for back-slot items) and increases weapon special effects.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tRefining an existing item will transfer 100% of enhancement levels.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tEnhancement scaling has been moderately increased for +11 and higher.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tSupporter chat icons (different tiers of Cowbells) have been added to the Cowbell Store.\n\t\t\t\t\t\t\tThey can be purchased with supporter points and will display as a special second icon.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tDefault loadout slot count increased from 2 to 3.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tOther:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tOfficial market data now updates every 1 hour instead of every 6 hours.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                            },
                            "1749250800000": {
                                "heading": "Medium Patch - Chat Report System and QOL Improvements",
                                "content": "<div>\n\t\t\t\t\tFeatures and Content:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tChat Report System:\tPlayers can now report rule-breaking messages in the chat.\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tReports are sent to moderators for review and potential action.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tAutomod may be applied to messages that receive enough reports. Penalty can still be adjusted after manual review.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tSending correct reports will increase the weight of your future reports and incorrect reports will significantly reduce it.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tYou can now delete character in Settings.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAdded special icons (Contributor, Bug Finder, etc) that can be granted to players for significant contributions. They will display as a second icon.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tQOL:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tYou can now reorder action queues.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tYou can now link market listings in chat. This should improve trade chat experience with different languages.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tOther:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAdded official market data that can be accessed at <a href=\"https://www.milkywayidle.com/game_data/marketplace.json\" target=\"_blank\">https://www.milkywayidle.com/game_data/marketplace.json</a>.\n\t\t\t\t\t\t\tThis is updated every 6 hours (with some randomness and delay to prevent manipulation) and contains a snapshot of the top ask and bid prices for each item.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRemoved @mod command from the chat as it is no longer needed.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tServer optimizations to improve backend performance and support additional players.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                            },
                            "1747609200000": {
                                "heading": "Medium Patch - MooPass and Other Improvements",
                                "content": "<div>\n\t\t\t\t\tFeatures and Content:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMooPass: an optional membership that grants a number of helpful but non-essential perks.\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tAvailable for purchase in the Cowbell Store with either Cowbells or real money.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tAll characters can claim 14 days of MooPass for free. Additional 14 days granted to all existing characters.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+5% XP buff. This is limited to Standard characters only to allow Ironcow characters to not be significantly affected by paid content.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+10 Hour Offline Progress Limit\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+6 Market Listing Limit\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+1 Action Queue Limit\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+8 Task Slot Limit\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+1 Free Task Reroll (per task)\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tLoot Tracker of last 20 activities. This is found below the Cowbell Store in the menu.\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tGolden Avatar Border\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tSteam:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tUpdated Steam client and moved local save data to a more stable file location.\n\t\t\t\t\t\t\tFor the first time after patching, wou may need to re-login and reconfigure extensions.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tQOL:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMarket listing max price increased from 10B to 100B.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMarket listing prices that are in shortened format will now be color coded based on their primary unit (K, M, B, T) to reduce chance of misreading prices.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAdded /r chat command to reply to the last whisper.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAdded stricter spam protection for excessive duplicate chat messages from 1 or more players.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tBug Fixes:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tFixed issue where enhancing essence drop rate was 33% lower than displayed. (I buffed it at some point but only updated the client and forgot the backend)\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tFixed issue with unread whispers count not showing up when reentering the game.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCheese type Plate Body Auto Attack Damage now correctly match Plate Legs bonuses. Special equipment are unaffected.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tCorrectly translate party chat links for Chinese language.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tAllow leaderboard tabs on mobile to wrap to second line so the Steam categories do not cause display overflow.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tOther:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRemoved seasonal Anniversary Purple and OG Jerry chat icons.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tRemoved Brown/White Key Fragment exchange from the dungeon shop as it was meant to be temporary.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\tMarket taxes now round up instead of round down to reduce monopolization of low-value item trading.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                            },
                            "1744930800000": {
                                "heading": "Major Patch - Pirate Cove Dungeon and More",
                                "content": "<div>\n\t\t\t\tFeatures and Content:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tPirate Cove Dungeon:\n\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tNew T95 Magic Weapons: Rippling Trident, Blooming Trident, Blazing Trident.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tNew T95 Armors: Anchorbound Plate Body/Legs, Maelstrom Plate Body/Legs, Kraken Tunic/Chaps, Corsair Helmet, Marksman Bracers.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tNew Abilities: Shield Bash (also added to Chimerical Den), Fracturing Impact, Life Drain.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tAlchemy recipes added for the new items. All dungeon ability book transmutes have been normalized to 50% success.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ol>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFurious Spear: New T95 spear added to Enchanted Fortress.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tUpgrading equipment with production skills will now save 70% of the enhancement levels. Some T95 equipment recipes are adjusted to be upgraded from lower tier variants.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded 4th character slot. You can only have up to 3 Ironcows.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded Steam leaderboard for characters created after the Steam release and is also linked to Steam. This is only visible on qualifying characters.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tIncreased guild member slots from 25 + level/4 to 30 + level/3.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tCosmetics:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tSeasonal(2 year anniversary): Anniversary Purple, OG Jerry chat icons.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded new chat icons based on a small selection of dungeon bosses.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded 2 new Pirate Cove themed avatars and outfits.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tCustom cosmetics are changed to require spending supporter points and cowbells.\n\t\t\t\t\t\tWe are simply overwhelmed by requests due to the huge increase in player count and unfortunately cannot continue supporting them as gifts.\n\t\t\t\t\t\tThe new pricing will take effect on May 1st. Any requests initiated before end of April will be granted based on the previous supporter point requirements.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tRebalancing:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdjusted recipe of Chimerical Chest Key and Enchanted Chest Key so that their Brown and White Key Fragments are swapped.\n\t\t\t\t\t\tThis prevents Enchanted Fortress and Pirate Cove from sharing 3/4 key fragments.\n\t\t\t\t\t\tYou can temporarily freely swap between Brown and White Key Fragments in the dungeon shop until the next patch.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded auto attack damage to all melee armor to bring melee damage closer to the other styles.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tIncreased bulwark accuracy and damage\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded melee accuracy to Colossus Plate Body/Legs\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tCrippling Slash: Reworked to damage all enemies.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tMaim: Damaged over time duration reduced from 15s to 9s. Damage taken debuff increased from 0% to 8%.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFrost Surge: Evasion debuff lowered from 15% to 10%.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFirestorm: Damage over time duration reduced from 10s to 6s.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tSmoke Burst: Accuracy debuff lowered from 20% to 15%. Evasion debuff increased from 0% to 15%.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tGolem Cave: Monster defense level reduced by 10-20.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tTwilight Zone: Monster fire resistance reduced by 20.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tUI:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded a new setting to hide General chat system messages.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tDisabled party linking in General, Trade, and Beginner chat.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded double confirmation to some buttons that are troublesome when misclicked.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded inactive days count to guild and friend list.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tChanged \"Start\" button text on alchemy and enhancing to be more obvious about what action it is.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tBug Fixes:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tDo not prevent making an instant market order when you have 3 open listings on the item.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed issue that may cause small number of player's actions to stop after a server restart.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed a rare bug that may cause server crash.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tOther:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tBlocking characters will prevent party join (based on leader) and guild invite.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tServer and client optimizations to speed up server restart, task generation, scroll performance, and more.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded a feature to allow admin to post an announcement bar for important messages.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tLocalization improvements.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                            },
                            "1741906800000": {
                                "heading": "Minor Patch - Anti-Fraud Measures and Bug Fixes",
                                "content": "<div>\n\t\t\t\tAnti-Fraud:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tDue to a few instances of recent fraudulent purchases, added anti-fraud measure where player's first time Cowbell purchase may trigger a 72-hour restriction on selling Bags of Cowbells on the market. You will be notified prior to purchasing.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tBug Fix:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed an issue where under extremely rare conditions a player may get stuck in a nonexistent party combat action.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed additional translation inconsistencies with some item names and their corresponding actions.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tOther:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tBackend changes to improve database connection stability.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                            },
                            "1740913200000": {
                                "heading": "Major Patch - Chinese Localization and Final Preparations for Steam Early Access Release",
                                "content": "<div>\n\t\t\t\tUI:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded Chinese localization.\n\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tThe language will be automatically selected based on your browser language.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tPlayers can also manually change the display language in [Settings] -> [Game] or from the home page.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tA few items have not yet been translated, including most of news/patch notes, terms of use, and privacy policy.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\tIf you see any translation issues or bugged display text, please report them in the #bug-reports channel on Discord.\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ol>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tUpdated popup modals to all be centered on the entire game screen.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tOther:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tRemoved seasonal Spring Festival cosmetics from the Cowbell Store.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdditional adjustments to Steam integration.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tPrivacy policy have been updated to include language for use of analytical and marketing cookies. This allows us to optimize marketing campaigns when attempting to run ads for Milky Way Idle on other platforms.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                            },
                            "1737885600000": {
                                "heading": "Minor Patch",
                                "content": "<div>\n\t\t\t\tSpring Festival:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tSpring festival chat icon, avatar, and avatar outfits available in Cowbell Store until the update after at least 3 weeks. You can continue to use them after the event ends.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tUI:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tSend a system message every 25 skill levels at or above level 100 instead of only for levels 100 and 125.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tBug Fix:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tLeaderboard guild names should not be clickable.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tImproved chat message URL link parsing to be more accurate.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed an issue where players get logged out if the database goes offline during maintenance.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tFixed an issue where some uncommon conditions cause player combat to not correctly stop after running out of offline progress.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tOther:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tAdded @mod and @mods chat commands to notify moderators for emergencies.\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\tImplemented authentication and payment changes in the background to support upcoming Steam release.\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                            }
                        },
                        "gameGuidePanel": {
                            "gameGuide": "Game Guide"
                        },
                        "gameGuideContent": {
                            "faq": "FAQ",
                            "faqContent": "<heading>General</heading>\n\t\t\t<question>Q: How does offline progress work?</question>\n\t\t\t<answer>A: Your character continues to make progress even when you're offline. A new player gets up to 10 hours of offline progress anytime you close the browser or go offline. You can extend this time with convenience upgrades available in the Cowbell Store.</answer>\n\t\t\t<question>Q: Can I log in from another device?</question>\n\t\t\t<answer>A: If you have registered an account, you can log in from any device using your email and password. If you are playing as a guest, you can find your guest password in Settings and use it to log in with your username.</answer>\n\t\t\t<question>Q: Can I play the game without an internet connection or as a single player?</question>\n\t\t\t<answer>A: No, you must be connected to the internet to play the game. However, you do continue to make progress while offline for up to 10 hours by default. If you prefer to not interact with other players, you can collapse the chat and choose not to use the marketplace.</answer>\n\t\t\t<question>Q: Can I change my username?</question>\n\t\t\t<answer>A: Yes, you can change your username by going to the Cowbell Store and clicking on the \"Name Change\" tab. It costs 500 cowbells to change your username.</answer>\n\t\t\t<question>Q: How can I get a chat icon or different name color?</question>\n\t\t\t<answer>A: You can purchase a chat icon or name color from the Cowbell Store using cowbells. You can change your displayed icon and color in Settings.</answer>\n\t\t\t<question>Q: How do I send a private message to another player?</question>\n\t\t\t<answer>A: To send a private message to another player, click on their name next to their chat message and click \"Whisper\". You can also use the chat command \"/w player_name chat_message\".</answer>\n\t\t\t<question>Q: How do I block another player?</question>\n\t\t\t<answer>A: To block a player and stop seeing their chat messages, click on their name next to their message and click \"Block\". You can also use the chat command \"/block player_name\". You can find your block list in the Settings menu and unblock players from the list.</answer>\n\t\t\t<heading>Gameplay</heading>\n\t\t\t<question>Q: What is the action queue?</question>\n\t\t\t<answer>A: The action queue is a feature that allows you to set up a sequence of actions for your character to perform. To use it, click the \"Add Queue\" button instead of \"Start\". Queue slots can be unlocked or upgraded from the Cowbell Store.</answer>\n\t\t\t<question>Q: What are cowbells and how can I get more?</question>\n\t\t\t<answer>\n\t\t\tA: Cowbells are the premium currency of the game. They allow players to purchase convenience upgrades, cosmetics, community buffs that benefit the whole server, and name changes. There are three ways to get Cowbells:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Finish the tutorial: You will receive 80 cowbells as a reward.</li>\n\t\t\t\t\t<li>Rare drops: You have a chance to get cowbells from rare loot boxes found while skilling or battling enemies in combat.</li>\n\t\t\t\t\t<li>Purchase from Cowbell Store: You can purchase cowbells with real money from the Cowbell Store to help support the game.</li>\n\t\t\t\t\t<li>Buy from the marketplace: You can buy tradable \"Bag of 10 Cowbells\" with coins from other players in the Marketplace.</li>\n\t\t\t\t</ul>\n\t\t\t</answer>\n\t\t\t<question>Q: What are rare drops?</question>\n\t\t\t<answer>\n\t\t\t\tA: Rare drops are loot boxes that can be obtained while engaging in different activities in the game:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Gathering skills: You get meteorite caches which contain star fragments.</li>\n\t\t\t\t\t<li>Production skills, alchemy, and enhancing: You get artisan's crates which contain shards of protection and gems.</li>\n\t\t\t\t\t<li>Combat: You get treasure chests which contain gems.</li>\n\t\t\t\t</ul>\n\t\t\t\tAll boxes also contain coins and occasionally cowbells. You get larger boxes when doing higher level skills or from higher level enemies.\n\t\t\t</answer>\n\t\t\t<question>Q: What are gems used for?</question>\n\t\t\t<answer>A: Gems can be used to craft different jewelry that gives small bonuses. Additionally, you can crush gems into smaller pieces with the Crafting skill and use them to brew stronger versions of coffee and tea. Gems can be obtained from treasure chests in combat.</answer>\n\t\t\t<question>Q: Where do I get tea leaves?</question>\n\t\t\t<answer>A: You can get tea leaves from defeating enemies in combat. When viewing combat zones, you can hover over an enemy (long press on mobile) to see what items it drops. Tea leaves are an essential ingredient for brewing tea, which can buff non-combat skills.</answer>\n\t\t\t<question>Q: What are essences?</question>\n\t\t\t<answer>A: Essences are used to enhance special equipment with the Enhancing skill. Enemies from each combat zone drop a different type of essence.</answer>\n\t\t\t<br />",
                            "gathering": "Gathering",
                            "gatheringContent": "<heading>Milking</heading>\n\t\t\t<text>\n\t\t\t\tMilking magical cows yields different types of milk, which can be used in a various ways:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Cheesesmithing: Milk can be turned into cheese, which can then be used to craft melee equipment or skilling tools.</li>\n\t\t\t\t\t<li>Cooking: Milk is an essential ingredient for many recipes.</li>\n\t\t\t\t\t<li>Brewing: Milk is used in a small number of coffee and tea recipes.</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>You can help magical cows produce milk faster by equipping a brush.</text>\n\t\t\t<br />\n\t\t\t<heading>Foraging</heading>\n\t\t\t<text>Foraging allows you to gather different resources from various areas. You can forage for a specific item in an area or forage the entire area to get a bit of everything.</text>\n\t\t\t<text>\n\t\t\t\tForaged resources can be used in:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Cooking: Eggs, wheat, sugar, berries, and fruits are essential ingredients for many recipes.</li>\n\t\t\t\t\t<li>Brewing: Berries, fruits, and coffee beans are used to brew coffee and tea.</li>\n\t\t\t\t\t<li>Tailoring: Flax, bamboo branches, cocoons, and other materials can be processed into fabric to make magical clothing.</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>You can increase foraging speed by equipping shears.</text>\n\t\t\t<br />\n\t\t\t<heading>Woodcutting</heading>\n\t\t\t<text>You can chop logs from different kinds of trees.</text>\n\t\t\t<text>\n\t\t\t\tLogs can be used in:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>Cheesesmithing: Logs are part of the recipe for making a number of melee weapons and skilling tools.</li>\n\t\t\t\t\t<li>Crafting: Logs can be processed into lumber to craft ranged and magic weapons.</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>You can increase woodcutting speed by equipping a hatchet.</text>\n\t\t\t<br />\n\t\t\t<heading>Level Bonus</heading>\n\t\t\t<text>You gain 1% efficiency bonus for each level you have above the action's level requirement.</text>\n\t\t\t<br />",
                            "production": "Production",
                            "productionContent": "<heading>Cheesesmithing</heading>\n\t\t\t<text>Cheesesmithing is the process of creating melee equipment and skilling tools.</text>\n\t\t\t<text>Milk is processed into different tiers of cheese. The cheese is then used (sometimes in combination with other resources) to craft equipment. Equipment can be upgraded into higher tiers as you level up.</text>\n\t\t\t<text>You can increase cheesesmithing speed by equipping a hammer.</text>\n\t\t\t<br />\n\t\t\t<heading>Crafting</heading>\n\t\t\t<text>Crafting produces a variety of items, including ranged and magic weapons, jewelry, and other special resources.</text>\n\t\t\t<text>Logs can be processed into different tiers of lumber, which is then used to craft ranged and magic weapons.</text>\n\t\t\t<text>Jewelry can be crafted using star fragments and gems, which are rare drops found while gathering or from combat.</text>\n\t\t\t<text>You can increase crafting speed by equipping a chisel.</text>\n\t\t\t<br />\n\t\t\t<heading>Tailoring</heading>\n\t\t\t<text>Tailoring produces ranged and magic clothing as well as pouches.</text>\n\t\t\t<text>Raw resources from foraging, such as flax, bamboo branches, and cocoons, can be processed into fabric. Hides from combat enemies can also be processed into leather.</text>\n\t\t\t<text>Fabric is primarily used to make magic clothing, such as robes and hats, while leather is used to make ranged clothing, such as leather armor and boots.</text>\n\t\t\t<text>In addition to clothing, you can craft pouches which increase your maximum HP and MP in combat. Pouches also provide additional consumable slots for both skilling and combat.</text>\n\t\t\t<text>You can increase sewing speed by equipping a needle.</text>\n\t\t\t<br />\n\t\t\t<heading>Cooking</heading>\n\t\t\t<text>Cooking produces food that can be used during combat.</text>\n\t\t\t<text>Donuts and cakes restore HP, while gummies and yogurt restore MP.</text>\n\t\t\t<text>You can increase cooking speed by equipping a spatula.</text>\n\t\t\t<br />\n\t\t\t<heading>Brewing</heading>\n\t\t\t<text>Brewing produces drinks that provide buffs with limited durations.</text>\n\t\t\t<text>Coffee can be consumed during combat to improve combat-related stats, while tea can be consumed to improve non-combat skills.</text>\n\t\t\t<text>You can increase brewing speed by equipping a pot.</text>\n\t\t\t<br />\n\t\t\t<heading>Level Bonus</heading>\n\t\t\t<text>You gain 1% efficiency bonus for each level you have above the action's level requirement.</text>\n\t\t\t<br />",
                            "alchemy": "Alchemy",
                            "alchemyContent": "<heading>Alchemy</heading>\n\t\t\t<text>Alchemy allows you to transform items into other items using the actions Coinify, Decompose, or Transmute. Each action has a different success rate, and the input item and coin cost will always be consumed regardless of success or failure.</text>\n\t\t\t<br />\n\t\t\t<heading>Coinify</heading>\n\t\t\t<text>Coinify lets you to convert items into coins. The amount of coins received is 5 times the item's sell price. The base success rate is 70%.</text>\n\t\t\t<br />\n\t\t\t<heading>Decompose</heading>\n\t\t\t<text>Decompose lets you to break down items. Equipment can be turned into their base components, and non-equipment items can be turned into skilling essences. Decomposing enhanced equipment yields bonus enhancing essences, with the quantity doubling for each enhancement level. The base success rate is 60%.</text>\n\t\t\t<br />\n\t\t\t<heading>Transmute</heading>\n\t\t\t<text>Transmute lets you to change items into other related items or rare uniques, such as the Philosopher's Stone. The base success rate varies depending on the item being transmuted.</text>\n\t\t\t<br />\n\t\t\t<heading>Success Rates</heading>\n\t\t\t<text>The base success rate depends on the alchemy action and the specific item being alchemized. If your Alchemy skill level is lower than the item's level, there will be a penalty to the success rate. The success rate can be increased by using catalysts and catalytic tea.</text>\n\t\t\t<br />\n\t\t\t<heading>Catalysts</heading>\n\t\t\t<text>Catalysts are special items that can be used to improve the success rates of Alchemy actions. One catalyst is consumed on success only. Regular catalysts can be crafted using skilling essences. Prime catalysts can be obtained by transmuting regular catalysts.</text>\n\t\t\t<br />\n\t\t\t<heading>Alchemy Efficiency</heading>\n\t\t\t<text>You gain 1% efficiency bonus for each level you have above the item's recommended level.</text>\n\t\t\t<br />\n\t\t\t<heading>Instructions</heading>\n\t\t\t<text>Here is a list of steps to follow when alchemizing items:</text>\n\t\t\t<ol>\n\t\t\t\t<li>Select the item that you want to alchemize.</li>\n\t\t\t\t<li>Select the alchemy action that you want to perform.</li>\n\t\t\t\t<li>Decide whether or not to use a catalyst. If you do, select the catalyst.</li>\n\t\t\t\t<li>Click the \"Start\" button and the alchemy process will begin.</li>\n\t\t\t</ol>\n\t\t\t<br />",
                            "enhancing": "Enhancing",
                            "enhancingContent": "<heading>Enhancing</heading>\n\t\t\t<text>Enhancing is the process of increasing the stats of any equipment, such as armor, weapons, tools, pouches, or jewelry. When you successfully enhance an equipment, its enhancement level increases by 1. However, if the enhancement process fails, the level is reset to 0.</text>\n\t\t\t<br />\n\t\t\t<heading>Success Rate</heading>\n\t\t\t<text>The success rate of enhancing depends on several factors, including your enhancing skill level, the tier of the equipment, and the equipment's current enhancement level. Generally, the higher the tier and enhancement level of the equipment, the lower the success rate will be. Equipping an enhancer can improve your success rate.</text>\n\t\t\t<br />\n\t\t\t<heading>Protection</heading>\n\t\t\t<text>The protection mechanic is a feature that allows players to use copies of the base equipment, mirrors of protection, or crafting components (for special equipment only) to add protection to each enhancing attempt. If the enhancement fails, the equipment's level is only decreased by 1, but 1 protection item is consumed. This can be a cost-effective way to reach high enhancement levels for endgame players.</text>\n\t\t\t<br />\n\t\t\t<heading>Enhancing Speed</heading>\n\t\t\t<text>You gain 1% action speed bonus for each level you have above the item's recommended level.</text>\n\t\t\t<br />\n\t\t\t<heading>Instructions</heading>\n\t\t\t<text>Here is a list of steps to follow when enhancing equipment:</text>\n\t\t\t<ol>\n\t\t\t\t<li>Select the piece of equipment that you want to enhance.</li>\n\t\t\t\t<li>Set the target enhancement level that you would like to stop at. Be realistic about what level you can reach with your current resources.</li>\n\t\t\t\t<li>Decide whether or not to use protection. If you do then select the protection item and a minimum enhancement level where protection will be used. Generally, protection is more cost-effective when the item is at higher enhancement levels.</li>\n\t\t\t\t<li>Click the \"Start\" button and you will continue enhancing until you reach the target level or run out of materials.</li>\n\t\t\t</ol>\n\t\t\t<br />\n\t\t\t<heading>Enhancement Bonus</heading>\n\t\t\t<text>The bonus stats on enhanced equipment are a percentage of the base stats. The total bonus at each enhancement level is as follows:\n\t\t\t<br />\n\t\t\t+1: 2.0%\n\t\t\t<br />\n\t\t\t+2: 4.2%\n\t\t\t<br />\n\t\t\t+3: 6.6%\n\t\t\t<br />\n\t\t\t+4: 9.2%\n\t\t\t<br />\n\t\t\t+5: 12.0%\n\t\t\t<br />\n\t\t\t+6: 15.0%\n\t\t\t<br />\n\t\t\t+7: 18.2%\n\t\t\t<br />\n\t\t\t+8: 21.6%\n\t\t\t<br />\n\t\t\t+9: 25.2%\n\t\t\t<br />\n\t\t\t+10: 29.0%\n\t\t\t<br />\n\t\t\t+11: 33.4%\n\t\t\t<br />\n\t\t\t+12: 38.4%\n\t\t\t<br />\n\t\t\t+13: 44.0%\n\t\t\t<br />\n\t\t\t+14: 50.2%\n\t\t\t<br />\n\t\t\t+15: 57.0%\n\t\t\t<br />\n\t\t\t+16: 64.4%\n\t\t\t<br />\n\t\t\t+17: 72.4%\n\t\t\t<br />\n\t\t\t+18: 81.0%\n\t\t\t<br />\n\t\t\t+19: 90.2%\n\t\t\t<br />\n\t\t\t+20: 100%\n\t\t\t</text>\n\t\t\t<text>As an exception, accessories, back slot, and trinket slot enhancements receives 5x the normal bonus. For instance, a +1 enhancement on accessories is a 10% bonus.</text>\n\t\t\t<br />\n\t\t\t<heading>Enhancement Base Success Rate</heading>\n\t\t\t<text>\n\t\t\t+1: 50%\n\t\t\t<br />\n\t\t\t+2: 45%\n\t\t\t<br />\n\t\t\t+3: 45%\n\t\t\t<br />\n\t\t\t+4: 40%\n\t\t\t<br />\n\t\t\t+5: 40%\n\t\t\t<br />\n\t\t\t+6: 40%\n\t\t\t<br />\n\t\t\t+7: 35%\n\t\t\t<br />\n\t\t\t+8: 35%\n\t\t\t<br />\n\t\t\t+9: 35%\n\t\t\t<br />\n\t\t\t+10: 35%\n\t\t\t<br />\n\t\t\t+11: 30%\n\t\t\t<br />\n\t\t\t+12: 30%\n\t\t\t<br />\n\t\t\t+13: 30%\n\t\t\t<br />\n\t\t\t+14: 30%\n\t\t\t<br />\n\t\t\t+15: 30%\n\t\t\t<br />\n\t\t\t+16: 30%\n\t\t\t<br />\n\t\t\t+17: 30%\n\t\t\t<br />\n\t\t\t+18: 30%\n\t\t\t<br />\n\t\t\t+19: 30%\n\t\t\t<br />\n\t\t\t+20: 30%\n\t\t\t</text>\n\t\t\t<br />",
                            "combat": "Combat",
                            "combatContent": "<heading>Combat</heading>\n\t\t\t<text>Fighting aliens can earn you coins, tea leaves, hides, essences, ability books, gems, and special items, as well as more common resources. There are enemies of varying difficulty located in different combat areas.<br /></text>\n\t\t\t<br />\n\t\t\t<heading>Equipment</heading>\n\t\t\t<text>Wearing equipment will boost your stats in combat. You can equip items directly from the inventory or by clicking equipment slots in the equipment tab next to the inventory.</text>\n\t\t\t<br />\n\t\t\t<heading>Consumables</heading>\n\t\t\t<text>Food can be consumed to recover your HP or MP. Drinks provide limited duration buffs. Upgrading your pouch allows you to carry more food and drinks into battle.</text>\n\t\t\t<br />\n\t\t\t<heading>Abilities</heading>\n\t\t\t<text>You can learn abilities and use them in combat at the cost of MP. To unlock new abilities, you must learn them from ability books. Abilities get stronger as you level them up. You gain 0.1 XP every time it's used in combat. You can also gain a large amount of XP by consuming duplicate ability books.</text>\n\t\t\t<text>When multiple abilities are available for use during combat, they will be prioritized in the same order you have set them.</text>\n\t\t\t<text>Your Intelligence level determines how many abilities you can bring with you.</text>\n\t\t\t<br />\n\t\t\t<heading>Combat Triggers</heading>\n\t\t\t<text>Both consumables and abilities have default settings for when they will be automatically used. The settings are referred to as combat triggers, and they can be modified by clicking the gear icon below before entering the battle.</text>\n\t\t\t<br />\n\t\t\t<heading>Defeat and Respawning</heading>\n\t\t\t<text>When defeated in combat, your character will have to wait through a respawn timer before fully recovering and resuming combat automatically.</text>\n\t\t\t<br />\n\t\t\t<heading>Group Combat</heading>\n\t\t\t<text>You can create or join a party to battle in zones with multiple monsters. When all party members have pressed \"Ready,\" the party will automatically travel to battle. Monsters will randomly attack any of the party members, and those with a higher threat stat will be targeted more frequently. Monster experience and drops will be divided with an equal chance among all players. Players more than 20% lower than the highest combat level player will receive less experience and drops.</text>\n\t\t\t<br />\n\t\t\t<heading>Dungeons</heading>\n\t\t\t<text>Dungeons consists of multiple waves of higher tier elite monsters and unique dungeon bosses. They can be accessed with dungeon keys, which can be crafted after finding key fragments from bosses in regular combat zones.</text>\n\t\t\t<text>Up to five players can be in a dungeon party. Each person must have a key, which will be consumed after beating the final boss for the dungeon reward chest. If you complete a dungeon with fewer players, you will have a chance of looting an additional chest at the cost of an extra key. If the dungeon is not completed, you will keep your dungeon key.</text>\n\t\t\t<text>Deaths in dungeons will not trigger a respawn timer. You can only be revived by a party member. If all party members are dead, the dungeon run is considered failed and you will restart at wave 1.</text>\n\t\t\t<br />\n\t\t\t<heading>Skills</heading>\n\t\t\t<text>You have 7 combat skills that can be leveled up:</text>\n\t\t\t<ul>\n\t\t\t<li>Stamina: Increases max HP by 10 per level.</li>\n\t\t\t<li>Intelligence: Increases max MP by 10 per level.</li>\n\t\t\t<li>Attack: Increases your accuracy, attack speed, and cast speed.</li>\n\t\t\t<li>Defense: Increases your evasion, armor, and elemental resistances.</li>\n\t\t\t<li>Melee: Increases your melee damage.</li>\n\t\t\t<li>Ranged: Increases your ranged damage.</li>\n\t\t\t<li>Magic: Increases your magic damage.</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>Status Effects</heading>\n\t\t\t<text>There are status effects that can temporarily prevent you from taking certain actions:</text>\n\t\t\t<ul>\n\t\t\t<li>Blind: Prevents using auto attacks.</li>\n\t\t\t<li>Silence: Prevents using abilities.</li>\n\t\t\t<li>Stun: Prevents using auto attacks, abilities, and consumables.</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>Stats</heading>\n\t\t\t<text>You also have secondary combat stats that are affected by your skill levels, equipment, and buffs:</text>\n\t\t\t<ul>\n\t\t\t<li>Combat style: Each attack has a specific style - stab, slash, smash, ranged, or magic.</li>\n\t\t\t<li>Damage Type: Each attack deals a specific type of damage - physical, water, nature, or fire.</li>\n\t\t\t<li>Attack Interval: How fast you can auto-attack.</li>\n\t\t\t<li>Ability Haste: Reduces ability cooldown.</li>\n\t\t\t<li>Accuracy: Increases your chance to successfully attack.</li>\n\t\t\t<li>Damage: The maximum damage if an attack is successful. Auto-attack damage is random between 1 and the maximum damage.</li>\n\t\t\t<li>Critical Hit: Critical hits always rolls maximum damage. Ranged style has passive critical chance.</li>\n\t\t\t<li>Amplify: Increases the damage you deal.</li>\n\t\t\t<li>Penetration: Ignores a percentage of enemy armor or resistance when attacking.</li>\n\t\t\t<li>Evasion: Increases your chance to dodge an attack.</li>\n\t\t\t<li>Armor: Mitigates a percentage of physical damage.</li>\n\t\t\t<li>Resistance: Mitigates a percentage of water, nature, or fire damage.</li>\n\t\t\t<li>Life Steal: Heals you based on the percentage of auto-attack damage you deal.</li>\n\t\t\t<li>Mana Leech: Leeches mana based on the percentage of auto-attack damage you deal.</li>\n\t\t\t<li>Thorn: When attacked, deals a percentage of your defensive damage back to the attacker. Damage is increased by 1% per armor or resistance (corresponding to the attack type).</li>\n\t\t\t<li>Retaliation: When attacked, reflects a percentage of (defensive damage + incoming damage) as a smash attack back to the attacker.</li>\n\t\t\t<li>Tenacity: Reduces chance of being blinded, silenced, or stunned.</li>\n\t\t\t<li>Threat: Increases chance of being targeted by monsters.</li>\n\t\t\t<li>HP/MP Regen: Recovers a percentage of your maximum HP/MP every 10 seconds.</li>\n\t\t\t<li>Food Haste: Reduces food cooldown.</li>\n\t\t\t<li>Drink Concentration: Increases drink effect. Reduces duration and cooldown.</li>\n\t\t\t<li>Combat Drop Rate: Increases the drop rate of regular items. This cannot go above 100%.</li>\n\t\t\t<li>Combat Drop Quantity: Increases quantity of regular item drops.</li>\n\t\t\t<li>Combat Rare Find: Increases rare item drop rate.</li>\n\t\t\t<li>Primary Training: 30% of combat experience is distributed to the primary training skill determined by your weapon.</li>\n\t\t\t<li>Focus Training: 70% of combat experience is distributed to the focus training skill determined by your charm.</li>\n\t\t\t<li>Combat Level: This is only for display and represents your overall combat effectiveness based on the combination of combat skill levels.</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>Formulas</heading>\n\t\t\t<text>For those who enjoy math, here are the formulas for the secondary stats:</text>\n\t\t\t<ul>\n\t\t\t<li>Max HP = 10 * (10 + Stamina)</li>\n\t\t\t<li>Max MP = 10 * (10 + Intelligence)</li>\n\t\t\t<li>Attack Interval = BaseInterval / (1 + (Attack / 2000)) / (1 + AttackSpeedBonus)</li>\n\t\t\t<li>Cast Time = BaseCastTime / (1 + (Attack / 2000) + CastSpeedBonus)</li>\n\t\t\t<li>Ability Cooldown = BaseCooldown * 100 / (100 + AbilityHaste)</li>\n\t\t\t<li>Accuracy = (10 + Attack) * (1 + Bonus%)</li>\n\t\t\t<li>Damage = (10 + [Melee|Ranged|Magic|Defense]) * (1 + Bonus%)</li>\n\t\t\t<li>Bulwark Smash Damage = SmashDamage + DefensiveDamage</li>\n\t\t\t<li>Thorn Damage = DefensiveDamage * (1 + [Armor|Resistance] / 100) * Thorn%</li>\n\t\t\t<li>Retaliation Damage = (DefensiveDamage + MIN(AttackerPremitigatedDamage, 5 * DefensiveDamage)) * Retaliation%</li>\n\t\t\t<li>Hit Chance = (MyAccuracy ^ 1.4) / (MyAccuracy ^ 1.4 + EnemyEvasion ^ 1.4)</li>\n\t\t\t<li>Ranged Bonus Critical Rate = 0.3 * Hit Chance</li>\n\t\t\t<li>Evasion = (10 + Defense) * (1 + Bonus%)</li>\n\t\t\t<li>Armor = 0.2 * Defense + Bonus</li>\n\t\t\t<li>Percent Physical Damage Taken = 100 / (100 + Armor)<br />If Armor is negative then it's = (100 - Armor) / 100</li>\n\t\t\t<li>Resistance = 0.2 * Defense + Bonus</li>\n\t\t\t<li>Percent Elemental Damage Taken = 100 / (100 + Resistance)<br />If Resistance is negative then it's = (100 - Resistance) / 100</li>\n\t\t\t<li>Blind/Silence/Stun Chance = Base Chance * 100 / (100 + Tenacity)</li>\n\t\t\t<li>Targeted By Monster Chance = MyThreat / (TeamTotalThreat)</li>\n\t\t\t<li>Combat Level = 0.1 * (Stamina + Intelligence + Attack + Defense + MAX(Melee, Ranged, Magic)) + 0.5 * MAX(Attack, Defense, Melee, Ranged, Magic)</li>\n\t\t\t</ul>\n\t\t\t<br />",
                            "tasks": "Tasks",
                            "tasksContent": "<heading>Tasks Feature</heading>\n\t\t\t<text>After completing the tutorial, you will unlock the tasks feature. The Task Board generates random short to medium-length tasks in different skills. By completing these tasks, you can obtain rewards for your participation.</text>\n\t\t\t<br />\n\t\t\t<heading>Task Board</heading>\n\t\t\t<text>\n\t\t\t<ul>\n\t\t\t\t<li>Frequency: Tasks are assigned periodically, starting at one every 8 hours. Upgrades can reduce the interval to as low as 4 hours.</li>\n\t\t\t\t<li>Variety: Tasks may involve gathering/production skills or defeating monsters. The generated tasks will slightly prioritize skills in which the player has a higher level.</li>\n\t\t\t\t<li>Rerolls: You can reroll tasks using coins or cowbells. The cost doubles (up to a limit) with each reroll.</li>\n\t\t\t\t<li>Capacity: Tasks do not expire, but there's a limit of 8 task slots. The capacity can be increased through upgrades in the cowbell store.</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>Rewards</heading>\n\t\t\t<text>\n\t\t\t<ul>\n\t\t\t\t<li>Completing tasks rewards you with Coins and Task Tokens. A Task Point is also granted for every Task Token rewarded from tasks.</li>\n\t\t\t\t<li>Accumulating 50 Task Points allows you to claim \"Purple's Gift,\" which can be opened to obtain Coins, Task Tokens, Task Crystals, and various lootboxes.</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>Task Shop</heading>\n\t\t\t<text>Task Tokens can be spent in the Task Shop for permanent upgrades or items, including:\n\t\t\t<ul>\n\t\t\t\t<li>Task Cooldown: Reduces the cooldown between tasks.</li>\n\t\t\t\t<li>Block Slots: Allows blocking specific skills from being assigned as tasks. Combat blocking has to be unlocked at an additional cost.</li>\n\t\t\t\t<li>Task Crystals: Used for crafting or upgrading task badge with the Crafting skill. Task badges provide multiplicative action speed or damage bonuses while undertaking tasks.</li>\n\t\t\t\t<li>Lootboxes: Large Meteorite Cache, Large Artisan's Crate, and Large Treasure Chest.</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />",
                            "guild": "Guild",
                            "guildContent": "<heading>Guild</heading>\n\t\t\t<text>Discover guilds by navigating to the \"Guild\" feature in the navigation menu. Guilds are formed by groups of players who enjoy playing together. While guilds currently serve as primarily social hubs, upcoming expansions may introduce more group-oriented activities.</text>\n\t\t\t<br />\n\t\t\t<heading>Creating a Guild</heading>\n\t\t\t<text>You can start your own guild by investing 5 million coins and choosing a unique guild name. As the guild's creator, you automatically assume the role of the leader, granting you the highest authority within the guild. Afterward, invite other players to join your guild.</text>\n\t\t\t<br />\n\t\t\t<heading>Joining a Guild</heading>\n\t\t\t<text>You can be invited to join existing guilds. To find a guild to join, you can use the Recruit chat channel, where guilds actively seek new members. You can view your invitations on the Guild page.</text>\n\t\t\t<br />\n\t\t\t<heading>Guild Features</heading>\n\t\t\t<text>Guilds come with several key features:\n\t\t\t<ul>\n\t\t\t\t<li>Guild Chat Channel: A private, self-moderated space for guild members to connect and converse.</li>\n\t\t\t\t<li>Guild Notice Board: A persistent message board editable by the leader or generals to keep everyone informed.</li>\n\t\t\t\t<li>Guild Levels: As members earn experience points (XP) in various skills, the guild accumulates XP at a 1:1000 ratio, contributing to the guild's level. Climb the leaderboard based on your guild's level and experience.</li>\n\t\t\t\t<li>Member Slots: Guilds begin with {{defaultGuildMemberCount}} member slots and gain 1 additional slot for every {{guildLevelsPerMaxMember}} guild levels.</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>Member Roles</heading>\n\t\t\t<text>Guilds have a structured hierarchy with different roles and permissions. Higher rank roles automatically possess the permission of any lower rank:\n\t\t\t<ul>\n\t\t\t\t<li>Leader\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>Can pass leadership to another member.</li>\n\t\t\t\t\t\t<li>Has the authority to disband the guild entirely when the guild is empty.</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>General\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>Emmeleeed to promote or demote any lower-ranking member.</li>\n\t\t\t\t\t\t<li>Can edit the guild notice board.</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>Officer\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>Can invite new members to join the guild.</li>\n\t\t\t\t\t\t<li>Can kick lower-ranking member out of the guild.</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>Member\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>Can view the guild overview.</li>\n\t\t\t\t\t\t<li>Can view and converse in the guild chat channel.</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>Invited\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>Has no access until they accept the guild invitation</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />",
                            "chatCommands": "Chat Commands",
                            "chatCommandsContent": "<heading>Chat Commands</heading>\n\t\t\t<text>\n\t\t\t\t<chatCommand>/w [name] [message]</chatCommand> - whisper another player<br />\n\t\t\t\t<chatCommand>/r</chatCommand> - reply to last whisper<br />\n\t\t\t\t<chatCommand>/profile [name]</chatCommand> - view player profile<br />\n\t\t\t\t<chatCommand>/friend [name]</chatCommand> - add friend<br />\n\t\t\t\t<chatCommand>/block [name]</chatCommand> - block player<br />\n\t\t\t</text>\n\t\t\t<br />",
                            "experienceTable": "Experience Table"
                        },
                        "gameRulesPanel": {
                            "gameRules": "Game Rules"
                        },
                        "gameRulesText": {
                            "content": "<div>\n\t\t\t\tThe rules for Milky Way Idle are designed to ensure an enjoyable and fair experience for all players.\n\t\t\t\tBreaking the rules would result in appropriate penalties dependent on the type and severity of the offense.\n\t\t\t\tPenalties include verbal warning, mute, item removal, trading ban, or account ban.<br /><br />\n\t\t\t</div>\n\t\t\t<olMain>\n\t\t\t\t<li><b>Account</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Single Account Only: </b>\n\t\t\t\t\t\t\tEach person can only play on 1 account. Guests are also considered accounts.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Account Sharing: </b>\n\t\t\t\t\t\t\tDo not share account with other players.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Inappropriate Name: </b>\n\t\t\t\t\t\t\tNames should not be offensive, sexual, impersonating others, or based on well-known real-world individuals. Inappropriate name may result in mutes and forced name change.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Age 13+ Only: </b>\n\t\t\t\t\t\t\tIn compliance with COPPA(Children's Online Privacy Protection Act), you must be at least age 13+ to register and play.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>Trading</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Real World Trading / Cross-Trading: </b>\n\t\t\t\t\t\t\tDo not trade items or services within Milky Way Idle for anything outside of the game.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Boosting: </b>\n\t\t\t\t\t\t\tDo not funnel wealth to other players. Players may receive up to 10M coins in total gifts from others. Wealth transfers over this limit, whether intentional or not, can be treated as boosting. Unintentional transfers (e.g. randomly finding an extremely underpriced item on market) can be removed. Intentional transfers will result in additional penalties based on severity.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Scamming: </b>\n\t\t\t\t\t\t\tDo not use deception or scamming to gain items from other players. Actions will be taken against scammers given sufficient evidence. However, items lost to scams will not be refunded.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Repay Loans Within 7 Days: </b>\n\t\t\t\t\t\t\tLoans are at your own risk. Loans not repaid within 7 days can be considered boosting/scamming.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>Chat</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Use Respectful Language: </b>\n\t\t\t\t\t\t\tThe #1 chat rule is to respect other players. Our goal is to create a friendly community space everyone can enjoy.\n\t\t\t\t\t\t\tPlease avoid intentionally antagonizing or harassing others.\n\t\t\t\t\t\t\tWhile the occasional use of profanity is not against the rule, please don't do so excessively, especially when directed at other players.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>English in General Chat: </b>\n\t\t\t\t\t\t\tPlease primarily use English in the General chat channel. Different languages are acceptable in other channels.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Discrimination: </b>\n\t\t\t\t\t\t\tDo not use slurs, slangs, or any offensive phrases that target any person or group of people.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Illegal or Sexual Topics: </b>\n\t\t\t\t\t\t\tDo not link or discuss illegal activities or sexual topics.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Avoid Divisive Topics or Drama: </b>\n\t\t\t\t\t\t\tAvoid divisive topics that often lead to drama or conversations inappropriate for public chat.\n\t\t\t\t\t\t\tThis includes, but is not limited to, politics, religion, international conflicts, gender discussions, sexuality,\n\t\t\t\t\t\t\tmute/ban complaints, and other topics that frequently become disruptive.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Spamming: </b>\n\t\t\t\t\t\t\tDo not spam the chat with large number of unnecessary messages, overuse CAPSLOCK, or beg others for free items.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Do Not Encourage Others to Break Rules: </b>\n\t\t\t\t\t\t\tDo not mislead or instigate other players into breaking game rules.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Do Not Disclose Personal Information: </b>\n\t\t\t\t\t\t\tDo not disclose identifying personal information about yourself, including, but not limited to, your full name, address, phone number, and email address.\n\t\t\t\t\t\t\tFurthermore, do not disclose ANY personal information about other players that they have not made public themselves, such as their name, age, or location.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>All Advertisements Must be in Appropriate Channels: </b>\n\t\t\t\t\t\t\tAll buying, selling, or service requests should be in trade chat. Guild/Party recruitment or seeking to join guild/party requests should be in recruit channel.\n\t\t\t\t\t\t\tPrice checks are allowed in most channels. No referral links.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Listen to <modIcon />Moderators: </b>\n\t\t\t\t\t\t\tModerators have the discretion to moderate chat as they see fit in order to maintain a positive environment.\n\t\t\t\t\t\t\tPlease cooperate with their requests. If anyone has disagreements or complaints regarding a moderator, please submit a ticket on Discord or email [email protected].\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>Bots, Scripts, and Extensions</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Botting: </b>\n\t\t\t\t\t\t\tDo not use any automation that plays the game for you.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>Scripts and Extensions: </b>\n\t\t\t\t\t\t\tAny scripts or extensions must not take any actions for the player (send any requests to server).\n\t\t\t\t\t\t\tYou are allowed to use them purely for information display purposes or UI improvements. (ex: Display combat summary, track drops, move buttons to different location)\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>Bugs and Exploits</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>No Bug Abusing: </b>\n\t\t\t\t\t\t\tDo not abuse game bugs or exploits to your advantage. Please report them on Discord.\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t</olMain>\n\t\t\t<br />"
                        },
                        "gameModeNames": {
                            "standard": "Standard",
                            "ironcow": "Ironcow",
                            "legacy_ironcow": "Legacy Ironcow"
                        },
                        "gameModeDescriptions": {
                            "standard": "The Standard game mode is recommended for most players. There are no feature restrictions.",
                            "ironcow": "The Ironcow game mode is for players who enjoys being self-sufficient. You cannot use the marketplace to trade with other players (Exception: buying Cowbells is allowed).",
                            "legacy_ironcow": ""
                        },
                        "skillNames": {
                            "/skills/total_level": "Total Level",
                            "/skills/milking": "Milking",
                            "/skills/foraging": "Foraging",
                            "/skills/woodcutting": "Woodcutting",
                            "/skills/cheesesmithing": "Cheesesmithing",
                            "/skills/crafting": "Crafting",
                            "/skills/tailoring": "Tailoring",
                            "/skills/cooking": "Cooking",
                            "/skills/brewing": "Brewing",
                            "/skills/alchemy": "Alchemy",
                            "/skills/enhancing": "Enhancing",
                            "/skills/stamina": "Stamina",
                            "/skills/intelligence": "Intelligence",
                            "/skills/attack": "Attack",
                            "/skills/defense": "Defense",
                            "/skills/melee": "Melee",
                            "/skills/ranged": "Ranged",
                            "/skills/magic": "Magic"
                        },
                        "abilityNames": {
                            "/abilities/poke": "Poke",
                            "/abilities/impale": "Impale",
                            "/abilities/puncture": "Puncture",
                            "/abilities/penetrating_strike": "Penetrating Strike",
                            "/abilities/scratch": "Scratch",
                            "/abilities/cleave": "Cleave",
                            "/abilities/maim": "Maim",
                            "/abilities/crippling_slash": "Crippling Slash",
                            "/abilities/smack": "Smack",
                            "/abilities/sweep": "Sweep",
                            "/abilities/stunning_blow": "Stunning Blow",
                            "/abilities/fracturing_impact": "Fracturing Impact",
                            "/abilities/shield_bash": "Shield Bash",
                            "/abilities/quick_shot": "Quick Shot",
                            "/abilities/aqua_arrow": "Aqua Arrow",
                            "/abilities/flame_arrow": "Flame Arrow",
                            "/abilities/rain_of_arrows": "Rain Of Arrows",
                            "/abilities/silencing_shot": "Silencing Shot",
                            "/abilities/steady_shot": "Steady Shot",
                            "/abilities/pestilent_shot": "Pestilent Shot",
                            "/abilities/penetrating_shot": "Penetrating Shot",
                            "/abilities/water_strike": "Water Strike",
                            "/abilities/ice_spear": "Ice Spear",
                            "/abilities/frost_surge": "Frost Surge",
                            "/abilities/mana_spring": "Mana Spring",
                            "/abilities/entangle": "Entangle",
                            "/abilities/toxic_pollen": "Toxic Pollen",
                            "/abilities/natures_veil": "Nature's Veil",
                            "/abilities/life_drain": "Life Drain",
                            "/abilities/fireball": "Fireball",
                            "/abilities/flame_blast": "Flame Blast",
                            "/abilities/firestorm": "Firestorm",
                            "/abilities/smoke_burst": "Smoke Burst",
                            "/abilities/minor_heal": "Minor Heal",
                            "/abilities/heal": "Heal",
                            "/abilities/quick_aid": "Quick Aid",
                            "/abilities/rejuvenate": "Rejuvenate",
                            "/abilities/taunt": "Taunt",
                            "/abilities/provoke": "Provoke",
                            "/abilities/toughness": "Toughness",
                            "/abilities/elusiveness": "Elusiveness",
                            "/abilities/precision": "Precision",
                            "/abilities/berserk": "Berserk",
                            "/abilities/frenzy": "Frenzy",
                            "/abilities/elemental_affinity": "Elemental Affinity",
                            "/abilities/spike_shell": "Spike Shell",
                            "/abilities/retribution": "Retribution",
                            "/abilities/vampirism": "Vampirism",
                            "/abilities/revive": "Revive",
                            "/abilities/insanity": "Insanity",
                            "/abilities/invincible": "Invincible",
                            "/abilities/speed_aura": "Speed Aura",
                            "/abilities/guardian_aura": "Guardian Aura",
                            "/abilities/fierce_aura": "Fierce Aura",
                            "/abilities/critical_aura": "Critical Aura",
                            "/abilities/mystic_aura": "Mystic Aura",
                            "/abilities/promote": "Promote"
                        },
                        "abilityDescriptions": {
                            "/abilities/poke": "Pokes the targeted enemy",
                            "/abilities/impale": "Impales the targeted enemy",
                            "/abilities/puncture": "Punctures the targeted enemy's armor, dealing damage and temporarily reducing its armor",
                            "/abilities/penetrating_strike": "Strikes the targeted enemy. On each successful hit, will pierce and hit the next enemy.",
                            "/abilities/scratch": "Scratches the targeted enemy",
                            "/abilities/cleave": "Cleaves all enemies",
                            "/abilities/maim": "Maims the targeted enemy and causes bleeding",
                            "/abilities/crippling_slash": "Slashes all enemies and reduce their damage",
                            "/abilities/smack": "Smacks the targeted enemy",
                            "/abilities/sweep": "Performs a sweeping attack on all enemies",
                            "/abilities/stunning_blow": "Smashes the targeted enemy and has a chance to stun",
                            "/abilities/fracturing_impact": "Attacks all enemies, dealing damage and increases their damage taken",
                            "/abilities/shield_bash": "Bashes the targeted enemy with a shield, dealing extra damage based on attacker's armor",
                            "/abilities/quick_shot": "Takes a quick shot at the targeted enemy",
                            "/abilities/aqua_arrow": "Shoots an arrow made of water at the targeted enemy",
                            "/abilities/flame_arrow": "Shoots a flaming arrow at the targeted enemy",
                            "/abilities/rain_of_arrows": "Shoots a rain of arrows on all enemies",
                            "/abilities/silencing_shot": "Takes a shot at the targeted enemy, temporarily silencing them",
                            "/abilities/steady_shot": "Takes a shot at the targeted enemy with greatly enhanced accuracy",
                            "/abilities/pestilent_shot": "Shoots the targeted enemy, dealing damage and decreasing armor and resistances",
                            "/abilities/penetrating_shot": "Shoots the targeted enemy. On each successful hit, will pierce and hit the next enemy",
                            "/abilities/water_strike": "Casts a water strike at the targeted enemy",
                            "/abilities/ice_spear": "Casts an ice spear at the targeted enemy, dealing damage and reducing attack speed",
                            "/abilities/frost_surge": "Casts frost surge at all enemies, dealing damage and reducing evasion",
                            "/abilities/mana_spring": "Casts mana spring at all enemies, dealing damage and increasing ally MP regeneration",
                            "/abilities/entangle": "Entangles the targeted enemy, dealing damage with chance to stun",
                            "/abilities/toxic_pollen": "Casts toxic pollen at all enemies, dealing damage and decreasing armor and resistances",
                            "/abilities/natures_veil": "Cast's a veil over all enemies, dealing damage with a chance to blind",
                            "/abilities/life_drain": "Drains the life force of the targeted enemy, dealing damage and healing the caster",
                            "/abilities/fireball": "Casts a fireball at the targeted enemy",
                            "/abilities/flame_blast": "Casts a flame blast at all enemies",
                            "/abilities/firestorm": "Casts a firestorm at all enemies",
                            "/abilities/smoke_burst": "Casts a smoke burst at the targeted enemy, dealing damage and decreasing their accuracy",
                            "/abilities/minor_heal": "Casts minor heal on yourself",
                            "/abilities/heal": "Casts heal on yourself",
                            "/abilities/quick_aid": "Casts heal on the ally with the lowest HP percentage",
                            "/abilities/rejuvenate": "Heals all allies",
                            "/abilities/taunt": "Greatly increases threat rating",
                            "/abilities/provoke": "Tremendously increases threat rating",
                            "/abilities/toughness": "Greatly increases armor and resistances temporarily",
                            "/abilities/elusiveness": "Greatly increases evasion temporarily",
                            "/abilities/precision": "Greatly increases accuracy temporarily",
                            "/abilities/berserk": "Greatly increases physical damage temporarily",
                            "/abilities/frenzy": "Greatly increases attack speed temporarily",
                            "/abilities/elemental_affinity": "Greatly increases elemental damage temporarily",
                            "/abilities/spike_shell": "Gains physical and elemental thorns temporarily",
                            "/abilities/retribution": "Gains retaliation temporarily",
                            "/abilities/vampirism": "Gains lifesteal temporarily",
                            "/abilities/revive": "Revives a dead ally",
                            "/abilities/insanity": "Increases damage, attack speed, and cast speed temporarily at the cost of HP",
                            "/abilities/invincible": "Tremendously increases armor, resistances, and tenacity temporarily",
                            "/abilities/speed_aura": "Increases attack speed and cast speed for all allies. Effect increases by (0.005x) per caster's Attack level",
                            "/abilities/guardian_aura": "Increases healing amplify, evasion, armor, and resistances for all allies. Effect increases by (0.005x) per caster's Defense level",
                            "/abilities/fierce_aura": "Increases physical amplify for all allies. Effect increases by (0.005x) per caster's Melee level",
                            "/abilities/critical_aura": "Increases critical rate and critical damage for all allies. Effect increases by (0.005x) per caster's Ranged level",
                            "/abilities/mystic_aura": "Increases elemental amplify for all allies. Effect increases by (0.005x) per caster's Magic level",
                            "/abilities/promote": "Promotes a pawn"
                        },
                        "itemNames": {
                            "/items/coin": "Coin",
                            "/items/task_token": "Task Token",
                            "/items/chimerical_token": "Chimerical Token",
                            "/items/sinister_token": "Sinister Token",
                            "/items/enchanted_token": "Enchanted Token",
                            "/items/pirate_token": "Pirate Token",
                            "/items/cowbell": "Cowbell",
                            "/items/bag_of_10_cowbells": "Bag Of 10 Cowbells",
                            "/items/purples_gift": "Purple's Gift",
                            "/items/small_meteorite_cache": "Small Meteorite Cache",
                            "/items/medium_meteorite_cache": "Medium Meteorite Cache",
                            "/items/large_meteorite_cache": "Large Meteorite Cache",
                            "/items/small_artisans_crate": "Small Artisan's Crate",
                            "/items/medium_artisans_crate": "Medium Artisan's Crate",
                            "/items/large_artisans_crate": "Large Artisan's Crate",
                            "/items/small_treasure_chest": "Small Treasure Chest",
                            "/items/medium_treasure_chest": "Medium Treasure Chest",
                            "/items/large_treasure_chest": "Large Treasure Chest",
                            "/items/chimerical_chest": "Chimerical Chest",
                            "/items/chimerical_refinement_chest": "Chimerical Refinement Chest",
                            "/items/sinister_chest": "Sinister Chest",
                            "/items/sinister_refinement_chest": "Sinister Refinement Chest",
                            "/items/enchanted_chest": "Enchanted Chest",
                            "/items/enchanted_refinement_chest": "Enchanted Refinement Chest",
                            "/items/pirate_chest": "Pirate Chest",
                            "/items/pirate_refinement_chest": "Pirate Refinement Chest",
                            "/items/blue_key_fragment": "Blue Key Fragment",
                            "/items/green_key_fragment": "Green Key Fragment",
                            "/items/purple_key_fragment": "Purple Key Fragment",
                            "/items/white_key_fragment": "White Key Fragment",
                            "/items/orange_key_fragment": "Orange Key Fragment",
                            "/items/brown_key_fragment": "Brown Key Fragment",
                            "/items/stone_key_fragment": "Stone Key Fragment",
                            "/items/dark_key_fragment": "Dark Key Fragment",
                            "/items/burning_key_fragment": "Burning Key Fragment",
                            "/items/chimerical_entry_key": "Chimerical Entry Key",
                            "/items/chimerical_chest_key": "Chimerical Chest Key",
                            "/items/sinister_entry_key": "Sinister Entry Key",
                            "/items/sinister_chest_key": "Sinister Chest Key",
                            "/items/enchanted_entry_key": "Enchanted Entry Key",
                            "/items/enchanted_chest_key": "Enchanted Chest Key",
                            "/items/pirate_entry_key": "Pirate Entry Key",
                            "/items/pirate_chest_key": "Pirate Chest Key",
                            "/items/donut": "Donut",
                            "/items/blueberry_donut": "Blueberry Donut",
                            "/items/blackberry_donut": "Blackberry Donut",
                            "/items/strawberry_donut": "Strawberry Donut",
                            "/items/mooberry_donut": "Mooberry Donut",
                            "/items/marsberry_donut": "Marsberry Donut",
                            "/items/spaceberry_donut": "Spaceberry Donut",
                            "/items/cupcake": "Cupcake",
                            "/items/blueberry_cake": "Blueberry Cake",
                            "/items/blackberry_cake": "Blackberry Cake",
                            "/items/strawberry_cake": "Strawberry Cake",
                            "/items/mooberry_cake": "Mooberry Cake",
                            "/items/marsberry_cake": "Marsberry Cake",
                            "/items/spaceberry_cake": "Spaceberry Cake",
                            "/items/gummy": "Gummy",
                            "/items/apple_gummy": "Apple Gummy",
                            "/items/orange_gummy": "Orange Gummy",
                            "/items/plum_gummy": "Plum Gummy",
                            "/items/peach_gummy": "Peach Gummy",
                            "/items/dragon_fruit_gummy": "Dragon Fruit Gummy",
                            "/items/star_fruit_gummy": "Star Fruit Gummy",
                            "/items/yogurt": "Yogurt",
                            "/items/apple_yogurt": "Apple Yogurt",
                            "/items/orange_yogurt": "Orange Yogurt",
                            "/items/plum_yogurt": "Plum Yogurt",
                            "/items/peach_yogurt": "Peach Yogurt",
                            "/items/dragon_fruit_yogurt": "Dragon Fruit Yogurt",
                            "/items/star_fruit_yogurt": "Star Fruit Yogurt",
                            "/items/milking_tea": "Milking Tea",
                            "/items/foraging_tea": "Foraging Tea",
                            "/items/woodcutting_tea": "Woodcutting Tea",
                            "/items/cooking_tea": "Cooking Tea",
                            "/items/brewing_tea": "Brewing Tea",
                            "/items/alchemy_tea": "Alchemy Tea",
                            "/items/enhancing_tea": "Enhancing Tea",
                            "/items/cheesesmithing_tea": "Cheesesmithing Tea",
                            "/items/crafting_tea": "Crafting Tea",
                            "/items/tailoring_tea": "Tailoring Tea",
                            "/items/super_milking_tea": "Super Milking Tea",
                            "/items/super_foraging_tea": "Super Foraging Tea",
                            "/items/super_woodcutting_tea": "Super Woodcutting Tea",
                            "/items/super_cooking_tea": "Super Cooking Tea",
                            "/items/super_brewing_tea": "Super Brewing Tea",
                            "/items/super_alchemy_tea": "Super Alchemy Tea",
                            "/items/super_enhancing_tea": "Super Enhancing Tea",
                            "/items/super_cheesesmithing_tea": "Super Cheesesmithing Tea",
                            "/items/super_crafting_tea": "Super Crafting Tea",
                            "/items/super_tailoring_tea": "Super Tailoring Tea",
                            "/items/ultra_milking_tea": "Ultra Milking Tea",
                            "/items/ultra_foraging_tea": "Ultra Foraging Tea",
                            "/items/ultra_woodcutting_tea": "Ultra Woodcutting Tea",
                            "/items/ultra_cooking_tea": "Ultra Cooking Tea",
                            "/items/ultra_brewing_tea": "Ultra Brewing Tea",
                            "/items/ultra_alchemy_tea": "Ultra Alchemy Tea",
                            "/items/ultra_enhancing_tea": "Ultra Enhancing Tea",
                            "/items/ultra_cheesesmithing_tea": "Ultra Cheesesmithing Tea",
                            "/items/ultra_crafting_tea": "Ultra Crafting Tea",
                            "/items/ultra_tailoring_tea": "Ultra Tailoring Tea",
                            "/items/gathering_tea": "Gathering Tea",
                            "/items/gourmet_tea": "Gourmet Tea",
                            "/items/wisdom_tea": "Wisdom Tea",
                            "/items/processing_tea": "Processing Tea",
                            "/items/efficiency_tea": "Efficiency Tea",
                            "/items/artisan_tea": "Artisan Tea",
                            "/items/catalytic_tea": "Catalytic Tea",
                            "/items/blessed_tea": "Blessed Tea",
                            "/items/stamina_coffee": "Stamina Coffee",
                            "/items/intelligence_coffee": "Intelligence Coffee",
                            "/items/defense_coffee": "Defense Coffee",
                            "/items/attack_coffee": "Attack Coffee",
                            "/items/melee_coffee": "Melee Coffee",
                            "/items/ranged_coffee": "Ranged Coffee",
                            "/items/magic_coffee": "Magic Coffee",
                            "/items/super_stamina_coffee": "Super Stamina Coffee",
                            "/items/super_intelligence_coffee": "Super Intelligence Coffee",
                            "/items/super_defense_coffee": "Super Defense Coffee",
                            "/items/super_attack_coffee": "Super Attack Coffee",
                            "/items/super_melee_coffee": "Super Melee Coffee",
                            "/items/super_ranged_coffee": "Super Ranged Coffee",
                            "/items/super_magic_coffee": "Super Magic Coffee",
                            "/items/ultra_stamina_coffee": "Ultra Stamina Coffee",
                            "/items/ultra_intelligence_coffee": "Ultra Intelligence Coffee",
                            "/items/ultra_defense_coffee": "Ultra Defense Coffee",
                            "/items/ultra_attack_coffee": "Ultra Attack Coffee",
                            "/items/ultra_melee_coffee": "Ultra Melee Coffee",
                            "/items/ultra_ranged_coffee": "Ultra Ranged Coffee",
                            "/items/ultra_magic_coffee": "Ultra Magic Coffee",
                            "/items/wisdom_coffee": "Wisdom Coffee",
                            "/items/lucky_coffee": "Lucky Coffee",
                            "/items/swiftness_coffee": "Swiftness Coffee",
                            "/items/channeling_coffee": "Channeling Coffee",
                            "/items/critical_coffee": "Critical Coffee",
                            "/items/poke": "Poke",
                            "/items/impale": "Impale",
                            "/items/puncture": "Puncture",
                            "/items/penetrating_strike": "Penetrating Strike",
                            "/items/scratch": "Scratch",
                            "/items/cleave": "Cleave",
                            "/items/maim": "Maim",
                            "/items/crippling_slash": "Crippling Slash",
                            "/items/smack": "Smack",
                            "/items/sweep": "Sweep",
                            "/items/stunning_blow": "Stunning Blow",
                            "/items/fracturing_impact": "Fracturing Impact",
                            "/items/shield_bash": "Shield Bash",
                            "/items/quick_shot": "Quick Shot",
                            "/items/aqua_arrow": "Aqua Arrow",
                            "/items/flame_arrow": "Flame Arrow",
                            "/items/rain_of_arrows": "Rain Of Arrows",
                            "/items/silencing_shot": "Silencing Shot",
                            "/items/steady_shot": "Steady Shot",
                            "/items/pestilent_shot": "Pestilent Shot",
                            "/items/penetrating_shot": "Penetrating Shot",
                            "/items/water_strike": "Water Strike",
                            "/items/ice_spear": "Ice Spear",
                            "/items/frost_surge": "Frost Surge",
                            "/items/mana_spring": "Mana Spring",
                            "/items/entangle": "Entangle",
                            "/items/toxic_pollen": "Toxic Pollen",
                            "/items/natures_veil": "Nature's Veil",
                            "/items/life_drain": "Life Drain",
                            "/items/fireball": "Fireball",
                            "/items/flame_blast": "Flame Blast",
                            "/items/firestorm": "Firestorm",
                            "/items/smoke_burst": "Smoke Burst",
                            "/items/minor_heal": "Minor Heal",
                            "/items/heal": "Heal",
                            "/items/quick_aid": "Quick Aid",
                            "/items/rejuvenate": "Rejuvenate",
                            "/items/taunt": "Taunt",
                            "/items/provoke": "Provoke",
                            "/items/toughness": "Toughness",
                            "/items/elusiveness": "Elusiveness",
                            "/items/precision": "Precision",
                            "/items/berserk": "Berserk",
                            "/items/elemental_affinity": "Elemental Affinity",
                            "/items/frenzy": "Frenzy",
                            "/items/spike_shell": "Spike Shell",
                            "/items/retribution": "Retribution",
                            "/items/vampirism": "Vampirism",
                            "/items/revive": "Revive",
                            "/items/insanity": "Insanity",
                            "/items/invincible": "Invincible",
                            "/items/speed_aura": "Speed Aura",
                            "/items/guardian_aura": "Guardian Aura",
                            "/items/fierce_aura": "Fierce Aura",
                            "/items/critical_aura": "Critical Aura",
                            "/items/mystic_aura": "Mystic Aura",
                            "/items/gobo_stabber": "Gobo Stabber",
                            "/items/gobo_slasher": "Gobo Slasher",
                            "/items/gobo_smasher": "Gobo Smasher",
                            "/items/spiked_bulwark": "Spiked Bulwark",
                            "/items/werewolf_slasher": "Werewolf Slasher",
                            "/items/griffin_bulwark": "Griffin Bulwark",
                            "/items/griffin_bulwark_refined": "Griffin Bulwark (R)",
                            "/items/gobo_shooter": "Gobo Shooter",
                            "/items/vampiric_bow": "Vampiric Bow",
                            "/items/cursed_bow": "Cursed Bow",
                            "/items/cursed_bow_refined": "Cursed Bow (R)",
                            "/items/gobo_boomstick": "Gobo Boomstick",
                            "/items/cheese_bulwark": "Cheese Bulwark",
                            "/items/verdant_bulwark": "Verdant Bulwark",
                            "/items/azure_bulwark": "Azure Bulwark",
                            "/items/burble_bulwark": "Burble Bulwark",
                            "/items/crimson_bulwark": "Crimson Bulwark",
                            "/items/rainbow_bulwark": "Rainbow Bulwark",
                            "/items/holy_bulwark": "Holy Bulwark",
                            "/items/wooden_bow": "Wooden Bow",
                            "/items/birch_bow": "Birch Bow",
                            "/items/cedar_bow": "Cedar Bow",
                            "/items/purpleheart_bow": "Purpleheart Bow",
                            "/items/ginkgo_bow": "Ginkgo Bow",
                            "/items/redwood_bow": "Redwood Bow",
                            "/items/arcane_bow": "Arcane Bow",
                            "/items/stalactite_spear": "Stalactite Spear",
                            "/items/granite_bludgeon": "Granite Bludgeon",
                            "/items/furious_spear": "Furious Spear",
                            "/items/furious_spear_refined": "Furious Spear (R)",
                            "/items/regal_sword": "Regal Sword",
                            "/items/regal_sword_refined": "Regal Sword (R)",
                            "/items/chaotic_flail": "Chaotic Flail",
                            "/items/chaotic_flail_refined": "Chaotic Flail (R)",
                            "/items/soul_hunter_crossbow": "Soul Hunter Crossbow",
                            "/items/sundering_crossbow": "Sundering Crossbow",
                            "/items/sundering_crossbow_refined": "Sundering Crossbow (R)",
                            "/items/frost_staff": "Frost Staff",
                            "/items/infernal_battlestaff": "Infernal Battlestaff",
                            "/items/jackalope_staff": "Jackalope Staff",
                            "/items/rippling_trident": "Rippling Trident",
                            "/items/rippling_trident_refined": "Rippling Trident (R)",
                            "/items/blooming_trident": "Blooming Trident",
                            "/items/blooming_trident_refined": "Blooming Trident (R)",
                            "/items/blazing_trident": "Blazing Trident",
                            "/items/blazing_trident_refined": "Blazing Trident (R)",
                            "/items/cheese_sword": "Cheese Sword",
                            "/items/verdant_sword": "Verdant Sword",
                            "/items/azure_sword": "Azure Sword",
                            "/items/burble_sword": "Burble Sword",
                            "/items/crimson_sword": "Crimson Sword",
                            "/items/rainbow_sword": "Rainbow Sword",
                            "/items/holy_sword": "Holy Sword",
                            "/items/cheese_spear": "Cheese Spear",
                            "/items/verdant_spear": "Verdant Spear",
                            "/items/azure_spear": "Azure Spear",
                            "/items/burble_spear": "Burble Spear",
                            "/items/crimson_spear": "Crimson Spear",
                            "/items/rainbow_spear": "Rainbow Spear",
                            "/items/holy_spear": "Holy Spear",
                            "/items/cheese_mace": "Cheese Mace",
                            "/items/verdant_mace": "Verdant Mace",
                            "/items/azure_mace": "Azure Mace",
                            "/items/burble_mace": "Burble Mace",
                            "/items/crimson_mace": "Crimson Mace",
                            "/items/rainbow_mace": "Rainbow Mace",
                            "/items/holy_mace": "Holy Mace",
                            "/items/wooden_crossbow": "Wooden Crossbow",
                            "/items/birch_crossbow": "Birch Crossbow",
                            "/items/cedar_crossbow": "Cedar Crossbow",
                            "/items/purpleheart_crossbow": "Purpleheart Crossbow",
                            "/items/ginkgo_crossbow": "Ginkgo Crossbow",
                            "/items/redwood_crossbow": "Redwood Crossbow",
                            "/items/arcane_crossbow": "Arcane Crossbow",
                            "/items/wooden_water_staff": "Wooden Water Staff",
                            "/items/birch_water_staff": "Birch Water Staff",
                            "/items/cedar_water_staff": "Cedar Water Staff",
                            "/items/purpleheart_water_staff": "Purpleheart Water Staff",
                            "/items/ginkgo_water_staff": "Ginkgo Water Staff",
                            "/items/redwood_water_staff": "Redwood Water Staff",
                            "/items/arcane_water_staff": "Arcane Water Staff",
                            "/items/wooden_nature_staff": "Wooden Nature Staff",
                            "/items/birch_nature_staff": "Birch Nature Staff",
                            "/items/cedar_nature_staff": "Cedar Nature Staff",
                            "/items/purpleheart_nature_staff": "Purpleheart Nature Staff",
                            "/items/ginkgo_nature_staff": "Ginkgo Nature Staff",
                            "/items/redwood_nature_staff": "Redwood Nature Staff",
                            "/items/arcane_nature_staff": "Arcane Nature Staff",
                            "/items/wooden_fire_staff": "Wooden Fire Staff",
                            "/items/birch_fire_staff": "Birch Fire Staff",
                            "/items/cedar_fire_staff": "Cedar Fire Staff",
                            "/items/purpleheart_fire_staff": "Purpleheart Fire Staff",
                            "/items/ginkgo_fire_staff": "Ginkgo Fire Staff",
                            "/items/redwood_fire_staff": "Redwood Fire Staff",
                            "/items/arcane_fire_staff": "Arcane Fire Staff",
                            "/items/eye_watch": "Eye Watch",
                            "/items/snake_fang_dirk": "Snake Fang Dirk",
                            "/items/vision_shield": "Vision Shield",
                            "/items/gobo_defender": "Gobo Defender",
                            "/items/vampire_fang_dirk": "Vampire Fang Dirk",
                            "/items/knights_aegis": "Knight's Aegis",
                            "/items/knights_aegis_refined": "Knight's Aegis (R)",
                            "/items/treant_shield": "Treant Shield",
                            "/items/manticore_shield": "Manticore Shield",
                            "/items/tome_of_healing": "Tome Of Healing",
                            "/items/tome_of_the_elements": "Tome Of The Elements",
                            "/items/watchful_relic": "Watchful Relic",
                            "/items/bishops_codex": "Bishop's Codex",
                            "/items/bishops_codex_refined": "Bishop's Codex (R)",
                            "/items/cheese_buckler": "Cheese Buckler",
                            "/items/verdant_buckler": "Verdant Buckler",
                            "/items/azure_buckler": "Azure Buckler",
                            "/items/burble_buckler": "Burble Buckler",
                            "/items/crimson_buckler": "Crimson Buckler",
                            "/items/rainbow_buckler": "Rainbow Buckler",
                            "/items/holy_buckler": "Holy Buckler",
                            "/items/wooden_shield": "Wooden Shield",
                            "/items/birch_shield": "Birch Shield",
                            "/items/cedar_shield": "Cedar Shield",
                            "/items/purpleheart_shield": "Purpleheart Shield",
                            "/items/ginkgo_shield": "Ginkgo Shield",
                            "/items/redwood_shield": "Redwood Shield",
                            "/items/arcane_shield": "Arcane Shield",
                            "/items/sinister_cape": "Sinister Cape",
                            "/items/sinister_cape_refined": "Sinister Cape (R)",
                            "/items/chimerical_quiver": "Chimerical Quiver",
                            "/items/chimerical_quiver_refined": "Chimerical Quiver (R)",
                            "/items/enchanted_cloak": "Enchanted Cloak",
                            "/items/enchanted_cloak_refined": "Enchanted Cloak (R)",
                            "/items/red_culinary_hat": "Red Culinary Hat",
                            "/items/snail_shell_helmet": "Snail Shell Helmet",
                            "/items/vision_helmet": "Vision Helmet",
                            "/items/fluffy_red_hat": "Fluffy Red Hat",
                            "/items/corsair_helmet": "Corsair Helmet",
                            "/items/corsair_helmet_refined": "Corsair Helmet (R)",
                            "/items/acrobatic_hood": "Acrobatic Hood",
                            "/items/acrobatic_hood_refined": "Acrobatic Hood (R)",
                            "/items/magicians_hat": "Magician's Hat",
                            "/items/magicians_hat_refined": "Magician's Hat (R)",
                            "/items/cheese_helmet": "Cheese Helmet",
                            "/items/verdant_helmet": "Verdant Helmet",
                            "/items/azure_helmet": "Azure Helmet",
                            "/items/burble_helmet": "Burble Helmet",
                            "/items/crimson_helmet": "Crimson Helmet",
                            "/items/rainbow_helmet": "Rainbow Helmet",
                            "/items/holy_helmet": "Holy Helmet",
                            "/items/rough_hood": "Rough Hood",
                            "/items/reptile_hood": "Reptile Hood",
                            "/items/gobo_hood": "Gobo Hood",
                            "/items/beast_hood": "Beast Hood",
                            "/items/umbral_hood": "Umbral Hood",
                            "/items/cotton_hat": "Cotton Hat",
                            "/items/linen_hat": "Linen Hat",
                            "/items/bamboo_hat": "Bamboo Hat",
                            "/items/silk_hat": "Silk Hat",
                            "/items/radiant_hat": "Radiant Hat",
                            "/items/dairyhands_top": "Dairyhand's Top",
                            "/items/foragers_top": "Forager's Top",
                            "/items/lumberjacks_top": "Lumberjack's Top",
                            "/items/cheesemakers_top": "Cheesemaker's Top",
                            "/items/crafters_top": "Crafter's Top",
                            "/items/tailors_top": "Tailor's Top",
                            "/items/chefs_top": "Chef's Top",
                            "/items/brewers_top": "Brewer's Top",
                            "/items/alchemists_top": "Alchemist's Top",
                            "/items/enhancers_top": "Enhancer's Top",
                            "/items/gator_vest": "Gator Vest",
                            "/items/turtle_shell_body": "Turtle Shell Body",
                            "/items/colossus_plate_body": "Colossus Plate Body",
                            "/items/demonic_plate_body": "Demonic Plate Body",
                            "/items/anchorbound_plate_body": "Anchorbound Plate Body",
                            "/items/anchorbound_plate_body_refined": "Anchorbound Plate Body (R)",
                            "/items/maelstrom_plate_body": "Maelstrom Plate Body",
                            "/items/maelstrom_plate_body_refined": "Maelstrom Plate Body (R)",
                            "/items/marine_tunic": "Marine Tunic",
                            "/items/revenant_tunic": "Revenant Tunic",
                            "/items/griffin_tunic": "Griffin Tunic",
                            "/items/kraken_tunic": "Kraken Tunic",
                            "/items/kraken_tunic_refined": "Kraken Tunic (R)",
                            "/items/icy_robe_top": "Icy Robe Top",
                            "/items/flaming_robe_top": "Flaming Robe Top",
                            "/items/luna_robe_top": "Luna Robe Top",
                            "/items/royal_water_robe_top": "Royal Water Robe Top",
                            "/items/royal_water_robe_top_refined": "Royal Water Robe Top (R)",
                            "/items/royal_nature_robe_top": "Royal Nature Robe Top",
                            "/items/royal_nature_robe_top_refined": "Royal Nature Robe Top (R)",
                            "/items/royal_fire_robe_top": "Royal Fire Robe Top",
                            "/items/royal_fire_robe_top_refined": "Royal Fire Robe Top (R)",
                            "/items/cheese_plate_body": "Cheese Plate Body",
                            "/items/verdant_plate_body": "Verdant Plate Body",
                            "/items/azure_plate_body": "Azure Plate Body",
                            "/items/burble_plate_body": "Burble Plate Body",
                            "/items/crimson_plate_body": "Crimson Plate Body",
                            "/items/rainbow_plate_body": "Rainbow Plate Body",
                            "/items/holy_plate_body": "Holy Plate Body",
                            "/items/rough_tunic": "Rough Tunic",
                            "/items/reptile_tunic": "Reptile Tunic",
                            "/items/gobo_tunic": "Gobo Tunic",
                            "/items/beast_tunic": "Beast Tunic",
                            "/items/umbral_tunic": "Umbral Tunic",
                            "/items/cotton_robe_top": "Cotton Robe Top",
                            "/items/linen_robe_top": "Linen Robe Top",
                            "/items/bamboo_robe_top": "Bamboo Robe Top",
                            "/items/silk_robe_top": "Silk Robe Top",
                            "/items/radiant_robe_top": "Radiant Robe Top",
                            "/items/dairyhands_bottoms": "Dairyhand's Bottoms",
                            "/items/foragers_bottoms": "Forager's Bottoms",
                            "/items/lumberjacks_bottoms": "Lumberjack's Bottoms",
                            "/items/cheesemakers_bottoms": "Cheesemaker's Bottoms",
                            "/items/crafters_bottoms": "Crafter's Bottoms",
                            "/items/tailors_bottoms": "Tailor's Bottoms",
                            "/items/chefs_bottoms": "Chef's Bottoms",
                            "/items/brewers_bottoms": "Brewer's Bottoms",
                            "/items/alchemists_bottoms": "Alchemist's Bottoms",
                            "/items/enhancers_bottoms": "Enhancer's Bottoms",
                            "/items/turtle_shell_legs": "Turtle Shell Legs",
                            "/items/colossus_plate_legs": "Colossus Plate Legs",
                            "/items/demonic_plate_legs": "Demonic Plate Legs",
                            "/items/anchorbound_plate_legs": "Anchorbound Plate Legs",
                            "/items/anchorbound_plate_legs_refined": "Anchorbound Plate Legs (R)",
                            "/items/maelstrom_plate_legs": "Maelstrom Plate Legs",
                            "/items/maelstrom_plate_legs_refined": "Maelstrom Plate Legs (R)",
                            "/items/marine_chaps": "Marine Chaps",
                            "/items/revenant_chaps": "Revenant Chaps",
                            "/items/griffin_chaps": "Griffin Chaps",
                            "/items/kraken_chaps": "Kraken Chaps",
                            "/items/kraken_chaps_refined": "Kraken Chaps (R)",
                            "/items/icy_robe_bottoms": "Icy Robe Bottoms",
                            "/items/flaming_robe_bottoms": "Flaming Robe Bottoms",
                            "/items/luna_robe_bottoms": "Luna Robe Bottoms",
                            "/items/royal_water_robe_bottoms": "Royal Water Robe Bottoms",
                            "/items/royal_water_robe_bottoms_refined": "Royal Water Robe Bottoms (R)",
                            "/items/royal_nature_robe_bottoms": "Royal Nature Robe Bottoms",
                            "/items/royal_nature_robe_bottoms_refined": "Royal Nature Robe Bottoms (R)",
                            "/items/royal_fire_robe_bottoms": "Royal Fire Robe Bottoms",
                            "/items/royal_fire_robe_bottoms_refined": "Royal Fire Robe Bottoms (R)",
                            "/items/cheese_plate_legs": "Cheese Plate Legs",
                            "/items/verdant_plate_legs": "Verdant Plate Legs",
                            "/items/azure_plate_legs": "Azure Plate Legs",
                            "/items/burble_plate_legs": "Burble Plate Legs",
                            "/items/crimson_plate_legs": "Crimson Plate Legs",
                            "/items/rainbow_plate_legs": "Rainbow Plate Legs",
                            "/items/holy_plate_legs": "Holy Plate Legs",
                            "/items/rough_chaps": "Rough Chaps",
                            "/items/reptile_chaps": "Reptile Chaps",
                            "/items/gobo_chaps": "Gobo Chaps",
                            "/items/beast_chaps": "Beast Chaps",
                            "/items/umbral_chaps": "Umbral Chaps",
                            "/items/cotton_robe_bottoms": "Cotton Robe Bottoms",
                            "/items/linen_robe_bottoms": "Linen Robe Bottoms",
                            "/items/bamboo_robe_bottoms": "Bamboo Robe Bottoms",
                            "/items/silk_robe_bottoms": "Silk Robe Bottoms",
                            "/items/radiant_robe_bottoms": "Radiant Robe Bottoms",
                            "/items/enchanted_gloves": "Enchanted Gloves",
                            "/items/pincer_gloves": "Pincer Gloves",
                            "/items/panda_gloves": "Panda Gloves",
                            "/items/magnetic_gloves": "Magnetic Gloves",
                            "/items/dodocamel_gauntlets": "Dodocamel Gauntlets",
                            "/items/dodocamel_gauntlets_refined": "Dodocamel Gauntlets (R)",
                            "/items/sighted_bracers": "Sighted Bracers",
                            "/items/marksman_bracers": "Marksman Bracers",
                            "/items/marksman_bracers_refined": "Marksman Bracers (R)",
                            "/items/chrono_gloves": "Chrono Gloves",
                            "/items/cheese_gauntlets": "Cheese Gauntlets",
                            "/items/verdant_gauntlets": "Verdant Gauntlets",
                            "/items/azure_gauntlets": "Azure Gauntlets",
                            "/items/burble_gauntlets": "Burble Gauntlets",
                            "/items/crimson_gauntlets": "Crimson Gauntlets",
                            "/items/rainbow_gauntlets": "Rainbow Gauntlets",
                            "/items/holy_gauntlets": "Holy Gauntlets",
                            "/items/rough_bracers": "Rough Bracers",
                            "/items/reptile_bracers": "Reptile Bracers",
                            "/items/gobo_bracers": "Gobo Bracers",
                            "/items/beast_bracers": "Beast Bracers",
                            "/items/umbral_bracers": "Umbral Bracers",
                            "/items/cotton_gloves": "Cotton Gloves",
                            "/items/linen_gloves": "Linen Gloves",
                            "/items/bamboo_gloves": "Bamboo Gloves",
                            "/items/silk_gloves": "Silk Gloves",
                            "/items/radiant_gloves": "Radiant Gloves",
                            "/items/collectors_boots": "Collector's Boots",
                            "/items/shoebill_shoes": "Shoebill Shoes",
                            "/items/black_bear_shoes": "Black Bear Shoes",
                            "/items/grizzly_bear_shoes": "Grizzly Bear Shoes",
                            "/items/polar_bear_shoes": "Polar Bear Shoes",
                            "/items/centaur_boots": "Centaur Boots",
                            "/items/sorcerer_boots": "Sorcerer Boots",
                            "/items/cheese_boots": "Cheese Boots",
                            "/items/verdant_boots": "Verdant Boots",
                            "/items/azure_boots": "Azure Boots",
                            "/items/burble_boots": "Burble Boots",
                            "/items/crimson_boots": "Crimson Boots",
                            "/items/rainbow_boots": "Rainbow Boots",
                            "/items/holy_boots": "Holy Boots",
                            "/items/rough_boots": "Rough Boots",
                            "/items/reptile_boots": "Reptile Boots",
                            "/items/gobo_boots": "Gobo Boots",
                            "/items/beast_boots": "Beast Boots",
                            "/items/umbral_boots": "Umbral Boots",
                            "/items/cotton_boots": "Cotton Boots",
                            "/items/linen_boots": "Linen Boots",
                            "/items/bamboo_boots": "Bamboo Boots",
                            "/items/silk_boots": "Silk Boots",
                            "/items/radiant_boots": "Radiant Boots",
                            "/items/small_pouch": "Small Pouch",
                            "/items/medium_pouch": "Medium Pouch",
                            "/items/large_pouch": "Large Pouch",
                            "/items/giant_pouch": "Giant Pouch",
                            "/items/gluttonous_pouch": "Gluttonous Pouch",
                            "/items/guzzling_pouch": "Guzzling Pouch",
                            "/items/necklace_of_efficiency": "Necklace Of Efficiency",
                            "/items/fighter_necklace": "Fighter Necklace",
                            "/items/ranger_necklace": "Ranger Necklace",
                            "/items/wizard_necklace": "Wizard Necklace",
                            "/items/necklace_of_wisdom": "Necklace Of Wisdom",
                            "/items/necklace_of_speed": "Necklace Of Speed",
                            "/items/philosophers_necklace": "Philosopher's Necklace",
                            "/items/earrings_of_gathering": "Earrings Of Gathering",
                            "/items/earrings_of_essence_find": "Earrings Of Essence Find",
                            "/items/earrings_of_armor": "Earrings Of Armor",
                            "/items/earrings_of_regeneration": "Earrings Of Regeneration",
                            "/items/earrings_of_resistance": "Earrings Of Resistance",
                            "/items/earrings_of_rare_find": "Earrings Of Rare Find",
                            "/items/earrings_of_critical_strike": "Earrings Of Critical Strike",
                            "/items/philosophers_earrings": "Philosopher's Earrings",
                            "/items/ring_of_gathering": "Ring Of Gathering",
                            "/items/ring_of_essence_find": "Ring Of Essence Find",
                            "/items/ring_of_armor": "Ring Of Armor",
                            "/items/ring_of_regeneration": "Ring Of Regeneration",
                            "/items/ring_of_resistance": "Ring Of Resistance",
                            "/items/ring_of_rare_find": "Ring Of Rare Find",
                            "/items/ring_of_critical_strike": "Ring Of Critical Strike",
                            "/items/philosophers_ring": "Philosopher's Ring",
                            "/items/trainee_milking_charm": "Trainee Milking Charm",
                            "/items/basic_milking_charm": "Basic Milking Charm",
                            "/items/advanced_milking_charm": "Advanced Milking Charm",
                            "/items/expert_milking_charm": "Expert Milking Charm",
                            "/items/master_milking_charm": "Master Milking Charm",
                            "/items/grandmaster_milking_charm": "Grandmaster Milking Charm",
                            "/items/trainee_foraging_charm": "Trainee Foraging Charm",
                            "/items/basic_foraging_charm": "Basic Foraging Charm",
                            "/items/advanced_foraging_charm": "Advanced Foraging Charm",
                            "/items/expert_foraging_charm": "Expert Foraging Charm",
                            "/items/master_foraging_charm": "Master Foraging Charm",
                            "/items/grandmaster_foraging_charm": "Grandmaster Foraging Charm",
                            "/items/trainee_woodcutting_charm": "Trainee Woodcutting Charm",
                            "/items/basic_woodcutting_charm": "Basic Woodcutting Charm",
                            "/items/advanced_woodcutting_charm": "Advanced Woodcutting Charm",
                            "/items/expert_woodcutting_charm": "Expert Woodcutting Charm",
                            "/items/master_woodcutting_charm": "Master Woodcutting Charm",
                            "/items/grandmaster_woodcutting_charm": "Grandmaster Woodcutting Charm",
                            "/items/trainee_cheesesmithing_charm": "Trainee Cheesesmithing Charm",
                            "/items/basic_cheesesmithing_charm": "Basic Cheesesmithing Charm",
                            "/items/advanced_cheesesmithing_charm": "Advanced Cheesesmithing Charm",
                            "/items/expert_cheesesmithing_charm": "Expert Cheesesmithing Charm",
                            "/items/master_cheesesmithing_charm": "Master Cheesesmithing Charm",
                            "/items/grandmaster_cheesesmithing_charm": "Grandmaster Cheesesmithing Charm",
                            "/items/trainee_crafting_charm": "Trainee Crafting Charm",
                            "/items/basic_crafting_charm": "Basic Crafting Charm",
                            "/items/advanced_crafting_charm": "Advanced Crafting Charm",
                            "/items/expert_crafting_charm": "Expert Crafting Charm",
                            "/items/master_crafting_charm": "Master Crafting Charm",
                            "/items/grandmaster_crafting_charm": "Grandmaster Crafting Charm",
                            "/items/trainee_tailoring_charm": "Trainee Tailoring Charm",
                            "/items/basic_tailoring_charm": "Basic Tailoring Charm",
                            "/items/advanced_tailoring_charm": "Advanced Tailoring Charm",
                            "/items/expert_tailoring_charm": "Expert Tailoring Charm",
                            "/items/master_tailoring_charm": "Master Tailoring Charm",
                            "/items/grandmaster_tailoring_charm": "Grandmaster Tailoring Charm",
                            "/items/trainee_cooking_charm": "Trainee Cooking Charm",
                            "/items/basic_cooking_charm": "Basic Cooking Charm",
                            "/items/advanced_cooking_charm": "Advanced Cooking Charm",
                            "/items/expert_cooking_charm": "Expert Cooking Charm",
                            "/items/master_cooking_charm": "Master Cooking Charm",
                            "/items/grandmaster_cooking_charm": "Grandmaster Cooking Charm",
                            "/items/trainee_brewing_charm": "Trainee Brewing Charm",
                            "/items/basic_brewing_charm": "Basic Brewing Charm",
                            "/items/advanced_brewing_charm": "Advanced Brewing Charm",
                            "/items/expert_brewing_charm": "Expert Brewing Charm",
                            "/items/master_brewing_charm": "Master Brewing Charm",
                            "/items/grandmaster_brewing_charm": "Grandmaster Brewing Charm",
                            "/items/trainee_alchemy_charm": "Trainee Alchemy Charm",
                            "/items/basic_alchemy_charm": "Basic Alchemy Charm",
                            "/items/advanced_alchemy_charm": "Advanced Alchemy Charm",
                            "/items/expert_alchemy_charm": "Expert Alchemy Charm",
                            "/items/master_alchemy_charm": "Master Alchemy Charm",
                            "/items/grandmaster_alchemy_charm": "Grandmaster Alchemy Charm",
                            "/items/trainee_enhancing_charm": "Trainee Enhancing Charm",
                            "/items/basic_enhancing_charm": "Basic Enhancing Charm",
                            "/items/advanced_enhancing_charm": "Advanced Enhancing Charm",
                            "/items/expert_enhancing_charm": "Expert Enhancing Charm",
                            "/items/master_enhancing_charm": "Master Enhancing Charm",
                            "/items/grandmaster_enhancing_charm": "Grandmaster Enhancing Charm",
                            "/items/trainee_stamina_charm": "Trainee Stamina Charm",
                            "/items/basic_stamina_charm": "Basic Stamina Charm",
                            "/items/advanced_stamina_charm": "Advanced Stamina Charm",
                            "/items/expert_stamina_charm": "Expert Stamina Charm",
                            "/items/master_stamina_charm": "Master Stamina Charm",
                            "/items/grandmaster_stamina_charm": "Grandmaster Stamina Charm",
                            "/items/trainee_intelligence_charm": "Trainee Intelligence Charm",
                            "/items/basic_intelligence_charm": "Basic Intelligence Charm",
                            "/items/advanced_intelligence_charm": "Advanced Intelligence Charm",
                            "/items/expert_intelligence_charm": "Expert Intelligence Charm",
                            "/items/master_intelligence_charm": "Master Intelligence Charm",
                            "/items/grandmaster_intelligence_charm": "Grandmaster Intelligence Charm",
                            "/items/trainee_attack_charm": "Trainee Attack Charm",
                            "/items/basic_attack_charm": "Basic Attack Charm",
                            "/items/advanced_attack_charm": "Advanced Attack Charm",
                            "/items/expert_attack_charm": "Expert Attack Charm",
                            "/items/master_attack_charm": "Master Attack Charm",
                            "/items/grandmaster_attack_charm": "Grandmaster Attack Charm",
                            "/items/trainee_defense_charm": "Trainee Defense Charm",
                            "/items/basic_defense_charm": "Basic Defense Charm",
                            "/items/advanced_defense_charm": "Advanced Defense Charm",
                            "/items/expert_defense_charm": "Expert Defense Charm",
                            "/items/master_defense_charm": "Master Defense Charm",
                            "/items/grandmaster_defense_charm": "Grandmaster Defense Charm",
                            "/items/trainee_melee_charm": "Trainee Melee Charm",
                            "/items/basic_melee_charm": "Basic Melee Charm",
                            "/items/advanced_melee_charm": "Advanced Melee Charm",
                            "/items/expert_melee_charm": "Expert Melee Charm",
                            "/items/master_melee_charm": "Master Melee Charm",
                            "/items/grandmaster_melee_charm": "Grandmaster Melee Charm",
                            "/items/trainee_ranged_charm": "Trainee Ranged Charm",
                            "/items/basic_ranged_charm": "Basic Ranged Charm",
                            "/items/advanced_ranged_charm": "Advanced Ranged Charm",
                            "/items/expert_ranged_charm": "Expert Ranged Charm",
                            "/items/master_ranged_charm": "Master Ranged Charm",
                            "/items/grandmaster_ranged_charm": "Grandmaster Ranged Charm",
                            "/items/trainee_magic_charm": "Trainee Magic Charm",
                            "/items/basic_magic_charm": "Basic Magic Charm",
                            "/items/advanced_magic_charm": "Advanced Magic Charm",
                            "/items/expert_magic_charm": "Expert Magic Charm",
                            "/items/master_magic_charm": "Master Magic Charm",
                            "/items/grandmaster_magic_charm": "Grandmaster Magic Charm",
                            "/items/basic_task_badge": "Basic Task Badge",
                            "/items/advanced_task_badge": "Advanced Task Badge",
                            "/items/expert_task_badge": "Expert Task Badge",
                            "/items/celestial_brush": "Celestial Brush",
                            "/items/cheese_brush": "Cheese Brush",
                            "/items/verdant_brush": "Verdant Brush",
                            "/items/azure_brush": "Azure Brush",
                            "/items/burble_brush": "Burble Brush",
                            "/items/crimson_brush": "Crimson Brush",
                            "/items/rainbow_brush": "Rainbow Brush",
                            "/items/holy_brush": "Holy Brush",
                            "/items/celestial_shears": "Celestial Shears",
                            "/items/cheese_shears": "Cheese Shears",
                            "/items/verdant_shears": "Verdant Shears",
                            "/items/azure_shears": "Azure Shears",
                            "/items/burble_shears": "Burble Shears",
                            "/items/crimson_shears": "Crimson Shears",
                            "/items/rainbow_shears": "Rainbow Shears",
                            "/items/holy_shears": "Holy Shears",
                            "/items/celestial_hatchet": "Celestial Hatchet",
                            "/items/cheese_hatchet": "Cheese Hatchet",
                            "/items/verdant_hatchet": "Verdant Hatchet",
                            "/items/azure_hatchet": "Azure Hatchet",
                            "/items/burble_hatchet": "Burble Hatchet",
                            "/items/crimson_hatchet": "Crimson Hatchet",
                            "/items/rainbow_hatchet": "Rainbow Hatchet",
                            "/items/holy_hatchet": "Holy Hatchet",
                            "/items/celestial_hammer": "Celestial Hammer",
                            "/items/cheese_hammer": "Cheese Hammer",
                            "/items/verdant_hammer": "Verdant Hammer",
                            "/items/azure_hammer": "Azure Hammer",
                            "/items/burble_hammer": "Burble Hammer",
                            "/items/crimson_hammer": "Crimson Hammer",
                            "/items/rainbow_hammer": "Rainbow Hammer",
                            "/items/holy_hammer": "Holy Hammer",
                            "/items/celestial_chisel": "Celestial Chisel",
                            "/items/cheese_chisel": "Cheese Chisel",
                            "/items/verdant_chisel": "Verdant Chisel",
                            "/items/azure_chisel": "Azure Chisel",
                            "/items/burble_chisel": "Burble Chisel",
                            "/items/crimson_chisel": "Crimson Chisel",
                            "/items/rainbow_chisel": "Rainbow Chisel",
                            "/items/holy_chisel": "Holy Chisel",
                            "/items/celestial_needle": "Celestial Needle",
                            "/items/cheese_needle": "Cheese Needle",
                            "/items/verdant_needle": "Verdant Needle",
                            "/items/azure_needle": "Azure Needle",
                            "/items/burble_needle": "Burble Needle",
                            "/items/crimson_needle": "Crimson Needle",
                            "/items/rainbow_needle": "Rainbow Needle",
                            "/items/holy_needle": "Holy Needle",
                            "/items/celestial_spatula": "Celestial Spatula",
                            "/items/cheese_spatula": "Cheese Spatula",
                            "/items/verdant_spatula": "Verdant Spatula",
                            "/items/azure_spatula": "Azure Spatula",
                            "/items/burble_spatula": "Burble Spatula",
                            "/items/crimson_spatula": "Crimson Spatula",
                            "/items/rainbow_spatula": "Rainbow Spatula",
                            "/items/holy_spatula": "Holy Spatula",
                            "/items/celestial_pot": "Celestial Pot",
                            "/items/cheese_pot": "Cheese Pot",
                            "/items/verdant_pot": "Verdant Pot",
                            "/items/azure_pot": "Azure Pot",
                            "/items/burble_pot": "Burble Pot",
                            "/items/crimson_pot": "Crimson Pot",
                            "/items/rainbow_pot": "Rainbow Pot",
                            "/items/holy_pot": "Holy Pot",
                            "/items/celestial_alembic": "Celestial Alembic",
                            "/items/cheese_alembic": "Cheese Alembic",
                            "/items/verdant_alembic": "Verdant Alembic",
                            "/items/azure_alembic": "Azure Alembic",
                            "/items/burble_alembic": "Burble Alembic",
                            "/items/crimson_alembic": "Crimson Alembic",
                            "/items/rainbow_alembic": "Rainbow Alembic",
                            "/items/holy_alembic": "Holy Alembic",
                            "/items/celestial_enhancer": "Celestial Enhancer",
                            "/items/cheese_enhancer": "Cheese Enhancer",
                            "/items/verdant_enhancer": "Verdant Enhancer",
                            "/items/azure_enhancer": "Azure Enhancer",
                            "/items/burble_enhancer": "Burble Enhancer",
                            "/items/crimson_enhancer": "Crimson Enhancer",
                            "/items/rainbow_enhancer": "Rainbow Enhancer",
                            "/items/holy_enhancer": "Holy Enhancer",
                            "/items/milk": "Milk",
                            "/items/verdant_milk": "Verdant Milk",
                            "/items/azure_milk": "Azure Milk",
                            "/items/burble_milk": "Burble Milk",
                            "/items/crimson_milk": "Crimson Milk",
                            "/items/rainbow_milk": "Rainbow Milk",
                            "/items/holy_milk": "Holy Milk",
                            "/items/cheese": "Cheese",
                            "/items/verdant_cheese": "Verdant Cheese",
                            "/items/azure_cheese": "Azure Cheese",
                            "/items/burble_cheese": "Burble Cheese",
                            "/items/crimson_cheese": "Crimson Cheese",
                            "/items/rainbow_cheese": "Rainbow Cheese",
                            "/items/holy_cheese": "Holy Cheese",
                            "/items/log": "Log",
                            "/items/birch_log": "Birch Log",
                            "/items/cedar_log": "Cedar Log",
                            "/items/purpleheart_log": "Purpleheart Log",
                            "/items/ginkgo_log": "Ginkgo Log",
                            "/items/redwood_log": "Redwood Log",
                            "/items/arcane_log": "Arcane Log",
                            "/items/lumber": "Lumber",
                            "/items/birch_lumber": "Birch Lumber",
                            "/items/cedar_lumber": "Cedar Lumber",
                            "/items/purpleheart_lumber": "Purpleheart Lumber",
                            "/items/ginkgo_lumber": "Ginkgo Lumber",
                            "/items/redwood_lumber": "Redwood Lumber",
                            "/items/arcane_lumber": "Arcane Lumber",
                            "/items/rough_hide": "Rough Hide",
                            "/items/reptile_hide": "Reptile Hide",
                            "/items/gobo_hide": "Gobo Hide",
                            "/items/beast_hide": "Beast Hide",
                            "/items/umbral_hide": "Umbral Hide",
                            "/items/rough_leather": "Rough Leather",
                            "/items/reptile_leather": "Reptile Leather",
                            "/items/gobo_leather": "Gobo Leather",
                            "/items/beast_leather": "Beast Leather",
                            "/items/umbral_leather": "Umbral Leather",
                            "/items/cotton": "Cotton",
                            "/items/flax": "Flax",
                            "/items/bamboo_branch": "Bamboo Branch",
                            "/items/cocoon": "Cocoon",
                            "/items/radiant_fiber": "Radiant Fiber",
                            "/items/cotton_fabric": "Cotton Fabric",
                            "/items/linen_fabric": "Linen Fabric",
                            "/items/bamboo_fabric": "Bamboo Fabric",
                            "/items/silk_fabric": "Silk Fabric",
                            "/items/radiant_fabric": "Radiant Fabric",
                            "/items/egg": "Egg",
                            "/items/wheat": "Wheat",
                            "/items/sugar": "Sugar",
                            "/items/blueberry": "Blueberry",
                            "/items/blackberry": "Blackberry",
                            "/items/strawberry": "Strawberry",
                            "/items/mooberry": "Mooberry",
                            "/items/marsberry": "Marsberry",
                            "/items/spaceberry": "Spaceberry",
                            "/items/apple": "Apple",
                            "/items/orange": "Orange",
                            "/items/plum": "Plum",
                            "/items/peach": "Peach",
                            "/items/dragon_fruit": "Dragon Fruit",
                            "/items/star_fruit": "Star Fruit",
                            "/items/arabica_coffee_bean": "Arabica Coffee Bean",
                            "/items/robusta_coffee_bean": "Robusta Coffee Bean",
                            "/items/liberica_coffee_bean": "Liberica Coffee Bean",
                            "/items/excelsa_coffee_bean": "Excelsa Coffee Bean",
                            "/items/fieriosa_coffee_bean": "Fieriosa Coffee Bean",
                            "/items/spacia_coffee_bean": "Spacia Coffee Bean",
                            "/items/green_tea_leaf": "Green Tea Leaf",
                            "/items/black_tea_leaf": "Black Tea Leaf",
                            "/items/burble_tea_leaf": "Burble Tea Leaf",
                            "/items/moolong_tea_leaf": "Moolong Tea Leaf",
                            "/items/red_tea_leaf": "Red Tea Leaf",
                            "/items/emp_tea_leaf": "Emp Tea Leaf",
                            "/items/catalyst_of_coinification": "Catalyst Of Coinification",
                            "/items/catalyst_of_decomposition": "Catalyst Of Decomposition",
                            "/items/catalyst_of_transmutation": "Catalyst Of Transmutation",
                            "/items/prime_catalyst": "Prime Catalyst",
                            "/items/snake_fang": "Snake Fang",
                            "/items/shoebill_feather": "Shoebill Feather",
                            "/items/snail_shell": "Snail Shell",
                            "/items/crab_pincer": "Crab Pincer",
                            "/items/turtle_shell": "Turtle Shell",
                            "/items/marine_scale": "Marine Scale",
                            "/items/treant_bark": "Treant Bark",
                            "/items/centaur_hoof": "Centaur Hoof",
                            "/items/luna_wing": "Luna Wing",
                            "/items/gobo_rag": "Gobo Rag",
                            "/items/goggles": "Goggles",
                            "/items/magnifying_glass": "Magnifying Glass",
                            "/items/eye_of_the_watcher": "Eye Of The Watcher",
                            "/items/icy_cloth": "Icy Cloth",
                            "/items/flaming_cloth": "Flaming Cloth",
                            "/items/sorcerers_sole": "Sorcerer's Sole",
                            "/items/chrono_sphere": "Chrono Sphere",
                            "/items/frost_sphere": "Frost Sphere",
                            "/items/panda_fluff": "Panda Fluff",
                            "/items/black_bear_fluff": "Black Bear Fluff",
                            "/items/grizzly_bear_fluff": "Grizzly Bear Fluff",
                            "/items/polar_bear_fluff": "Polar Bear Fluff",
                            "/items/red_panda_fluff": "Red Panda Fluff",
                            "/items/magnet": "Magnet",
                            "/items/stalactite_shard": "Stalactite Shard",
                            "/items/living_granite": "Living Granite",
                            "/items/colossus_core": "Colossus Core",
                            "/items/vampire_fang": "Vampire Fang",
                            "/items/werewolf_claw": "Werewolf Claw",
                            "/items/revenant_anima": "Revenant Anima",
                            "/items/soul_fragment": "Soul Fragment",
                            "/items/infernal_ember": "Infernal Ember",
                            "/items/demonic_core": "Demonic Core",
                            "/items/griffin_leather": "Griffin Leather",
                            "/items/manticore_sting": "Manticore Sting",
                            "/items/jackalope_antler": "Jackalope Antler",
                            "/items/dodocamel_plume": "Dodocamel Plume",
                            "/items/griffin_talon": "Griffin Talon",
                            "/items/chimerical_refinement_shard": "Chimerical Refinement Shard",
                            "/items/acrobats_ribbon": "Acrobat's Ribbon",
                            "/items/magicians_cloth": "Magician's Cloth",
                            "/items/chaotic_chain": "Chaotic Chain",
                            "/items/cursed_ball": "Cursed Ball",
                            "/items/sinister_refinement_shard": "Sinister Refinement Shard",
                            "/items/royal_cloth": "Royal Cloth",
                            "/items/knights_ingot": "Knight's Ingot",
                            "/items/bishops_scroll": "Bishop's Scroll",
                            "/items/regal_jewel": "Regal Jewel",
                            "/items/sundering_jewel": "Sundering Jewel",
                            "/items/enchanted_refinement_shard": "Enchanted Refinement Shard",
                            "/items/marksman_brooch": "Marksman Brooch",
                            "/items/corsair_crest": "Corsair Crest",
                            "/items/damaged_anchor": "Damaged Anchor",
                            "/items/maelstrom_plating": "Maelstrom Plating",
                            "/items/kraken_leather": "Kraken Leather",
                            "/items/kraken_fang": "Kraken Fang",
                            "/items/pirate_refinement_shard": "Pirate Refinement Shard",
                            "/items/butter_of_proficiency": "Butter Of Proficiency",
                            "/items/thread_of_expertise": "Thread Of Expertise",
                            "/items/branch_of_insight": "Branch Of Insight",
                            "/items/gluttonous_energy": "Gluttonous Energy",
                            "/items/guzzling_energy": "Guzzling Energy",
                            "/items/milking_essence": "Milking Essence",
                            "/items/foraging_essence": "Foraging Essence",
                            "/items/woodcutting_essence": "Woodcutting Essence",
                            "/items/cheesesmithing_essence": "Cheesesmithing Essence",
                            "/items/crafting_essence": "Crafting Essence",
                            "/items/tailoring_essence": "Tailoring Essence",
                            "/items/cooking_essence": "Cooking Essence",
                            "/items/brewing_essence": "Brewing Essence",
                            "/items/alchemy_essence": "Alchemy Essence",
                            "/items/enhancing_essence": "Enhancing Essence",
                            "/items/swamp_essence": "Swamp Essence",
                            "/items/aqua_essence": "Aqua Essence",
                            "/items/jungle_essence": "Jungle Essence",
                            "/items/gobo_essence": "Gobo Essence",
                            "/items/eyessence": "Eyessence",
                            "/items/sorcerer_essence": "Sorcerer Essence",
                            "/items/bear_essence": "Bear Essence",
                            "/items/golem_essence": "Golem Essence",
                            "/items/twilight_essence": "Twilight Essence",
                            "/items/abyssal_essence": "Abyssal Essence",
                            "/items/chimerical_essence": "Chimerical Essence",
                            "/items/sinister_essence": "Sinister Essence",
                            "/items/enchanted_essence": "Enchanted Essence",
                            "/items/pirate_essence": "Pirate Essence",
                            "/items/task_crystal": "Task Crystal",
                            "/items/star_fragment": "Star Fragment",
                            "/items/pearl": "Pearl",
                            "/items/amber": "Amber",
                            "/items/garnet": "Garnet",
                            "/items/jade": "Jade",
                            "/items/amethyst": "Amethyst",
                            "/items/moonstone": "Moonstone",
                            "/items/sunstone": "Sunstone",
                            "/items/philosophers_stone": "Philosopher's Stone",
                            "/items/crushed_pearl": "Crushed Pearl",
                            "/items/crushed_amber": "Crushed Amber",
                            "/items/crushed_garnet": "Crushed Garnet",
                            "/items/crushed_jade": "Crushed Jade",
                            "/items/crushed_amethyst": "Crushed Amethyst",
                            "/items/crushed_moonstone": "Crushed Moonstone",
                            "/items/crushed_sunstone": "Crushed Sunstone",
                            "/items/crushed_philosophers_stone": "Crushed Philosopher's Stone",
                            "/items/shard_of_protection": "Shard Of Protection",
                            "/items/mirror_of_protection": "Mirror Of Protection"
                        },
                        "itemDescriptions": {
                            "/items/coin": "Basic currency",
                            "/items/task_token": "Task currency. Spend these in the Task Shop",
                            "/items/chimerical_token": "Dungeon currency from the Chimerical Den. Spend these in the Shop",
                            "/items/sinister_token": "Dungeon currency from the Sinister Circus. Spend these in the Shop",
                            "/items/enchanted_token": "Dungeon currency from the Enchanted Fortress. Spend these in the Shop",
                            "/items/pirate_token": "Dungeon currency from the Pirate Cove. Spend these in the Shop",
                            "/items/cowbell": "Premium currency. Buy or spend these in the Cowbell Store",
                            "/items/bag_of_10_cowbells": "Tradable bag of 10 Cowbells. Once opened, the Cowbells can no longer be sold on the market.",
                            "/items/purples_gift": "Gifted by Purple after earning task points. Looks like it contains items inside!",
                            "/items/small_meteorite_cache": "Can be found while gathering. Looks like it contains items inside!",
                            "/items/medium_meteorite_cache": "Can be found while gathering. Looks like it contains items inside!",
                            "/items/large_meteorite_cache": "Can be found while gathering. Looks like it contains items inside!",
                            "/items/small_artisans_crate": "Can be found during production skills. Looks like it contains items inside!",
                            "/items/medium_artisans_crate": "Can be found during production skills. Looks like it contains items inside!",
                            "/items/large_artisans_crate": "Can be found during production skills. Looks like it contains items inside!",
                            "/items/small_treasure_chest": "Can be found from monsters. Looks like it contains items inside!",
                            "/items/medium_treasure_chest": "Can be found from monsters. Looks like it contains items inside!",
                            "/items/large_treasure_chest": "Can be found from monsters. Looks like it contains items inside!",
                            "/items/chimerical_chest": "Received from completion of the Chimerical Den dungeon. Can be opened with Chimerical Chest Key",
                            "/items/chimerical_refinement_chest": "Received from completion of Chimerical Den dungeon (T1+). Can be opened with Chimerical Chest Key",
                            "/items/sinister_chest": "Received from completion of the Sinister Circus dungeon. Can be opened with Sinister Chest Key",
                            "/items/sinister_refinement_chest": "Received from completion of Sinister Circus dungeon (T1+). Can be opened with Sinister Chest Key",
                            "/items/enchanted_chest": "Received from completion of the Enchanted Fortress dungeon. Can be opened with Enchanted Chest Key",
                            "/items/enchanted_refinement_chest": "Received from completion of Enchanted Fortress dungeon (T1+). Can be opened with Enchanted Chest Key",
                            "/items/pirate_chest": "Received from completion of the Pirate Cove dungeon. Can be opened with Pirate Chest Key",
                            "/items/pirate_refinement_chest": "Received from completion of Pirate Cove dungeon (T1+). Can be opened with Pirate Chest Key",
                            "/items/blue_key_fragment": "Can be used to craft dungeon keys",
                            "/items/green_key_fragment": "Can be used to craft dungeon keys",
                            "/items/purple_key_fragment": "Can be used to craft dungeon keys",
                            "/items/white_key_fragment": "Can be used to craft dungeon keys",
                            "/items/orange_key_fragment": "Can be used to craft dungeon keys",
                            "/items/brown_key_fragment": "Can be used to craft dungeon keys",
                            "/items/stone_key_fragment": "Can be used to craft dungeon keys",
                            "/items/dark_key_fragment": "Can be used to craft dungeon keys",
                            "/items/burning_key_fragment": "Can be used to craft dungeon keys",
                            "/items/chimerical_entry_key": "Allows 1 entry into the Chimerical Den dungeon",
                            "/items/chimerical_chest_key": "Opens 1 Chimerical Chest",
                            "/items/sinister_entry_key": "Allows 1 entry into the Sinister Circus dungeon",
                            "/items/sinister_chest_key": "Opens 1 Sinister Chest",
                            "/items/enchanted_entry_key": "Allows 1 entry into the Enchanted Fortress dungeon",
                            "/items/enchanted_chest_key": "Opens 1 Enchanted Chest",
                            "/items/pirate_entry_key": "Allows 1 entry into the Pirate Cove dungeon",
                            "/items/pirate_chest_key": "Opens 1 Pirate Chest",
                            "/items/donut": "",
                            "/items/blueberry_donut": "",
                            "/items/blackberry_donut": "",
                            "/items/strawberry_donut": "",
                            "/items/mooberry_donut": "",
                            "/items/marsberry_donut": "",
                            "/items/spaceberry_donut": "",
                            "/items/cupcake": "",
                            "/items/blueberry_cake": "",
                            "/items/blackberry_cake": "",
                            "/items/strawberry_cake": "",
                            "/items/mooberry_cake": "",
                            "/items/marsberry_cake": "",
                            "/items/spaceberry_cake": "",
                            "/items/gummy": "",
                            "/items/apple_gummy": "",
                            "/items/orange_gummy": "",
                            "/items/plum_gummy": "",
                            "/items/peach_gummy": "",
                            "/items/dragon_fruit_gummy": "",
                            "/items/star_fruit_gummy": "",
                            "/items/yogurt": "",
                            "/items/apple_yogurt": "",
                            "/items/orange_yogurt": "",
                            "/items/plum_yogurt": "",
                            "/items/peach_yogurt": "",
                            "/items/dragon_fruit_yogurt": "",
                            "/items/star_fruit_yogurt": "",
                            "/items/milking_tea": "",
                            "/items/foraging_tea": "",
                            "/items/woodcutting_tea": "",
                            "/items/cooking_tea": "",
                            "/items/brewing_tea": "",
                            "/items/alchemy_tea": "",
                            "/items/enhancing_tea": "",
                            "/items/cheesesmithing_tea": "",
                            "/items/crafting_tea": "",
                            "/items/tailoring_tea": "",
                            "/items/super_milking_tea": "",
                            "/items/super_foraging_tea": "",
                            "/items/super_woodcutting_tea": "",
                            "/items/super_cooking_tea": "",
                            "/items/super_brewing_tea": "",
                            "/items/super_alchemy_tea": "",
                            "/items/super_enhancing_tea": "",
                            "/items/super_cheesesmithing_tea": "",
                            "/items/super_crafting_tea": "",
                            "/items/super_tailoring_tea": "",
                            "/items/ultra_milking_tea": "",
                            "/items/ultra_foraging_tea": "",
                            "/items/ultra_woodcutting_tea": "",
                            "/items/ultra_cooking_tea": "",
                            "/items/ultra_brewing_tea": "",
                            "/items/ultra_alchemy_tea": "",
                            "/items/ultra_enhancing_tea": "",
                            "/items/ultra_cheesesmithing_tea": "",
                            "/items/ultra_crafting_tea": "",
                            "/items/ultra_tailoring_tea": "",
                            "/items/gathering_tea": "",
                            "/items/gourmet_tea": "",
                            "/items/wisdom_tea": "",
                            "/items/processing_tea": "",
                            "/items/efficiency_tea": "",
                            "/items/artisan_tea": "",
                            "/items/catalytic_tea": "",
                            "/items/blessed_tea": "",
                            "/items/stamina_coffee": "",
                            "/items/intelligence_coffee": "",
                            "/items/defense_coffee": "",
                            "/items/attack_coffee": "",
                            "/items/melee_coffee": "",
                            "/items/ranged_coffee": "",
                            "/items/magic_coffee": "",
                            "/items/super_stamina_coffee": "",
                            "/items/super_intelligence_coffee": "",
                            "/items/super_defense_coffee": "",
                            "/items/super_attack_coffee": "",
                            "/items/super_melee_coffee": "",
                            "/items/super_ranged_coffee": "",
                            "/items/super_magic_coffee": "",
                            "/items/ultra_stamina_coffee": "",
                            "/items/ultra_intelligence_coffee": "",
                            "/items/ultra_defense_coffee": "",
                            "/items/ultra_attack_coffee": "",
                            "/items/ultra_melee_coffee": "",
                            "/items/ultra_ranged_coffee": "",
                            "/items/ultra_magic_coffee": "",
                            "/items/wisdom_coffee": "",
                            "/items/lucky_coffee": "",
                            "/items/swiftness_coffee": "",
                            "/items/channeling_coffee": "",
                            "/items/critical_coffee": "",
                            "/items/poke": "",
                            "/items/impale": "",
                            "/items/puncture": "",
                            "/items/penetrating_strike": "",
                            "/items/scratch": "",
                            "/items/cleave": "",
                            "/items/maim": "",
                            "/items/crippling_slash": "",
                            "/items/smack": "",
                            "/items/sweep": "",
                            "/items/stunning_blow": "",
                            "/items/fracturing_impact": "",
                            "/items/shield_bash": "",
                            "/items/quick_shot": "",
                            "/items/aqua_arrow": "",
                            "/items/flame_arrow": "",
                            "/items/rain_of_arrows": "",
                            "/items/silencing_shot": "",
                            "/items/steady_shot": "",
                            "/items/pestilent_shot": "",
                            "/items/penetrating_shot": "",
                            "/items/water_strike": "",
                            "/items/ice_spear": "",
                            "/items/frost_surge": "",
                            "/items/mana_spring": "",
                            "/items/entangle": "",
                            "/items/toxic_pollen": "",
                            "/items/natures_veil": "",
                            "/items/life_drain": "",
                            "/items/fireball": "",
                            "/items/flame_blast": "",
                            "/items/firestorm": "",
                            "/items/smoke_burst": "",
                            "/items/minor_heal": "",
                            "/items/heal": "",
                            "/items/quick_aid": "",
                            "/items/rejuvenate": "",
                            "/items/taunt": "",
                            "/items/provoke": "",
                            "/items/toughness": "",
                            "/items/elusiveness": "",
                            "/items/precision": "",
                            "/items/berserk": "",
                            "/items/elemental_affinity": "",
                            "/items/frenzy": "",
                            "/items/spike_shell": "",
                            "/items/retribution": "",
                            "/items/vampirism": "",
                            "/items/revive": "",
                            "/items/insanity": "",
                            "/items/invincible": "",
                            "/items/speed_aura": "",
                            "/items/guardian_aura": "",
                            "/items/fierce_aura": "",
                            "/items/critical_aura": "",
                            "/items/mystic_aura": "",
                            "/items/gobo_stabber": "",
                            "/items/gobo_slasher": "",
                            "/items/gobo_smasher": "",
                            "/items/spiked_bulwark": "",
                            "/items/werewolf_slasher": "",
                            "/items/griffin_bulwark": "",
                            "/items/griffin_bulwark_refined": "",
                            "/items/gobo_shooter": "",
                            "/items/vampiric_bow": "",
                            "/items/cursed_bow": "",
                            "/items/cursed_bow_refined": "",
                            "/items/gobo_boomstick": "",
                            "/items/cheese_bulwark": "",
                            "/items/verdant_bulwark": "",
                            "/items/azure_bulwark": "",
                            "/items/burble_bulwark": "",
                            "/items/crimson_bulwark": "",
                            "/items/rainbow_bulwark": "",
                            "/items/holy_bulwark": "",
                            "/items/wooden_bow": "",
                            "/items/birch_bow": "",
                            "/items/cedar_bow": "",
                            "/items/purpleheart_bow": "",
                            "/items/ginkgo_bow": "",
                            "/items/redwood_bow": "",
                            "/items/arcane_bow": "",
                            "/items/stalactite_spear": "",
                            "/items/granite_bludgeon": "",
                            "/items/furious_spear": "",
                            "/items/furious_spear_refined": "",
                            "/items/regal_sword": "",
                            "/items/regal_sword_refined": "",
                            "/items/chaotic_flail": "",
                            "/items/chaotic_flail_refined": "",
                            "/items/soul_hunter_crossbow": "",
                            "/items/sundering_crossbow": "",
                            "/items/sundering_crossbow_refined": "",
                            "/items/frost_staff": "",
                            "/items/infernal_battlestaff": "",
                            "/items/jackalope_staff": "",
                            "/items/rippling_trident": "",
                            "/items/rippling_trident_refined": "",
                            "/items/blooming_trident": "",
                            "/items/blooming_trident_refined": "",
                            "/items/blazing_trident": "",
                            "/items/blazing_trident_refined": "",
                            "/items/cheese_sword": "",
                            "/items/verdant_sword": "",
                            "/items/azure_sword": "",
                            "/items/burble_sword": "",
                            "/items/crimson_sword": "",
                            "/items/rainbow_sword": "",
                            "/items/holy_sword": "",
                            "/items/cheese_spear": "",
                            "/items/verdant_spear": "",
                            "/items/azure_spear": "",
                            "/items/burble_spear": "",
                            "/items/crimson_spear": "",
                            "/items/rainbow_spear": "",
                            "/items/holy_spear": "",
                            "/items/cheese_mace": "",
                            "/items/verdant_mace": "",
                            "/items/azure_mace": "",
                            "/items/burble_mace": "",
                            "/items/crimson_mace": "",
                            "/items/rainbow_mace": "",
                            "/items/holy_mace": "",
                            "/items/wooden_crossbow": "",
                            "/items/birch_crossbow": "",
                            "/items/cedar_crossbow": "",
                            "/items/purpleheart_crossbow": "",
                            "/items/ginkgo_crossbow": "",
                            "/items/redwood_crossbow": "",
                            "/items/arcane_crossbow": "",
                            "/items/wooden_water_staff": "",
                            "/items/birch_water_staff": "",
                            "/items/cedar_water_staff": "",
                            "/items/purpleheart_water_staff": "",
                            "/items/ginkgo_water_staff": "",
                            "/items/redwood_water_staff": "",
                            "/items/arcane_water_staff": "",
                            "/items/wooden_nature_staff": "",
                            "/items/birch_nature_staff": "",
                            "/items/cedar_nature_staff": "",
                            "/items/purpleheart_nature_staff": "",
                            "/items/ginkgo_nature_staff": "",
                            "/items/redwood_nature_staff": "",
                            "/items/arcane_nature_staff": "",
                            "/items/wooden_fire_staff": "",
                            "/items/birch_fire_staff": "",
                            "/items/cedar_fire_staff": "",
                            "/items/purpleheart_fire_staff": "",
                            "/items/ginkgo_fire_staff": "",
                            "/items/redwood_fire_staff": "",
                            "/items/arcane_fire_staff": "",
                            "/items/eye_watch": "",
                            "/items/snake_fang_dirk": "",
                            "/items/vision_shield": "",
                            "/items/gobo_defender": "",
                            "/items/vampire_fang_dirk": "",
                            "/items/knights_aegis": "",
                            "/items/knights_aegis_refined": "",
                            "/items/treant_shield": "",
                            "/items/manticore_shield": "",
                            "/items/tome_of_healing": "",
                            "/items/tome_of_the_elements": "",
                            "/items/watchful_relic": "",
                            "/items/bishops_codex": "",
                            "/items/bishops_codex_refined": "",
                            "/items/cheese_buckler": "",
                            "/items/verdant_buckler": "",
                            "/items/azure_buckler": "",
                            "/items/burble_buckler": "",
                            "/items/crimson_buckler": "",
                            "/items/rainbow_buckler": "",
                            "/items/holy_buckler": "",
                            "/items/wooden_shield": "",
                            "/items/birch_shield": "",
                            "/items/cedar_shield": "",
                            "/items/purpleheart_shield": "",
                            "/items/ginkgo_shield": "",
                            "/items/redwood_shield": "",
                            "/items/arcane_shield": "",
                            "/items/sinister_cape": "",
                            "/items/sinister_cape_refined": "",
                            "/items/chimerical_quiver": "",
                            "/items/chimerical_quiver_refined": "",
                            "/items/enchanted_cloak": "",
                            "/items/enchanted_cloak_refined": "",
                            "/items/red_culinary_hat": "",
                            "/items/snail_shell_helmet": "",
                            "/items/vision_helmet": "",
                            "/items/fluffy_red_hat": "",
                            "/items/corsair_helmet": "",
                            "/items/corsair_helmet_refined": "",
                            "/items/acrobatic_hood": "",
                            "/items/acrobatic_hood_refined": "",
                            "/items/magicians_hat": "",
                            "/items/magicians_hat_refined": "",
                            "/items/cheese_helmet": "",
                            "/items/verdant_helmet": "",
                            "/items/azure_helmet": "",
                            "/items/burble_helmet": "",
                            "/items/crimson_helmet": "",
                            "/items/rainbow_helmet": "",
                            "/items/holy_helmet": "",
                            "/items/rough_hood": "",
                            "/items/reptile_hood": "",
                            "/items/gobo_hood": "",
                            "/items/beast_hood": "",
                            "/items/umbral_hood": "",
                            "/items/cotton_hat": "",
                            "/items/linen_hat": "",
                            "/items/bamboo_hat": "",
                            "/items/silk_hat": "",
                            "/items/radiant_hat": "",
                            "/items/dairyhands_top": "",
                            "/items/foragers_top": "",
                            "/items/lumberjacks_top": "",
                            "/items/cheesemakers_top": "",
                            "/items/crafters_top": "",
                            "/items/tailors_top": "",
                            "/items/chefs_top": "",
                            "/items/brewers_top": "",
                            "/items/alchemists_top": "",
                            "/items/enhancers_top": "",
                            "/items/gator_vest": "",
                            "/items/turtle_shell_body": "",
                            "/items/colossus_plate_body": "",
                            "/items/demonic_plate_body": "",
                            "/items/anchorbound_plate_body": "",
                            "/items/anchorbound_plate_body_refined": "",
                            "/items/maelstrom_plate_body": "",
                            "/items/maelstrom_plate_body_refined": "",
                            "/items/marine_tunic": "",
                            "/items/revenant_tunic": "",
                            "/items/griffin_tunic": "",
                            "/items/kraken_tunic": "",
                            "/items/kraken_tunic_refined": "",
                            "/items/icy_robe_top": "",
                            "/items/flaming_robe_top": "",
                            "/items/luna_robe_top": "",
                            "/items/royal_water_robe_top": "",
                            "/items/royal_water_robe_top_refined": "",
                            "/items/royal_nature_robe_top": "",
                            "/items/royal_nature_robe_top_refined": "",
                            "/items/royal_fire_robe_top": "",
                            "/items/royal_fire_robe_top_refined": "",
                            "/items/cheese_plate_body": "",
                            "/items/verdant_plate_body": "",
                            "/items/azure_plate_body": "",
                            "/items/burble_plate_body": "",
                            "/items/crimson_plate_body": "",
                            "/items/rainbow_plate_body": "",
                            "/items/holy_plate_body": "",
                            "/items/rough_tunic": "",
                            "/items/reptile_tunic": "",
                            "/items/gobo_tunic": "",
                            "/items/beast_tunic": "",
                            "/items/umbral_tunic": "",
                            "/items/cotton_robe_top": "",
                            "/items/linen_robe_top": "",
                            "/items/bamboo_robe_top": "",
                            "/items/silk_robe_top": "",
                            "/items/radiant_robe_top": "",
                            "/items/dairyhands_bottoms": "",
                            "/items/foragers_bottoms": "",
                            "/items/lumberjacks_bottoms": "",
                            "/items/cheesemakers_bottoms": "",
                            "/items/crafters_bottoms": "",
                            "/items/tailors_bottoms": "",
                            "/items/chefs_bottoms": "",
                            "/items/brewers_bottoms": "",
                            "/items/alchemists_bottoms": "",
                            "/items/enhancers_bottoms": "",
                            "/items/turtle_shell_legs": "",
                            "/items/colossus_plate_legs": "",
                            "/items/demonic_plate_legs": "",
                            "/items/anchorbound_plate_legs": "",
                            "/items/anchorbound_plate_legs_refined": "",
                            "/items/maelstrom_plate_legs": "",
                            "/items/maelstrom_plate_legs_refined": "",
                            "/items/marine_chaps": "",
                            "/items/revenant_chaps": "",
                            "/items/griffin_chaps": "",
                            "/items/kraken_chaps": "",
                            "/items/kraken_chaps_refined": "",
                            "/items/icy_robe_bottoms": "",
                            "/items/flaming_robe_bottoms": "",
                            "/items/luna_robe_bottoms": "",
                            "/items/royal_water_robe_bottoms": "",
                            "/items/royal_water_robe_bottoms_refined": "",
                            "/items/royal_nature_robe_bottoms": "",
                            "/items/royal_nature_robe_bottoms_refined": "",
                            "/items/royal_fire_robe_bottoms": "",
                            "/items/royal_fire_robe_bottoms_refined": "",
                            "/items/cheese_plate_legs": "",
                            "/items/verdant_plate_legs": "",
                            "/items/azure_plate_legs": "",
                            "/items/burble_plate_legs": "",
                            "/items/crimson_plate_legs": "",
                            "/items/rainbow_plate_legs": "",
                            "/items/holy_plate_legs": "",
                            "/items/rough_chaps": "",
                            "/items/reptile_chaps": "",
                            "/items/gobo_chaps": "",
                            "/items/beast_chaps": "",
                            "/items/umbral_chaps": "",
                            "/items/cotton_robe_bottoms": "",
                            "/items/linen_robe_bottoms": "",
                            "/items/bamboo_robe_bottoms": "",
                            "/items/silk_robe_bottoms": "",
                            "/items/radiant_robe_bottoms": "",
                            "/items/enchanted_gloves": "",
                            "/items/pincer_gloves": "",
                            "/items/panda_gloves": "",
                            "/items/magnetic_gloves": "",
                            "/items/dodocamel_gauntlets": "",
                            "/items/dodocamel_gauntlets_refined": "",
                            "/items/sighted_bracers": "",
                            "/items/marksman_bracers": "",
                            "/items/marksman_bracers_refined": "",
                            "/items/chrono_gloves": "",
                            "/items/cheese_gauntlets": "",
                            "/items/verdant_gauntlets": "",
                            "/items/azure_gauntlets": "",
                            "/items/burble_gauntlets": "",
                            "/items/crimson_gauntlets": "",
                            "/items/rainbow_gauntlets": "",
                            "/items/holy_gauntlets": "",
                            "/items/rough_bracers": "",
                            "/items/reptile_bracers": "",
                            "/items/gobo_bracers": "",
                            "/items/beast_bracers": "",
                            "/items/umbral_bracers": "",
                            "/items/cotton_gloves": "",
                            "/items/linen_gloves": "",
                            "/items/bamboo_gloves": "",
                            "/items/silk_gloves": "",
                            "/items/radiant_gloves": "",
                            "/items/collectors_boots": "",
                            "/items/shoebill_shoes": "",
                            "/items/black_bear_shoes": "",
                            "/items/grizzly_bear_shoes": "",
                            "/items/polar_bear_shoes": "",
                            "/items/centaur_boots": "",
                            "/items/sorcerer_boots": "",
                            "/items/cheese_boots": "",
                            "/items/verdant_boots": "",
                            "/items/azure_boots": "",
                            "/items/burble_boots": "",
                            "/items/crimson_boots": "",
                            "/items/rainbow_boots": "",
                            "/items/holy_boots": "",
                            "/items/rough_boots": "",
                            "/items/reptile_boots": "",
                            "/items/gobo_boots": "",
                            "/items/beast_boots": "",
                            "/items/umbral_boots": "",
                            "/items/cotton_boots": "",
                            "/items/linen_boots": "",
                            "/items/bamboo_boots": "",
                            "/items/silk_boots": "",
                            "/items/radiant_boots": "",
                            "/items/small_pouch": "",
                            "/items/medium_pouch": "",
                            "/items/large_pouch": "",
                            "/items/giant_pouch": "",
                            "/items/gluttonous_pouch": "",
                            "/items/guzzling_pouch": "",
                            "/items/necklace_of_efficiency": "",
                            "/items/fighter_necklace": "",
                            "/items/ranger_necklace": "",
                            "/items/wizard_necklace": "",
                            "/items/necklace_of_wisdom": "",
                            "/items/necklace_of_speed": "",
                            "/items/philosophers_necklace": "",
                            "/items/earrings_of_gathering": "",
                            "/items/earrings_of_essence_find": "",
                            "/items/earrings_of_armor": "",
                            "/items/earrings_of_regeneration": "",
                            "/items/earrings_of_resistance": "",
                            "/items/earrings_of_rare_find": "",
                            "/items/earrings_of_critical_strike": "",
                            "/items/philosophers_earrings": "",
                            "/items/ring_of_gathering": "",
                            "/items/ring_of_essence_find": "",
                            "/items/ring_of_armor": "",
                            "/items/ring_of_regeneration": "",
                            "/items/ring_of_resistance": "",
                            "/items/ring_of_rare_find": "",
                            "/items/ring_of_critical_strike": "",
                            "/items/philosophers_ring": "",
                            "/items/trainee_milking_charm": "",
                            "/items/basic_milking_charm": "",
                            "/items/advanced_milking_charm": "",
                            "/items/expert_milking_charm": "",
                            "/items/master_milking_charm": "",
                            "/items/grandmaster_milking_charm": "",
                            "/items/trainee_foraging_charm": "",
                            "/items/basic_foraging_charm": "",
                            "/items/advanced_foraging_charm": "",
                            "/items/expert_foraging_charm": "",
                            "/items/master_foraging_charm": "",
                            "/items/grandmaster_foraging_charm": "",
                            "/items/trainee_woodcutting_charm": "",
                            "/items/basic_woodcutting_charm": "",
                            "/items/advanced_woodcutting_charm": "",
                            "/items/expert_woodcutting_charm": "",
                            "/items/master_woodcutting_charm": "",
                            "/items/grandmaster_woodcutting_charm": "",
                            "/items/trainee_cheesesmithing_charm": "",
                            "/items/basic_cheesesmithing_charm": "",
                            "/items/advanced_cheesesmithing_charm": "",
                            "/items/expert_cheesesmithing_charm": "",
                            "/items/master_cheesesmithing_charm": "",
                            "/items/grandmaster_cheesesmithing_charm": "",
                            "/items/trainee_crafting_charm": "",
                            "/items/basic_crafting_charm": "",
                            "/items/advanced_crafting_charm": "",
                            "/items/expert_crafting_charm": "",
                            "/items/master_crafting_charm": "",
                            "/items/grandmaster_crafting_charm": "",
                            "/items/trainee_tailoring_charm": "",
                            "/items/basic_tailoring_charm": "",
                            "/items/advanced_tailoring_charm": "",
                            "/items/expert_tailoring_charm": "",
                            "/items/master_tailoring_charm": "",
                            "/items/grandmaster_tailoring_charm": "",
                            "/items/trainee_cooking_charm": "",
                            "/items/basic_cooking_charm": "",
                            "/items/advanced_cooking_charm": "",
                            "/items/expert_cooking_charm": "",
                            "/items/master_cooking_charm": "",
                            "/items/grandmaster_cooking_charm": "",
                            "/items/trainee_brewing_charm": "",
                            "/items/basic_brewing_charm": "",
                            "/items/advanced_brewing_charm": "",
                            "/items/expert_brewing_charm": "",
                            "/items/master_brewing_charm": "",
                            "/items/grandmaster_brewing_charm": "",
                            "/items/trainee_alchemy_charm": "",
                            "/items/basic_alchemy_charm": "",
                            "/items/advanced_alchemy_charm": "",
                            "/items/expert_alchemy_charm": "",
                            "/items/master_alchemy_charm": "",
                            "/items/grandmaster_alchemy_charm": "",
                            "/items/trainee_enhancing_charm": "",
                            "/items/basic_enhancing_charm": "",
                            "/items/advanced_enhancing_charm": "",
                            "/items/expert_enhancing_charm": "",
                            "/items/master_enhancing_charm": "",
                            "/items/grandmaster_enhancing_charm": "",
                            "/items/trainee_stamina_charm": "",
                            "/items/basic_stamina_charm": "",
                            "/items/advanced_stamina_charm": "",
                            "/items/expert_stamina_charm": "",
                            "/items/master_stamina_charm": "",
                            "/items/grandmaster_stamina_charm": "",
                            "/items/trainee_intelligence_charm": "",
                            "/items/basic_intelligence_charm": "",
                            "/items/advanced_intelligence_charm": "",
                            "/items/expert_intelligence_charm": "",
                            "/items/master_intelligence_charm": "",
                            "/items/grandmaster_intelligence_charm": "",
                            "/items/trainee_attack_charm": "",
                            "/items/basic_attack_charm": "",
                            "/items/advanced_attack_charm": "",
                            "/items/expert_attack_charm": "",
                            "/items/master_attack_charm": "",
                            "/items/grandmaster_attack_charm": "",
                            "/items/trainee_defense_charm": "",
                            "/items/basic_defense_charm": "",
                            "/items/advanced_defense_charm": "",
                            "/items/expert_defense_charm": "",
                            "/items/master_defense_charm": "",
                            "/items/grandmaster_defense_charm": "",
                            "/items/trainee_melee_charm": "",
                            "/items/basic_melee_charm": "",
                            "/items/advanced_melee_charm": "",
                            "/items/expert_melee_charm": "",
                            "/items/master_melee_charm": "",
                            "/items/grandmaster_melee_charm": "",
                            "/items/trainee_ranged_charm": "",
                            "/items/basic_ranged_charm": "",
                            "/items/advanced_ranged_charm": "",
                            "/items/expert_ranged_charm": "",
                            "/items/master_ranged_charm": "",
                            "/items/grandmaster_ranged_charm": "",
                            "/items/trainee_magic_charm": "",
                            "/items/basic_magic_charm": "",
                            "/items/advanced_magic_charm": "",
                            "/items/expert_magic_charm": "",
                            "/items/master_magic_charm": "",
                            "/items/grandmaster_magic_charm": "",
                            "/items/basic_task_badge": "",
                            "/items/advanced_task_badge": "",
                            "/items/expert_task_badge": "",
                            "/items/celestial_brush": "",
                            "/items/cheese_brush": "",
                            "/items/verdant_brush": "",
                            "/items/azure_brush": "",
                            "/items/burble_brush": "",
                            "/items/crimson_brush": "",
                            "/items/rainbow_brush": "",
                            "/items/holy_brush": "",
                            "/items/celestial_shears": "",
                            "/items/cheese_shears": "",
                            "/items/verdant_shears": "",
                            "/items/azure_shears": "",
                            "/items/burble_shears": "",
                            "/items/crimson_shears": "",
                            "/items/rainbow_shears": "",
                            "/items/holy_shears": "",
                            "/items/celestial_hatchet": "",
                            "/items/cheese_hatchet": "",
                            "/items/verdant_hatchet": "",
                            "/items/azure_hatchet": "",
                            "/items/burble_hatchet": "",
                            "/items/crimson_hatchet": "",
                            "/items/rainbow_hatchet": "",
                            "/items/holy_hatchet": "",
                            "/items/celestial_hammer": "",
                            "/items/cheese_hammer": "",
                            "/items/verdant_hammer": "",
                            "/items/azure_hammer": "",
                            "/items/burble_hammer": "",
                            "/items/crimson_hammer": "",
                            "/items/rainbow_hammer": "",
                            "/items/holy_hammer": "",
                            "/items/celestial_chisel": "",
                            "/items/cheese_chisel": "",
                            "/items/verdant_chisel": "",
                            "/items/azure_chisel": "",
                            "/items/burble_chisel": "",
                            "/items/crimson_chisel": "",
                            "/items/rainbow_chisel": "",
                            "/items/holy_chisel": "",
                            "/items/celestial_needle": "",
                            "/items/cheese_needle": "",
                            "/items/verdant_needle": "",
                            "/items/azure_needle": "",
                            "/items/burble_needle": "",
                            "/items/crimson_needle": "",
                            "/items/rainbow_needle": "",
                            "/items/holy_needle": "",
                            "/items/celestial_spatula": "",
                            "/items/cheese_spatula": "",
                            "/items/verdant_spatula": "",
                            "/items/azure_spatula": "",
                            "/items/burble_spatula": "",
                            "/items/crimson_spatula": "",
                            "/items/rainbow_spatula": "",
                            "/items/holy_spatula": "",
                            "/items/celestial_pot": "",
                            "/items/cheese_pot": "",
                            "/items/verdant_pot": "",
                            "/items/azure_pot": "",
                            "/items/burble_pot": "",
                            "/items/crimson_pot": "",
                            "/items/rainbow_pot": "",
                            "/items/holy_pot": "",
                            "/items/celestial_alembic": "",
                            "/items/cheese_alembic": "",
                            "/items/verdant_alembic": "",
                            "/items/azure_alembic": "",
                            "/items/burble_alembic": "",
                            "/items/crimson_alembic": "",
                            "/items/rainbow_alembic": "",
                            "/items/holy_alembic": "",
                            "/items/celestial_enhancer": "",
                            "/items/cheese_enhancer": "",
                            "/items/verdant_enhancer": "",
                            "/items/azure_enhancer": "",
                            "/items/burble_enhancer": "",
                            "/items/crimson_enhancer": "",
                            "/items/rainbow_enhancer": "",
                            "/items/holy_enhancer": "",
                            "/items/milk": "mooo",
                            "/items/verdant_milk": "moooo",
                            "/items/azure_milk": "mooooo",
                            "/items/burble_milk": "moooooo",
                            "/items/crimson_milk": "mooooooo",
                            "/items/rainbow_milk": "moooooooo",
                            "/items/holy_milk": "mooooooooo",
                            "/items/cheese": "",
                            "/items/verdant_cheese": "",
                            "/items/azure_cheese": "",
                            "/items/burble_cheese": "",
                            "/items/crimson_cheese": "",
                            "/items/rainbow_cheese": "",
                            "/items/holy_cheese": "",
                            "/items/log": "",
                            "/items/birch_log": "",
                            "/items/cedar_log": "",
                            "/items/purpleheart_log": "",
                            "/items/ginkgo_log": "",
                            "/items/redwood_log": "",
                            "/items/arcane_log": "",
                            "/items/lumber": "",
                            "/items/birch_lumber": "",
                            "/items/cedar_lumber": "",
                            "/items/purpleheart_lumber": "",
                            "/items/ginkgo_lumber": "",
                            "/items/redwood_lumber": "",
                            "/items/arcane_lumber": "",
                            "/items/rough_hide": "",
                            "/items/reptile_hide": "",
                            "/items/gobo_hide": "",
                            "/items/beast_hide": "",
                            "/items/umbral_hide": "",
                            "/items/rough_leather": "",
                            "/items/reptile_leather": "",
                            "/items/gobo_leather": "",
                            "/items/beast_leather": "",
                            "/items/umbral_leather": "",
                            "/items/cotton": "",
                            "/items/flax": "",
                            "/items/bamboo_branch": "",
                            "/items/cocoon": "",
                            "/items/radiant_fiber": "",
                            "/items/cotton_fabric": "",
                            "/items/linen_fabric": "",
                            "/items/bamboo_fabric": "",
                            "/items/silk_fabric": "",
                            "/items/radiant_fabric": "",
                            "/items/egg": "",
                            "/items/wheat": "",
                            "/items/sugar": "",
                            "/items/blueberry": "",
                            "/items/blackberry": "",
                            "/items/strawberry": "",
                            "/items/mooberry": "",
                            "/items/marsberry": "",
                            "/items/spaceberry": "",
                            "/items/apple": "",
                            "/items/orange": "",
                            "/items/plum": "",
                            "/items/peach": "",
                            "/items/dragon_fruit": "",
                            "/items/star_fruit": "",
                            "/items/arabica_coffee_bean": "",
                            "/items/robusta_coffee_bean": "",
                            "/items/liberica_coffee_bean": "",
                            "/items/excelsa_coffee_bean": "",
                            "/items/fieriosa_coffee_bean": "",
                            "/items/spacia_coffee_bean": "",
                            "/items/green_tea_leaf": "",
                            "/items/black_tea_leaf": "",
                            "/items/burble_tea_leaf": "",
                            "/items/moolong_tea_leaf": "",
                            "/items/red_tea_leaf": "",
                            "/items/emp_tea_leaf": "",
                            "/items/catalyst_of_coinification": "Used in alchemy to increase the coinifying success rate by 15% (multiplicative). One catalyst is consumed on success.",
                            "/items/catalyst_of_decomposition": "Used in alchemy to increase the decomposition success rate by 15% (multiplicative). One catalyst is consumed on success.",
                            "/items/catalyst_of_transmutation": "Used in alchemy to increase the transmutation success rate by 15% (multiplicative). One catalyst is consumed on success.",
                            "/items/prime_catalyst": "Used in alchemy to increase the success rate of any action by 25% (multiplicative). One catalyst is consumed on success.",
                            "/items/snake_fang": "Material used in smithing Snake Fang Dirk",
                            "/items/shoebill_feather": "Material used in tailoring Shoebill Shoes",
                            "/items/snail_shell": "Material used in smithing Snail Shell Helmet",
                            "/items/crab_pincer": "Material used in smithing Pincer Gloves",
                            "/items/turtle_shell": "Material used in smithing Turtle Shell Plate Body or Legs",
                            "/items/marine_scale": "Material used in tailoring Marine Tunic or Chaps",
                            "/items/treant_bark": "Material used in crafting Treant Shield",
                            "/items/centaur_hoof": "Material used in tailoring Centaur Boots",
                            "/items/luna_wing": "Material used in tailoring Luna Robe Top or Bottoms",
                            "/items/gobo_rag": "Material used in tailoring Collector's Boots",
                            "/items/goggles": "Material used in smithing Vision Helmet",
                            "/items/magnifying_glass": "Material used in smithing Vision Shield or tailoring Sighted Bracers",
                            "/items/eye_of_the_watcher": "Material used in crafting Eye Watch or Watchful Relic",
                            "/items/icy_cloth": "Material used in tailoring Icy Robe Top or Bottoms",
                            "/items/flaming_cloth": "Material used in tailoring Flaming Robe Top or Bottoms",
                            "/items/sorcerers_sole": "Material used in tailoring Sorcerer Boots",
                            "/items/chrono_sphere": "Material used in tailoring Enchanted Gloves or Chrono Gloves",
                            "/items/frost_sphere": "Material used in crafting Frost Staff",
                            "/items/panda_fluff": "Material used in smithing Panda Gloves",
                            "/items/black_bear_fluff": "Material used in smithing Black Bear Shoes",
                            "/items/grizzly_bear_fluff": "Material used in smithing Grizzly Bear Shoes",
                            "/items/polar_bear_fluff": "Material used in smithing Polar Bear Shoes",
                            "/items/red_panda_fluff": "Material used in tailoring Red Culinary Hat or Fluffy Red Hat",
                            "/items/magnet": "Material used in smithing Magnetic Gloves",
                            "/items/stalactite_shard": "Material used in smithing Stalactite Spear or Spiked Bulwark",
                            "/items/living_granite": "Material used in smithing Granite Bludgeon or Spiked Bulwark",
                            "/items/colossus_core": "Material used in smithing Colossus Plate Body or Legs",
                            "/items/vampire_fang": "Material used in smithing Vampire Fang Dirk or crafting Vampiric Bow",
                            "/items/werewolf_claw": "Material used in smithing Werewolf Slasher or crafting Vampiric Bow",
                            "/items/revenant_anima": "Material used in tailoring Revenant Tunic or Chaps",
                            "/items/soul_fragment": "Material used in crafting Soul Hunter Crossbow",
                            "/items/infernal_ember": "Material used in crafting Infernal Battlestaff",
                            "/items/demonic_core": "Material used in smithing Demonic Plate Body or Legs",
                            "/items/griffin_leather": "Material used in cheesesmithing Griffin Bulwark and tailoring Griffin Tunic or Chaps",
                            "/items/manticore_sting": "Material used in crafting Manticore Shield",
                            "/items/jackalope_antler": "Material used in crafting Jackalope Staff",
                            "/items/dodocamel_plume": "Material used in smithing Dodocamel Gauntlets",
                            "/items/griffin_talon": "Material used in smithing Griffin Bulwark",
                            "/items/chimerical_refinement_shard": "Material used in upgrading level 95 equipment and Chimerical Quiver from the Chimerical Den",
                            "/items/acrobats_ribbon": "Material used in tailoring Acrobatic Hood",
                            "/items/magicians_cloth": "Material used in tailoring Magician's Hat",
                            "/items/chaotic_chain": "Material used in smithing Chaotic Flail",
                            "/items/cursed_ball": "Material used in crafting Cursed Bow",
                            "/items/sinister_refinement_shard": "Material used in upgrading level 95 equipment and Sinister Cape from the Sinister Circus",
                            "/items/royal_cloth": "Material used in tailoring Royal Robe Top or Bottoms",
                            "/items/knights_ingot": "Material used in smithing Knight's Aegis",
                            "/items/bishops_scroll": "Material used in crafting Bishop's Codex",
                            "/items/regal_jewel": "Material used in smithing Regal Sword and Furious Spear",
                            "/items/sundering_jewel": "Material used in crafting Sundering Crossbow and smithing Furious Spear",
                            "/items/enchanted_refinement_shard": "Material used in upgrading level 95 equipment and Enchanted Cloak from the Enchanted Fortress",
                            "/items/marksman_brooch": "Material used in tailoring Marksman Bracers",
                            "/items/corsair_crest": "Material used in smithing Corsair Helmet",
                            "/items/damaged_anchor": "Material used in smithing Anchorbound Plate Body or Legs",
                            "/items/maelstrom_plating": "Material used in smithing Maelstrom Plate Body or Legs",
                            "/items/kraken_leather": "Material used in tailoring Kraken Tunic or Chaps",
                            "/items/kraken_fang": "Material used in crafting Rippling, Blooming, or Blazing Trident",
                            "/items/pirate_refinement_shard": "Material used in upgrading level 95 equipment from the Pirate's Cove",
                            "/items/butter_of_proficiency": "Material used in producing special skilling tools and outfits",
                            "/items/thread_of_expertise": "Material used in producing special skilling outfits",
                            "/items/branch_of_insight": "Material used in producing special skilling tools and outfits",
                            "/items/gluttonous_energy": "Used for tailoring Gluttonous Pouch",
                            "/items/guzzling_energy": "Used for tailoring Guzzling Pouch",
                            "/items/milking_essence": "Used for brewing milking tea and crafting alchemy catalyst",
                            "/items/foraging_essence": "Used for brewing foraging tea and crafting alchemy catalyst",
                            "/items/woodcutting_essence": "Used for brewing woodcutting tea and crafting alchemy catalyst",
                            "/items/cheesesmithing_essence": "Used for brewing cheesesmithing tea and crafting alchemy catalyst",
                            "/items/crafting_essence": "Used for brewing crafting tea and crafting alchemy catalyst",
                            "/items/tailoring_essence": "Used for brewing tailoring tea and crafting alchemy catalyst",
                            "/items/cooking_essence": "Used for brewing cooking tea and crafting alchemy catalyst",
                            "/items/brewing_essence": "Used for brewing brewing tea and crafting alchemy catalyst",
                            "/items/alchemy_essence": "Used for brewing alchemy tea and crafting alchemy catalyst",
                            "/items/enhancing_essence": "Used for brewing enhancing tea and crafting alchemy catalyst",
                            "/items/swamp_essence": "Used for enhancing special equipment from Swamp Planet",
                            "/items/aqua_essence": "Used for enhancing special equipment from Aqua Planet",
                            "/items/jungle_essence": "Used for enhancing special equipment from Jungle Planet",
                            "/items/gobo_essence": "Used for enhancing special equipment from Gobo Planet",
                            "/items/eyessence": "Used for enhancing special equipment from Planet Of The Eyes",
                            "/items/sorcerer_essence": "Used for enhancing special equipment from Sorcerer's Tower",
                            "/items/bear_essence": "Used for enhancing special equipment from Bear With It",
                            "/items/golem_essence": "Used for enhancing special equipment from Golem Cave",
                            "/items/twilight_essence": "Used for enhancing special equipment from Twilight Zone",
                            "/items/abyssal_essence": "Used for enhancing special equipment from Infernal Abyss",
                            "/items/chimerical_essence": "Used for enhancing special equipment from the Chimerical Den",
                            "/items/sinister_essence": "Used for enhancing special equipment from the Sinister Circus",
                            "/items/enchanted_essence": "Used for enhancing special equipment from the Enchanted Fortress",
                            "/items/pirate_essence": "Used for enhancing special equipment from the Pirate Cove",
                            "/items/task_crystal": "Crystals obtained from Purple. They can be used to craft special trinkets.",
                            "/items/star_fragment": "Fragments with a celestial origin found in Meteorite Caches. They can be used to craft jewelry.",
                            "/items/pearl": "A shiny gem often found from Treasure Chests",
                            "/items/amber": "A shiny gem often found from Treasure Chests",
                            "/items/garnet": "A shiny gem often found from Treasure Chests",
                            "/items/jade": "A shiny gem often found from Treasure Chests",
                            "/items/amethyst": "A shiny gem often found from Treasure Chests",
                            "/items/moonstone": "A shiny gem often found from Treasure Chests",
                            "/items/sunstone": "A shiny gem in the shape of the sun.",
                            "/items/philosophers_stone": "A legendary stone of immense power.",
                            "/items/crushed_pearl": "Used to be a piece of pearl",
                            "/items/crushed_amber": "Used to be a piece of amber",
                            "/items/crushed_garnet": "Used to be a piece of garnet.",
                            "/items/crushed_jade": "Used to be a piece of jade",
                            "/items/crushed_amethyst": "Used to be a piece of amethyst",
                            "/items/crushed_moonstone": "Used to be a piece of moonstone",
                            "/items/crushed_sunstone": "Used to be a piece of sunstone",
                            "/items/crushed_philosophers_stone": "Used to be a piece of a philosopher's stone",
                            "/items/shard_of_protection": "Found from Artisan's Crates. They are used for crafting Mirror of Protection",
                            "/items/mirror_of_protection": "A rare artifact that functions as a copy of any equipment for enhancing protection"
                        },
                        "itemCategoryNames": {
                            "/item_categories/currency": "Currency",
                            "/item_categories/loot": "Loot",
                            "/item_categories/key": "Key",
                            "/item_categories/food": "Food",
                            "/item_categories/drink": "Drink",
                            "/item_categories/ability_book": "Ability Book",
                            "/item_categories/equipment": "Equipment",
                            "/item_categories/resource": "Resource"
                        },
                        "itemCategoryPluralNames": {
                            "/item_categories/currency": "Currencies",
                            "/item_categories/loot": "Loots",
                            "/item_categories/key": "Keys",
                            "/item_categories/food": "Foods",
                            "/item_categories/drink": "Drinks",
                            "/item_categories/ability_book": "Ability Books",
                            "/item_categories/equipment": "Equipment",
                            "/item_categories/resource": "Resources"
                        },
                        "equipmentTypeNames": {
                            "/equipment_types/two_hand": "Two Hand",
                            "/equipment_types/main_hand": "Main Hand",
                            "/equipment_types/off_hand": "Off Hand",
                            "/equipment_types/back": "Back",
                            "/equipment_types/head": "Head",
                            "/equipment_types/body": "Body",
                            "/equipment_types/legs": "Legs",
                            "/equipment_types/hands": "Hands",
                            "/equipment_types/feet": "Feet",
                            "/equipment_types/pouch": "Pouch",
                            "/equipment_types/neck": "Neck",
                            "/equipment_types/earrings": "Earrings",
                            "/equipment_types/ring": "Ring",
                            "/equipment_types/charm": "Charm",
                            "/equipment_types/trinket": "Trinket",
                            "/equipment_types/milking_tool": "Milking Tool",
                            "/equipment_types/foraging_tool": "Foraging Tool",
                            "/equipment_types/woodcutting_tool": "Woodcutting Tool",
                            "/equipment_types/cheesesmithing_tool": "Cheesesmithing Tool",
                            "/equipment_types/crafting_tool": "Crafting Tool",
                            "/equipment_types/tailoring_tool": "Tailoring Tool",
                            "/equipment_types/cooking_tool": "Cooking Tool",
                            "/equipment_types/brewing_tool": "Brewing Tool",
                            "/equipment_types/alchemy_tool": "Alchemy Tool",
                            "/equipment_types/enhancing_tool": "Enhancing Tool"
                        },
                        "combatStyleNames": {
                            "/combat_styles/stab": "Stab",
                            "/combat_styles/slash": "Slash",
                            "/combat_styles/smash": "Smash",
                            "/combat_styles/ranged": "Ranged",
                            "/combat_styles/magic": "Magic",
                            "/combat_styles/heal": "Heal"
                        },
                        "damageTypeNames": {
                            "/damage_types/physical": "Physical",
                            "/damage_types/water": "Water",
                            "/damage_types/nature": "Nature",
                            "/damage_types/fire": "Fire"
                        },
                        "monsterNames": {
                            "/monsters/abyssal_imp": "Abyssal Imp",
                            "/monsters/acrobat": "Acrobat",
                            "/monsters/anchor_shark": "Anchor Shark",
                            "/monsters/aquahorse": "Aquahorse",
                            "/monsters/black_bear": "Black Bear",
                            "/monsters/gobo_boomy": "Boomy",
                            "/monsters/brine_marksman": "Brine Marksman",
                            "/monsters/butterjerry": "Butterjerry",
                            "/monsters/captain_fishhook": "Captain Fishhook",
                            "/monsters/centaur_archer": "Centaur Archer",
                            "/monsters/chronofrost_sorcerer": "Chronofrost Sorcerer",
                            "/monsters/crystal_colossus": "Crystal Colossus",
                            "/monsters/demonic_overlord": "Demonic Overlord",
                            "/monsters/deranged_jester": "Deranged Jester",
                            "/monsters/dodocamel": "Dodocamel",
                            "/monsters/dusk_revenant": "Dusk Revenant",
                            "/monsters/elementalist": "Elementalist",
                            "/monsters/enchanted_bishop": "Enchanted Bishop",
                            "/monsters/enchanted_king": "Enchanted King",
                            "/monsters/enchanted_knight": "Enchanted Knight",
                            "/monsters/enchanted_pawn": "Enchanted Pawn",
                            "/monsters/enchanted_queen": "Enchanted Queen",
                            "/monsters/enchanted_rook": "Enchanted Rook",
                            "/monsters/eye": "Eye",
                            "/monsters/eyes": "Eyes",
                            "/monsters/flame_sorcerer": "Flame Sorcerer",
                            "/monsters/fly": "Fly",
                            "/monsters/frog": "Frogger",
                            "/monsters/sea_snail": "Gary",
                            "/monsters/giant_shoebill": "Giant Shoebill",
                            "/monsters/gobo_chieftain": "Gobo Chieftain",
                            "/monsters/granite_golem": "Granite Golem",
                            "/monsters/griffin": "Griffin",
                            "/monsters/grizzly_bear": "Grizzly Bear",
                            "/monsters/gummy_bear": "Gummy Bear",
                            "/monsters/crab": "I Pinch",
                            "/monsters/ice_sorcerer": "Ice Sorcerer",
                            "/monsters/infernal_warlock": "Infernal Warlock",
                            "/monsters/jackalope": "Jackalope",
                            "/monsters/rat": "Jerry",
                            "/monsters/juggler": "Juggler",
                            "/monsters/jungle_sprite": "Jungle Sprite",
                            "/monsters/luna_empress": "Luna Empress",
                            "/monsters/magician": "Magician",
                            "/monsters/magnetic_golem": "Magnetic Golem",
                            "/monsters/manticore": "Manticore",
                            "/monsters/marine_huntress": "Marine Huntress",
                            "/monsters/myconid": "Myconid",
                            "/monsters/nom_nom": "Nom Nom",
                            "/monsters/novice_sorcerer": "Novice Sorcerer",
                            "/monsters/panda": "Panda",
                            "/monsters/polar_bear": "Polar Bear",
                            "/monsters/porcupine": "Porcupine",
                            "/monsters/rabid_rabbit": "Rabid Rabbit",
                            "/monsters/red_panda": "Red Panda",
                            "/monsters/alligator": "Sherlock",
                            "/monsters/gobo_shooty": "Shooty",
                            "/monsters/skunk": "Skunk",
                            "/monsters/gobo_slashy": "Slashy",
                            "/monsters/slimy": "Slimy",
                            "/monsters/gobo_smashy": "Smashy",
                            "/monsters/soul_hunter": "Soul Hunter",
                            "/monsters/squawker": "Squawker",
                            "/monsters/gobo_stabby": "Stabby",
                            "/monsters/stalactite_golem": "Stalactite Golem",
                            "/monsters/swampy": "Swampy",
                            "/monsters/the_kraken": "The Kraken",
                            "/monsters/the_watcher": "The Watcher",
                            "/monsters/snake": "Thnake",
                            "/monsters/tidal_conjuror": "Tidal Conjuror",
                            "/monsters/treant": "Treant",
                            "/monsters/turtle": "Turuto",
                            "/monsters/vampire": "Vampire",
                            "/monsters/veyes": "Veyes",
                            "/monsters/werewolf": "Werewolf",
                            "/monsters/zombie": "Zombie",
                            "/monsters/zombie_bear": "Zombie Bear"
                        },
                        "combatTriggerDependencyNames": {
                            "/combat_trigger_dependencies/all_allies": "Allies' Total",
                            "/combat_trigger_dependencies/all_enemies": "Enemies' Total",
                            "/combat_trigger_dependencies/self": "My",
                            "/combat_trigger_dependencies/targeted_enemy": "Target Enemy's"
                        },
                        "combatTriggerConditionNames": {
                            "/combat_trigger_conditions/number_of_active_units": "# of Active Units",
                            "/combat_trigger_conditions/number_of_dead_units": "# of Dead Units",
                            "/combat_trigger_conditions/attack_coffee": "Attack Coffee",
                            "/combat_trigger_conditions/berserk": "Berserk",
                            "/combat_trigger_conditions/blind_status": "Blind Status",
                            "/combat_trigger_conditions/channeling_coffee": "Channeling Coffee",
                            "/combat_trigger_conditions/crippling_slash": "Crippling Slash Debuff",
                            "/combat_trigger_conditions/critical_aura": "Critical Aura",
                            "/combat_trigger_conditions/critical_coffee": "Critical Coffee",
                            "/combat_trigger_conditions/current_hp": "Current Hp",
                            "/combat_trigger_conditions/current_mp": "Current Mp",
                            "/combat_trigger_conditions/curse": "Curse",
                            "/combat_trigger_conditions/defense_coffee": "Defense Coffee",
                            "/combat_trigger_conditions/elemental_affinity": "Elemental Affinity",
                            "/combat_trigger_conditions/elusiveness": "Elusiveness",
                            "/combat_trigger_conditions/enrage": "Enrage",
                            "/combat_trigger_conditions/fierce_aura": "Fierce Aura",
                            "/combat_trigger_conditions/fracturing_impact": "Fracturing Impact Debuff",
                            "/combat_trigger_conditions/frenzy": "Frenzy",
                            "/combat_trigger_conditions/frost_surge": "Frost Surge Debuff",
                            "/combat_trigger_conditions/fury": "Fury",
                            "/combat_trigger_conditions/guardian_aura": "Guardian Aura",
                            "/combat_trigger_conditions/ice_spear": "Ice Spear Debuff",
                            "/combat_trigger_conditions/insanity": "Insanity",
                            "/combat_trigger_conditions/intelligence_coffee": "Intelligence Coffee",
                            "/combat_trigger_conditions/invincible": "Invincible",
                            "/combat_trigger_conditions/lowest_hp_percentage": "Lowest HP %",
                            "/combat_trigger_conditions/lucky_coffee": "Lucky Coffee",
                            "/combat_trigger_conditions/magic_coffee": "Magic Coffee",
                            "/combat_trigger_conditions/maim": "Maim Debuff",
                            "/combat_trigger_conditions/mana_spring": "Mana Spring",
                            "/combat_trigger_conditions/melee_coffee": "Melee Coffee",
                            "/combat_trigger_conditions/missing_hp": "Missing Hp",
                            "/combat_trigger_conditions/missing_mp": "Missing Mp",
                            "/combat_trigger_conditions/mystic_aura": "Mystic Aura",
                            "/combat_trigger_conditions/pestilent_shot": "Pestilent Shot Debuff",
                            "/combat_trigger_conditions/precision": "Precision",
                            "/combat_trigger_conditions/provoke": "Provoke",
                            "/combat_trigger_conditions/puncture": "Puncture Debuff",
                            "/combat_trigger_conditions/ranged_coffee": "Ranged Coffee",
                            "/combat_trigger_conditions/retribution": "Retribution",
                            "/combat_trigger_conditions/silence_status": "Silence Status",
                            "/combat_trigger_conditions/smoke_burst": "Smoke Burst Debuff",
                            "/combat_trigger_conditions/speed_aura": "Speed Aura",
                            "/combat_trigger_conditions/spike_shell": "Spike Shell",
                            "/combat_trigger_conditions/stamina_coffee": "Stamina Coffee",
                            "/combat_trigger_conditions/stun_status": "Stun Status",
                            "/combat_trigger_conditions/swiftness_coffee": "Swiftness Coffee",
                            "/combat_trigger_conditions/taunt": "Taunt",
                            "/combat_trigger_conditions/toughness": "Toughness",
                            "/combat_trigger_conditions/toxic_pollen": "Toxic Pollen Debuff",
                            "/combat_trigger_conditions/vampirism": "Vampirism",
                            "/combat_trigger_conditions/weaken": "Weaken",
                            "/combat_trigger_conditions/wisdom_coffee": "Wisdom Coffee"
                        },
                        "combatTriggerComparatorNames": {
                            "/combat_trigger_comparators/less_than_equal": "<=",
                            "/combat_trigger_comparators/greater_than_equal": ">=",
                            "/combat_trigger_comparators/is_active": "Is Active",
                            "/combat_trigger_comparators/is_inactive": "Is Inactive"
                        },
                        "shopCategoryNames": {
                            "/shop_categories/dungeon": "Dungeon",
                            "/shop_categories/general": "General",
                            "/shop_categories/tester": "Tester"
                        },
                        "actionNames": {
                            "/actions/milking/cow": "Cow",
                            "/actions/milking/verdant_cow": "Verdant Cow",
                            "/actions/milking/azure_cow": "Azure Cow",
                            "/actions/milking/burble_cow": "Burble Cow",
                            "/actions/milking/crimson_cow": "Crimson Cow",
                            "/actions/milking/unicow": "Unicow",
                            "/actions/milking/holy_cow": "Holy Cow",
                            "/actions/foraging/egg": "Egg",
                            "/actions/foraging/wheat": "Wheat",
                            "/actions/foraging/sugar": "Sugar",
                            "/actions/foraging/cotton": "Cotton",
                            "/actions/foraging/farmland": "Farmland",
                            "/actions/foraging/blueberry": "Blueberry",
                            "/actions/foraging/apple": "Apple",
                            "/actions/foraging/arabica_coffee_bean": "Arabica Coffee Bean",
                            "/actions/foraging/flax": "Flax",
                            "/actions/foraging/shimmering_lake": "Shimmering Lake",
                            "/actions/foraging/blackberry": "Blackberry",
                            "/actions/foraging/orange": "Orange",
                            "/actions/foraging/robusta_coffee_bean": "Robusta Coffee Bean",
                            "/actions/foraging/misty_forest": "Misty Forest",
                            "/actions/foraging/strawberry": "Strawberry",
                            "/actions/foraging/plum": "Plum",
                            "/actions/foraging/liberica_coffee_bean": "Liberica Coffee Bean",
                            "/actions/foraging/bamboo_branch": "Bamboo Branch",
                            "/actions/foraging/burble_beach": "Burble Beach",
                            "/actions/foraging/mooberry": "Mooberry",
                            "/actions/foraging/peach": "Peach",
                            "/actions/foraging/excelsa_coffee_bean": "Excelsa Coffee Bean",
                            "/actions/foraging/cocoon": "Cocoon",
                            "/actions/foraging/silly_cow_valley": "Silly Cow Valley",
                            "/actions/foraging/marsberry": "Marsberry",
                            "/actions/foraging/dragon_fruit": "Dragon Fruit",
                            "/actions/foraging/fieriosa_coffee_bean": "Fieriosa Coffee Bean",
                            "/actions/foraging/olympus_mons": "Olympus Mons",
                            "/actions/foraging/spaceberry": "Spaceberry",
                            "/actions/foraging/star_fruit": "Star Fruit",
                            "/actions/foraging/spacia_coffee_bean": "Spacia Coffee Bean",
                            "/actions/foraging/radiant_fiber": "Radiant Fiber",
                            "/actions/foraging/asteroid_belt": "Asteroid Belt",
                            "/actions/woodcutting/tree": "Tree",
                            "/actions/woodcutting/birch_tree": "Birch Tree",
                            "/actions/woodcutting/cedar_tree": "Cedar Tree",
                            "/actions/woodcutting/purpleheart_tree": "Purpleheart Tree",
                            "/actions/woodcutting/ginkgo_tree": "Ginkgo Tree",
                            "/actions/woodcutting/redwood_tree": "Redwood Tree",
                            "/actions/woodcutting/arcane_tree": "Arcane Tree",
                            "/actions/cheesesmithing/cheese": "Cheese",
                            "/actions/cheesesmithing/cheese_boots": "Cheese Boots",
                            "/actions/cheesesmithing/cheese_gauntlets": "Cheese Gauntlets",
                            "/actions/cheesesmithing/cheese_sword": "Cheese Sword",
                            "/actions/cheesesmithing/cheese_brush": "Cheese Brush",
                            "/actions/cheesesmithing/cheese_shears": "Cheese Shears",
                            "/actions/cheesesmithing/cheese_hatchet": "Cheese Hatchet",
                            "/actions/cheesesmithing/cheese_spear": "Cheese Spear",
                            "/actions/cheesesmithing/cheese_hammer": "Cheese Hammer",
                            "/actions/cheesesmithing/cheese_chisel": "Cheese Chisel",
                            "/actions/cheesesmithing/cheese_needle": "Cheese Needle",
                            "/actions/cheesesmithing/cheese_spatula": "Cheese Spatula",
                            "/actions/cheesesmithing/cheese_pot": "Cheese Pot",
                            "/actions/cheesesmithing/cheese_mace": "Cheese Mace",
                            "/actions/cheesesmithing/cheese_alembic": "Cheese Alembic",
                            "/actions/cheesesmithing/cheese_enhancer": "Cheese Enhancer",
                            "/actions/cheesesmithing/cheese_helmet": "Cheese Helmet",
                            "/actions/cheesesmithing/cheese_buckler": "Cheese Buckler",
                            "/actions/cheesesmithing/cheese_bulwark": "Cheese Bulwark",
                            "/actions/cheesesmithing/cheese_plate_legs": "Cheese Plate Legs",
                            "/actions/cheesesmithing/cheese_plate_body": "Cheese Plate Body",
                            "/actions/cheesesmithing/verdant_cheese": "Verdant Cheese",
                            "/actions/cheesesmithing/verdant_boots": "Verdant Boots",
                            "/actions/cheesesmithing/verdant_gauntlets": "Verdant Gauntlets",
                            "/actions/cheesesmithing/verdant_sword": "Verdant Sword",
                            "/actions/cheesesmithing/verdant_brush": "Verdant Brush",
                            "/actions/cheesesmithing/verdant_shears": "Verdant Shears",
                            "/actions/cheesesmithing/verdant_hatchet": "Verdant Hatchet",
                            "/actions/cheesesmithing/verdant_spear": "Verdant Spear",
                            "/actions/cheesesmithing/verdant_hammer": "Verdant Hammer",
                            "/actions/cheesesmithing/verdant_chisel": "Verdant Chisel",
                            "/actions/cheesesmithing/verdant_needle": "Verdant Needle",
                            "/actions/cheesesmithing/verdant_spatula": "Verdant Spatula",
                            "/actions/cheesesmithing/verdant_pot": "Verdant Pot",
                            "/actions/cheesesmithing/verdant_mace": "Verdant Mace",
                            "/actions/cheesesmithing/snake_fang_dirk": "Snake Fang Dirk",
                            "/actions/cheesesmithing/verdant_alembic": "Verdant Alembic",
                            "/actions/cheesesmithing/verdant_enhancer": "Verdant Enhancer",
                            "/actions/cheesesmithing/verdant_helmet": "Verdant Helmet",
                            "/actions/cheesesmithing/verdant_buckler": "Verdant Buckler",
                            "/actions/cheesesmithing/verdant_bulwark": "Verdant Bulwark",
                            "/actions/cheesesmithing/verdant_plate_legs": "Verdant Plate Legs",
                            "/actions/cheesesmithing/verdant_plate_body": "Verdant Plate Body",
                            "/actions/cheesesmithing/azure_cheese": "Azure Cheese",
                            "/actions/cheesesmithing/azure_boots": "Azure Boots",
                            "/actions/cheesesmithing/azure_gauntlets": "Azure Gauntlets",
                            "/actions/cheesesmithing/azure_sword": "Azure Sword",
                            "/actions/cheesesmithing/azure_brush": "Azure Brush",
                            "/actions/cheesesmithing/azure_shears": "Azure Shears",
                            "/actions/cheesesmithing/azure_hatchet": "Azure Hatchet",
                            "/actions/cheesesmithing/azure_spear": "Azure Spear",
                            "/actions/cheesesmithing/azure_hammer": "Azure Hammer",
                            "/actions/cheesesmithing/azure_chisel": "Azure Chisel",
                            "/actions/cheesesmithing/azure_needle": "Azure Needle",
                            "/actions/cheesesmithing/azure_spatula": "Azure Spatula",
                            "/actions/cheesesmithing/azure_pot": "Azure Pot",
                            "/actions/cheesesmithing/azure_mace": "Azure Mace",
                            "/actions/cheesesmithing/pincer_gloves": "Pincer Gloves",
                            "/actions/cheesesmithing/azure_alembic": "Azure Alembic",
                            "/actions/cheesesmithing/azure_enhancer": "Azure Enhancer",
                            "/actions/cheesesmithing/azure_helmet": "Azure Helmet",
                            "/actions/cheesesmithing/azure_buckler": "Azure Buckler",
                            "/actions/cheesesmithing/azure_bulwark": "Azure Bulwark",
                            "/actions/cheesesmithing/azure_plate_legs": "Azure Plate Legs",
                            "/actions/cheesesmithing/snail_shell_helmet": "Snail Shell Helmet",
                            "/actions/cheesesmithing/azure_plate_body": "Azure Plate Body",
                            "/actions/cheesesmithing/turtle_shell_legs": "Turtle Shell Legs",
                            "/actions/cheesesmithing/turtle_shell_body": "Turtle Shell Body",
                            "/actions/cheesesmithing/burble_cheese": "Burble Cheese",
                            "/actions/cheesesmithing/burble_boots": "Burble Boots",
                            "/actions/cheesesmithing/burble_gauntlets": "Burble Gauntlets",
                            "/actions/cheesesmithing/burble_sword": "Burble Sword",
                            "/actions/cheesesmithing/burble_brush": "Burble Brush",
                            "/actions/cheesesmithing/burble_shears": "Burble Shears",
                            "/actions/cheesesmithing/burble_hatchet": "Burble Hatchet",
                            "/actions/cheesesmithing/burble_spear": "Burble Spear",
                            "/actions/cheesesmithing/burble_hammer": "Burble Hammer",
                            "/actions/cheesesmithing/burble_chisel": "Burble Chisel",
                            "/actions/cheesesmithing/burble_needle": "Burble Needle",
                            "/actions/cheesesmithing/burble_spatula": "Burble Spatula",
                            "/actions/cheesesmithing/burble_pot": "Burble Pot",
                            "/actions/cheesesmithing/burble_mace": "Burble Mace",
                            "/actions/cheesesmithing/burble_alembic": "Burble Alembic",
                            "/actions/cheesesmithing/burble_enhancer": "Burble Enhancer",
                            "/actions/cheesesmithing/burble_helmet": "Burble Helmet",
                            "/actions/cheesesmithing/burble_buckler": "Burble Buckler",
                            "/actions/cheesesmithing/burble_bulwark": "Burble Bulwark",
                            "/actions/cheesesmithing/burble_plate_legs": "Burble Plate Legs",
                            "/actions/cheesesmithing/burble_plate_body": "Burble Plate Body",
                            "/actions/cheesesmithing/crimson_cheese": "Crimson Cheese",
                            "/actions/cheesesmithing/crimson_boots": "Crimson Boots",
                            "/actions/cheesesmithing/crimson_gauntlets": "Crimson Gauntlets",
                            "/actions/cheesesmithing/crimson_sword": "Crimson Sword",
                            "/actions/cheesesmithing/crimson_brush": "Crimson Brush",
                            "/actions/cheesesmithing/crimson_shears": "Crimson Shears",
                            "/actions/cheesesmithing/crimson_hatchet": "Crimson Hatchet",
                            "/actions/cheesesmithing/crimson_spear": "Crimson Spear",
                            "/actions/cheesesmithing/crimson_hammer": "Crimson Hammer",
                            "/actions/cheesesmithing/crimson_chisel": "Crimson Chisel",
                            "/actions/cheesesmithing/crimson_needle": "Crimson Needle",
                            "/actions/cheesesmithing/crimson_spatula": "Crimson Spatula",
                            "/actions/cheesesmithing/crimson_pot": "Crimson Pot",
                            "/actions/cheesesmithing/crimson_mace": "Crimson Mace",
                            "/actions/cheesesmithing/crimson_alembic": "Crimson Alembic",
                            "/actions/cheesesmithing/crimson_enhancer": "Crimson Enhancer",
                            "/actions/cheesesmithing/crimson_helmet": "Crimson Helmet",
                            "/actions/cheesesmithing/crimson_buckler": "Crimson Buckler",
                            "/actions/cheesesmithing/crimson_bulwark": "Crimson Bulwark",
                            "/actions/cheesesmithing/crimson_plate_legs": "Crimson Plate Legs",
                            "/actions/cheesesmithing/vision_helmet": "Vision Helmet",
                            "/actions/cheesesmithing/vision_shield": "Vision Shield",
                            "/actions/cheesesmithing/crimson_plate_body": "Crimson Plate Body",
                            "/actions/cheesesmithing/rainbow_cheese": "Rainbow Cheese",
                            "/actions/cheesesmithing/rainbow_boots": "Rainbow Boots",
                            "/actions/cheesesmithing/black_bear_shoes": "Black Bear Shoes",
                            "/actions/cheesesmithing/grizzly_bear_shoes": "Grizzly Bear Shoes",
                            "/actions/cheesesmithing/polar_bear_shoes": "Polar Bear Shoes",
                            "/actions/cheesesmithing/rainbow_gauntlets": "Rainbow Gauntlets",
                            "/actions/cheesesmithing/rainbow_sword": "Rainbow Sword",
                            "/actions/cheesesmithing/panda_gloves": "Panda Gloves",
                            "/actions/cheesesmithing/rainbow_brush": "Rainbow Brush",
                            "/actions/cheesesmithing/rainbow_shears": "Rainbow Shears",
                            "/actions/cheesesmithing/rainbow_hatchet": "Rainbow Hatchet",
                            "/actions/cheesesmithing/rainbow_spear": "Rainbow Spear",
                            "/actions/cheesesmithing/rainbow_hammer": "Rainbow Hammer",
                            "/actions/cheesesmithing/rainbow_chisel": "Rainbow Chisel",
                            "/actions/cheesesmithing/rainbow_needle": "Rainbow Needle",
                            "/actions/cheesesmithing/rainbow_spatula": "Rainbow Spatula",
                            "/actions/cheesesmithing/rainbow_pot": "Rainbow Pot",
                            "/actions/cheesesmithing/rainbow_mace": "Rainbow Mace",
                            "/actions/cheesesmithing/rainbow_alembic": "Rainbow Alembic",
                            "/actions/cheesesmithing/rainbow_enhancer": "Rainbow Enhancer",
                            "/actions/cheesesmithing/rainbow_helmet": "Rainbow Helmet",
                            "/actions/cheesesmithing/rainbow_buckler": "Rainbow Buckler",
                            "/actions/cheesesmithing/rainbow_bulwark": "Rainbow Bulwark",
                            "/actions/cheesesmithing/rainbow_plate_legs": "Rainbow Plate Legs",
                            "/actions/cheesesmithing/rainbow_plate_body": "Rainbow Plate Body",
                            "/actions/cheesesmithing/holy_cheese": "Holy Cheese",
                            "/actions/cheesesmithing/holy_boots": "Holy Boots",
                            "/actions/cheesesmithing/holy_gauntlets": "Holy Gauntlets",
                            "/actions/cheesesmithing/holy_sword": "Holy Sword",
                            "/actions/cheesesmithing/holy_brush": "Holy Brush",
                            "/actions/cheesesmithing/holy_shears": "Holy Shears",
                            "/actions/cheesesmithing/holy_hatchet": "Holy Hatchet",
                            "/actions/cheesesmithing/holy_spear": "Holy Spear",
                            "/actions/cheesesmithing/holy_hammer": "Holy Hammer",
                            "/actions/cheesesmithing/holy_chisel": "Holy Chisel",
                            "/actions/cheesesmithing/holy_needle": "Holy Needle",
                            "/actions/cheesesmithing/holy_spatula": "Holy Spatula",
                            "/actions/cheesesmithing/holy_pot": "Holy Pot",
                            "/actions/cheesesmithing/holy_mace": "Holy Mace",
                            "/actions/cheesesmithing/magnetic_gloves": "Magnetic Gloves",
                            "/actions/cheesesmithing/stalactite_spear": "Stalactite Spear",
                            "/actions/cheesesmithing/granite_bludgeon": "Granite Bludgeon",
                            "/actions/cheesesmithing/vampire_fang_dirk": "Vampire Fang Dirk",
                            "/actions/cheesesmithing/werewolf_slasher": "Werewolf Slasher",
                            "/actions/cheesesmithing/holy_alembic": "Holy Alembic",
                            "/actions/cheesesmithing/holy_enhancer": "Holy Enhancer",
                            "/actions/cheesesmithing/holy_helmet": "Holy Helmet",
                            "/actions/cheesesmithing/holy_buckler": "Holy Buckler",
                            "/actions/cheesesmithing/holy_bulwark": "Holy Bulwark",
                            "/actions/cheesesmithing/holy_plate_legs": "Holy Plate Legs",
                            "/actions/cheesesmithing/holy_plate_body": "Holy Plate Body",
                            "/actions/cheesesmithing/celestial_brush": "Celestial Brush",
                            "/actions/cheesesmithing/celestial_shears": "Celestial Shears",
                            "/actions/cheesesmithing/celestial_hatchet": "Celestial Hatchet",
                            "/actions/cheesesmithing/celestial_hammer": "Celestial Hammer",
                            "/actions/cheesesmithing/celestial_chisel": "Celestial Chisel",
                            "/actions/cheesesmithing/celestial_needle": "Celestial Needle",
                            "/actions/cheesesmithing/celestial_spatula": "Celestial Spatula",
                            "/actions/cheesesmithing/celestial_pot": "Celestial Pot",
                            "/actions/cheesesmithing/celestial_alembic": "Celestial Alembic",
                            "/actions/cheesesmithing/celestial_enhancer": "Celestial Enhancer",
                            "/actions/cheesesmithing/colossus_plate_body": "Colossus Plate Body",
                            "/actions/cheesesmithing/colossus_plate_legs": "Colossus Plate Legs",
                            "/actions/cheesesmithing/demonic_plate_body": "Demonic Plate Body",
                            "/actions/cheesesmithing/demonic_plate_legs": "Demonic Plate Legs",
                            "/actions/cheesesmithing/spiked_bulwark": "Spiked Bulwark",
                            "/actions/cheesesmithing/dodocamel_gauntlets": "Dodocamel Gauntlets",
                            "/actions/cheesesmithing/corsair_helmet": "Corsair Helmet",
                            "/actions/cheesesmithing/knights_aegis": "Knights Aegis",
                            "/actions/cheesesmithing/anchorbound_plate_legs": "Anchorbound Plate Legs",
                            "/actions/cheesesmithing/maelstrom_plate_legs": "Maelstrom Plate Legs",
                            "/actions/cheesesmithing/griffin_bulwark": "Griffin Bulwark",
                            "/actions/cheesesmithing/furious_spear": "Furious Spear",
                            "/actions/cheesesmithing/chaotic_flail": "Chaotic Flail",
                            "/actions/cheesesmithing/regal_sword": "Regal Sword",
                            "/actions/cheesesmithing/anchorbound_plate_body": "Anchorbound Plate Body",
                            "/actions/cheesesmithing/maelstrom_plate_body": "Maelstrom Plate Body",
                            "/actions/cheesesmithing/dodocamel_gauntlets_refined": "Dodocamel Gauntlets (R)",
                            "/actions/cheesesmithing/corsair_helmet_refined": "Corsair Helmet (R)",
                            "/actions/cheesesmithing/knights_aegis_refined": "Knights Aegis (R)",
                            "/actions/cheesesmithing/anchorbound_plate_legs_refined": "Anchorbound Plate Legs (R)",
                            "/actions/cheesesmithing/maelstrom_plate_legs_refined": "Maelstrom Plate Legs (R)",
                            "/actions/cheesesmithing/griffin_bulwark_refined": "Griffin Bulwark (R)",
                            "/actions/cheesesmithing/furious_spear_refined": "Furious Spear (R)",
                            "/actions/cheesesmithing/chaotic_flail_refined": "Chaotic Flail (R)",
                            "/actions/cheesesmithing/regal_sword_refined": "Regal Sword (R)",
                            "/actions/cheesesmithing/anchorbound_plate_body_refined": "Anchorbound Plate Body (R)",
                            "/actions/cheesesmithing/maelstrom_plate_body_refined": "Maelstrom Plate Body (R)",
                            "/actions/crafting/lumber": "Lumber",
                            "/actions/crafting/wooden_crossbow": "Wooden Crossbow",
                            "/actions/crafting/wooden_water_staff": "Wooden Water Staff",
                            "/actions/crafting/basic_task_badge": "Basic Task Badge",
                            "/actions/crafting/advanced_task_badge": "Advanced Task Badge",
                            "/actions/crafting/expert_task_badge": "Expert Task Badge",
                            "/actions/crafting/wooden_shield": "Wooden Shield",
                            "/actions/crafting/wooden_nature_staff": "Wooden Nature Staff",
                            "/actions/crafting/wooden_bow": "Wooden Bow",
                            "/actions/crafting/wooden_fire_staff": "Wooden Fire Staff",
                            "/actions/crafting/birch_lumber": "Birch Lumber",
                            "/actions/crafting/birch_crossbow": "Birch Crossbow",
                            "/actions/crafting/birch_water_staff": "Birch Water Staff",
                            "/actions/crafting/crushed_pearl": "Crushed Pearl",
                            "/actions/crafting/birch_shield": "Birch Shield",
                            "/actions/crafting/birch_nature_staff": "Birch Nature Staff",
                            "/actions/crafting/birch_bow": "Birch Bow",
                            "/actions/crafting/ring_of_gathering": "Ring Of Gathering",
                            "/actions/crafting/birch_fire_staff": "Birch Fire Staff",
                            "/actions/crafting/earrings_of_gathering": "Earrings Of Gathering",
                            "/actions/crafting/cedar_lumber": "Cedar Lumber",
                            "/actions/crafting/cedar_crossbow": "Cedar Crossbow",
                            "/actions/crafting/cedar_water_staff": "Cedar Water Staff",
                            "/actions/crafting/basic_milking_charm": "Basic Milking Charm",
                            "/actions/crafting/basic_foraging_charm": "Basic Foraging Charm",
                            "/actions/crafting/basic_woodcutting_charm": "Basic Woodcutting Charm",
                            "/actions/crafting/basic_cheesesmithing_charm": "Basic Cheesesmithing Charm",
                            "/actions/crafting/basic_crafting_charm": "Basic Crafting Charm",
                            "/actions/crafting/basic_tailoring_charm": "Basic Tailoring Charm",
                            "/actions/crafting/basic_cooking_charm": "Basic Cooking Charm",
                            "/actions/crafting/basic_brewing_charm": "Basic Brewing Charm",
                            "/actions/crafting/basic_alchemy_charm": "Basic Alchemy Charm",
                            "/actions/crafting/basic_enhancing_charm": "Basic Enhancing Charm",
                            "/actions/crafting/cedar_shield": "Cedar Shield",
                            "/actions/crafting/cedar_nature_staff": "Cedar Nature Staff",
                            "/actions/crafting/cedar_bow": "Cedar Bow",
                            "/actions/crafting/crushed_amber": "Crushed Amber",
                            "/actions/crafting/cedar_fire_staff": "Cedar Fire Staff",
                            "/actions/crafting/ring_of_essence_find": "Ring Of Essence Find",
                            "/actions/crafting/earrings_of_essence_find": "Earrings Of Essence Find",
                            "/actions/crafting/necklace_of_efficiency": "Necklace Of Efficiency",
                            "/actions/crafting/purpleheart_lumber": "Purpleheart Lumber",
                            "/actions/crafting/purpleheart_crossbow": "Purpleheart Crossbow",
                            "/actions/crafting/purpleheart_water_staff": "Purpleheart Water Staff",
                            "/actions/crafting/purpleheart_shield": "Purpleheart Shield",
                            "/actions/crafting/purpleheart_nature_staff": "Purpleheart Nature Staff",
                            "/actions/crafting/purpleheart_bow": "Purpleheart Bow",
                            "/actions/crafting/advanced_milking_charm": "Advanced Milking Charm",
                            "/actions/crafting/advanced_foraging_charm": "Advanced Foraging Charm",
                            "/actions/crafting/advanced_woodcutting_charm": "Advanced Woodcutting Charm",
                            "/actions/crafting/advanced_cheesesmithing_charm": "Advanced Cheesesmithing Charm",
                            "/actions/crafting/advanced_crafting_charm": "Advanced Crafting Charm",
                            "/actions/crafting/advanced_tailoring_charm": "Advanced Tailoring Charm",
                            "/actions/crafting/advanced_cooking_charm": "Advanced Cooking Charm",
                            "/actions/crafting/advanced_brewing_charm": "Advanced Brewing Charm",
                            "/actions/crafting/advanced_alchemy_charm": "Advanced Alchemy Charm",
                            "/actions/crafting/advanced_enhancing_charm": "Advanced Enhancing Charm",
                            "/actions/crafting/advanced_stamina_charm": "Advanced Stamina Charm",
                            "/actions/crafting/advanced_intelligence_charm": "Advanced Intelligence Charm",
                            "/actions/crafting/advanced_attack_charm": "Advanced Attack Charm",
                            "/actions/crafting/advanced_defense_charm": "Advanced Defense Charm",
                            "/actions/crafting/advanced_melee_charm": "Advanced Melee Charm",
                            "/actions/crafting/advanced_ranged_charm": "Advanced Ranged Charm",
                            "/actions/crafting/advanced_magic_charm": "Advanced Magic Charm",
                            "/actions/crafting/crushed_garnet": "Crushed Garnet",
                            "/actions/crafting/crushed_jade": "Crushed Jade",
                            "/actions/crafting/crushed_amethyst": "Crushed Amethyst",
                            "/actions/crafting/catalyst_of_coinification": "Catalyst Of Coinification",
                            "/actions/crafting/treant_shield": "Treant Shield",
                            "/actions/crafting/purpleheart_fire_staff": "Purpleheart Fire Staff",
                            "/actions/crafting/ring_of_regeneration": "Ring Of Regeneration",
                            "/actions/crafting/earrings_of_regeneration": "Earrings Of Regeneration",
                            "/actions/crafting/fighter_necklace": "Fighter Necklace",
                            "/actions/crafting/ginkgo_lumber": "Ginkgo Lumber",
                            "/actions/crafting/ginkgo_crossbow": "Ginkgo Crossbow",
                            "/actions/crafting/ginkgo_water_staff": "Ginkgo Water Staff",
                            "/actions/crafting/ring_of_armor": "Ring Of Armor",
                            "/actions/crafting/catalyst_of_decomposition": "Catalyst Of Decomposition",
                            "/actions/crafting/ginkgo_shield": "Ginkgo Shield",
                            "/actions/crafting/earrings_of_armor": "Earrings Of Armor",
                            "/actions/crafting/ginkgo_nature_staff": "Ginkgo Nature Staff",
                            "/actions/crafting/ranger_necklace": "Ranger Necklace",
                            "/actions/crafting/ginkgo_bow": "Ginkgo Bow",
                            "/actions/crafting/ring_of_resistance": "Ring Of Resistance",
                            "/actions/crafting/crushed_moonstone": "Crushed Moonstone",
                            "/actions/crafting/ginkgo_fire_staff": "Ginkgo Fire Staff",
                            "/actions/crafting/earrings_of_resistance": "Earrings Of Resistance",
                            "/actions/crafting/wizard_necklace": "Wizard Necklace",
                            "/actions/crafting/ring_of_rare_find": "Ring Of Rare Find",
                            "/actions/crafting/expert_milking_charm": "Expert Milking Charm",
                            "/actions/crafting/expert_foraging_charm": "Expert Foraging Charm",
                            "/actions/crafting/expert_woodcutting_charm": "Expert Woodcutting Charm",
                            "/actions/crafting/expert_cheesesmithing_charm": "Expert Cheesesmithing Charm",
                            "/actions/crafting/expert_crafting_charm": "Expert Crafting Charm",
                            "/actions/crafting/expert_tailoring_charm": "Expert Tailoring Charm",
                            "/actions/crafting/expert_cooking_charm": "Expert Cooking Charm",
                            "/actions/crafting/expert_brewing_charm": "Expert Brewing Charm",
                            "/actions/crafting/expert_alchemy_charm": "Expert Alchemy Charm",
                            "/actions/crafting/expert_enhancing_charm": "Expert Enhancing Charm",
                            "/actions/crafting/expert_stamina_charm": "Expert Stamina Charm",
                            "/actions/crafting/expert_intelligence_charm": "Expert Intelligence Charm",
                            "/actions/crafting/expert_attack_charm": "Expert Attack Charm",
                            "/actions/crafting/expert_defense_charm": "Expert Defense Charm",
                            "/actions/crafting/expert_melee_charm": "Expert Melee Charm",
                            "/actions/crafting/expert_ranged_charm": "Expert Ranged Charm",
                            "/actions/crafting/expert_magic_charm": "Expert Magic Charm",
                            "/actions/crafting/catalyst_of_transmutation": "Catalyst Of Transmutation",
                            "/actions/crafting/earrings_of_rare_find": "Earrings Of Rare Find",
                            "/actions/crafting/necklace_of_wisdom": "Necklace Of Wisdom",
                            "/actions/crafting/redwood_lumber": "Redwood Lumber",
                            "/actions/crafting/redwood_crossbow": "Redwood Crossbow",
                            "/actions/crafting/redwood_water_staff": "Redwood Water Staff",
                            "/actions/crafting/redwood_shield": "Redwood Shield",
                            "/actions/crafting/redwood_nature_staff": "Redwood Nature Staff",
                            "/actions/crafting/redwood_bow": "Redwood Bow",
                            "/actions/crafting/crushed_sunstone": "Crushed Sunstone",
                            "/actions/crafting/chimerical_entry_key": "Chimerical Entry Key",
                            "/actions/crafting/chimerical_chest_key": "Chimerical Chest Key",
                            "/actions/crafting/eye_watch": "Eye Watch",
                            "/actions/crafting/watchful_relic": "Watchful Relic",
                            "/actions/crafting/redwood_fire_staff": "Redwood Fire Staff",
                            "/actions/crafting/ring_of_critical_strike": "Ring Of Critical Strike",
                            "/actions/crafting/mirror_of_protection": "Mirror Of Protection",
                            "/actions/crafting/earrings_of_critical_strike": "Earrings Of Critical Strike",
                            "/actions/crafting/necklace_of_speed": "Necklace Of Speed",
                            "/actions/crafting/arcane_lumber": "Arcane Lumber",
                            "/actions/crafting/arcane_crossbow": "Arcane Crossbow",
                            "/actions/crafting/arcane_water_staff": "Arcane Water Staff",
                            "/actions/crafting/master_milking_charm": "Master Milking Charm",
                            "/actions/crafting/master_foraging_charm": "Master Foraging Charm",
                            "/actions/crafting/master_woodcutting_charm": "Master Woodcutting Charm",
                            "/actions/crafting/master_cheesesmithing_charm": "Master Cheesesmithing Charm",
                            "/actions/crafting/master_crafting_charm": "Master Crafting Charm",
                            "/actions/crafting/master_tailoring_charm": "Master Tailoring Charm",
                            "/actions/crafting/master_cooking_charm": "Master Cooking Charm",
                            "/actions/crafting/master_brewing_charm": "Master Brewing Charm",
                            "/actions/crafting/master_alchemy_charm": "Master Alchemy Charm",
                            "/actions/crafting/master_enhancing_charm": "Master Enhancing Charm",
                            "/actions/crafting/master_stamina_charm": "Master Stamina Charm",
                            "/actions/crafting/master_intelligence_charm": "Master Intelligence Charm",
                            "/actions/crafting/master_attack_charm": "Master Attack Charm",
                            "/actions/crafting/master_defense_charm": "Master Defense Charm",
                            "/actions/crafting/master_melee_charm": "Master Melee Charm",
                            "/actions/crafting/master_ranged_charm": "Master Ranged Charm",
                            "/actions/crafting/master_magic_charm": "Master Magic Charm",
                            "/actions/crafting/sinister_entry_key": "Sinister Entry Key",
                            "/actions/crafting/sinister_chest_key": "Sinister Chest Key",
                            "/actions/crafting/arcane_shield": "Arcane Shield",
                            "/actions/crafting/arcane_nature_staff": "Arcane Nature Staff",
                            "/actions/crafting/manticore_shield": "Manticore Shield",
                            "/actions/crafting/arcane_bow": "Arcane Bow",
                            "/actions/crafting/enchanted_entry_key": "Enchanted Entry Key",
                            "/actions/crafting/enchanted_chest_key": "Enchanted Chest Key",
                            "/actions/crafting/arcane_fire_staff": "Arcane Fire Staff",
                            "/actions/crafting/vampiric_bow": "Vampiric Bow",
                            "/actions/crafting/soul_hunter_crossbow": "Soul Hunter Crossbow",
                            "/actions/crafting/frost_staff": "Frost Staff",
                            "/actions/crafting/infernal_battlestaff": "Infernal Battlestaff",
                            "/actions/crafting/jackalope_staff": "Jackalope Staff",
                            "/actions/crafting/philosophers_ring": "Philosopher's Ring",
                            "/actions/crafting/crushed_philosophers_stone": "Crushed Philosopher's Stone",
                            "/actions/crafting/pirate_entry_key": "Pirate Entry Key",
                            "/actions/crafting/pirate_chest_key": "Pirate Chest Key",
                            "/actions/crafting/philosophers_earrings": "Philosopher's Earrings",
                            "/actions/crafting/philosophers_necklace": "Philosopher's Necklace",
                            "/actions/crafting/bishops_codex": "Bishop's Codex",
                            "/actions/crafting/cursed_bow": "Cursed Bow",
                            "/actions/crafting/sundering_crossbow": "Sundering Crossbow",
                            "/actions/crafting/rippling_trident": "Rippling Trident",
                            "/actions/crafting/blooming_trident": "Blooming Trident",
                            "/actions/crafting/blazing_trident": "Blazing Trident",
                            "/actions/crafting/grandmaster_milking_charm": "Grandmaster Milking Charm",
                            "/actions/crafting/grandmaster_foraging_charm": "Grandmaster Foraging Charm",
                            "/actions/crafting/grandmaster_woodcutting_charm": "Grandmaster Woodcutting Charm",
                            "/actions/crafting/grandmaster_cheesesmithing_charm": "Grandmaster Cheesesmithing Charm",
                            "/actions/crafting/grandmaster_crafting_charm": "Grandmaster Crafting Charm",
                            "/actions/crafting/grandmaster_tailoring_charm": "Grandmaster Tailoring Charm",
                            "/actions/crafting/grandmaster_cooking_charm": "Grandmaster Cooking Charm",
                            "/actions/crafting/grandmaster_brewing_charm": "Grandmaster Brewing Charm",
                            "/actions/crafting/grandmaster_alchemy_charm": "Grandmaster Alchemy Charm",
                            "/actions/crafting/grandmaster_enhancing_charm": "Grandmaster Enhancing Charm",
                            "/actions/crafting/grandmaster_stamina_charm": "Grandmaster Stamina Charm",
                            "/actions/crafting/grandmaster_intelligence_charm": "Grandmaster Intelligence Charm",
                            "/actions/crafting/grandmaster_attack_charm": "Grandmaster Attack Charm",
                            "/actions/crafting/grandmaster_defense_charm": "Grandmaster Defense Charm",
                            "/actions/crafting/grandmaster_melee_charm": "Grandmaster Melee Charm",
                            "/actions/crafting/grandmaster_ranged_charm": "Grandmaster Ranged Charm",
                            "/actions/crafting/grandmaster_magic_charm": "Grandmaster Magic Charm",
                            "/actions/crafting/bishops_codex_refined": "Bishop's Codex (R)",
                            "/actions/crafting/cursed_bow_refined": "Cursed Bow (R)",
                            "/actions/crafting/sundering_crossbow_refined": "Sundering Crossbow (R)",
                            "/actions/crafting/rippling_trident_refined": "Rippling Trident (R)",
                            "/actions/crafting/blooming_trident_refined": "Blooming Trident (R)",
                            "/actions/crafting/blazing_trident_refined": "Blazing Trident (R)",
                            "/actions/tailoring/rough_leather": "Rough Leather",
                            "/actions/tailoring/cotton_fabric": "Cotton Fabric",
                            "/actions/tailoring/rough_boots": "Rough Boots",
                            "/actions/tailoring/cotton_boots": "Cotton Boots",
                            "/actions/tailoring/rough_bracers": "Rough Bracers",
                            "/actions/tailoring/cotton_gloves": "Cotton Gloves",
                            "/actions/tailoring/small_pouch": "Small Pouch",
                            "/actions/tailoring/rough_hood": "Rough Hood",
                            "/actions/tailoring/cotton_hat": "Cotton Hat",
                            "/actions/tailoring/rough_chaps": "Rough Chaps",
                            "/actions/tailoring/cotton_robe_bottoms": "Cotton Robe Bottoms",
                            "/actions/tailoring/rough_tunic": "Rough Tunic",
                            "/actions/tailoring/cotton_robe_top": "Cotton Robe Top",
                            "/actions/tailoring/reptile_leather": "Reptile Leather",
                            "/actions/tailoring/linen_fabric": "Linen Fabric",
                            "/actions/tailoring/reptile_boots": "Reptile Boots",
                            "/actions/tailoring/linen_boots": "Linen Boots",
                            "/actions/tailoring/reptile_bracers": "Reptile Bracers",
                            "/actions/tailoring/linen_gloves": "Linen Gloves",
                            "/actions/tailoring/reptile_hood": "Reptile Hood",
                            "/actions/tailoring/linen_hat": "Linen Hat",
                            "/actions/tailoring/reptile_chaps": "Reptile Chaps",
                            "/actions/tailoring/linen_robe_bottoms": "Linen Robe Bottoms",
                            "/actions/tailoring/medium_pouch": "Medium Pouch",
                            "/actions/tailoring/reptile_tunic": "Reptile Tunic",
                            "/actions/tailoring/linen_robe_top": "Linen Robe Top",
                            "/actions/tailoring/shoebill_shoes": "Shoebill Shoes",
                            "/actions/tailoring/gobo_leather": "Gobo Leather",
                            "/actions/tailoring/bamboo_fabric": "Bamboo Fabric",
                            "/actions/tailoring/gobo_boots": "Gobo Boots",
                            "/actions/tailoring/bamboo_boots": "Bamboo Boots",
                            "/actions/tailoring/gobo_bracers": "Gobo Bracers",
                            "/actions/tailoring/bamboo_gloves": "Bamboo Gloves",
                            "/actions/tailoring/gobo_hood": "Gobo Hood",
                            "/actions/tailoring/bamboo_hat": "Bamboo Hat",
                            "/actions/tailoring/gobo_chaps": "Gobo Chaps",
                            "/actions/tailoring/bamboo_robe_bottoms": "Bamboo Robe Bottoms",
                            "/actions/tailoring/large_pouch": "Large Pouch",
                            "/actions/tailoring/gobo_tunic": "Gobo Tunic",
                            "/actions/tailoring/bamboo_robe_top": "Bamboo Robe Top",
                            "/actions/tailoring/marine_tunic": "Marine Tunic",
                            "/actions/tailoring/marine_chaps": "Marine Chaps",
                            "/actions/tailoring/icy_robe_top": "Icy Robe Top",
                            "/actions/tailoring/icy_robe_bottoms": "Icy Robe Bottoms",
                            "/actions/tailoring/flaming_robe_top": "Flaming Robe Top",
                            "/actions/tailoring/flaming_robe_bottoms": "Flaming Robe Bottoms",
                            "/actions/tailoring/beast_leather": "Beast Leather",
                            "/actions/tailoring/silk_fabric": "Silk Fabric",
                            "/actions/tailoring/beast_boots": "Beast Boots",
                            "/actions/tailoring/silk_boots": "Silk Boots",
                            "/actions/tailoring/beast_bracers": "Beast Bracers",
                            "/actions/tailoring/silk_gloves": "Silk Gloves",
                            "/actions/tailoring/collectors_boots": "Collectors Boots",
                            "/actions/tailoring/sighted_bracers": "Sighted Bracers",
                            "/actions/tailoring/beast_hood": "Beast Hood",
                            "/actions/tailoring/silk_hat": "Silk Hat",
                            "/actions/tailoring/beast_chaps": "Beast Chaps",
                            "/actions/tailoring/silk_robe_bottoms": "Silk Robe Bottoms",
                            "/actions/tailoring/centaur_boots": "Centaur Boots",
                            "/actions/tailoring/sorcerer_boots": "Sorcerer Boots",
                            "/actions/tailoring/giant_pouch": "Giant Pouch",
                            "/actions/tailoring/beast_tunic": "Beast Tunic",
                            "/actions/tailoring/silk_robe_top": "Silk Robe Top",
                            "/actions/tailoring/red_culinary_hat": "Red Culinary Hat",
                            "/actions/tailoring/luna_robe_top": "Luna Robe Top",
                            "/actions/tailoring/luna_robe_bottoms": "Luna Robe Bottoms",
                            "/actions/tailoring/umbral_leather": "Umbral Leather",
                            "/actions/tailoring/radiant_fabric": "Radiant Fabric",
                            "/actions/tailoring/umbral_boots": "Umbral Boots",
                            "/actions/tailoring/radiant_boots": "Radiant Boots",
                            "/actions/tailoring/umbral_bracers": "Umbral Bracers",
                            "/actions/tailoring/radiant_gloves": "Radiant Gloves",
                            "/actions/tailoring/enchanted_gloves": "Enchanted Gloves",
                            "/actions/tailoring/fluffy_red_hat": "Fluffy Red Hat",
                            "/actions/tailoring/chrono_gloves": "Chrono Gloves",
                            "/actions/tailoring/umbral_hood": "Umbral Hood",
                            "/actions/tailoring/radiant_hat": "Radiant Hat",
                            "/actions/tailoring/umbral_chaps": "Umbral Chaps",
                            "/actions/tailoring/radiant_robe_bottoms": "Radiant Robe Bottoms",
                            "/actions/tailoring/umbral_tunic": "Umbral Tunic",
                            "/actions/tailoring/radiant_robe_top": "Radiant Robe Top",
                            "/actions/tailoring/revenant_chaps": "Revenant Chaps",
                            "/actions/tailoring/griffin_chaps": "Griffin Chaps",
                            "/actions/tailoring/dairyhands_top": "Dairyhand's Top",
                            "/actions/tailoring/dairyhands_bottoms": "Dairyhand's Bottoms",
                            "/actions/tailoring/foragers_top": "Forager's Top",
                            "/actions/tailoring/foragers_bottoms": "Forager's Bottoms",
                            "/actions/tailoring/lumberjacks_top": "Lumberjack's Top",
                            "/actions/tailoring/lumberjacks_bottoms": "Lumberjack's Bottoms",
                            "/actions/tailoring/cheesemakers_top": "Cheesemaker's Top",
                            "/actions/tailoring/cheesemakers_bottoms": "Cheesemaker's Bottoms",
                            "/actions/tailoring/crafters_top": "Crafter's Top",
                            "/actions/tailoring/crafters_bottoms": "Crafter's Bottoms",
                            "/actions/tailoring/tailors_top": "Tailor's Top",
                            "/actions/tailoring/tailors_bottoms": "Tailor's Bottoms",
                            "/actions/tailoring/chefs_top": "Chef's Top",
                            "/actions/tailoring/chefs_bottoms": "Chef's Bottoms",
                            "/actions/tailoring/brewers_top": "Brewer's Top",
                            "/actions/tailoring/brewers_bottoms": "Brewer's Bottoms",
                            "/actions/tailoring/alchemists_top": "Alchemist's Top",
                            "/actions/tailoring/alchemists_bottoms": "Alchemist's Bottoms",
                            "/actions/tailoring/enhancers_top": "Enhancer's Top",
                            "/actions/tailoring/enhancers_bottoms": "Enhancer's Bottoms",
                            "/actions/tailoring/revenant_tunic": "Revenant Tunic",
                            "/actions/tailoring/griffin_tunic": "Griffin Tunic",
                            "/actions/tailoring/gluttonous_pouch": "Gluttonous Pouch",
                            "/actions/tailoring/guzzling_pouch": "Guzzling Pouch",
                            "/actions/tailoring/marksman_bracers": "Marksman Bracers",
                            "/actions/tailoring/acrobatic_hood": "Acrobatic Hood",
                            "/actions/tailoring/magicians_hat": "Magician's Hat",
                            "/actions/tailoring/kraken_chaps": "Kraken Chaps",
                            "/actions/tailoring/royal_water_robe_bottoms": "Royal Water Robe Bottoms",
                            "/actions/tailoring/royal_nature_robe_bottoms": "Royal Nature Robe Bottoms",
                            "/actions/tailoring/royal_fire_robe_bottoms": "Royal Fire Robe Bottoms",
                            "/actions/tailoring/kraken_tunic": "Kraken Tunic",
                            "/actions/tailoring/royal_water_robe_top": "Royal Water Robe Top",
                            "/actions/tailoring/royal_nature_robe_top": "Royal Nature Robe Top",
                            "/actions/tailoring/royal_fire_robe_top": "Royal Fire Robe Top",
                            "/actions/tailoring/chimerical_quiver_refined": "Chimerical Quiver (R)",
                            "/actions/tailoring/sinister_cape_refined": "Sinister Cape (R)",
                            "/actions/tailoring/enchanted_cloak_refined": "Enchanted Cloak (R)",
                            "/actions/tailoring/marksman_bracers_refined": "Marksman Bracers (R)",
                            "/actions/tailoring/acrobatic_hood_refined": "Acrobatic Hood (R)",
                            "/actions/tailoring/magicians_hat_refined": "Magician's Hat (R)",
                            "/actions/tailoring/kraken_chaps_refined": "Kraken Chaps (R)",
                            "/actions/tailoring/royal_water_robe_bottoms_refined": "Royal Water Robe Bottoms (R)",
                            "/actions/tailoring/royal_nature_robe_bottoms_refined": "Royal Nature Robe Bottoms (R)",
                            "/actions/tailoring/royal_fire_robe_bottoms_refined": "Royal Fire Robe Bottoms (R)",
                            "/actions/tailoring/kraken_tunic_refined": "Kraken Tunic (R)",
                            "/actions/tailoring/royal_water_robe_top_refined": "Royal Water Robe Top (R)",
                            "/actions/tailoring/royal_nature_robe_top_refined": "Royal Nature Robe Top (R)",
                            "/actions/tailoring/royal_fire_robe_top_refined": "Royal Fire Robe Top (R)",
                            "/actions/cooking/donut": "Donut",
                            "/actions/cooking/cupcake": "Cupcake",
                            "/actions/cooking/gummy": "Gummy",
                            "/actions/cooking/yogurt": "Yogurt",
                            "/actions/cooking/blueberry_donut": "Blueberry Donut",
                            "/actions/cooking/blueberry_cake": "Blueberry Cake",
                            "/actions/cooking/apple_gummy": "Apple Gummy",
                            "/actions/cooking/apple_yogurt": "Apple Yogurt",
                            "/actions/cooking/blackberry_donut": "Blackberry Donut",
                            "/actions/cooking/blackberry_cake": "Blackberry Cake",
                            "/actions/cooking/orange_gummy": "Orange Gummy",
                            "/actions/cooking/orange_yogurt": "Orange Yogurt",
                            "/actions/cooking/strawberry_donut": "Strawberry Donut",
                            "/actions/cooking/strawberry_cake": "Strawberry Cake",
                            "/actions/cooking/plum_gummy": "Plum Gummy",
                            "/actions/cooking/plum_yogurt": "Plum Yogurt",
                            "/actions/cooking/mooberry_donut": "Mooberry Donut",
                            "/actions/cooking/mooberry_cake": "Mooberry Cake",
                            "/actions/cooking/peach_gummy": "Peach Gummy",
                            "/actions/cooking/peach_yogurt": "Peach Yogurt",
                            "/actions/cooking/marsberry_donut": "Marsberry Donut",
                            "/actions/cooking/marsberry_cake": "Marsberry Cake",
                            "/actions/cooking/dragon_fruit_gummy": "Dragon Fruit Gummy",
                            "/actions/cooking/dragon_fruit_yogurt": "Dragon Fruit Yogurt",
                            "/actions/cooking/spaceberry_donut": "Spaceberry Donut",
                            "/actions/cooking/spaceberry_cake": "Spaceberry Cake",
                            "/actions/cooking/star_fruit_gummy": "Star Fruit Gummy",
                            "/actions/cooking/star_fruit_yogurt": "Star Fruit Yogurt",
                            "/actions/brewing/milking_tea": "Milking Tea",
                            "/actions/brewing/stamina_coffee": "Stamina Coffee",
                            "/actions/brewing/foraging_tea": "Foraging Tea",
                            "/actions/brewing/intelligence_coffee": "Intelligence Coffee",
                            "/actions/brewing/gathering_tea": "Gathering Tea",
                            "/actions/brewing/woodcutting_tea": "Woodcutting Tea",
                            "/actions/brewing/cooking_tea": "Cooking Tea",
                            "/actions/brewing/defense_coffee": "Defense Coffee",
                            "/actions/brewing/brewing_tea": "Brewing Tea",
                            "/actions/brewing/attack_coffee": "Attack Coffee",
                            "/actions/brewing/gourmet_tea": "Gourmet Tea",
                            "/actions/brewing/alchemy_tea": "Alchemy Tea",
                            "/actions/brewing/enhancing_tea": "Enhancing Tea",
                            "/actions/brewing/cheesesmithing_tea": "Cheesesmithing Tea",
                            "/actions/brewing/melee_coffee": "Melee Coffee",
                            "/actions/brewing/crafting_tea": "Crafting Tea",
                            "/actions/brewing/ranged_coffee": "Ranged Coffee",
                            "/actions/brewing/wisdom_tea": "Wisdom Tea",
                            "/actions/brewing/wisdom_coffee": "Wisdom Coffee",
                            "/actions/brewing/tailoring_tea": "Tailoring Tea",
                            "/actions/brewing/magic_coffee": "Magic Coffee",
                            "/actions/brewing/super_milking_tea": "Super Milking Tea",
                            "/actions/brewing/super_stamina_coffee": "Super Stamina Coffee",
                            "/actions/brewing/super_foraging_tea": "Super Foraging Tea",
                            "/actions/brewing/super_intelligence_coffee": "Super Intelligence Coffee",
                            "/actions/brewing/processing_tea": "Processing Tea",
                            "/actions/brewing/lucky_coffee": "Lucky Coffee",
                            "/actions/brewing/super_woodcutting_tea": "Super Woodcutting Tea",
                            "/actions/brewing/super_cooking_tea": "Super Cooking Tea",
                            "/actions/brewing/super_defense_coffee": "Super Defense Coffee",
                            "/actions/brewing/super_brewing_tea": "Super Brewing Tea",
                            "/actions/brewing/ultra_milking_tea": "Ultra Milking Tea",
                            "/actions/brewing/super_attack_coffee": "Super Attack Coffee",
                            "/actions/brewing/ultra_stamina_coffee": "Ultra Stamina Coffee",
                            "/actions/brewing/efficiency_tea": "Efficiency Tea",
                            "/actions/brewing/swiftness_coffee": "Swiftness Coffee",
                            "/actions/brewing/super_alchemy_tea": "Super Alchemy Tea",
                            "/actions/brewing/super_enhancing_tea": "Super Enhancing Tea",
                            "/actions/brewing/ultra_foraging_tea": "Ultra Foraging Tea",
                            "/actions/brewing/ultra_intelligence_coffee": "Ultra Intelligence Coffee",
                            "/actions/brewing/channeling_coffee": "Channeling Coffee",
                            "/actions/brewing/super_cheesesmithing_tea": "Super Cheesesmithing Tea",
                            "/actions/brewing/ultra_woodcutting_tea": "Ultra Woodcutting Tea",
                            "/actions/brewing/super_melee_coffee": "Super Melee Coffee",
                            "/actions/brewing/artisan_tea": "Artisan Tea",
                            "/actions/brewing/super_crafting_tea": "Super Crafting Tea",
                            "/actions/brewing/ultra_cooking_tea": "Ultra Cooking Tea",
                            "/actions/brewing/super_ranged_coffee": "Super Ranged Coffee",
                            "/actions/brewing/ultra_defense_coffee": "Ultra Defense Coffee",
                            "/actions/brewing/catalytic_tea": "Catalytic Tea",
                            "/actions/brewing/critical_coffee": "Critical Coffee",
                            "/actions/brewing/super_tailoring_tea": "Super Tailoring Tea",
                            "/actions/brewing/ultra_brewing_tea": "Ultra Brewing Tea",
                            "/actions/brewing/super_magic_coffee": "Super Magic Coffee",
                            "/actions/brewing/ultra_attack_coffee": "Ultra Attack Coffee",
                            "/actions/brewing/blessed_tea": "Blessed Tea",
                            "/actions/brewing/ultra_alchemy_tea": "Ultra Alchemy Tea",
                            "/actions/brewing/ultra_enhancing_tea": "Ultra Enhancing Tea",
                            "/actions/brewing/ultra_cheesesmithing_tea": "Ultra Cheesesmithing Tea",
                            "/actions/brewing/ultra_melee_coffee": "Ultra Melee Coffee",
                            "/actions/brewing/ultra_crafting_tea": "Ultra Crafting Tea",
                            "/actions/brewing/ultra_ranged_coffee": "Ultra Ranged Coffee",
                            "/actions/brewing/ultra_tailoring_tea": "Ultra Tailoring Tea",
                            "/actions/brewing/ultra_magic_coffee": "Ultra Magic Coffee",
                            "/actions/alchemy/coinify": "Coinify",
                            "/actions/alchemy/decompose": "Decompose",
                            "/actions/alchemy/transmute": "Transmute",
                            "/actions/enhancing/enhance": "Enhance",
                            "/actions/combat/fly": "Fly",
                            "/actions/combat/rat": "Jerry",
                            "/actions/combat/skunk": "Skunk",
                            "/actions/combat/porcupine": "Porcupine",
                            "/actions/combat/slimy": "Slimy",
                            "/actions/combat/smelly_planet": "Smelly Planet",
                            "/actions/combat/frog": "Frogger",
                            "/actions/combat/snake": "Thnake",
                            "/actions/combat/swampy": "Swampy",
                            "/actions/combat/alligator": "Sherlock",
                            "/actions/combat/swamp_planet": "Swamp Planet",
                            "/actions/combat/sea_snail": "Gary",
                            "/actions/combat/crab": "I Pinch",
                            "/actions/combat/aquahorse": "Aquahorse",
                            "/actions/combat/nom_nom": "Nom Nom",
                            "/actions/combat/turtle": "Turuto",
                            "/actions/combat/aqua_planet": "Aqua Planet",
                            "/actions/combat/jungle_sprite": "Jungle Sprite",
                            "/actions/combat/myconid": "Myconid",
                            "/actions/combat/treant": "Treant",
                            "/actions/combat/centaur_archer": "Centaur Archer",
                            "/actions/combat/jungle_planet": "Jungle Planet",
                            "/actions/combat/gobo_stabby": "Stabby",
                            "/actions/combat/gobo_slashy": "Slashy",
                            "/actions/combat/gobo_smashy": "Smashy",
                            "/actions/combat/gobo_shooty": "Shooty",
                            "/actions/combat/gobo_boomy": "Boomy",
                            "/actions/combat/gobo_planet": "Gobo Planet",
                            "/actions/combat/eye": "Eye",
                            "/actions/combat/eyes": "Eyes",
                            "/actions/combat/veyes": "Veyes",
                            "/actions/combat/planet_of_the_eyes": "Planet Of The Eyes",
                            "/actions/combat/novice_sorcerer": "Novice Sorcerer",
                            "/actions/combat/ice_sorcerer": "Ice Sorcerer",
                            "/actions/combat/flame_sorcerer": "Flame Sorcerer",
                            "/actions/combat/elementalist": "Elementalist",
                            "/actions/combat/sorcerers_tower": "Sorcerer's Tower",
                            "/actions/combat/gummy_bear": "Gummy Bear",
                            "/actions/combat/panda": "Panda",
                            "/actions/combat/black_bear": "Black Bear",
                            "/actions/combat/grizzly_bear": "Grizzly Bear",
                            "/actions/combat/polar_bear": "Polar Bear",
                            "/actions/combat/bear_with_it": "Bear With It",
                            "/actions/combat/magnetic_golem": "Magnetic Golem",
                            "/actions/combat/stalactite_golem": "Stalactite Golem",
                            "/actions/combat/granite_golem": "Granite Golem",
                            "/actions/combat/golem_cave": "Golem Cave",
                            "/actions/combat/zombie": "Zombie",
                            "/actions/combat/vampire": "Vampire",
                            "/actions/combat/werewolf": "Werewolf",
                            "/actions/combat/twilight_zone": "Twilight Zone",
                            "/actions/combat/abyssal_imp": "Abyssal Imp",
                            "/actions/combat/soul_hunter": "Soul Hunter",
                            "/actions/combat/infernal_warlock": "Infernal Warlock",
                            "/actions/combat/infernal_abyss": "Infernal Abyss",
                            "/actions/combat/chimerical_den": "Chimerical Den",
                            "/actions/combat/sinister_circus": "Sinister Circus",
                            "/actions/combat/enchanted_fortress": "Enchanted Fortress",
                            "/actions/combat/pirate_cove": "Pirate Cove"
                        },
                        "actionTypeNames": {
                            "/action_types/milking": "Milking",
                            "/action_types/foraging": "Foraging",
                            "/action_types/woodcutting": "Woodcutting",
                            "/action_types/cheesesmithing": "Cheesesmithing",
                            "/action_types/crafting": "Crafting",
                            "/action_types/tailoring": "Tailoring",
                            "/action_types/cooking": "Cooking",
                            "/action_types/brewing": "Brewing",
                            "/action_types/alchemy": "Alchemy",
                            "/action_types/enhancing": "Enhancing",
                            "/action_types/combat": "Combat"
                        },
                        "actionCategoryNames": {
                            "/action_categories/milking/cows": "Cows",
                            "/action_categories/foraging/farmland": "Farmland",
                            "/action_categories/foraging/shimmering_lake": "Shimmering Lake",
                            "/action_categories/foraging/misty_forest": "Misty Forest",
                            "/action_categories/foraging/burble_beach": "Burble Beach",
                            "/action_categories/foraging/silly_cow_valley": "Silly Cow Valley",
                            "/action_categories/foraging/olympus_mons": "Olympus Mons",
                            "/action_categories/foraging/asteroid_belt": "Asteroid Belt",
                            "/action_categories/woodcutting/trees": "Trees",
                            "/action_categories/cheesesmithing/material": "Material",
                            "/action_categories/cheesesmithing/tool": "Tool",
                            "/action_categories/cheesesmithing/main_hand": "Main Hand",
                            "/action_categories/cheesesmithing/two_hand": "Two Hand",
                            "/action_categories/cheesesmithing/off_hand": "Off Hand",
                            "/action_categories/cheesesmithing/feet": "Feet",
                            "/action_categories/cheesesmithing/hands": "Hands",
                            "/action_categories/cheesesmithing/head": "Head",
                            "/action_categories/cheesesmithing/legs": "Legs",
                            "/action_categories/cheesesmithing/body": "Body",
                            "/action_categories/crafting/lumber": "Lumber",
                            "/action_categories/crafting/crossbow": "Crossbow",
                            "/action_categories/crafting/bow": "Bow",
                            "/action_categories/crafting/staff": "Staff",
                            "/action_categories/crafting/off_hand": "Off Hand",
                            "/action_categories/crafting/ring": "Ring",
                            "/action_categories/crafting/earrings": "Earrings",
                            "/action_categories/crafting/neck": "Neck",
                            "/action_categories/crafting/charm": "Charm",
                            "/action_categories/crafting/trinket": "Trinket",
                            "/action_categories/crafting/special": "Special",
                            "/action_categories/crafting/dungeon_keys": "Dungeon Keys",
                            "/action_categories/tailoring/material": "Material",
                            "/action_categories/tailoring/feet": "Feet",
                            "/action_categories/tailoring/hands": "Hands",
                            "/action_categories/tailoring/head": "Head",
                            "/action_categories/tailoring/legs": "Legs",
                            "/action_categories/tailoring/body": "Body",
                            "/action_categories/tailoring/pouch": "Pouch",
                            "/action_categories/tailoring/back": "Back",
                            "/action_categories/cooking/instant_heal": "Instant Heal",
                            "/action_categories/cooking/heal_over_time": "Heal Over Time",
                            "/action_categories/cooking/instant_mana": "Instant Mana",
                            "/action_categories/cooking/mana_over_time": "Mana Over Time",
                            "/action_categories/brewing/tea": "Tea",
                            "/action_categories/brewing/coffee": "Coffee",
                            "/action_categories/alchemy/alchemy": "Alchemy",
                            "/action_categories/enhancing/enhance": "Enhance",
                            "/action_categories/combat/smelly_planet": "Smelly Planet",
                            "/action_categories/combat/swamp_planet": "Swamp Planet",
                            "/action_categories/combat/aqua_planet": "Aqua Planet",
                            "/action_categories/combat/jungle_planet": "Jungle Planet",
                            "/action_categories/combat/gobo_planet": "Gobo Planet",
                            "/action_categories/combat/planet_of_the_eyes": "Planet Of The Eyes",
                            "/action_categories/combat/sorcerers_tower": "Sorcerer's Tower",
                            "/action_categories/combat/bear_with_it": "Bear With It",
                            "/action_categories/combat/golem_cave": "Golem Cave",
                            "/action_categories/combat/twilight_zone": "Twilight Zone",
                            "/action_categories/combat/infernal_abyss": "Infernal Abyss",
                            "/action_categories/combat/dungeons": "Dungeons"
                        },
                        "buffTypeNames": {
                            "/buff_types/gathering": "Gathering",
                            "/buff_types/efficiency": "Efficiency",
                            "/buff_types/alchemy_success": "Alchemy Success",
                            "/buff_types/enhancing_success": "Enhancing Success",
                            "/buff_types/action_speed": "Action Speed",
                            "/buff_types/task_action_speed": "Task Action Speed",
                            "/buff_types/milking_level": "Milking Level",
                            "/buff_types/foraging_level": "Foraging Level",
                            "/buff_types/woodcutting_level": "Woodcutting Level",
                            "/buff_types/cheesesmithing_level": "Cheesesmithing Level",
                            "/buff_types/crafting_level": "Crafting Level",
                            "/buff_types/tailoring_level": "Tailoring Level",
                            "/buff_types/cooking_level": "Cooking Level",
                            "/buff_types/brewing_level": "Brewing Level",
                            "/buff_types/alchemy_level": "Alchemy Level",
                            "/buff_types/enhancing_level": "Enhancing Level",
                            "/buff_types/gourmet": "Gourmet",
                            "/buff_types/wisdom": "Wisdom",
                            "/buff_types/processing": "Processing",
                            "/buff_types/artisan": "Artisan",
                            "/buff_types/blessed": "Blessed",
                            "/buff_types/action_level": "Action Level",
                            "/buff_types/essence_find": "Essence Find",
                            "/buff_types/rare_find": "Rare Find",
                            "/buff_types/stamina_level": "Stamina Level",
                            "/buff_types/intelligence_level": "Intelligence Level",
                            "/buff_types/defense_level": "Defense Level",
                            "/buff_types/attack_level": "Attack Level",
                            "/buff_types/melee_level": "Melee Level",
                            "/buff_types/ranged_level": "Ranged Level",
                            "/buff_types/magic_level": "Magic Level",
                            "/buff_types/attack_speed": "Attack Speed",
                            "/buff_types/cast_speed": "Cast Speed",
                            "/buff_types/critical_rate": "Critical Rate",
                            "/buff_types/critical_damage": "Critical Damage",
                            "/buff_types/accuracy": "Accuracy",
                            "/buff_types/damage": "Damage",
                            "/buff_types/physical_amplify": "Physical Amplify",
                            "/buff_types/water_amplify": "Water Amplify",
                            "/buff_types/nature_amplify": "Nature Amplify",
                            "/buff_types/fire_amplify": "Fire Amplify",
                            "/buff_types/healing_amplify": "Healing Amplify",
                            "/buff_types/evasion": "Evasion",
                            "/buff_types/armor": "Armor",
                            "/buff_types/water_resistance": "Water Resistance",
                            "/buff_types/nature_resistance": "Nature Resistance",
                            "/buff_types/fire_resistance": "Fire Resistance",
                            "/buff_types/damage_taken": "Damage Taken",
                            "/buff_types/life_steal": "Life Steal",
                            "/buff_types/mana_leech": "Mana Leech",
                            "/buff_types/physical_thorns": "Physical Thorns",
                            "/buff_types/elemental_thorns": "Elemental Thorns",
                            "/buff_types/retaliation": "Retaliation",
                            "/buff_types/tenacity": "Tenacity",
                            "/buff_types/hp_regen": "HP Regen",
                            "/buff_types/mp_regen": "MP Regen",
                            "/buff_types/threat": "Threat",
                            "/buff_types/combat_drop_rate": "Combat Drop Rate",
                            "/buff_types/combat_drop_quantity": "Combat Drop Quantity"
                        },
                        "buffTypeDescriptions": {
                            "/buff_types/gathering": "Increases gathering quantity",
                            "/buff_types/efficiency": "Chance of repeating the action instantly",
                            "/buff_types/alchemy_success": "Multiplicative bonus to success rate while alchemizing",
                            "/buff_types/enhancing_success": "Multiplicative bonus to success rate while enhancing",
                            "/buff_types/action_speed": "Decreases time cost for the action",
                            "/buff_types/task_action_speed": "Decreases time cost for task actions",
                            "/buff_types/milking_level": "Buffs milking level",
                            "/buff_types/foraging_level": "Buffs foraging level",
                            "/buff_types/woodcutting_level": "Buffs woodcutting level",
                            "/buff_types/cheesesmithing_level": "Buffs cheesesmithing level",
                            "/buff_types/crafting_level": "Buffs crafting level",
                            "/buff_types/tailoring_level": "Buffs tailoring level",
                            "/buff_types/cooking_level": "Buffs cooking level",
                            "/buff_types/brewing_level": "Buffs brewing level",
                            "/buff_types/alchemy_level": "Buffs alchemy level",
                            "/buff_types/enhancing_level": "Buffs enhancing level",
                            "/buff_types/gourmet": "Chance to produce an additional item for free",
                            "/buff_types/wisdom": "Increases experience gained",
                            "/buff_types/processing": "Chance to instantly convert gathered resource into processed material (cheese, fabric, and lumber)",
                            "/buff_types/artisan": "Reduces required materials during production",
                            "/buff_types/blessed": "Chance to gain +2 instead of +1 on enhancing success",
                            "/buff_types/action_level": "Increases required levels for the action",
                            "/buff_types/essence_find": "Increases drop rate of essences",
                            "/buff_types/rare_find": "Increases rare item drop rate",
                            "/buff_types/stamina_level": "Buffs stamina level",
                            "/buff_types/intelligence_level": "Buffs intelligence level",
                            "/buff_types/defense_level": "Buffs defense level",
                            "/buff_types/attack_level": "Buffs attack level",
                            "/buff_types/melee_level": "Buffs melee level",
                            "/buff_types/ranged_level": "Buffs ranged level",
                            "/buff_types/magic_level": "Buffs magic level",
                            "/buff_types/attack_speed": "Increases auto attack speed",
                            "/buff_types/cast_speed": "Increases ability casting speed",
                            "/buff_types/critical_rate": "Increases critical rate",
                            "/buff_types/critical_damage": "Increases critical damage",
                            "/buff_types/accuracy": "Increases accuracy rating",
                            "/buff_types/damage": "Increases damage",
                            "/buff_types/physical_amplify": "Increases physical damage",
                            "/buff_types/water_amplify": "Increases water damage",
                            "/buff_types/nature_amplify": "Increases nature damage",
                            "/buff_types/fire_amplify": "Increases fire damage",
                            "/buff_types/healing_amplify": "Increases healing amount",
                            "/buff_types/evasion": "Increases evasion rating",
                            "/buff_types/armor": "Decreases physical damage taken",
                            "/buff_types/water_resistance": "Decreases water damage taken",
                            "/buff_types/nature_resistance": "Decreases nature damage taken",
                            "/buff_types/fire_resistance": "Decreases fire damage taken",
                            "/buff_types/damage_taken": "Increases damage taken",
                            "/buff_types/life_steal": "Gains life steal on auto attacks",
                            "/buff_types/mana_leech": "Gains mana leech on auto attacks",
                            "/buff_types/physical_thorns": "Deals percentage of your armor as damage back to the attacker",
                            "/buff_types/elemental_thorns": "Deals percentage of your resistance as damage back to the attacker",
                            "/buff_types/retaliation": "Reflects a percentage of incoming damage as a smash attack back to the attacker",
                            "/buff_types/tenacity": "Reduces chance of being blinded, silenced, or stunned",
                            "/buff_types/hp_regen": "Increases HP regeneration",
                            "/buff_types/mp_regen": "Increases MP regeneration",
                            "/buff_types/threat": "Increases chance of being targeted in combat",
                            "/buff_types/combat_drop_rate": "Increases drop rate of combat loot",
                            "/buff_types/combat_drop_quantity": "Increases quantity of combat loot"
                        },
                        "buffTypeDebuffDescriptions": {
                            "/buff_types/gathering": "Decreases gathering quantity",
                            "/buff_types/efficiency": "Lowers chance of repeating the action instantly",
                            "/buff_types/alchemy_success": "Multiplicative penalty to success rate while alchemizing",
                            "/buff_types/enhancing_success": "Multiplicative penalty to success rate while enhancing",
                            "/buff_types/action_speed": "Increases time cost for the action",
                            "/buff_types/task_action_speed": "Increases time cost for task actions",
                            "/buff_types/milking_level": "Debuffs milking level",
                            "/buff_types/foraging_level": "Debuffs foraging level",
                            "/buff_types/woodcutting_level": "Debuffs woodcutting level",
                            "/buff_types/cheesesmithing_level": "Debuffs cheesesmithing level",
                            "/buff_types/crafting_level": "Debuffs crafting level",
                            "/buff_types/tailoring_level": "Debuffs tailoring level",
                            "/buff_types/cooking_level": "Debuffs cooking level",
                            "/buff_types/brewing_level": "Debuffs level",
                            "/buff_types/alchemy_level": "Debuffs alchemy level",
                            "/buff_types/enhancing_level": "Debuffs enhancing level",
                            "/buff_types/gourmet": "Lowers chance to produce an additional item for free",
                            "/buff_types/wisdom": "Decreases experience gained",
                            "/buff_types/processing": "Lowers chance to convert gathered resource into processed material (cheese, fabric, and lumber)",
                            "/buff_types/artisan": "Increases required materials during production",
                            "/buff_types/blessed": "Lowers chance to gain +2 instead of +1 on enhancing success",
                            "/buff_types/action_level": "Decreases required levels for the action",
                            "/buff_types/essence_find": "Decreases drop rate of essences",
                            "/buff_types/rare_find": "Decreases rare item drop rate",
                            "/buff_types/stamina_level": "Debuffs stamina level",
                            "/buff_types/intelligence_level": "Debuffs intelligence level",
                            "/buff_types/defense_level": "Debuffs defense level",
                            "/buff_types/attack_level": "Debuffs attack level",
                            "/buff_types/melee_level": "Debuffs melee level",
                            "/buff_types/ranged_level": "Debuffs ranged level",
                            "/buff_types/magic_level": "Debuffs magic level",
                            "/buff_types/attack_speed": "Decreases auto attack speed",
                            "/buff_types/cast_speed": "Decreases ability casting speed",
                            "/buff_types/critical_rate": "Decreases critical rate",
                            "/buff_types/critical_damage": "Decreases critical damage",
                            "/buff_types/accuracy": "Decreases accuracy rating",
                            "/buff_types/damage": "Decreases damage",
                            "/buff_types/physical_amplify": "Decreases physical damage",
                            "/buff_types/water_amplify": "Decreases water damage",
                            "/buff_types/nature_amplify": "Decreases nature damage",
                            "/buff_types/fire_amplify": "Decreases fire damage",
                            "/buff_types/healing_amplify": "Decreases healing amount",
                            "/buff_types/evasion": "Decreases evasion rating",
                            "/buff_types/armor": "Increases physical damage taken",
                            "/buff_types/water_resistance": "Increases water damage taken",
                            "/buff_types/nature_resistance": "Increases nature damage taken",
                            "/buff_types/fire_resistance": "Increases fire damage taken",
                            "/buff_types/damage_taken": "Decreases damage taken",
                            "/buff_types/life_steal": "Reduces life steal",
                            "/buff_types/mana_leech": "Reduces mana leech",
                            "/buff_types/physical_thorns": "Reduces physical thorns",
                            "/buff_types/elemental_thorns": "Reduces elemental thorns",
                            "/buff_types/retaliation": "Reduces retaliation",
                            "/buff_types/tenacity": "Increases chance of being blinded, silenced, or stunned",
                            "/buff_types/hp_regen": "Decreases HP regeneration",
                            "/buff_types/mp_regen": "Decreases MP regeneration",
                            "/buff_types/threat": "Decreases chance of being targeted in combat",
                            "/buff_types/combat_drop_rate": "Decreases drop rate of combat loot",
                            "/buff_types/combat_drop_quantity": "Decreases quantity of combat loot"
                        },
                        "houseRoomNames": {
                            "/house_rooms/dairy_barn": "Dairy Barn",
                            "/house_rooms/garden": "Garden",
                            "/house_rooms/log_shed": "Log Shed",
                            "/house_rooms/forge": "Forge",
                            "/house_rooms/workshop": "Workshop",
                            "/house_rooms/sewing_parlor": "Sewing Parlor",
                            "/house_rooms/kitchen": "Kitchen",
                            "/house_rooms/brewery": "Brewery",
                            "/house_rooms/laboratory": "Laboratory",
                            "/house_rooms/observatory": "Observatory",
                            "/house_rooms/dining_room": "Dining Room",
                            "/house_rooms/library": "Library",
                            "/house_rooms/dojo": "Dojo",
                            "/house_rooms/armory": "Armory",
                            "/house_rooms/gym": "Gym",
                            "/house_rooms/archery_range": "Archery Range",
                            "/house_rooms/mystical_study": "Mystical Study"
                        },
                        "purchaseBundleNames": {
                            "/purchase_bundles/cowbells_500": "500 Cowbells",
                            "/purchase_bundles/cowbells_1050": "1050 Cowbells",
                            "/purchase_bundles/cowbells_2700": "2700 Cowbells",
                            "/purchase_bundles/cowbells_5500": "5500 Cowbells",
                            "/purchase_bundles/cowbells_11500": "11500 Cowbells",
                            "/purchase_bundles/moo_pass_standard_30": "30-Day MooPass (Standard)",
                            "/purchase_bundles/moo_pass_standard_90": "90-Day MooPass (Standard)",
                            "/purchase_bundles/moo_pass_standard_365": "1-Year MooPass (Standard)",
                            "/purchase_bundles/moo_pass_ironcow_30": "30-Day MooPass (Ironcow)",
                            "/purchase_bundles/moo_pass_ironcow_90": "90-Day MooPass (Ironcow)",
                            "/purchase_bundles/moo_pass_ironcow_365": "1-Year MooPass (Ironcow)",
                            "/purchase_bundles/moo_pass_account_30": "30-Day MooPass (All Characters)",
                            "/purchase_bundles/moo_pass_account_90": "90-Day MooPass (All Characters)",
                            "/purchase_bundles/moo_pass_account_365": "1-Year MooPass (All Characters)"
                        },
                        "buyableUpgradeNames": {
                            "/buyable_upgrades/offline_hour_cap_1": "+1 Hour Offline Progress",
                            "/buyable_upgrades/offline_hour_cap_2": "+1 Hour Offline Progress",
                            "/buyable_upgrades/offline_hour_cap_3": "+1 Hour Offline Progress",
                            "/buyable_upgrades/offline_hour_cap_4": "+1 Hour Offline Progress",
                            "/buyable_upgrades/market_listing_cap_1": "+1 Market Listing",
                            "/buyable_upgrades/market_listing_cap_2": "+1 Market Listing",
                            "/buyable_upgrades/market_listing_cap_3": "+1 Market Listing",
                            "/buyable_upgrades/market_listing_cap_4": "+1 Market Listing",
                            "/buyable_upgrades/market_listing_cap_5": "+1 Market Listing",
                            "/buyable_upgrades/action_queue_cap_1": "+1 Action Queue",
                            "/buyable_upgrades/action_queue_cap_2": "+1 Action Queue",
                            "/buyable_upgrades/action_queue_cap_3": "+1 Action Queue",
                            "/buyable_upgrades/action_queue_cap_4": "+1 Action Queue",
                            "/buyable_upgrades/loadout_slot_cap_1": "+1 Loadout Slot",
                            "/buyable_upgrades/loadout_slot_cap_2": "+1 Loadout Slot",
                            "/buyable_upgrades/loadout_slot_cap_3": "+1 Loadout Slot",
                            "/buyable_upgrades/loadout_slot_cap_4": "+1 Loadout Slot",
                            "/buyable_upgrades/task_slot_cap_1": "+1 Task Slot",
                            "/buyable_upgrades/task_slot_cap_2": "+1 Task Slot",
                            "/buyable_upgrades/task_slot_cap_3": "+1 Task Slot",
                            "/buyable_upgrades/task_slot_cap_4": "+1 Task Slot"
                        },
                        "chatIconNames": {
                            "/chat_icons/admin": "Admin",
                            "/chat_icons/cco": "CCO",
                            "/chat_icons/community_manager": "Community Manager",
                            "/chat_icons/super_moderator": "Super Moderator",
                            "/chat_icons/moderator": "Moderator",
                            "/chat_icons/bug_finder": "Bug Finder",
                            "/chat_icons/super_bug_finder": "Super Bug Finder",
                            "/chat_icons/contributor": "Contributor",
                            "/chat_icons/super_contributor": "Super Contributor",
                            "/chat_icons/supporter": "Supporter",
                            "/chat_icons/verdant_supporter": "Verdant Supporter",
                            "/chat_icons/azure_supporter": "Azure Supporter",
                            "/chat_icons/burble_supporter": "Burble Supporter",
                            "/chat_icons/crimson_supporter": "Crimson Supporter",
                            "/chat_icons/rainbow_supporter": "Rainbow Supporter",
                            "/chat_icons/holy_supporter": "Holy Supporter",
                            "/chat_icons/beta_bunny": "Beta Bunny",
                            "/chat_icons/jack_o_lantern": "Jack-o'-lantern",
                            "/chat_icons/santa_hat": "Santa Hat",
                            "/chat_icons/spring_festival_lantern": "Spring Festival Lantern",
                            "/chat_icons/anniversary_purple": "Anniversary Purple",
                            "/chat_icons/og_jerry": "OG Jerry",
                            "/chat_icons/milking": "Milking",
                            "/chat_icons/foraging": "Foraging",
                            "/chat_icons/woodcutting": "Woodcutting",
                            "/chat_icons/cheesesmithing": "Cheesesmithing",
                            "/chat_icons/crafting": "Crafting",
                            "/chat_icons/tailoring": "Tailoring",
                            "/chat_icons/cooking": "Cooking",
                            "/chat_icons/brewing": "Brewing",
                            "/chat_icons/alchemy": "Alchemy",
                            "/chat_icons/enhancing": "Enhancing",
                            "/chat_icons/combat": "Combat",
                            "/chat_icons/stamina": "Stamina",
                            "/chat_icons/intelligence": "Intelligence",
                            "/chat_icons/attack": "Attack",
                            "/chat_icons/melee": "Melee",
                            "/chat_icons/defense": "Defense",
                            "/chat_icons/ranged": "Ranged",
                            "/chat_icons/magic": "Magic",
                            "/chat_icons/marketplace": "Marketplace",
                            "/chat_icons/tasks": "Tasks",
                            "/chat_icons/blueberry": "Blueberry",
                            "/chat_icons/blackberry": "Blackberry",
                            "/chat_icons/strawberry": "Strawberry",
                            "/chat_icons/mooberry": "Mooberry",
                            "/chat_icons/marsberry": "Marsberry",
                            "/chat_icons/spaceberry": "Spaceberry",
                            "/chat_icons/apple": "Apple",
                            "/chat_icons/orange": "Orange",
                            "/chat_icons/plum": "Plum",
                            "/chat_icons/peach": "Peach",
                            "/chat_icons/dragon_fruit": "Dragon Fruit",
                            "/chat_icons/star_fruit": "Star Fruit",
                            "/chat_icons/egg": "Egg",
                            "/chat_icons/bamboo": "Bamboo",
                            "/chat_icons/cheese": "Cheese",
                            "/chat_icons/cupcake": "Cupcake",
                            "/chat_icons/clover": "Clover",
                            "/chat_icons/tea": "Tea",
                            "/chat_icons/coffee": "Coffee",
                            "/chat_icons/task_crystal": "Task Crystal",
                            "/chat_icons/star_fragment": "Star Fragment",
                            "/chat_icons/pearl": "Pearl",
                            "/chat_icons/amber": "Amber",
                            "/chat_icons/garnet": "Garnet",
                            "/chat_icons/jade": "Jade",
                            "/chat_icons/amethyst": "Amethyst",
                            "/chat_icons/moonstone": "Moonstone",
                            "/chat_icons/sunstone": "Sunstone",
                            "/chat_icons/philosophers_stone": "Philosopher's Stone",
                            "/chat_icons/sword": "Sword",
                            "/chat_icons/spear": "Spear",
                            "/chat_icons/mace": "Mace",
                            "/chat_icons/bulwark": "Bulwark",
                            "/chat_icons/bow": "Bow",
                            "/chat_icons/crossbow": "Crossbow",
                            "/chat_icons/staff": "Staff",
                            "/chat_icons/book": "Book",
                            "/chat_icons/mages_hat": "Mage's Hat",
                            "/chat_icons/panda_paw": "Panda Paw",
                            "/chat_icons/fly": "Fly",
                            "/chat_icons/rat": "Jerry",
                            "/chat_icons/skunk": "Skunk",
                            "/chat_icons/porcupine": "Porcupine",
                            "/chat_icons/slimy": "Slimy",
                            "/chat_icons/frog": "Frogger",
                            "/chat_icons/snake": "Thnake",
                            "/chat_icons/swampy": "Swampy",
                            "/chat_icons/alligator": "Sherlock",
                            "/chat_icons/giant_shoebill": "Giant Shoebill",
                            "/chat_icons/sea_snail": "Gary",
                            "/chat_icons/crab": "I Pinch",
                            "/chat_icons/aquahorse": "Aquahorse",
                            "/chat_icons/nom_nom": "Nom Nom",
                            "/chat_icons/turtle": "Turuto",
                            "/chat_icons/marine_huntress": "Marine Huntress",
                            "/chat_icons/jungle_sprite": "Jungle Sprite",
                            "/chat_icons/myconid": "Myconid",
                            "/chat_icons/treant": "Treant",
                            "/chat_icons/centaur_archer": "Centaur Archer",
                            "/chat_icons/luna_empress": "Luna Empress",
                            "/chat_icons/eyes": "Eyes",
                            "/chat_icons/the_watcher": "The Watcher",
                            "/chat_icons/ice_sorcerer": "Ice Sorcerer",
                            "/chat_icons/flame_sorcerer": "Flame Sorcerer",
                            "/chat_icons/elementalist": "Elementalist",
                            "/chat_icons/chronofrost_sorcerer": "Chronofrost Sorcerer",
                            "/chat_icons/gummy_bear": "Gummy Bear",
                            "/chat_icons/panda": "Panda",
                            "/chat_icons/black_bear": "Black Bear",
                            "/chat_icons/grizzly_bear": "Grizzly Bear",
                            "/chat_icons/polar_bear": "Polar Bear",
                            "/chat_icons/red_panda": "Red Panda",
                            "/chat_icons/zombie": "Zombie",
                            "/chat_icons/vampire": "Vampire",
                            "/chat_icons/werewolf": "Werewolf",
                            "/chat_icons/dusk_revenant": "Dusk Revenant",
                            "/chat_icons/abyssal_imp": "Abyssal Imp",
                            "/chat_icons/soul_hunter": "Soul Hunter",
                            "/chat_icons/infernal_warlock": "Infernal Warlock",
                            "/chat_icons/demonic_overlord": "Demonic Overlord",
                            "/chat_icons/butterjerry": "Butterjerry",
                            "/chat_icons/rabid_rabbit": "Rabid Rabbit",
                            "/chat_icons/enchanted_knight": "Enchanted Knight",
                            "/chat_icons/enchanted_bishop": "Enchanted Bishop",
                            "/chat_icons/squawker": "Squawker",
                            "/chat_icons/iron_cow": "Iron Cow",
                            "/chat_icons/cow": "Cow",
                            "/chat_icons/verdant_cow": "Verdant Cow",
                            "/chat_icons/azure_cow": "Azure Cow",
                            "/chat_icons/burble_cow": "Burble Cow",
                            "/chat_icons/crimson_cow": "Crimson Cow",
                            "/chat_icons/unicow": "Unicow",
                            "/chat_icons/holy_cow": "Holy Cow",
                            "/chat_icons/duckling": "Duckling",
                            "/chat_icons/whale": "Whale",
                            "/chat_icons/golden_coin": "Golden Coin",
                            "/chat_icons/golden_marketplace": "Golden Marketplace",
                            "/chat_icons/golden_egg": "Golden Egg",
                            "/chat_icons/golden_berry": "Golden Berry",
                            "/chat_icons/golden_apple": "Golden Apple",
                            "/chat_icons/golden_donut": "Golden Donut",
                            "/chat_icons/golden_cupcake": "Golden Cupcake",
                            "/chat_icons/golden_clover": "Golden Clover",
                            "/chat_icons/golden_biceps": "Golden Biceps",
                            "/chat_icons/golden_frog": "Golden Frog",
                            "/chat_icons/golden_piggy": "Golden Piggy",
                            "/chat_icons/golden_duckling": "Golden Duckling",
                            "/chat_icons/golden_whale": "Golden Whale"
                        },
                        "nameColorNames": {
                            "/name_colors/burble": "Burble",
                            "/name_colors/blue": "Blue",
                            "/name_colors/green": "Green",
                            "/name_colors/yellow": "Yellow",
                            "/name_colors/coral": "Coral",
                            "/name_colors/pink": "Pink",
                            "/name_colors/fancy_burble": "Fancy Burble",
                            "/name_colors/fancy_blue": "Fancy Blue",
                            "/name_colors/fancy_green": "Fancy Green",
                            "/name_colors/fancy_yellow": "Fancy Yellow",
                            "/name_colors/fancy_coral": "Fancy Coral",
                            "/name_colors/fancy_pink": "Fancy Pink",
                            "/name_colors/iron": "Iron",
                            "/name_colors/rainbow": "Rainbow",
                            "/name_colors/golden": "Golden"
                        },
                        "communityBuffTypeNames": {
                            "/community_buff_types/experience": "Experience",
                            "/community_buff_types/gathering_quantity": "Gathering Quantity",
                            "/community_buff_types/production_efficiency": "Production Efficiency",
                            "/community_buff_types/enhancing_speed": "Enhancing Speed",
                            "/community_buff_types/combat_drop_quantity": "Combat Drop Quantity"
                        },
                        "chatChannelTypeNames": {
                            "/chat_channel_types/general": "General",
                            "/chat_channel_types/chinese": "中文",
                            "/chat_channel_types/french": "Français",
                            "/chat_channel_types/german": "Deutsch",
                            "/chat_channel_types/spanish": "Español",
                            "/chat_channel_types/portuguese": "Português",
                            "/chat_channel_types/russian": "Русский",
                            "/chat_channel_types/hebrew": "עברית",
                            "/chat_channel_types/arabic": "العربية",
                            "/chat_channel_types/hindi": "हिंदी",
                            "/chat_channel_types/japanese": "日本語",
                            "/chat_channel_types/korean": "한국어",
                            "/chat_channel_types/vietnamese": "Tiếng Việt",
                            "/chat_channel_types/ironcow": "Ironcow",
                            "/chat_channel_types/trade": "Trade",
                            "/chat_channel_types/recruit": "Recruit",
                            "/chat_channel_types/beginner": "Beginner",
                            "/chat_channel_types/guild": "Guild",
                            "/chat_channel_types/party": "Party",
                            "/chat_channel_types/moderator": "Mod",
                            "/chat_channel_types/whisper": "Whisper"
                        },
                        "guildCharacterRoleNames": {
                            "leader": "Leader",
                            "general": "General",
                            "officer": "Officer",
                            "member": "Member"
                        },
                        "leaderboardTypeNames": {
                            "standard": "Standard",
                            "ironcow": "Ironcow",
                            "legacy_ironcow": "Legacy Ironcow",
                            "steam_standard": "Standard (Steam)",
                            "steam_ironcow": "Ironcow (Steam)",
                            "guild": "Guild"
                        },
                        "leaderboardCategoryNames": {
                            "total_level": "Total Level",
                            "milking": "Milking",
                            "foraging": "Foraging",
                            "woodcutting": "Woodcutting",
                            "cheesesmithing": "Cheesesmithing",
                            "crafting": "Crafting",
                            "tailoring": "Tailoring",
                            "cooking": "Cooking",
                            "brewing": "Brewing",
                            "alchemy": "Alchemy",
                            "enhancing": "Enhancing",
                            "stamina": "Stamina",
                            "intelligence": "Intelligence",
                            "attack": "Attack",
                            "melee": "Melee",
                            "defense": "Defense",
                            "ranged": "Ranged",
                            "magic": "Magic",
                            "task_points": "Task Points",
                            "fame_points": "Fame Points",
                            "guild": "Guild"
                        }
                    }
                },
                "zh": {
                    "translation": {
                        "global": {
                            "gameName": "银河奶牛放置"
                        },
                        "modalProvider": {
                            "ok": "确定",
                            "cancel": "取消",
                            "yes": "确定",
                            "no": "取消"
                        },
                        "actionsUtil": {
                            "itemNotAvailable": "[物品不可用]",
                            "doingNothing": "无所事事...",
                            "partySuffix": " (队伍)"
                        },
                        "characterItemsUtil": {
                            "mainHand": "主手",
                            "offHand": "副手",
                            "back": "背部",
                            "head": "头部",
                            "charm": "护符",
                            "body": "身体",
                            "legs": "腿部",
                            "hands": "手部",
                            "feet": "脚部",
                            "pouch": "袋子",
                            "neck": "项链",
                            "earrings": "耳环",
                            "ring": "戒指",
                            "trinket": "饰品",
                            "milkingTool": "挤奶工具",
                            "foragingTool": "采摘工具",
                            "woodcuttingTool": "伐木工具",
                            "cheesesmithingTool": "奶酪锻造工具",
                            "craftingTool": "制作工具",
                            "tailoringTool": "缝纫工具",
                            "cookingTool": "烹饪工具",
                            "brewingTool": "冲泡工具",
                            "alchemyTool": "炼金工具",
                            "enhancingTool": "强化工具"
                        },
                        "combatStats": {
                            "primaryTraining": "主修训练",
                            "focusTraining": "选修训练",
                            "combatStyleHrids": "战斗风格",
                            "damageType": "伤害类型",
                            "attackInterval": "攻击间隔",
                            "autoAttackDamage": "自动攻击伤害",
                            "abilityDamage": "技能伤害",
                            "attackSpeed": "攻击速度",
                            "castSpeed": "施法速度",
                            "abilityHaste": "技能急速",
                            "criticalRate": "暴击率",
                            "criticalDamage": "暴击伤害",
                            "stabAccuracy": "刺击精准度",
                            "slashAccuracy": "斩击精准度",
                            "smashAccuracy": "钝击精准度",
                            "rangedAccuracy": "远程精准度",
                            "magicAccuracy": "魔法精准度",
                            "stabDamage": "刺击伤害",
                            "slashDamage": "斩击伤害",
                            "smashDamage": "钝击伤害",
                            "rangedDamage": "远程伤害",
                            "magicDamage": "魔法伤害",
                            "defensiveDamage": "防御伤害",
                            "taskDamage": "任务伤害",
                            "physicalAmplify": "物理增幅",
                            "waterAmplify": "水系增幅",
                            "natureAmplify": "自然系增幅",
                            "fireAmplify": "火系增幅",
                            "healingAmplify": "治疗增幅",
                            "armorPenetration": "护甲穿透",
                            "waterPenetration": "水系穿透",
                            "naturePenetration": "自然系穿透",
                            "firePenetration": "火系穿透",
                            "physicalThorns": "物理荆棘",
                            "elementalThorns": "元素荆棘",
                            "retaliation": "反伤",
                            "maxHitpoints": "最大HP",
                            "maxManapoints": "最大MP",
                            "stabEvasion": "刺击闪避",
                            "slashEvasion": "斩击闪避",
                            "smashEvasion": "钝击闪避",
                            "rangedEvasion": "远程闪避",
                            "magicEvasion": "魔法闪避",
                            "armor": "护甲",
                            "waterResistance": "水系抗性",
                            "natureResistance": "自然系抗性",
                            "fireResistance": "火系抗性",
                            "damageTaken": "承受伤害",
                            "lifeSteal": "生命偷取",
                            "manaLeech": "法力吸取",
                            "tenacity": "韧性",
                            "threat": "威胁",
                            "hpRegenPer10": "生命恢复",
                            "mpRegenPer10": "法力恢复",
                            "foodHaste": "食物急速",
                            "drinkConcentration": "饮料浓度",
                            "combatDropRate": "战斗掉落率",
                            "combatDropQuantity": "战斗掉落数量",
                            "combatRareFind": "战斗稀有发现",
                            "combatExperience": "战斗经验",
                            "staminaExperience": "耐力经验",
                            "intelligenceExperience": "智力经验",
                            "attackExperience": "攻击经验",
                            "defenseExperience": "防御经验",
                            "meleeExperience": "近战经验",
                            "rangedExperience": "远程经验",
                            "magicExperience": "魔法经验",
                            "foodSlots": "食物槽位",
                            "drinkSlots": "饮料槽位",
                            "weaken": "削弱",
                            "fury": "狂怒",
                            "parry": "格挡",
                            "mayhem": "暴乱",
                            "pierce": "穿刺",
                            "curse": "诅咒",
                            "ripple": "涟漪",
                            "bloom": "绽放",
                            "blaze": "炽焰"
                        },
                        "noncombatStats": {
                            "skillingSpeed": "专业速度",
                            "milkingSpeed": "挤奶速度",
                            "foragingSpeed": "采摘速度",
                            "woodcuttingSpeed": "伐木速度",
                            "cheesesmithingSpeed": "奶酪锻造速度",
                            "craftingSpeed": "制作速度",
                            "tailoringSpeed": "缝纫速度",
                            "cookingSpeed": "烹饪速度",
                            "brewingSpeed": "冲泡速度",
                            "alchemySpeed": "炼金速度",
                            "enhancingSpeed": "强化速度",
                            "taskSpeed": "任务速度",
                            "skillingEfficiency": "专业效率",
                            "milkingEfficiency": "挤奶效率",
                            "foragingEfficiency": "采摘效率",
                            "woodcuttingEfficiency": "伐木效率",
                            "cheesesmithingEfficiency": "奶酪锻造效率",
                            "craftingEfficiency": "制作效率",
                            "tailoringEfficiency": "缝纫效率",
                            "cookingEfficiency": "烹饪效率",
                            "brewingEfficiency": "冲泡效率",
                            "alchemyEfficiency": "炼金效率",
                            "enhancingSuccess": "强化成功率",
                            "gatheringQuantity": "采集数量",
                            "drinkConcentration": "饮料浓度",
                            "skillingEssenceFind": "专业精华发现",
                            "skillingRareFind": "专业稀有发现",
                            "milkingRareFind": "挤奶稀有发现",
                            "foragingRareFind": "采摘稀有发现",
                            "woodcuttingRareFind": "伐木稀有发现",
                            "cheesesmithingRareFind": "奶酪锻造稀有发现",
                            "craftingRareFind": "制作稀有发现",
                            "tailoringRareFind": "缝纫稀有发现",
                            "cookingRareFind": "烹饪稀有发现",
                            "brewingRareFind": "冲泡稀有发现",
                            "alchemyRareFind": "炼金稀有发现",
                            "enhancingRareFind": "强化稀有发现",
                            "skillingExperience": "专业经验",
                            "milkingExperience": "挤奶经验",
                            "foragingExperience": "采摘经验",
                            "woodcuttingExperience": "伐木经验",
                            "cheesesmithingExperience": "奶酪锻造经验",
                            "craftingExperience": "制作经验",
                            "tailoringExperience": "缝纫经验",
                            "cookingExperience": "烹饪经验",
                            "brewingExperience": "冲泡经验",
                            "alchemyExperience": "炼金经验",
                            "enhancingExperience": "强化经验"
                        },
                        "home": {
                            "nav": {
                                "home": "首页",
                                "news": "新闻",
                                "patchNotes": "更新日志",
                                "gameGuide": "游戏指南"
                            },
                            "title": "$t(global.gameName) - 多人放置游戏 - 收集、制作、战斗、交易,还有更多精彩!",
                            "subtitle": "多人放置RPG",
                            "bannerText": "踏上一段穿越$t(global.gameName)的旅程,这是一款独特的多人放置游戏。无论你喜欢收集资源、制作物品,还是参与与外星怪物的史诗战斗,这里都有属于你的乐趣!你可以沉浸在我们繁荣的社区中,在玩家驱动的市场中交易物品,与朋友组建公会、畅聊交流,甚至冲击排行榜巅峰!",
                            "testServer": "测试服务器",
                            "activePlayerCount": "当前有 {{count}} 名活跃玩家!",
                            "showcases": {
                                "gatherAndCraft": {
                                    "title": "收集和制作",
                                    "text": "挤奶、采集、伐木、奶酪锻造、制作、缝纫、烹饪、冲泡、炼金、强化"
                                },
                                "combat": {
                                    "title": "战斗",
                                    "text": "多种战斗风格,可定义消耗品和技能的自动使用。单人或组队战斗"
                                },
                                "marketplace": {
                                    "title": "市场",
                                    "text": "买卖资源、消耗品、装备等物品"
                                },
                                "community": {
                                    "title": "社区",
                                    "text": "与朋友组队聊天,争夺排行榜的一席之地!"
                                }
                            },
                            "footer": {
                                "termsOfUse": "使用条款",
                                "privacyPolicy": "隐私政策",
                                "emailContact": "联系我们"
                            }
                        },
                        "auth": {
                            "tabs": {
                                "playAsGuest": "游客登录",
                                "register": "注册",
                                "login": "登录"
                            },
                            "serverError": {
                                "title": "无法连接到服务器",
                                "message": "你当前无法连接到游戏服务器。这可能是由于游戏正在更新、服务器维护,或者你和服务器之间存在网络问题(例如防火墙)。请5-10分钟后刷新页面再试。"
                            },
                            "thirdPartyCookieMessage": {
                                "title": "登录",
                                "message": "你的浏览器不支持第三方Cookie,这是在iframe内玩游戏所必需的。请启用第三方Cookie或从<a href='https://www.milkywayidle.com' target='_blank'>www.milkywayidle.com</a>进行游戏。"
                            },
                            "welcomeBack": {
                                "title": "欢迎回来!",
                                "logout": "退出登陆"
                            },
                            "buttons": {
                                "enterGame": "进入游戏"
                            },
                            "confirmationMessages": {
                                "guestWarning": "警告: 访客账户只能通过设置中的访客密码再次登录。",
                                "logoutConfirmation": "你确定要退出登陆吗?"
                            },
                            "shared": {
                                "agreeToRulesLabel": "我同意<termsLink>《使用条款》</termsLink>、<privacyPolicyLink>《隐私政策》</privacyPolicyLink>、和<gameRulesLink>《游戏规则》</gameRulesLink>",
                                "agreeToOneAccountLabel": "我同意我只可玩一个账户",
                                "errors": {
                                    "agreeToRulesError": "你必须同意游戏规则",
                                    "agreeToOneAccountError": "你必须同意只玩一个账户",
                                    "serverUnreachable": "服务器无法访问或离线",
                                    "captchaBlockedError": "验证码验证被浏览器的隐私设置阻止",
                                    "captchaFailedError": "验证码验证失败",
                                    "unexpectedError": "意外错误"
                                }
                            }
                        },
                        "playAsGuestForm": {
                            "title": "以访客身份游玩",
                            "info": "你的会话将保存在此浏览器中。要跨多个设备游玩,你可以在游戏中的<b>设置</b>中找到你的<b>访客密码</b>或进行完整<b>注册</b>。",
                            "playButton": "游玩"
                        },
                        "registerForm": {
                            "title": "注册",
                            "emailLabel": "邮箱",
                            "passwordLabel": "密码",
                            "passwordConfirmationLabel": "确认密码",
                            "registerButton": "注册",
                            "errors": {
                                "emailEmpty": "邮箱不能为空",
                                "invalidEmail": "请输入有效的邮箱",
                                "passwordTooShort": "密码至少需要6个字符",
                                "passwordsDoNotMatch": "密码不匹配"
                            }
                        },
                        "loginForm": {
                            "back": "< 返回",
                            "title": "登录",
                            "titleSteam": "登录$t(global.gameName)",
                            "emailOrNameLabel": "邮箱或用户名",
                            "passwordLabel": "密码",
                            "loginButton": "登录",
                            "forgotPassword": "忘记密码",
                            "errors": {
                                "emailOrNameEmpty": "邮箱/用户名不能为空",
                                "passwordEmpty": "密码不能为空"
                            }
                        },
                        "forgotPassword": {
                            "title": "忘记密码",
                            "infoMessage": "如果你的帐户已使用有效电子邮件注册,你将收到一封包含重置说明的密码重置邮件。(可能需要检查垃圾邮件文件夹)",
                            "emailLabel": "电子邮件",
                            "resetPasswordButton": "重置密码",
                            "backToLogin": "返回登录",
                            "successMessage": "如果该电子邮件地址与帐户关联,已发送电子邮件。",
                            "errors": {
                                "emailEmptyError": "电子邮件不能为空",
                                "invalidEmailError": "请输入有效的电子邮件"
                            }
                        },
                        "playFromKongregate": {
                            "title": "从Kongregate玩游戏",
                            "noAccountMessage": "你必须拥有一个Kongregate帐户才能进行游戏。",
                            "registerButton": "注册",
                            "signInInfo": "登录$t(global.gameName)。如果是初次游玩,可创建新帐户!",
                            "signInButton": "从Kongregate登录"
                        },
                        "loginWithSteam": {
                            "signInTitle": "从Steam登录游戏",
                            "signInInfo": "使用你的Steam帐户开始玩$t(global.gameName)!",
                            "signInButton": "从Steam登录",
                            "linkAccountTitle": "已有$t(global.gameName)帐户?",
                            "linkAccountInfo": "如果你之前玩过网页版$t(global.gameName),可以将现有帐户与Steam绑定。",
                            "linkAccountButton": "有,绑定我的帐户",
                            "createAccountButton": "没有,创建新帐户",
                            "steamAuthTicketError": "无法获取Steam身份验证票据。请重新启动Steam并重试。"
                        },
                        "characterSelectPage": {
                            "title": "选择角色 - $t(global.gameName)",
                            "header": "选择角色",
                            "loading": "正在加载角色...",
                            "createCharacterModal": {
                                "title": "创建角色",
                                "nameLabel": "角色名称:",
                                "namePlaceholder": "角色名称(2-16个字母或数字)",
                                "gameModeLabel": "游戏模式:",
                                "maxCharacter": "最多{{count}}个角色",
                                "maxCharacter_one": "最多{{count}}个角色",
                                "maxCharacter_other": "最多{{count}}个角色",
                                "submitButton": "创建",
                                "errors": {
                                    "nameLength": "必须为2到16个字符",
                                    "nameInvalid": "仅允许字母和数字"
                                }
                            },
                            "slots": {
                                "slot": "槽位{{slotNum}}",
                                "empty": "空",
                                "online": "在线",
                                "lastOnline": "上次在线: {{duration}}前"
                            },
                            "errors": {
                                "fetchCharacters": "无法获取角色信息,请稍后再试。",
                                "fetchGameModes": "无法获取游戏模式数据,请稍后再试。",
                                "serverUnreachable": "服务器不可达或离线",
                                "unexpectedError": "未知错误"
                            }
                        },
                        "gamePage": {
                            "disconnectedFromServer": "与服务器断开连接...",
                            "bannedMessage": "你被封禁至 {{banExpireTime}}。{{banReason}}",
                            "refresh": "刷新",
                            "attemptingToConnect": "正在连接到服务器...",
                            "loadingTitle": "加载中 - $t(global.gameName)",
                            "disconnectedTitle": "已断开连接 - $t(global.gameName)",
                            "guestLogoutWarning": "警告: 访客帐户只能通过设置中的访客密码再次登录。",
                            "logoutConfirmation": "你确定要退出登陆吗?",
                            "refreshPrompt": " 请刷新。",
                            "gameServerRestarted": "游戏服务器已重启。请刷新页面。"
                        },
                        "header": {
                            "flee": "逃跑",
                            "stop": "停止",
                            "loadoutWithName": "配装: {{name}}",
                            "loadoutUnavailable": "配装包含缺失物品",
                            "loadoutDeleted": "配装已删除",
                            "totalExperience": "总经验: {{totalExp}}",
                            "totalLevel": "总等级: {{totalLevel}}",
                            "activePlayers": "活跃角色: {{activePlayerCount}}",
                            "confirmRunAway": "你确定要逃离战斗吗?",
                            "newTutorialMessage": "新教程消息",
                            "newMessage": "新消息",
                            "newTutorialTask": "新教程任务",
                            "newTask": "新任务",
                            "progress": "进度: {{currentCount}} / {{goalCount}}",
                            "successRate": "成功率: {{successRate}}",
                            "usingCatalyst": "使用催化剂",
                            "targetEnhance": "目标: +{{enhancingMaxLevel}}",
                            "protectEnhance": "保护: +{{enhancingProtectionMinLevel}}"
                        },
                        "actionProgressBar": {
                            "fighting": "战斗中",
                            "travelingToBattle": "前往战斗"
                        },
                        "queuedActions": {
                            "loadout": "配装: {{name}}",
                            "loadoutUnavailable": "配装包含不可用物品",
                            "loadoutDeleted": "配装已删除",
                            "useItem": "使用: {{itemName}}",
                            "catalystUnavailable": "催化剂: [物品不足]",
                            "targetLevel": "目标等级: +{{level}}",
                            "protectFromLevel": "保护等级: +{{level}}",
                            "repeat": "重复",
                            "gather": "收集",
                            "produce": "生产",
                            "fight": "战斗",
                            "actionCountTimes": "{{action}} {{count}} 次",
                            "queuedActionsHeader": "行动队列",
                            "queuedActionsSlotCount": "行动队列 ({{current}}/{{max}})",
                            "upgradeCapacity": "升级容量",
                            "queuedActionsCount": "+{{count}} 队列<br />中的行动",
                            "remove": "移除",
                            "moveActionToFrontConfirm": "现在运行此行动吗?当前行动将暂停,并在之后继续。"
                        },
                        "navigationBar": {
                            "myStuff": "我的物品",
                            "marketplace": "市场",
                            "tasks": "任务",
                            "combat": "战斗",
                            "shop": "商店",
                            "cowbellStore": "牛铃商店",
                            "lootTracker": "掉落记录",
                            "social": "社交",
                            "guild": "公会",
                            "leaderboard": "排行榜",
                            "moderator": "管理员",
                            "settings": "设置",
                            "news": "新闻",
                            "patchNotes": "更新日志",
                            "gameGuide": "游戏指南",
                            "gameRules": "游戏规则",
                            "wiki": "维基百科",
                            "discord": "Discord",
                            "testServer": "测试服务器",
                            "privacyPolicy": "隐私政策",
                            "switchCharacter": "切换角色",
                            "logout": "退出登陆",
                            "myStuffTooltip": "库存、装备、能力、房屋和配装。",
                            "marketplaceTooltip": "玩家驱动的市场,你可以用金币买卖物品。",
                            "tasksTooltip": "随机生成的任务,完成后可获得奖励。",
                            "milkingTooltip": "哞哞哞~~~",
                            "foragingTooltip": "成为拾荒大师",
                            "woodcuttingTooltip": "We are 伐木累",
                            "cheesesmithingTooltip": "芝士就是打铁",
                            "craftingTooltip": "制作武器、珠宝等。",
                            "tailoringTooltip": "制作远程和魔法服装。",
                            "cookingTooltip": "制作健康食物的艺术。",
                            "brewingTooltip": "制作美味饮品的艺术。",
                            "alchemyTooltip": "菜就多炼",
                            "enhancingTooltip": "+5靠努力,+10靠运气,+15是奇迹,+20是命运",
                            "combatTooltip": "与怪物战斗。你的战斗等级代表了基于各个战斗技能等级组合的综合战斗效果。",
                            "shopTooltip": "从供应商处购买物品。",
                            "cowbellStoreTooltip": "购买和使用牛铃。",
                            "lootTrackerTooltip": "记录你最近行动获得的物品。",
                            "socialTooltip": "朋友、推荐和黑名单。",
                            "guildTooltip": "加入玩家社区。",
                            "leaderboardTooltip": "显示每个专业的顶级玩家。",
                            "moderatorTooltip": "大锤用户。",
                            "settingsTooltip": "更新帐户信息和其他设置。",
                            "staminaTooltip": "每级+10生命上限。",
                            "intelligenceTooltip": "每级+10法力上限。",
                            "attackTooltip": "增加你的精准度、基础攻击速度和施法速度。",
                            "defenseTooltip": "增加你的闪避、护甲和元素抗性。",
                            "meleeTooltip": "增加你的近战伤害。",
                            "rangedTooltip": "增加你的远程伤害。远程攻击有额外的暴击几率。",
                            "magicTooltip": "增加你的魔法伤害。",
                            "activePlayers": "活跃角色: {{count}}",
                            "level": "等级: {{count}}",
                            "totalExperience": "总经验: {{count}}",
                            "xpToLevelUp": "升级所需经验: {{count}}"
                        },
                        "marketplacePanel": {
                            "marketplace": "市场",
                            "marketListings": "商品列表",
                            "myListings": "我的挂牌",
                            "resources": "资源",
                            "consumables": "消耗品",
                            "books": "技能书",
                            "keys": "钥匙",
                            "equipment": "装备",
                            "accessories": "佩饰",
                            "tools": "工具",
                            "mustBeBetween0And20": "必须在0到20之间",
                            "mustBeAtLeast1": "必须至少为1",
                            "youDontHaveEnoughItems": "你没有足够的物品",
                            "youCantAffordThisMany": "你买不起这么多",
                            "mustBeAtLeastVendorPrice": "必须至少为商人价格",
                            "itemFilterPlaceholder": "物品搜索",
                            "viewAllItems": "查看所有物品",
                            "viewAllEnhancementLevels": "查看所有强化等级",
                            "refresh": "刷新",
                            "sell": "出售",
                            "buy": "购买",
                            "sellNow": "立即出售",
                            "postSellOrder": "发布出售订单",
                            "sellListing": "出售挂牌",
                            "postSellListing": "发布出售挂牌",
                            "buyNow": "立即购买",
                            "postBuyOrder": "发布购买订单",
                            "buyListing": "购买挂牌",
                            "postBuyListing": "发布购买挂牌",
                            "max": "最多",
                            "all": "全部",
                            "enhancementLevel": "强化等级",
                            "quantityYouHave": "数量 (你有: {{maxQuantity}})",
                            "quantityYouCanAfford": "数量 (你能负担: {{maxQuantity}})",
                            "quantityAvailableAtPrice": "数量 (此价格可用: {{marketQuantity}})",
                            "priceBestSellOffer": "价格 (最佳出售报价: <bestPrice />)",
                            "priceBestBuyOffer": "价格 (最佳购买报价: <bestPrice />)",
                            "youGetOrMore": "获得: {{totalValue}}<coin /> ({{taxRate}}税)<br />(更多,如果有更好的报价)",
                            "youPayOrLess": "支付: {{totalValue}}<coin /><br />(更少,如果有更好的报价)",
                            "sellRestricted": "出售受限",
                            "listingLimitReached": "已达到挂牌限制",
                            "newSellListing": "+ 新出售挂牌",
                            "newBuyListing": "+ 新购买挂牌",
                            "loading": "正在加载...",
                            "item": "物品",
                            "bestAskPrice": "最佳出售价",
                            "bestBidPrice": "最佳收购价",
                            "viewAll": "查看全部",
                            "nope": "没有...",
                            "quantity": "数量",
                            "askPrice": "出售价",
                            "bidPrice": "收购价",
                            "action": "操作",
                            "upgradeCapacity": "升级容量",
                            "collectAll": "全部收集 ({{claimableCount}})",
                            "status": "状态",
                            "type": "类型",
                            "progress": "进度",
                            "price": "价格",
                            "taxTaken": "税收",
                            "collect": "收集",
                            "chatLink": "聊天链接",
                            "link": "链接",
                            "cancel": "取消",
                            "confirmCancelMarketListing": "你确定要取消此挂牌吗?",
                            "active": "有效",
                            "filled": "已完成",
                            "cancelled": "已取消",
                            "expired": "已过期",
                            "listingsCount": "{{currentListings}} / {{listingCap}} 挂牌"
                        },
                        "marketListingLink": {
                            "buying": "购买",
                            "selling": "出售",
                            "price": "价格: <color>{{price}}</color>"
                        },
                        "tasksPanel": {
                            "tasks": "任务",
                            "taskBoard": "任务栏",
                            "taskShop": "任务商店",
                            "taskCooldownUpgrade": "-1小时任务冷却",
                            "taskCooldownDescription": "永久减少一小时任务等待时间。",
                            "blockSlotUpgrade": "+1屏蔽槽位",
                            "blockSlotDescription": "增加一个屏蔽槽位,允许屏蔽一种非战斗专业的新任务。",
                            "combatBlockUpgrade": "解锁战斗屏蔽",
                            "combatBlockDescription": "允许屏蔽战斗任务。你需要至少一个可用的屏蔽槽位才能使用此功能。",
                            "tutorialIncomplete": "完成你的教程任务以解锁任务栏。<br />你当前的任务可以在页面右上角找到。",
                            "purplesGift": "小紫牛的礼物: {{unclaimedTaskPoints}} / {{claimCost}} 任务积分",
                            "claim": "领取",
                            "unreadTasks": "你有 {{count}} 个未读任务",
                            "unreadTasks_one": "你有 {{count}} 个未读任务",
                            "unreadTasks_other": "你有 {{count}} 个未读任务",
                            "read": "读取",
                            "taskSlotCount": "{{taskCount}} / {{taskSlotCap}} 任务",
                            "upgradeCapacity": "升级容量",
                            "nextTask": "下一个任务: ",
                            "waitingForNextTask": "生成下一个任务。请稍等...",
                            "blockedSkills": "屏蔽专业",
                            "buyTaskUpgrade": "购买任务升级",
                            "buyTaskShopItem": "购买任务商店物品",
                            "quantity": "数量",
                            "youPay": "支付: {{totalCost}}",
                            "buy": "购买",
                            "upgrades": "升级",
                            "items": "物品",
                            "lifetimeTaskPoints": "累计任务积分: {{totalTaskPoints}}",
                            "minimumQuantity": "最小数量: 1",
                            "notEnoughItems": "你没有足够的{{itemName}}"
                        },
                        "taskBlockSlot": {
                            "remove": "移除",
                            "blockSlot": "槽位 {{slotIndex}}"
                        },
                        "randomTask": {
                            "back": "返回",
                            "confirmDiscard": "确认放弃",
                            "payCowbells": "支付 {{cowbellCost}}",
                            "payCoins": "支付 {{coinCost}}",
                            "reroll": "重置",
                            "mooPassFreeReroll": "哞卡免费重置",
                            "go": "前往",
                            "claimReward": "领取奖励",
                            "progress": "进度: {{currentCount}} / {{goalCount}}",
                            "rewards": "奖励: ",
                            "defeat": "击败 - {{monsterName}}"
                        },
                        "tutorialQuest": {
                            "purple": "小紫牛",
                            "welcomeStartText": "欢迎来到$t(global.gameName)——一个拥有神奇奶牛的世界!<br /><br />我是小紫牛,首席培训官,也是你的导游!<br /><br />我会用橙色的闪光来引导你完成培训。",
                            "welcomeButtonText": "嗨,小紫牛!",
                            "milkCowStartText": "让我先带你看看我们神奇奶牛最拿手的:生产神奇牛奶!顺便说一下,我的表妹深紫也在这里工作。嗨,深紫!<br /><br />首先,试着收集一些牛奶。",
                            "milkCowCompleteText": "干得好!这里有一些额外的牛奶和一把刷子。刷一刷奶牛,它们会更快乐更高效的产奶!",
                            "smithCheeseStartText": "让我们用牛奶制作一些奶酪!这些特殊的奶酪非常耐用,可以通过奶酪锻造做成许多有用的东西!",
                            "smithCheeseCompleteText": "太好了!带上一些额外的奶酪去完成下一个任务。",
                            "smithSwordStartText": "奶酪是制作工具、武器和盔甲的重要资源。让我教你如何制作奶酪剑吧!我知道这听起来可能有点不可思议,但请相信我。",
                            "smithSwordCompleteText": "真棒!随着你的升级,你也可以使用更强的装备!还可以制作工具来提高你的技艺。",
                            "forageFarmlandStartText": "现在让我们去寻找更多的资源。前往翠野农场,看看你能收集到什么物品!",
                            "forageFarmlandCompleteText": "好快!采摘为你提供了许多技艺所需的资源,包括烹饪、冲泡和缝纫!",
                            "cookDonutStartText": "是时候开始烹饪了,用一些鸡蛋、小麦和糖做一个美味的甜甜圈吧。什么?你不会做饭?你可以学嘛!我听说地球上还有只老鼠会做饭呢,如果它能做到,你肯定也行!试试看!",
                            "cookDonutCompleteText": "太棒了!食物可以在战斗中治愈你。快拿着这一打免费的甜甜圈!",
                            "fightFlyStartText": "现在我想带你去我们的邻近星球之一——臭臭星球!我听说那里有很多会咬人的苍蝇!你最好带上剑和一些甜甜圈。我们出发吧!",
                            "fightFlyCompleteText": "与怪兽战斗可以赚取金币、资源、技能书,甚至稀有物品。<br /><br />如果你在战斗中被击倒,你将在150秒后恢复并继续战斗。",
                            "messageTipsStartText": "看起来旅行快结束了。虽然还有很多东西可以探索,但别担心,你不会孤单!一旦你再升级一点,就可以与其他玩家聊天或获得帮助!<br /><br />你也可以在我们的玩家驱动的市场中买卖物品,除非你在玩铁牛模式。",
                            "messageTipsButtonText": "好的",
                            "messageTips2StartText": "在我走之前,还有一些提示:<br />- 游戏指南可以在左侧导航菜单的底部找到。<br />- 即使你处于离线状态,你依然能继续获得10小时离线进程 (可升级)。<br />- 物品、技能、专业和敌人可以鼠标悬停(在移动设备上长按)以查看更详细信息。<br /><br />好的,我得走了,是时候吃我的第二顿午餐了,我可有四个胃要填饱呢。快去探索世界吧!",
                            "messageTips2ButtonText": "再见,小紫牛!"
                        },
                        "questModal": {
                            "purple": "小紫牛",
                            "task": "任务",
                            "tutorial": "教程",
                            "taskInfo": "任务: {{taskName}}",
                            "progress": "进度: {{currentCount}} / {{goalCount}}",
                            "rewardsLabel": "奖励: ",
                            "defeatMonster": "击败 - {{monsterName}}",
                            "ok": "确定",
                            "accept": "接受",
                            "go": "前往",
                            "claimReward": "领取奖励"
                        },
                        "gatheringProductionSkillPanel": {
                            "consumables": "消耗品"
                        },
                        "alchemyPanel": {
                            "currentAction": "当前行动",
                            "notAlchemizing": "没有行动",
                            "consumables": "消耗品"
                        },
                        "enhancingPanel": {
                            "currentActionTab": "当前行动",
                            "notEnhancing": "没有行动",
                            "consumables": "消耗品"
                        },
                        "combatPanel": {
                            "combatZones": "战斗区域",
                            "findParty": "寻找队伍",
                            "myParty": "我的队伍",
                            "battleCount": "交战 #{{battleId}}"
                        },
                        "combatZones": {
                            "consumables": "消耗品",
                            "abilities": "技能"
                        },
                        "findParty": {
                            "selectZone": "选择区域",
                            "refresh": "刷新",
                            "createParty": "创建队伍",
                            "profile": "个人资料",
                            "join": "加入",
                            "combatZone": "战斗区域",
                            "difficulty": "难度",
                            "fightTimes": "战斗 {{times}} 次",
                            "partyName": "{{name}}的{{partyType}}",
                            "privateParty": "私人队伍",
                            "party": "队伍",
                            "levelRequirement": "等级{{minLevel}}-{{maxLevel}}"
                        },
                        "party": {
                            "noLoadout": "无配装",
                            "selectZone": "选择区域",
                            "fightTimesWithInputs": "战斗 <inputs /> 次",
                            "partyName": "{{name}}的{{partyType}}",
                            "privateParty": "私人队伍",
                            "publicParty": "公开队伍",
                            "autoKickCheckbox": "自动踢出5分钟内未就绪的队员",
                            "autoKickEnabled": "自动踢出已启用",
                            "autoKickDisabled": "自动踢出已禁用",
                            "slot": "槽位 {{number}}",
                            "role": "定位",
                            "minLevel": "最低等级",
                            "maxLevel": "最高等级",
                            "addSlot": "添加槽位",
                            "combatZone": "战斗区域",
                            "difficulty": "难度",
                            "leaveParty": "离开队伍",
                            "confirmLeaveParty": "你确定要离开队伍吗?",
                            "disbandParty": "解散队伍",
                            "confirmDisbandParty": "你确定要解散队伍吗?",
                            "editParty": "修改队伍",
                            "cancel": "取消",
                            "createParty": "创建队伍",
                            "save": "保存",
                            "linkToChat": "链接到聊天频道",
                            "consumables": "消耗品",
                            "abilities": "技能",
                            "profile": "个人资料",
                            "giveLeadership": "给予领导权",
                            "kick": "踢出",
                            "ready": "准备就绪",
                            "unready": "未就绪"
                        },
                        "partyRoles": {
                            "any_role": "任何定位",
                            "damage_dealer": "伤害输出",
                            "support": "辅助",
                            "tank": "坦克"
                        },
                        "partyLink": {
                            "linkText": "队伍: $t(actionNames.{{actionHrid}})"
                        },
                        "battlePanel": {
                            "stats": "属性",
                            "battleInfo": "交战信息",
                            "confirmRunAway": "你确定要逃离战斗吗?",
                            "combatDuration": "战斗时间: {{duration}}",
                            "battles": "交战: {{battleId}}",
                            "deaths": "战败: {{deathCount}}",
                            "itemsLooted": "战利品: ",
                            "experienceGained": "获得经验: ",
                            "waveLabel": "波次 {{currentWave}} / {{maxWaves}}",
                            "battleNumber": "交战 #{{battleId}}",
                            "consumables": "消耗品",
                            "abilities": "技能",
                            "flee": "逃跑"
                        },
                        "combatUnit": {
                            "respawn": "复活",
                            "autoAttack": "自动攻击",
                            "stunned": "眩晕",
                            "blindedSilenced": "失明/沉默",
                            "blinded": "失明",
                            "silenced": "沉默"
                        },
                        "combatMonsterTooltip": {
                            "combatLevel": "战斗等级: {{level}}",
                            "experience": "经验: {{experience}}",
                            "drops": "掉落:",
                            "rareDrops": "稀有掉落:"
                        },
                        "skillActionDetail": {
                            "levelRequirement": "Lv.{{level}}{{bonus}}",
                            "requires": "需要",
                            "upgradesFrom": "升级自",
                            "upgradeItemWarning": "没有选择升级物品",
                            "enhancementTransferAll": "转移所有强化等级。",
                            "enhancementTransfer": "转移70%的强化等级。<br />小数有机会多加1级。",
                            "costs": "费用",
                            "outputs": "产出",
                            "essenceDrops": "精华",
                            "rareDrops": "稀有",
                            "experience": "经验",
                            "duration": "持续时间",
                            "successRate": "成功率",
                            "travel": "旅行时间",
                            "bonuses": "加成",
                            "alchemizeItem": "炼金物品",
                            "selectAlchemyItem": "选择要炼金的物品",
                            "coinifyInfo": "<span>点金:</span> 将物品转换为金币。",
                            "decomposeInfo": "<span>分解:</span> 将物品转换为原材料或精华。",
                            "transmuteInfo": "<span>转化:</span> 将物品转换为随机相关物品。",
                            "invalidCoinifyItem": "此物品无法被点金",
                            "invalidDecomposeItem": "此物品无法被分解",
                            "invalidTransmuteItem": "此物品无法被转化",
                            "recommendedLevel": "推荐等级 {{level}} <Icon />",
                            "bulkMultiplier": "每次使用 {{multiplier}} 个物品",
                            "catalyst": "催化剂",
                            "consumedItem": "消耗物品",
                            "notUsed": "不使用",
                            "enhanceItem": "强化装备",
                            "selectEnhancingItem": "选择要强化的装备",
                            "successInfo": "<span>成功</span>将使物品的强化等级增加1。",
                            "failureInfo": "<span>失败</span>除非使用保护道具,将重置强化等级为0。",
                            "targetLevel": "目标等级",
                            "protection": "保护",
                            "protectFromLevel": "保护起始等级",
                            "protectionMinLevelWarning": "必须≥2才有效",
                            "entryKey": "入口钥匙",
                            "reward": "奖励",
                            "bosses": "BOSS",
                            "bossFight": "BOSS<br />每{{battlesPerBoss}}场<br/>交战出现",
                            "monsters": "怪物",
                            "difficulty": "难度",
                            "repeat": "重复",
                            "gather": "采集",
                            "produce": "生产",
                            "fight": "战斗",
                            "loadout": "配装",
                            "noLoadout": "无配装",
                            "confirmStartNow": "你确定要替换你的行动队列吗?",
                            "buttons": {
                                "start": "开始",
                                "startNow": "立即开始",
                                "stop": "停止",
                                "upgradeQueue": "升级行动队列",
                                "addToQueue": "添加到队列 #{{count}}",
                                "findParty": "寻找队伍"
                            }
                        },
                        "shopPanel": {
                            "minQuantity": "最小数量: 1",
                            "cannotAfford": "无法支付",
                            "itemFilterPlaceholder": "物品筛选",
                            "youPay": "支付: {{count}} {{itemName}}",
                            "buyItem": "购买物品",
                            "quantity": "数量",
                            "buy": "购买",
                            "shop": "商店"
                        },
                        "cowbellStorePanel": {
                            "buyCowbells": "购买牛铃",
                            "mooPass": "哞卡",
                            "upgrades": "便利升级",
                            "chatIcons": "聊天图标",
                            "customChatIcon": "定制聊天图标",
                            "nameColors": "名称颜色",
                            "customNameColor": "定制名称颜色",
                            "avatars": "角色形象",
                            "customAvatar": "定制角色形象",
                            "avatarOutfits": "角色服装",
                            "customAvatarOutfit": "定制角色服装",
                            "communityBuffs": "社区增益",
                            "nameChange": "更改名称",
                            "optIn": "加入",
                            "optOut": "退出",
                            "price": "价格: {{price}}",
                            "supporterPoints": "{{points}} 支持者积分",
                            "minimumQuantity": "最小数量: 1",
                            "notEnoughItems": "你没有足够的 {{itemName}}",
                            "minimumDuration": "最短持续时间: 10分钟",
                            "notEnoughCowbells": "你没有足够的牛铃",
                            "mustBeCharacters": "必须是2-16个字符",
                            "onlyAlphabetsNumbers": "只允许字母和数字",
                            "notAvailable": "不可用",
                            "serverUnreachable": "服务器无法访问或离线",
                            "unexpectedError": "意外错误",
                            "confirmChangeName": "确认更改名称为: {{name}}",
                            "purchaseSuccessful": "购买成功",
                            "thankYouSupport": "感谢你的支持! 购买的牛铃或哞卡应该会在游戏中授予你。",
                            "purchaseNotice": "购买通知",
                            "purchaseAntiFraudMessage": "游戏安全要求:首次购买将触发72小时禁止出售牛铃袋的市场限制,自行使用没有限制。",
                            "waitForSteamOverlay": "等待Steam叠加页面",
                            "steamOverlayMessage": "Steam叠加页面将自动弹出,以继续你的购买。这通常需要几秒钟,但偶尔也会需要更长时间。之后你可以关闭此消息。",
                            "continueToPurchase": "继续购买",
                            "continuePayment": "点击继续,在新窗口中打开我们的支付处理器。",
                            "guestWarning": "注意: 这是一个访客账户。建议在设置->账户中注册以避免意外丢失访问权限",
                            "continue": "继续",
                            "mooPassPerks": "哞卡福利",
                            "buyConvenienceUpgrade": "购买便利升级",
                            "quantity": "数量",
                            "limit": "(限制: {{limit}})",
                            "buyLimit": "购买限制: {{limit}}",
                            "afterPurchaseHoursofflineProgress": "购买后: {{limit}} 小时离线进度",
                            "afterPurchaseMarketListings": "购买后: {{limit}} 市场挂牌",
                            "afterPurchaseActionQueues": "购买后: {{limit}} 行动队列",
                            "afterPurchaseLoadoutSlots": "购买后: {{limit}} 配装槽位",
                            "afterPurchaseTaskSlots": "购买后: {{limit}} 任务槽位",
                            "buyChatIcon": "购买聊天图标",
                            "buyNameColor": "购买名称颜色",
                            "buyAvatar": "购买角色形象",
                            "buyAvatarOutfit": "购买角色服装",
                            "preview": "预览",
                            "unlock": "解锁",
                            "buyCommunityBuff": "购买社区增益",
                            "minute": "分钟",
                            "minutesToAdd": "添加分钟数",
                            "youPay": "支付: {{cost}}",
                            "buy": "购买",
                            "cowbellStore": "牛铃商店",
                            "supporterPointsLabel": "支持者积分: {{points}}",
                            "famePointsLabel": "名誉积分: {{points}}",
                            "buyCowbellsInfo": "你可以购买牛铃来支持游戏。牛铃可用于购买便利升级、聊天图标、名称颜色、角色形象、角色服装、社区增益,或者更改你的名称。",
                            "testServerFreeCowbellsSteam": "测试服务器: 你可以免费获得牛铃。这使用Steam的沙盒支付模式,不会实际扣款。",
                            "testServerFreeCowbellsStripe": "测试服务器: 你可以免费获得牛铃,输入4242-4242-4242-4242作为信用卡,其它字段随意输入。",
                            "buyCowbellsNote": "注意: 购买的牛铃将作为牛铃袋 (每袋10个) 出现在你的[库存]中,可以在市场上出售给其他玩家 ({{cowbellTaxRate}}金币税)。一旦打开就不可出售。",
                            "selectCurrency": "选择货币",
                            "mooPassInfo": "哞卡提供多种实用但不影响主要体验的<PerksLink>福利</PerksLink>。",
                            "characterMooPass": "角色哞卡",
                            "accountMooPass": "账户哞卡",
                            "increaseOfflineProgressLimit": "增加离线进度上限",
                            "increaseMarketListingLimit": "增加市场挂牌上限",
                            "increaseActionQueueLimit": "增加行动队列上限",
                            "increaseLoadoutSlotLimit": "增加配装槽位上限",
                            "increaseTaskSlotLimit": "增加任务槽位上限",
                            "freeMooPass": "14天哞卡赠送",
                            "free": "免费",
                            "confirmClaimFreeMooPass": "激活14天免费哞卡? 这是一次性赠送。如果哞卡已经激活,将延长14天。",
                            "mooPassWithCowbells": "7天哞卡",
                            "buyMooPass": "购买哞卡",
                            "totalMooPassDays": "获得: {{days}}天哞卡",
                            "upgradeLimitsInfo": "升级会永久增加上限。你当前的上限可以在[设置]中查看。",
                            "seasonal": "节日限定",
                            "unlocked": "已解锁",
                            "chatIconsInfo": "聊天图标显示在你名称前面。解锁的聊天图标可以在[设置]->[个人资料]中更改。",
                            "customChatIconInfo": "你可以花费 {{supporterPoints}} 支持者积分和 {{cowbellCost}} 牛铃来定制一个聊天图标。请通过 Discord 的 #new-ticket 频道提交申请。图标将根据你提供的概念或图片,由我们的设计师制作,确保符合游戏的风格和配色主题。图标不得包含任何受版权保护的内容。授予图标时,将从你选择的角色中扣除支持者点数和牛铃费用。",
                            "nameColorsInfo": "点击任意颜色查看预览。解锁的颜色可以在[设置]->[个人资料]中更改。",
                            "customNameColorInfo": "你可以花费 {{supporterPoints}} 支持者积分和 {{cowbellCost}} 牛铃来定制一个名称颜色。请通过 Discord 的 #new-ticket 频道提交申请。名称颜色可以是渐变色,并可选择添加微弱的发光效果。授予名称颜色时,将从你选择的角色中扣除支持者点数和牛铃费用。",
                            "avatarsInfo": "点击任意角色形象查看预览。解锁的角色形象可以在[设置]->[个人资料]中更改。",
                            "customAvatarInfo": "你可以花费 {{supporterPoints}} 支持者积分和 {{cowbellCost}} 牛铃来定制一个角色形象。请通过 Discord 的 #new-ticket 频道提交申请。角色形象将根据你提供的概念或图片,由我们的设计师制作,确保符合游戏的风格和配色主题。角色形象不得包含任何受版权保护的内容。授予角色形象时,将从你选择的角色中扣除支持者点数和牛铃费用。",
                            "avatarOutfitsInfo": "点击任意角色服装查看预览。解锁的角色服装可以在[设置]->[个人资料]中更改。",
                            "customAvatarOutfitInfo": "你可以花费 {{supporterPoints}} 支持者积分和 {{cowbellCost}} 牛铃来定制一个角色服装。请通过 Discord 的 #new-ticket 频道提交申请。角色服装将根据你提供的概念或图片,由我们的设计师制作,确保符合游戏的风格和配色主题。角色服装不得包含任何受版权保护的内容。授予角色服装时,将从你选择的角色中扣除支持者点数和牛铃费用。",
                            "communityBuffsInfo": "社区增益使服务器上所有玩家都受益。每花费一个牛铃在社区增益上,你将获得1个名誉积分。名誉积分在排行榜上排名。",
                            "fameLeaderboard": "名誉排行榜",
                            "currentName": "当前名称",
                            "newName": "新名称",
                            "checkAvailability": "检查可用性",
                            "available": "可用",
                            "cost": "费用",
                            "changeName": "更改名称"
                        },
                        "paymentSuccessPage": {
                            "paymentSuccess": "支付成功",
                            "thankYouMessage": "感谢你的支持!购买的牛铃将在1分钟内出现在你的库存中。你可以关闭此页并返回游戏。"
                        },
                        "paymentCancelPage": {
                            "paymentCancelled": "支付已取消",
                            "closeTabMessage": "你可以关闭此页并返回游戏。"
                        },
                        "lootLogPanel": {
                            "lootTracker": "掉落记录",
                            "refresh": "刷新",
                            "startTime": "开始时间",
                            "duration": "持续时间"
                        },
                        "socialPanel": {
                            "friends": "朋友",
                            "referrals": "推荐",
                            "blockList": "黑名单",
                            "whisper": "私聊",
                            "profile": "资料",
                            "confirmUnfriend": "确认取消好友",
                            "unfriend": "取消好友",
                            "activity": "活动",
                            "status": "状态",
                            "daysAgo": "{{days}}前",
                            "online": "在线",
                            "hidden": "隐藏",
                            "offline": "离线",
                            "playerNamePlaceholder": "玩家名称",
                            "addFriend": "添加好友",
                            "blockedPlayers": "已屏蔽玩家",
                            "blockPlayer": "屏蔽玩家",
                            "unblock": "取消屏蔽",
                            "referralBonusFirstLevel": "推荐的玩家达到了总等级 {{level}}",
                            "referralBonusPurchase": "推荐的玩家购买了牛铃",
                            "reward": "奖励: {{quantity}}",
                            "claim": "领取",
                            "referralInstructions": "当有人使用你的推荐链接注册时,你将有资格获得以下奖励:",
                            "referralInstructionBullets": "<ul><li>获得 {{firstLevelCowbells}}<cowbellIcon />如果推荐的玩家达到总等级 {{firstTotalLevel}}。</li><li>额外获得 {{secondLevelCowbells}}<cowbellIcon />如果玩家达到总等级 {{secondTotalLevel}}。</li><li>玩家购买的任何牛铃的 {{purchaseCowbellPercent}}。</li></ul>",
                            "referralLinkCopied": "链接已复制",
                            "copyLink": "复制链接",
                            "referralCount": "到目前为止,已有 <span>{{count}}</span> 名玩家通过你的推荐链接注册",
                            "socialTitle": "社交"
                        },
                        "guildPanel": {
                            "overview": "概览",
                            "members": "成员",
                            "manage": "管理",
                            "nameLengthError": "名称必须为{{minLength}}-{{maxLength}}个字符",
                            "nameContentError": "名称只能包含字母、数字和单个空格",
                            "confirmDisband": "你确定要解散公会吗?",
                            "confirmLeave": "你确定要离开公会吗?",
                            "guildInvitation": "公会邀请:",
                            "invitedBy": "邀请者:",
                            "decline": "拒绝",
                            "join": "加入",
                            "createGuildInstructions": "你可以花费5M金币创建一个公会。公会目前提供以下功能:",
                            "createGuildInfoBullets": "<ul><li>公会聊天频道和公告板。</li><li>当成员在任何专业获得经验时公会也将获得经验并可升级,经验比例为1:1000。</li><li>{{defaultSlots}} 个成员槽位,每{{levelsPerSlot}}级公会等级增加1个额外槽位。</li><li>可以分配角色: 会长、将军、官员、会员。</li></ul>",
                            "cost5m": "费用: 5,000,000",
                            "guildNamePlaceholder": "公会名称",
                            "createGuild": "创建公会",
                            "joinGuildInfo": "你也可以被邀请加入现有公会。使用招募聊天频道寻找要加入的公会。收到的邀请将显示在下方。",
                            "save": "保存",
                            "edit": "修改",
                            "guildLevel": "公会等级",
                            "guildExperience": "公会经验",
                            "expToLevelUp": "升级所需经验",
                            "guildMembers": "公会成员",
                            "whisper": "私聊",
                            "profile": "资料",
                            "confirmGiveLead": "确认转让会长",
                            "giveLeadership": "转让会长",
                            "promote": "提升",
                            "demote": "降级",
                            "cancelInvite": "取消邀请",
                            "confirmKick": "确认踢出",
                            "kick": "踢出",
                            "playerNamePlaceholder": "玩家名称",
                            "inviteToGuild": "邀请加入公会",
                            "membersHeader": "成员 ({{currentCount}}/{{maxCount}})",
                            "role": "职位",
                            "guildExp": "公会经验",
                            "activity": "活动",
                            "status": "状态",
                            "invited": "已邀请",
                            "daysAgo": "{{days}}前",
                            "online": "在线",
                            "hidden": "隐藏",
                            "offline": "离线",
                            "disbandInstructions": "如果没有其他成员或邀请,你可以解散公会。",
                            "disbandGuild": "解散公会",
                            "leaveInstructions": "你可以离开公会。离开公会没有任何惩罚。",
                            "leaveGuild": "离开公会",
                            "guild": "公会"
                        },
                        "leaderboardPanel": {
                            "leaderboard": "排行榜",
                            "noPlayers": "没有玩家达到此排行榜的最低标准。",
                            "updatesNote": "每20分钟更新一次",
                            "rank": "排名",
                            "name": "名称",
                            "level": "等级",
                            "experience": "经验",
                            "points": "积分",
                            "taskPoints": "任务积分",
                            "famePoints": "名誉积分"
                        },
                        "moderatorPanel": {
                            "reportedFor": "被举报: "
                        },
                        "settingsPanel": {
                            "settings": "设置",
                            "profile": "个人资料",
                            "game": "游戏",
                            "account": "账户",
                            "show": "显示",
                            "hide": "隐藏",
                            "off": "关闭",
                            "enabled": "启用",
                            "disabled": "禁用",
                            "on": "开",
                            "public": "公开",
                            "friendsGuildmates": "好友/公会成员",
                            "private": "隐藏",
                            "partyMembersOnly": "仅限队员",
                            "emailEmpty": "电子邮件不能为空",
                            "validEmail": "请输入有效的电子邮件",
                            "currentPassword": "请输入你的当前密码",
                            "passwordLength": "密码至少为6个字符",
                            "confirmPassword": "确认密码不匹配",
                            "noneOwned": "没有",
                            "unlock": "解锁",
                            "unlockMoreAvatars": "解锁更多角色形象",
                            "unlockMoreOutfits": "解锁更多服装",
                            "setSkillLevel": "更改专业等级",
                            "selectSkill": "选择专业",
                            "setLevel": "更改等级",
                            "preview": "预览:",
                            "viewProfile": "查看我的资料",
                            "chatIcon": "聊天图标:",
                            "nameColor": "名称颜色:",
                            "avatar": "角色形象:",
                            "avatarOutfit": "角色服装:",
                            "onlineStatus": "在线状态:",
                            "equipment": "装备:",
                            "deleteCharacter": "删除角色",
                            "deleteCharacterTimeLimit": "创建后10小时内无法删除",
                            "showDeletionInstructions": "显示删除说明",
                            "deleteCharacterInstructions": "按照说明永久删除此角色 \"{{name}}\"。删除后无法撤销。你必须先退出队伍和公会,然后输入角色的确切名称以确认删除。",
                            "characterName": "角色名称:",
                            "deleteCharacterCaps": "删除角色",
                            "gameMode": "游戏模式:",
                            "mooPass": "哞卡:",
                            "inactive": "未激活",
                            "offlineProgress": "离线进度:",
                            "hours": "小时",
                            "upgrade": "升级",
                            "marketListing": "市场挂牌:",
                            "listings": "挂牌",
                            "actionQueue": "行动队列:",
                            "actions": "行动",
                            "loadoutSlot": "配装槽位:",
                            "slots": "槽位",
                            "taskSlots": "任务槽位:",
                            "tasks": "任务",
                            "displayLanguage": "显示语言:",
                            "generalChat": "英语聊天:",
                            "nonEnglishChat": "非英语聊天:",
                            "ironcowChat": "铁牛聊天:",
                            "tradeChat": "交易聊天:",
                            "recruitChat": "招募聊天:",
                            "beginnerChat": "新手聊天:",
                            "totalLevelMessage": "总等级消息:",
                            "skillLevelMessage": "专业等级消息:",
                            "communityBuffMessage": "社区增益消息:",
                            "profanityFilter": "屏蔽不良语言:",
                            "chatURLWarning": "聊天URL确认:",
                            "cssAnimation": "CSS动画:",
                            "name": "名称:",
                            "accountType": "账户类型:",
                            "guest": "游客",
                            "registeredUser": "注册用户",
                            "guestPassword": "游客密码:",
                            "kongregateId": "Kongregate ID:",
                            "steamId": "Steam ID:",
                            "currentPasswordLabel": "当前密码:",
                            "emailLabel": "电子邮件:",
                            "newPassword": "新密码",
                            "confirmPasswordLabel": "确认密码",
                            "update": "更新",
                            "registerEmailPassword": "注册电子邮件/密码"
                        },
                        "chat": {
                            "generalTip": "提示: 英语频道仅限英语进行游戏讨论和友好交流。为保持积极和相互尊重的气氛,请遵守<gameRulesLink>游戏规则</gameRulesLink>。",
                            "tradeTip": "提示: 贸易频道用于宣传物品交易和服务。请使用私聊进行对话和谈判。",
                            "recruitTip": "提示: 招募频道用于宣传公会/队伍招募和寻找加入公会/队伍的玩家。请使用私聊进行对话。",
                            "beginnerTip": "提示: 欢迎在此提问或与其他玩家聊天。实用链接: <gameGuideLink>游戏指南</gameGuideLink>和<gameRulesLink>游戏规则</gameRulesLink>。",
                            "whisperTip": "提示: 你可以使用命令\"/w [玩家名] [消息]\"与其他玩家私聊,或点击玩家的名称并选择私聊。",
                            "useWhisperCommand": "使用 /w 命令",
                            "needPlayerName": "需要玩家名",
                            "emptyMessage": "消息为空",
                            "invalidCommand": "无效命令",
                            "useTradeChannel": "请使用交易频道",
                            "useRecruitChannel": "请使用招募频道",
                            "mutedMessage": "禁言至 {{muteExpireTime}}。{{muteReason}}",
                            "generalChatRestriction": "你需要至少 {{generalChatMinLevel}} 总等级或 {{generalChatMinExp}} 总经验才能使用英语聊天",
                            "chatRestriction": "你需要至少 {{chatMinLevel}} 总等级才能聊天",
                            "enterMessagePlaceholder": "输入消息...",
                            "sendButton": "发送",
                            "reportChatMessage": "举报聊天消息",
                            "reportInstructions": "举报严重的聊天干扰或违规行为。对于个人间的小争执,请使用屏蔽功能。",
                            "reportReason": "举报原因:",
                            "submitReport": "提交举报",
                            "reportType": {
                                "selectReason": "选择举报原因",
                                "harassmentMe": "骚扰我",
                                "harassmentOthers": "骚扰他人",
                                "offensiveLanguage": "冒犯性语言",
                                "illegalViolentSexual": "非法/暴力/性内容",
                                "controversialTopics": "敏感话题",
                                "excessiveDrama": "过度闹事/纷争",
                                "spam": "恶意刷屏/垃圾信息",
                                "encouragingRuleBreaking": "鼓励违反规则",
                                "personalInformation": "泄露个人信息",
                                "wrongChannel": "错误频道",
                                "cheating": "作弊",
                                "underage": "未满13岁",
                                "inappropriateName": "不当名称",
                                "other": "其他"
                            },
                            "reportTypeDescription": {
                                "harassmentMe": "针对我的人身攻击或严重骚扰。",
                                "harassmentOthers": "针对其他玩家的人身攻击或严重骚扰。",
                                "offensiveLanguage": "使用冒犯性或不当语言。",
                                "illegalViolentSexual": "包含非法、过度暴力或性内容的消息、讨论或链接。",
                                "controversialTopics": "敏感话题,如政治、宗教、国际冲突、性别讨论、性取向、禁言/封禁投诉等,以及其他容易引发纷争的话题。",
                                "excessiveDrama": "蓄意带节奏或煽动性言论,干扰聊天秩序。",
                                "spam": "一个玩家频繁发送重复或无意义消息或索要免费物品。(多名玩家发送类似消息是允许的)",
                                "encouragingRuleBreaking": "鼓励或误导其他玩家违反游戏规则。",
                                "personalInformation": "泄露自己或其他玩家未公开的个人身份信息。",
                                "wrongChannel": "多次在错误的频道发送消息。",
                                "cheating": "自称作弊行为,包括多账号、财富转移、线外交易、非法脚本或漏洞利用。",
                                "underage": "自称未满13岁。",
                                "inappropriateName": "不当的角色名称。",
                                "other": "其他未涵盖的问题。"
                            }
                        },
                        "chatMessage": {
                            "whisper": "私聊",
                            "mention": "提及",
                            "profile": "玩家资料",
                            "addFriend": "加好友",
                            "confirmBlock": "确认屏蔽",
                            "block": "屏蔽",
                            "report": "举报",
                            "modInspect": "管理员检查",
                            "undeleteMsg": "恢复消息",
                            "deleteMsg": "删除消息",
                            "warn": "警告",
                            "mute": "禁言",
                            "moderator": "管理员",
                            "privateModeratorTo": "(私密) 管理员对{{receiverName}}说",
                            "toPlayer": "对{{receiverName}}说",
                            "messageDeleted": "消息已删除"
                        },
                        "characterName": {
                            "customIcon": "定制图标"
                        },
                        "textWithLinks": {
                            "externalLinkWarning": "你确定要打开外部链接吗?"
                        },
                        "characterManagement": {
                            "inventory": "库存",
                            "equipment": "装备",
                            "abilities": "技能",
                            "house": "房屋",
                            "loadouts": "配装"
                        },
                        "inventory": {
                            "openedLootHeader": "打开的战利品",
                            "foundItemsLabel": "你找到了",
                            "closeButton": "关闭",
                            "itemFilterPlaceholder": "物品搜索"
                        },
                        "equipmentPanel": {
                            "title": "装备",
                            "viewStats": "查看属性",
                            "combatStats": "战斗属性",
                            "nonCombatStats": "非战斗属性"
                        },
                        "abilitiesPanel": {
                            "title": "技能",
                            "abilitySlotsLabel": "技能槽位",
                            "learnedAbilitiesLabel": "已学技能"
                        },
                        "housePanel": {
                            "house": "房屋",
                            "houseBuffs": "房屋增益",
                            "allSkills": "所有行动",
                            "none": "无",
                            "notBuilt": "未建造",
                            "level": "{{level}} 级",
                            "max": "最大",
                            "constructionCosts": "建造费用",
                            "build": "建造",
                            "viewBuffs": "查看增益",
                            "actionBuff": "{{action}}增益",
                            "allSkillBuffs": "所有行动增益"
                        },
                        "loadoutPanel": {
                            "allSkills": "所有行动",
                            "newLoadout": "新配装",
                            "createLoadout": "创建配装",
                            "loadoutCount": "{{count}} / {{max}} 配装",
                            "upgradeCapacity": "升级容量",
                            "loadouts": "配装",
                            "viewAllLoadouts": "查看所有配装",
                            "deleteLoadout": "删除配装",
                            "confirmDeleteLoadout": "你确定要删除此配装吗?",
                            "name": "名称",
                            "edit": "修改",
                            "save": "保存",
                            "setDefault": "设为{{actionTypeName}}的默认配装",
                            "suppressValidation": "缺失物品时不要提醒",
                            "importCurrentSetup": "导入当前配置",
                            "confirmImportCurrentSetup": "你确定要导入你当前配置吗?这将覆盖现有的配装。",
                            "equipLoadout": "装备配装",
                            "equipment": "装备",
                            "abilities": "技能",
                            "consumables": "消耗品"
                        },
                        "offlineProgressModal": {
                            "welcomeBack": "欢迎回来!",
                            "offlineDuration": "离线时间",
                            "progressDuration": "进展时间",
                            "upgrade": "升级",
                            "itemsGained": "获得物品",
                            "experienceGained": "获得经验",
                            "itemsConsumed": "消耗物品",
                            "close": "关闭"
                        },
                        "sharableProfile": {
                            "overview": "概览",
                            "skills": "专业",
                            "equipment": "装备",
                            "house": "房屋",
                            "guildRole": "{{guildName}} {{role}}",
                            "online": "在线",
                            "offline": "离线",
                            "totalExperience": "总经验: {{experience}}",
                            "totalLevel": "总等级: {{level}}",
                            "combatLevel": "战斗等级: {{level}}",
                            "age": "年龄: {{age}}",
                            "level": "{{level}} 级",
                            "close": "关闭"
                        },
                        "skill": {
                            "level": "等级: {{level}}",
                            "totalExperience": "总经验: {{totalExperience}}",
                            "expToLevelUp": "升级所需经验: {{remainingExperience}}"
                        },
                        "item": {
                            "all": "全部",
                            "learn": "学习",
                            "levelNotMet": "(等级未达到)",
                            "cannotDuringCombat": "(战斗中无法使用)",
                            "newAbility": "(新技能)",
                            "gainXP": "(+{{count}} XP)",
                            "equip": "装备",
                            "enhance": "强化",
                            "alchemize": "炼金",
                            "openLoot": "打开 {{count}} 个",
                            "openLootWithKeys": "打开 {{count}} 个 (钥匙: {{keyCount}})",
                            "viewMarketplace": "前往市场",
                            "viewCowbellStore": "前往牛铃商店",
                            "linkToChat": "链接到聊天频道",
                            "openItemDictionary": "打开物品词典",
                            "sellFor": "卖出 {{count}} 金币",
                            "confirmSellFor": "确认卖出 {{count}} 金币"
                        },
                        "itemTooltipText": {
                            "amount": "数量: {{amount}}",
                            "sellPrice": "商人价格: {{price}}",
                            "openHotkeyHint": "打开 - [右键点击]",
                            "abilityBookType": "类型: 技能书",
                            "requiresLevel": "需要: {{level}} 级{{skill}}",
                            "abilityExpPerBook": "每本书技能经验: {{exp}} ",
                            "learnHotkeyHint": "学习 - [右键点击]",
                            "equipmentType": "类型: {{type}}",
                            "equipHotkeyHint": "装备 - [右键点击]",
                            "consumableType": "类型: 消耗品",
                            "usableIn": "可用于: ",
                            "cooldownInCombat": "冷却 (战斗中): {{seconds}}s",
                            "hpRestore": "HP恢复: {{amount}}HP",
                            "mpRestore": "MP恢复: {{amount}}MP",
                            "overDuration": "持续 {{duration}}"
                        },
                        "equipmentStatsText": {
                            "weaken": "削弱: 被敌人攻击时,降低敌人{{value}}伤害,持续15秒,最多叠加5次。",
                            "fury": "狂怒: 命中敌人时,增加{{value}}精准度和伤害,持续15秒,最多叠加5次。未命中时失去一半叠加层。",
                            "parry": "格挡: {{value}}几率格挡敌人的攻击,避免伤害并立即自动攻击一次。可格挡针对队友的攻击。",
                            "mayhem": "暴乱: 在自动攻击未命中时,有{{value}}几率自动攻击下一个敌人,可多次连续触发。",
                            "pierce": "穿透: 在自动攻击命中后,有{{value}}几率自动攻击下一个敌人,可多次连续触发。",
                            "curse": "诅咒: 命中敌人时,使其受到的伤害增加{{value}},持续15秒,最多叠加5次。",
                            "ripple": "涟漪: 施放技能时,{{value}}几率减少所有技能冷却时间2秒并恢复10MP。",
                            "bloom": "绽放: 施放技能时,{{value}}几率治疗HP%最低的队友10HP+15%魔法伤害。",
                            "blaze": "炽焰: 施放技能时,{{value}}几率攻击所有敌人30%魔法伤害。"
                        },
                        "itemSelector": {
                            "count": "数量",
                            "remove": "移除",
                            "itemFilterPlaceholder": "物品搜索",
                            "cannotChangeWhileInCombat": "战斗中无法更改",
                            "noItemsAvailable": "没有可用物品"
                        },
                        "consumableSlot": {
                            "requireBiggerPouch": "需更大<br />袋子",
                            "food": "食物",
                            "drink": "饮料"
                        },
                        "itemDictionary": {
                            "gatheredFrom": "采集自:",
                            "producedFrom": "生产自",
                            "producedFromCheesesmithing": "生产自奶酪锻造:",
                            "producedFromCrafting": "生产自制作:",
                            "producedFromTailoring": "生产自缝纫:",
                            "producedFromCooking": "生产自烹饪:",
                            "producedFromBrewing": "生产自冲泡:",
                            "producedFromAlchemy": "生产自炼金:",
                            "producedFromEnhancing": "生产自强化:",
                            "rareDropFrom": "稀有掉落来自:",
                            "droppedByMonsters": "怪物掉落:",
                            "droppedByEliteMonsters": "精英怪物掉落:",
                            "decomposedFrom": "分解自(炼金):",
                            "transmutedFrom": "转化自(炼金):",
                            "decomposesInto": "分解成(炼金):",
                            "transmutesInto": "转化成(炼金):",
                            "enhancingCost": "强化成本:",
                            "usedFor": "用于{{actionTypeName}}:",
                            "lootedFromContainer": "从容器中获得:",
                            "openToLoot": "打开可获得:",
                            "anyMilkingAction": "任何挤奶行动。",
                            "anyForagingAction": "任何采摘行动。",
                            "anyWoodcuttingAction": "任何伐木行动。",
                            "anyCheesesmithingAction": "任何奶酪锻造行动。",
                            "anyCraftingAction": "任何制作行动。",
                            "anyTailoringAction": "任何缝纫行动。",
                            "anyCookingAction": "任何烹饪行动。",
                            "anyBrewingAction": "任何冲泡行动。",
                            "anyAlchemyAction": "任何炼金行动。",
                            "anyEnhancingAction": "任何强化行动。",
                            "anyLowLevelGathering": "任何低级采集行动。",
                            "anyMediumLevelGathering": "任何中级采集行动。",
                            "anyHighLevelGathering": "任何高级采集行动。",
                            "anyLowLevelProduction": "任何低级生产、炼金和强化行动。",
                            "anyMediumLevelProduction": "任何中级生产、炼金和强化行动。",
                            "anyHighLevelProduction": "任何高级生产、炼金和强化行动。",
                            "almostAllMonstersDropCoins": "几乎所有怪物都会掉落金币。",
                            "anyLowLevelMonster": "任何低级怪物在普通战斗中。",
                            "anyMediumLevelMonster": "任何中级怪物在普通战斗中。",
                            "anyHighLevelMonster": "任何高级怪物在普通战斗中。",
                            "recommendedLevel": "推荐等级 {{level}} <Icon />"
                        },
                        "ability": {
                            "level": "等级: {{level}}",
                            "totalExperience": "总经验: {{totalExperience}}",
                            "expToLevelUp": "升级所需经验: {{remainingExperience}}",
                            "linkToChat": "链接到聊天频道",
                            "lv": "Lv.{{level}}",
                            "ability": "技能"
                        },
                        "abilityTooltipText": {
                            "description": "描述: {{description}}",
                            "cooldown": "冷却: {{duration}}",
                            "castTime": "施法时间: {{duration}}",
                            "mpCost": "法力消耗: {{cost}} MP",
                            "effect": "效果: {{effectText}}",
                            "attacks": "攻击",
                            "heals": "治疗",
                            "revivesAndHeals": "复活并治疗",
                            "increases": "增加",
                            "decreases": "减少",
                            "target": "目标",
                            "self": "自己",
                            "enemy": "敌人",
                            "allEnemies": "所有敌人",
                            "allAllies": "所有队友",
                            "lowestHpAlly": "HP最低的队友",
                            "deadAlly": "已阵亡的队友",
                            "possessive": {
                                "target": "目标的",
                                "self": "自己的",
                                "enemy": "敌人的",
                                "allEnemies": "所有敌人的",
                                "allAllies": "所有队友的",
                                "lowestHpAlly": "HP最低的队友的",
                                "deadAlly": "已阵亡的队友的"
                            },
                            "accuracyBonusText": "以{{accuracyBonus}}总精准度,",
                            "baseDamageFlat": "{{baseDamageFlat}}HP",
                            "baseDamageRatio": "{{baseDamageRatio}}",
                            "asDamageType": "{{damageType}}",
                            "takesDamageOverTime": "受持续伤害",
                            "bleeds": "流血",
                            "soaks": "浸湿",
                            "poisons": "中毒",
                            "burns": "燃烧",
                            "dotText": "使目标{{dotVerb}}{{dotDuration}},再造成原攻击100%的伤害。",
                            "armorDamageText": "额外伤害等同于{{armorDamageRatio}}护甲。",
                            "hpDrainText": "吸取{{hpDrainRatio}}的伤害作为HP。",
                            "pierceText": "{{pierceChance}}穿透几率。",
                            "stunText": "{{stunChance}}几率使目标晕眩{{stunDuration}}。",
                            "blindText": "{{blindChance}}几率使目标失明{{blindDuration}}。",
                            "silenceText": "{{silenceChance}}几率使目标沉默{{silenceDuration}}。",
                            "damageHealReviveEffectText": "{{accuracyBonusText}}{{asDamageType}}{{effectType}}{{effectTarget}}{{baseDamageFlat}}{{maybePlus}}{{baseDamageRatio}}{{combatStyle}}伤害。{{dotText}}{{armorDamageText}}{{hpDrainText}}{{pierceText}}{{stunText}}{{blindText}}{{silenceText}}",
                            "spendHpEffectText": "消耗当前HP {{hpCost}}。",
                            "buffEffectText": "{{increaseOrDecrease}}{{targetType}}{{buffName}}{{boostText}},持续{{duration}}。"
                        },
                        "abilitySlot": {
                            "specialAbility": "特殊<br />技能",
                            "ability": "技能",
                            "unlockLevel": "{{level}}智力<br />解锁",
                            "remove": "移除",
                            "cannotChangeInCombat": "战斗中无法更改",
                            "noAbilitiesAvailable": "没有可用技能"
                        },
                        "combatTriggersSetting": {
                            "activateWhen": "使用条件:",
                            "activateOffCooldown": "冷却结束后立即使用",
                            "and": "并且",
                            "combatTriggers": "战斗自动触发",
                            "selectTargetType": "选择目标类型",
                            "selectCondition": "选择条件",
                            "select": "选择",
                            "remove": "移除",
                            "addCondition": "加条件",
                            "resetDefault": "重置为默认",
                            "save": "保存",
                            "setting": "设置",
                            "triggerText": "{{dependency}}{{condition}} {{comparator}} {{value}}",
                            "cannotChangeInCombat": "战斗中无法更改"
                        },
                        "buffText": {
                            "duration": "持续时间",
                            "detail": "详情"
                        },
                        "buffsTooltip": {
                            "bonuses": "加成"
                        },
                        "mooPass": {
                            "mooPass": "哞卡",
                            "durationLabel": "持续时间: ",
                            "mooPassExpBuff": "+{{expBuff}} 经验增益 (限于标准角色)",
                            "mooPassOfflineHourLimit": "+{{count}} 小时离线进度上限",
                            "mooPassMarketListingLimit": "+{{count}} 市场挂牌上限",
                            "mooPassActionQueueLimit": "+{{count}} 行动队列上限",
                            "mooPassTaskSlotLimit": "+{{count}} 任务槽位上限",
                            "mooPassFreeTaskRerolls": "+{{count}} 次免费任务重置 (每个任务)",
                            "mooPassLootTracker": "最后 {{count}} 个行动的掉落记录",
                            "mooPassAvatarBorder": "金色角色边框"
                        },
                        "communityBuff": {
                            "durationLabel": "持续时间: ",
                            "durationDefault": "持续时间: 1分钟",
                            "minutesToNextLevel": "下一级所需分钟数: {{minutes}}",
                            "level": "等级: {{level}}",
                            "max": " (最大)",
                            "usableIn": "可用于: ",
                            "contributor": "{{name}}: {{minutes}} 分钟",
                            "moreContributors": "(+{{count}} 更多贡献者)"
                        },
                        "systemChatMessage": {
                            "communityBuffAdded": "{{name}} 添加了{{minutes}}分钟的社区增益: $t(communityBuffTypeNames.{{buffHrid}})!",
                            "characterLeveledUp": "{{name}} 达到{{level}}$t(skillNames.{{skillHrid}})!",
                            "guildLeveledUp": "公会达到{{level}}级!",
                            "guildNoticeUpdated": "{{name}} 更新了公会公告信息。",
                            "guildMemberPromoted": "{{name}} 被 {{actor}} 提升为$t(guildCharacterRoleNames.{{role}})。",
                            "guildMemberDemoted": "{{name}} 被 {{actor}} 降级为$t(guildCharacterRoleNames.{{role}})。",
                            "guildMemberJoined": "{{name}} 加入了公会!",
                            "guildMemberLeft": "{{name}} 离开了公会。",
                            "guildMemberKicked": "{{name}} 被 {{actor}} 踢出公会。",
                            "partyMemberJoined": "{{name}} 加入了队伍。",
                            "partyMemberLeft": "{{name}} 离开了队伍。",
                            "partyMemberKicked": "{{name}} 被踢出队伍。",
                            "partyMemberReady": "{{name}} 已准备好。",
                            "partyMemberNotReady": "{{name}} 未准备好。",
                            "partyBattleStarted": "战斗开始: $t(actionNames.{{actionHrid}})",
                            "partyBattleEnded": "战斗结束: $t(actionNames.{{actionHrid}})",
                            "partyKeyCount": "钥匙数量: {{keyCountString}}",
                            "partyWaveFailed": "队伍在第{{wave}}波失败。"
                        },
                        "infoNotification": {
                            "addedFriend": "已添加好友: {{0}}",
                            "removedFriend": "已删除好友: {{0}}",
                            "blockedCharacter": "已屏蔽角色: {{0}}\n在[社交]->[黑名单]可查看",
                            "unblockedCharacter": "已取消屏蔽角色: {{0}}",
                            "chatReportSubmitted": "已提交聊天举报",
                            "loadoutCreated": "已创建配装",
                            "loadoutUpdated": "已更新配装",
                            "setupImportedToLoadout": "已导入当前设置到配装",
                            "loadoutEquipped": "已装备配装",
                            "loadoutDeleted": "已删除配装",
                            "boughtItem": "购买了 {{0}} {{1}}",
                            "soldItem": "出售了 {{0}} {{1}}",
                            "buyOrderCompleted": "购买了 {{0}} 个{{1}}{{2}}\n花费 {{3}} 金币",
                            "sellOrderCompleted": "出售了 {{0}} 个{{1}}{{2}}\n获得 {{3}} 金币",
                            "buyListingProgress": "购买挂牌: {{0}}{{1}}\n进度: {{2}}/{{3}}",
                            "sellListingProgress": "出售挂牌: {{0}}{{1}}\n进度: {{2}}/{{3}}",
                            "houseConstructed": "{{0}}级{{1}}已建成",
                            "steamCheckoutRequested": "已请求STEAM结账。请稍候...",
                            "upgradePurchased": "已购买升级: {{0}} (x{{1}})",
                            "chatIconUnlocked": "解锁聊天图标: {{0}}",
                            "nameColorUnlocked": "解锁名称颜色: {{0}}",
                            "avatarUnlocked": "解锁新角色形象",
                            "avatarOutfitUnlocked": "解锁新角色服装",
                            "communityBuffAdded": "添加了 {{0}} 分钟的社区增益: {{1}}",
                            "nameChanged": "名称已更改: {{0}}",
                            "guildCreated": "创建了公会: {{0}}",
                            "guildDisbanded": "解散了公会: {{0}}",
                            "guildLeft": "离开了公会: {{0}}",
                            "guildNoticeUpdated": "{{0}} 更新了公会公告信息。",
                            "guildPromotedTo": "你被提升为公会{{0}}",
                            "guildDemotedTo": "你被降级为公会{{0}}",
                            "guildLeadershipPassed": "将会长权移交给 {{0}}",
                            "guildMemberPromoted": "将 {{0}} 提升为{{1}}",
                            "guildMemberDemoted": "将 {{0}} 降级为{{1}}",
                            "guildKicked": "被踢出公会: {{0}}",
                            "kickedGuildMember": "已踢出 {{0}}",
                            "guildInvited": "邀请加入公会: {{0}}",
                            "guildInviteSent": "发送了公会邀请: {{0}}",
                            "guildInviteCanceled": "已取消公会邀请: {{0}}",
                            "guildJoined": "加入了公会: {{0}}",
                            "guildInviteDeclined": "拒绝了公会邀请: {{0}}",
                            "partyCreated": "已创建队伍",
                            "characterLeveledUp": "你已达到 {{0}} {{1}}!",
                            "partyOptionsSaved": "队伍选项已保存",
                            "partyOpenForRecruiting": "队伍正在招募",
                            "partyLeadershipChanged": "队长权转移给 {{0}}",
                            "partyJoined": "你已加入队伍",
                            "readyToBattle": "你已准备好战斗",
                            "notReadyToBattle": "你未准备好战斗",
                            "partyDisbanded": "队伍已解散",
                            "partyLeft": "你已离开队伍",
                            "partyKicked": "你被踢出队伍",
                            "partyMemberKicked": "已从队伍踢出 {{0}}",
                            "referralJoined": "有新玩家通过你的推荐链接加入了游戏。感谢你的分享!",
                            "newReferralBonus": "新推荐奖励已发放\n在[社交]->[推荐]领取",
                            "cowbellPurchaseCompleted": "已购买 {{0}} 牛铃",
                            "mooPassPurchaseCompleted": "已购买 {{0}} 天哞卡",
                            "mooPassGranted": "已获得: {{0}} 天哞卡",
                            "updateSuccessful": "更新成功"
                        },
                        "errorNotification": {
                            "unexpectedError": "发生意外错误",
                            "characterBlockError": "由于角色屏蔽而失败",
                            "characterNameNotFound": "找不到角色名称",
                            "cannotFriendSelf": "无法添加自己为好友",
                            "friendAlreadyExists": "好友已存在",
                            "friendLimitReached": "好友上限已达到",
                            "characterWasNotFriend": "角色不是好友",
                            "cannotBlockSelf": "无法屏蔽自己",
                            "characterAlreadyBlocked": "角色已被屏蔽",
                            "blockLimitReached": "屏蔽上限已达到",
                            "characterWasNotBlocked": "角色未被屏蔽",
                            "requestSpamProtection": "请勿过快发送游戏指令",
                            "nonPublicModMessage": "无法向非公共频道发送管理员消息",
                            "nonPublicWarningMessage": "无法向非公共频道发送警告消息",
                            "chatSpamProtection": "请勿重复消息或过快发送消息",
                            "waitBetweenTradeMessages": "请等待5分钟后再发送交易消息",
                            "waitBetweenRecruitMessages": "请等待5分钟后再发送招募消息",
                            "chatReportAlreadyExists": "你已举报此聊天消息",
                            "chatReportAlreadyResolved": "此消息的举报已被处理",
                            "stopPartyBattleBeforeSolo": "你必须停止团队战斗后才能开始单人行动",
                            "cannotEquipLoadoutForAction": "无法装备此行动的配装",
                            "cannotEquipLoadoutInCombat": "无法在战斗中装备配装",
                            "orderNotFulfilled": "订单无法完成",
                            "steamCheckoutError": "Steam 结账错误",
                            "stripeCheckoutError": "Stripe 结账错误",
                            "characterNameUnavailable": "角色名称不可用",
                            "guildNameUnavailable": "公会名称不可用",
                            "characterAlreadyInGuild": "角色已有公会",
                            "characterAlreadyInvited": "角色已被邀请",
                            "alreadyInParty": "你已经在队伍中",
                            "characterNotInParty": "角色不在队伍中",
                            "partyNoLongerRecruiting": "此队伍不再招募",
                            "partyGameModeMismatch": "此队伍与你的游戏模式不匹配",
                            "partySlotUnavailable": "队伍槽位已不可用",
                            "currentPasswordIncorrect": "当前密码不正确",
                            "emailAlreadyRegistered": "此电子邮件地址已在另一个账户上注册"
                        },
                        "guideTooltip": {
                            "milkingTitle": "挤奶",
                            "milkingContent": "这些神奇奶牛的牛奶有多种功能。它们可以用来制作消耗品,或者做成特殊奶酪以制作装备。\n奶牛喜欢被刷毛。装备刷子会提升你的挤奶效率。",
                            "foragingTitle": "采摘",
                            "foragingContent": "在各个地区采摘时,你可以找到许多不同的资源。这些资源可以用于烹饪和冲泡消耗品。\n装备剪刀会提升你的采摘效率。",
                            "woodcuttingTitle": "伐木",
                            "woodcuttingContent": "你可以从不同类型的树木中获取木材。木材用于制作各种装备。\n装备斧头会提升你的伐木效率。",
                            "cheesesmithingTitle": "奶酪锻造",
                            "cheesesmithingContent": "用牛奶制作的硬质奶酪坚硬如金属。你可以将它们锻造成装备,为你的战斗或技艺训练提供加成。\n装备可以从一级升级到下一级,通常需要越来越多的奶酪。还有一些特殊的装备可以用战斗中从怪物身上获得的物品来制作。\n装备锤子会提升你的奶酪锻造效率。",
                            "craftingTitle": "制作",
                            "craftingContent": "你可以制作武器、副手装备和珠宝。\n装备凿子会提升你的制作效率。",
                            "tailoringTitle": "缝纫",
                            "tailoringContent": "你可以使用从战斗和采摘中获得的原材料来制作远程和魔法服装。\n装备针会提升你的缝纫效率。",
                            "cookingTitle": "烹饪",
                            "cookingContent": "食物可以用来恢复你的HP或MP。它们可以随身携带在战斗中使用。\n装备锅铲会提升你的烹饪效率。",
                            "brewingTitle": "冲泡",
                            "brewingContent": "饮品可以给你提供临时增益效果。咖啡可以在战斗中携带,茶可以在训练技艺时使用。\n装备壶会提升你的冲泡效率。",
                            "alchemyTitle": "炼金",
                            "alchemyContent": "炼金让你将物品转换为其他物品。每种炼金都有不同的成功率,无论成功或失败,输入的物品都会被消耗。\n点金: 将物品转换为金币。分解: 将物品转换为原材料或精华。转化: 将物品转换为随机相关物品,在某些情况下能获得的特殊物品。\n每次转化都有一个基本成功率。如果你的炼金等级低于物品等级,成功率会降低。催化剂和茶可以用来提高成功率。\n装备蒸馏器会提升你的炼金效率。",
                            "enhancingTitle": "强化",
                            "enhancingContent": "强化可以永久提升你的装备,随着强化等级的提高,装备将获得更高的加成。\n每次尝试强化都需要消耗少量材料。成功率取决于你的强化等级、装备物品的等级和该物品当前的强化等级。成功的强化将使等级增加1,失败会将等级重置为0。\n你可以选择使用基础装备的副本进行保护。失败时使用保护只会将强化等级降低1,但会消耗1个保护道具。\n装备强化器会提升你的强化成功率。",
                            "combatTitle": "战斗",
                            "combatContent": "击败怪物可获得经验和物品掉落。\n你的战斗属性基于你的战斗等级和装备加成的组合。\n你可以带食物来恢复HP或MP,饮品可以提供增益效果,还可以施放各种技能。\n你可以通过下方的设置图标来更改自动化配置。\n如果你在战斗中被击败,你的角色将在重生倒计时结束后自动继续战斗。",
                            "marketplaceTitle": "市场",
                            "marketplaceContent": "市场允许玩家为任何可交易物品创建买卖挂牌。你可以点击任何列出的物品查看现有挂牌或创建自己的挂牌。\n新挂牌将尽可能由市场上最匹配的价格来满足。如果无法立即满足,该挂牌将出现在市场上。\n交易成功时,将收取2%的金币税,收到的物品可以从[我的挂牌]标签中收集。出售价: 已存在的出售挂牌。收购价: 已存在的购买挂牌。",
                            "combatStatsTitle": "战斗属性",
                            "combatStatsContent": "攻击间隔: 自动攻击的速度。\n技能急速: 减少技能冷却时间。\n精准度: 增加成功攻击的几率。\n伤害: 自动攻击伤害在1和最大伤害之间随机。\n暴击: 总是造成最大伤害。远程类型有被动暴击几率。\n任务伤害: 对被指定为任务的怪物增加伤害。\n增幅: 增加该类型的伤害。\n闪避: 增加躲避攻击的几率。\n护甲: 减少一定比例的物理伤害。\n抗性: 减少一定比例的元素伤害。\n穿透: 忽略一定比例的护甲/抗性。\n生命偷取: 自动攻击时恢复一定比例的HP。\n法力吸取: 自动攻击时吸取一定比例的MP。\n荆棘: 被攻击时,将一定比例的防御伤害反射给攻击者。每个护甲或抗性增加1%伤害。\n反伤: 被攻击时,将(防御伤害+被攻击伤害)的一定比例以钝击形式反伤攻击者。\n韧性: 减少失明、沉默或眩晕的几率。\n威胁: 增加被怪物攻击的几率。\n恢复: 每10秒恢复一定比例的最大HP/MP。\n食物急速: 减少食物冷却时间。\n饮料浓度: 增加饮料效果。减少持续时间和冷却时间。",
                            "noncombatStatsTitle": "非战斗属性",
                            "noncombatStatsContent": "速度: 增加行动速度\n任务速度: 增加任务中的行动速度。\n采集数量: 增加采集数量\n效率: 立即重复行动的几率\n专业精华发现: 增加发现精华的几率\n专业稀有发现: 增加稀有物品掉落率。",
                            "abilitiesTitle": "技能",
                            "abilitiesContent": "技能可以从技能书中学习。技能书可以从怪物身上获得,或者在市场上从其他玩家那里购买。\n技能可以放置在槽位中用于战斗。随着智力等级的提升,你将解锁更多的槽位。\n随着经验的获得,技能也会升级。每次在战斗中使用技能时可以获得0.1点经验,从消耗重复的技能书中可以获得更多经验。",
                            "houseTitle": "房屋",
                            "houseContent": "你的房屋可以建造房间,为你提供永久加成。\n每个房间可以升级到最高8级,但升级成本逐渐增加。",
                            "loadoutsTitle": "配装",
                            "loadoutsContent": "配装允许你保存当前的装备、消耗品和技能,以便稍后与行动一起自动加载。配装可以绑定到单个专业或\"所有专业\"。选择\"所有专业\"将只保存装备。\n将配装设置为默认时,在选择与配装关联的专业中的任何行动时会自动选择该配装。",
                            "enhancingProtectionTitle": "强化保护",
                            "enhancingProtectionContent": "强化失败时消耗一个保护道具以确保只损失1级强化,而不是重置为0级。",
                            "alchemyCatalystTitle": "炼金催化剂",
                            "alchemyCatalystContent": "催化剂增加成功率。仅在成功时消耗一个催化剂。"
                        },
                        "newsPanel": {
                            "news": "新闻"
                        },
                        "newsText": {
                            "1755558000000": {
                                "heading": "大型更新 - 战斗重做、护符和精炼装备",
                                "content": "<div>\n\t\t\t\t\t本次更新对战斗系统进行了重大改革,同时引入了新的功能,包括护符、精炼的地牢装备,以及扩展的战斗难度层级。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t在长期的游戏过程中,我们发现三种战斗风格(近战、远程和魔法)之间存在平衡性问题。这些问题使得在不同战斗风格和不同进度阶段之间维持经验与收益平衡变得非常困难。其中最严重的问题包括:\n\t\t\t\t\t<br />\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>专业需求:近战玩家需要额外的攻击专业,导致经验分配和增益道具的使用出现不平衡。</li>\n\t\t\t\t\t\t<li>魔法技能增长:因为魔法输出全靠技能,魔法伤害技能每级的DPS提升大约是其他风格的两倍,使得在所有进度阶段中很难公平地平衡输出。</li>\n\t\t\t\t\t\t<li>经验不平衡:经验公式在无意中偏向某些策略,即使DPS相同。</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t<br />\n\t\t\t\t\t本次重做解决了这些不平衡,并为战斗的长期平衡奠定了基础。主要改动包括:\n\t\t\t\t\t<br />\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>所有战斗风格现在都需要依靠攻击专业来提升精准度。玩家将立即根据其远程和魔法经验的15%和12%获得攻击经验,以使其具备可行性。攻击经验比率基于排行榜数据,以允许总经验赶上近战。</li>\n\t\t\t\t\t\t<li>魔法技能的每级伤害增长比例降低至每级0.5%。</li>\n\t\t\t\t\t\t<li>为远程和魔法装备添加了额外的奖励,以保持与之前相似的伤害输出。</li>\n\t\t\t\t\t\t<li>重盾重做并显著提高了伤害,以更接近其他战斗风格的输出。</li>\n\t\t\t\t\t\t<li>光环系统重做,新增基于专业等级的增长机制,并通过技能书提供一次性经验退款。</li>\n\t\t\t\t\t\t<li>新的战斗经验系统与击败的怪物相关联,护符允许你将训练经验分配到特定专业上。</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t<br />\n\t\t\t\t\t随着战斗重做,我们还引入了额外的战斗难度等级。战斗区域难度现在从T0到T5,并且新的护符可以在更高难度的区域中找到。T1和T2地牢也已添加,可以获得精炼碎片以精炼你的T95和背部装备。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t访问更新日志以获取更多详细信息。\n\t\t\t \t</div>"
                            },
                            "1747609200000": {
                                "heading": "中型更新 - 哞卡和其他新闻",
                                "content": "<div>\n\t\t\t\t\t哞卡上线啦!这是一项可选的会员系统,能带来一系列实用但并非必要的福利!\n\t\t\t\t\t所有角色都可以免费领取14天哞卡,此外所有现有角色还额外获赠了14天使用时间。\n\t\t\t\t\t想了解更多详情,可以查看更新日志或直接前往牛铃商店看看。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t加入新的付费内容,我们能理解大家会关心游戏未来的方向,尤其是是否会影响公平性。\n\t\t\t\t\t我们想再次明确: 我们没有任何引入强制氪金的打算。\n\t\t\t\t\t哞卡的设计经过了大量玩家反馈的参考,目标是让它对付费玩家和免费玩家都实惠又友好。\n\t\t\t\t\t它不设任何内容限制,不会影响核心玩法体验,确保所有玩家都能公平游戏。\n\t\t\t\t\t同时,哞卡为游戏引入了持续价值,让牛铃的需求不再只依赖一次性购买的便利功能或外观道具,\n\t\t\t\t\t从而有助于 Milky Way Idle 的长期稳定发展。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t另外,随着玩家人数不断上升,我们的管理团队也面临了更大的挑战。\n\t\t\t\t\t目前的管理系统主要依赖志愿管理员在场时主动阅读聊天内容。\n\t\t\t\t\t但我们也收到了一些反馈,有人觉得管理过于严格,也有人指出管理员不在线时有不当言论被漏看。\n\t\t\t\t\t为此,我们正在开发一个更依赖玩家举报的新系统,\n\t\t\t\t\t让大家能更主动参与管理聊天环境。\n\t\t\t\t\t比如,在管理员不在线时,若一条消息被足够多玩家举报,就会自动触发处理机制。\n\t\t\t\t\t这也能减轻管理员的负担,让他们专注处理那些已经被社区标记出来的内容。\n\t\t\t\t\t这个系统预计会在接下来一到两周内上线。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t最后再次提醒大家,请遵守单账号规则和禁止通过小号或财富转移获取不正当利益的规定。\n\t\t\t\t\t现在有很多新玩家加入,可能还不了解我们对于小号牟利或从金商手中购买金币的态度。\n\t\t\t\t\t我们会定期进行封号处理。比如在过去几周内,\n\t\t\t\t\t我们对550多个主账号和数千个小号进行了暂时或永久封禁。\n\t\t\t\t\t被暂时封禁的账号也被移除了2到3倍的不正当金币,总计超过120B金币。\n\t\t\t\t\t作弊风险极高,根本不值得冒险。我们也会持续升级检测系统,保障公平的游戏环境。\n\t\t\t\t</div>"
                            },
                            "1744930800000": {
                                "heading": "大型更新 - 海盗基地地牢、第四个角色槽位和定制装饰品政策更新",
                                "content": "<div>\n\t\t\t\t\t海盗基地地牢现已开放探索!这个新地牢有各种新的T95武器和防具,以及新的技能。我们还对现有物品和技能进行了一些调整,以改善游戏平衡性。查看完整的更新日志以获取所有细节!\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t另外,我们为玩家添加了一个新的第四个角色槽位,允许每个人最多拥有1个标准角色和3个铁牛角色。\n\t\t\t\t\t<br />\n\t\t\t\t\t<br />\n\t\t\t\t\t我们还更新了我们的定制装饰品政策和定价。虽然这个功能最初是作为一份小礼物,用来表达我们对支持者的感谢,但随着玩家数量的大幅增加,这项工作已经变得难以承受。过去一个月我们花了大约150到200小时处理了约100个请求,我们需要腾出更多时间用于其他开发任务。从5月1日起,申请自定义外观将需要消耗支持者积分和牛铃。所有在4月底前提交的请求,仍将按照之前的支持者积分要求进行处理。\n\t\t\t\t</div>"
                            },
                            "1734825600000": {
                                "heading": "技艺拓展第二部分 - 星空工具和技艺服装",
                                "content": "<div>\n\t\t\t\t\t我们很高兴地推出技艺拓展的第二部分-星空工具与技艺服装!在使用神圣工具这么长的时间以来,专精的玩家们终于又能获得进一步的装备升级了!这些新物品并不容易获得,但对于足够勤奋(或富有)的玩家来说,成功获取它们将带来显著的提升。投身其中,将你的技艺推向新一波的高峰吧!\n\t\t\t\t</div>"
                            }
                        },
                        "patchNotesPanel": {
                            "patchNotes": "更新日志"
                        },
                        "patchNotesText": {
                            "1755644400000": {
                                "heading": "快速修复",
                                "content": "<div>\n\t\t\t\t\t错误修复:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t修复了在特定情况下战斗中战斗等级计算错误的问题,有时导致队伍成员受到错误的减益效果。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t改正了魔术师帽(精)的等级要求,为110级。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t平衡调整:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t降低了秘法主教的防御伤害,因为反击伤害仍然过高。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t精炼装备的增益由 5% 提升至 8%(背部装备为 16%),让其对更多玩家更具性价比。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                            },
                            "1755558000000": {
                                "heading": "大型更新 - 战斗重做、护符和精炼装备",
                                "content": "<div>\n\t\t\t\t\t战斗重做\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t所有战斗风格现在都需要依靠攻击专业来提升精准度。\n\t\t\t\t\t\t\t玩家将立即获得相当于其现有远程经验的15%和魔法经验的12%的攻击经验。\n\t\t\t\t\t\t\t此调整基于排行榜数据,以确保三种战斗风格之间的总经验可比。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t远程专业的魔法闪避加成和魔法专业的抗性加成已被移至防御专业。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t力量更名为近战。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t君王之剑现在可以为队友格挡伤害。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t疫病射击已被重新设计为削弱护甲/抗性,而不是HP/MP恢复。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t远程装备已添加暴击率和其他增益,以弥补精准度损失。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t魔法伤害技能现在每个技能等级的成长为0.5%,而不是1%。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t涟漪三叉戟现在在涟漪激活时恢复10MP。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t技能伤害和其他增益已被添加到魔法装备中,以弥补精准度损失和技能成长降低。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t重盾:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t重盾已被重新设计并添加了一个新的属性,防御伤害,显著提高其输出伤害。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t尖刺外壳已被重新设计为同时包含物理和元素荆棘,基于防御伤害和护甲/抗性的双重属性进行加成。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t奥术反射已被转换为惩戒,赋予反伤增益,将一定比例的即将到来的伤害反射为钝击攻击。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t盾击的护甲加成已从60%提高到70%。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t光环:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t水和火光环已转换为元素光环,为所有元素提供增幅加成\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t自然光环已转换为守护光环,赋予治疗增幅、闪避、护甲和抗性。守护光环暂时可通过商店换成元素光环。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t基础光环属性已被调整。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t每个光环现在还会根据施法者的对应技能进行额外加成:\n\t\t\t\t\t\t\t\t\t速度光环 → 攻击,守护光环 → 防御,物理光环 → 近战,暴击光环 → 远程,元素光环 → 魔法。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t蓝技能经验将以每500点经验1本书的比例转换为书籍。\n\t\t\t\t\t\t\t\t\t任何低于500的剩余经验将保留在该技能上。\n\t\t\t\t\t\t\t\t\t这是一项一次性的转换。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t现在根据击败的怪物固定给予战斗经验值,战斗持续时间越长,生存经验奖励越高。\n\t\t\t\t\t\t\t30%的经验值会分配给由你的武器决定的主要训练专业。\n\t\t\t\t\t\t\t剩余的70%经验可以通过新的护符装备来选择分配。\n\t\t\t\t\t\t\t该系统允许玩家优化他们在专业上的经验分配。\n\t\t\t\t\t\t\t经验值比率经过平衡,玩家可以在主要专业上获得更多经验,但总体上可能获得的总经验值会减少。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t怪物不再具有基础HP/MP恢复。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t怪物现在每过3分钟会获得暴走增益,增加10%的精准度和伤害(最多叠加10次)。\n\t\t\t\t\t\t\tBOSS的暴走计时为10分钟,而非3分钟。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t部分怪物属性已调整以适应上述改动。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t战斗等级公式已更新。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t组队战斗的经验现在会在所有队员间平均分配,与造成伤害多少无关。  \n\t\t\t\t\t\t\t若队员的战斗等级比队伍最高者低至少 20%,将会获得经验与掉落惩罚,每超过1%的等级差额外增加3%惩罚。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t所有战斗风格的伤害和经验获取速率已进行平衡。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t功能和内容:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t战斗区域现在具有可选的难度等级,从T0到T5。\n\t\t\t\t\t\t\tT0对应于之前的普通区域,而T2略高于之前的精英区域。\n\t\t\t\t\t\t\t更高的难度提供额外的经验、增加掉落和一些独特的掉落。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t护符:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t护符是一种新装备,可以装备在护符槽中,为特定专业提供额外经验。\n\t\t\t\t\t\t\t\t\t它们还可以用于在战斗中将经验集中到该专业上。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t实习护符可以在商店以250K购买。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t更高等级的非战斗护符可以使用专业精华制作。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t更高等级的战斗护符可以从更高等级的战斗区域获得掉落。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t护符可以使用制作专业合并为更高等级。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t护符可以被强化,并像其他首饰一样提供5倍的正常强化奖励。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t地下城现在具有更高的难度等级,最高可达T2。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t精炼:\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\tT1和T2地下城掉落精炼宝箱,使用相同的宝箱钥匙打开以获得精炼碎片。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t精炼碎片可用于升级来自各自地下城的95级装备和背部装备。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t精炼装备提供+5%的额外属性(背部装备为+10%)并增加武器特殊效果。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t精炼现有物品将转移100%的强化等级。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t对+11及以上的强化比例进行了适度提高。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t已添加支持者聊天图标(不同等级的牛铃)到牛铃商店。\n\t\t\t\t\t\t\t它们可以用支持者积分购买,并将显示为特殊的第二个图标。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t基础配装槽数量从2增加到3。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t其他:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t官方市场数据现在每小时更新,而不是每6小时更新。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                            },
                            "1749250800000": {
                                "heading": "中型更新 - 聊天举报系统和体验优化",
                                "content": "<div>\n\t\t\t\t\t功能和内容:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t聊天举报系统: 玩家现在可以举报聊天中的违规消息。\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t举报将发送给管理员进行审核,并可能采取相应处理措施。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t如果消息收到足够数量的举报,系统可能会自动进行处理。经人工复核后,相关处罚可能会被调整。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t发送正确的举报将增加你未来举报的权重,而错误的举报将显著降低权重。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t现在可以在设置中删除角色。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t添加了特殊图标(贡献者、BUG发现者等),可以授予对游戏有较大贡献的玩家。它们将显示为第二个图标。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t体验优化:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t现在可以重新排序行动队列。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t现在可以在聊天中链接市场挂牌。这应该改善不同语言的交易频道体验。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\t其他:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t添加了官方市场数据,可以在 <a href=\"https://www.milkywayidle.com/game_data/marketplace.json\" target=\"_blank\">https://www.milkywayidle.com/game_data/marketplace.json</a> 访问。\n\t\t\t\t\t\t\t此数据每6小时更新一次(有一定的随机性和延迟以防止操纵),包含每个物品当时的最高出价和最低要价。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t从聊天中移除了 @mod 命令,因为它不再需要。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t服务器优化以改善后端性能,帮助支持更多玩家。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</div>"
                            },
                            "1747609200000": {
                                "heading": "中型更新 - 哞卡和其他改进",
                                "content": "<div>\n\t\t\t\t\t功能和内容:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t哞卡: 可选的会员资格,提供许多有用但非必要的特权。\n\t\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t可以在牛铃商店使用牛铃或现实货币购买。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t所有角色可以免费领取14天的哞卡。所有现有角色额外获得14天。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+5% 经验增益。仅限标准角色,以允许铁牛角色不受付费内容的显著影响。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+10 小时离线进度限制\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+6 市场挂牌限制\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+1 行动队列限制\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+8 任务槽限制\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t+1 免费任务重置(每个任务)\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t掉落记录: 过去20次活动的掉落记录。你可以在菜单中的牛铃商店下方找到。\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t\t金色角色边框\n\t\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t</ol>\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t\tSteam:\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t更新了Steam客户端,并将本地保存数据移动到更稳定的文件位置。\n\t\t\t\t\t\t\t更新后第一次打开游戏可能需要重新登录和设置插件。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n                    体验优化:\n                    <ol>\n                        <li>\n                            市场单笔挂单最高价格从10B提升至100B。\n                        </li>\n                        <li>\n                            市场缩写格式的价格单位 (K,M,B,T) 现在会按单位显示不同颜色,降低看错的风险。\n                        </li>\n                        <li>\n                            新增 /r 聊天指令用于快速回复最后一条私聊。\n                        </li>\n                        <li>\n                           对重复刷屏的聊天消息(单人或多人)启用更严格的保护措施。\n                        </li>\n                    </ol>\n                    漏洞修复:\n                    <ol>\n                        <li>\n                            修复强化精华掉落率比显示值低33%的问题(此前仅更新了客户端但遗漏后端)。\n                        </li>\n                        <li>\n                            修复重新进入游戏时未读私聊计数不显示的问题。\n                        </li>\n                        <li>\n                            修复奶酪锻造类胸甲的自动攻击伤害加成数值,现与腿甲一致(特殊装备不受影响)。\n                        </li>\n                        <li>\n                            修正中文队伍聊天链接的翻译错误。\n                        </li>\n                        <li>\n                            移动端排行榜标签现支持换行显示,避免 Steam 排行榜导致界面溢出。\n                        </li>\n                    </ol>\n                    其他:\n                    <ol>\n                        <li>\n                            移除限时周年小紫牛及原版杰瑞聊天图标。\n                        </li>\n                        <li>\n                            地下城商店中移除棕色/白色钥匙碎片兑换 (原本就是临时功能)。\n                        </li>\n                        <li>\n                            市场税率现在改为向上取整 (原为向下取整),以减少低价物品的垄断交易。\n                        </li>\n                    </ol>\n\t\t\t\t</div>"
                            },
                            "1744930800000": {
                                "heading": "重要更新 - 海盗基地地牢和更多内容",
                                "content": "<div>\n\t\t\t\t功能和内容:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t海盗基地:\n\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t新T95魔法武器: 涟漪三叉戟、绽放三叉戟、炽焰三叉戟。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t新T95护甲: 锚定胸甲/腿甲、怒涛胸甲/腿甲、克拉肯皮衣/皮裤、掠夺者头盔、神射护腕。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t新技能: 盾击(也添加到奇幻洞穴)、碎裂冲击、生命吸取。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t新炼金配方。所有地牢技能书转化的成功率已统一为50%。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ol>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t狂怒长枪: 新增T95长枪,添加到秘法堡垒。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t使用生产技能升级装备时,现在将保留70%的强化等级。一些T95装备配方已调整为从较低级别的变体升级。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t新增第四个角色槽位。你最多只能拥有3个铁牛角色。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t新增STEAM排行榜,适用于在STEAM发布后创建的角色,并与STEAM关联。仅在符合条件的角色上可见。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t公会成员槽位从25+level/4增加到30+level/3。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t装饰品:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t节日限定(发布两年纪念日): 周年小紫牛,原版杰瑞聊天图标。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t根据小部分地牢BOSS添加了新的聊天图标。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t添加了2个海盗基地主题头像和服装。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t定制装饰品的要求更改为需要花费支持者积分和牛铃。\n\t\t\t\t\t\t由于玩家人数的巨大增加,我们无法继续支持定制装饰品作为礼物。\n\t\t\t\t\t\t新的定价将于5月1日生效。4月底之前发起的任何请求将根据之前的支持者积分要求进行处理。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t平衡:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t调整了奇幻宝箱钥匙和秘法宝箱钥匙的配方,使其棕色和白色钥匙碎片互换。\n\t\t\t\t\t\t这防止了秘法堡垒和海盗基地共享3/4的钥匙碎片。\n\t\t\t\t\t\t你可以在地牢商店临时自由交换棕色和白色钥匙碎片,直到下一个游戏更新。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t所有近战护甲增加了自动攻击伤害,以使近战伤害更接近其他类型。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t增加了重盾的准确性和伤害\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t在巨像胸甲/腿甲上添加了近战准确性\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t致残斩: 重新设计为对所有敌人造成伤害。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t血刃斩: 伤害持续时间从15秒减少到9秒。受到的伤害减益从0%增加到8%。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t冰霜爆裂: 闪避减益从15%降低到10%。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t火焰风暴: 伤害持续时间从10秒减少到6秒。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t烟爆灭影: 准确性减益从20%降低到15%。闪避减益从0%增加到15%。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t魔像洞穴: 怪物防御等级降低10-20。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t暮光之地: 怪物火系性降低20。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tUI:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t添加了一个新设置来隐藏英语聊天系统消息。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t队伍链接不可发在英语、交易和新手聊天中。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t对一些不适合误点击的按钮添加了双重确认。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t在公会和好友列表中添加了不活跃天数计数。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t更改了炼金和强化的\"开始\"按钮文本,使其更明显地显示所执行的行动。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tBUG修复:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t当你在物品上有3个未完成的挂牌时,不要阻止创建即时市场订单。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复可能导致少数玩家的在服务器重启后停止行动的问题。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复了可能导致服务器崩溃的罕见错误。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t其他:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t屏蔽角色将阻止加入队伍(基于队长)和公会邀请。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t服务器和客户端优化,以加快服务器重启、任务生成、滚动性能等速度。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t添加了一个功能,允许ADMIN发布公告栏以传达重要消息。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t翻译改进。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                            },
                            "1741906800000": {
                                "heading": "小型更新 - 反欺诈措施和BUG修复",
                                "content": "<div>\n\t\t\t\t反欺诈:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t由于有几次盗用信用卡购买牛铃的发生,添加了反欺诈措施,玩家首次购买牛铃可能会触发72小时的限制,禁止在市场上出售牛铃袋。购买前会收到通知。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\tBUG修复:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复了在极少数情况下,玩家可能会卡在不存在的队伍战斗行动中的问题。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复了一些物品名称和相应操作之间的翻译不一致问题。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t其他:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t后台更改以提高数据库连接稳定性。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                            },
                            "1740913200000": {
                                "heading": "重要更新 - 中国翻译和为STEAM发布的最后准备",
                                "content": "<div>\n\t\t\t\tUI:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t添加了中文翻译。\n\t\t\t\t\t\t<ol>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t语言将根据你的浏览器语言自动选择。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t玩家也可以在[设置]->[游戏]或主页上手动更改显示语言。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t一些项目尚未翻译,包括大部分新闻和更新日志,使用条款和隐私政策。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t\t如果你发现任何翻译问题或显示文本错误,请在Discord的#bug-reports频道中报告。\n\t\t\t\t\t\t\t</li>\n\t\t\t\t\t\t</ol>\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t已更新弹窗,使其在游戏屏幕上居中显示。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t其他:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t从牛铃商店移除了春节节日限定装饰物品。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t对STEAM集成进行了更多的调整。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t隐私政策已更新,包括使用分析和营销cookie的条款。这使我们能够在其他平台上为《银河奶牛放置》运行广告时优化营销活动。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                            },
                            "1737885600000": {
                                "heading": "小型更新",
                                "content": "<div>\n\t\t\t\t春节:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t春节聊天图标、角色形象和服装在牛铃商店中出售,持续到至少3周后的更新。活动结束后,你仍然可以继续使用。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t用户界面:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t每25级专业等级,从100级开始,发送系统消息,而不仅仅是100级和125级。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t修复:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t排行榜公会名称应该是不可点击的。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t改进聊天消息URL链接解析,使其更准确。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复了数据库在维护期间脱机,玩家会被登出的问题。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t修复了一些罕见情况下导致玩家战斗在离线进度用尽后未正确停止的问题。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t\t其他:\n\t\t\t\t<ol>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t添加了@mod和@mods聊天命令,用于紧急情况通知管理员。\n\t\t\t\t\t</li>\n\t\t\t\t\t<li>\n\t\t\t\t\t\t在后台实施了身份验证和支付更改,以支持即将发布的STEAM版本。\n\t\t\t\t\t</li>\n\t\t\t\t</ol>\n\t\t\t</div>"
                            }
                        },
                        "gameGuidePanel": {
                            "gameGuide": "游戏指南"
                        },
                        "gameGuideContent": {
                            "faq": "常见问题",
                            "faqContent": "<heading>常规问题</heading>\n\t\t\t<question>问: 离线进度如何运作?</question>\n\t\t\t<answer>答: 即使你处于离线状态,你的角色也会继续取得进展。默认情况下,无论何时关闭浏览器或离线,你都可以获得长达10小时的离线进度。你还可以通过牛铃商店提供的便利升级来延长离线时间。</answer>\n\t\t\t<question>问: 我可以从其他设备登录吗?</question>\n\t\t\t<answer>答: 如果你已注册帐户,可以使用电子邮件和密码从任何设备登录。如果你以游客身份玩游戏,可以在[设置]中找到你的游客密码,然后用你的用户名登录。</answer>\n\t\t\t<question>问: 我可以在没有互联网连接的情况下玩游戏吗?</question>\n\t\t\t<answer>答: 不可以,你必须连接到互联网才能玩游戏。不过,默认情况下,你仍可以获得离线进度,最长可达10小时。如果你不想与其他玩家互动,可以关闭聊天频道并选择不使用市场。</answer>\n\t\t\t<question>问: 我可以更改我的角色名称吗?</question>\n\t\t\t<answer>答: 可以。请前往[牛铃商店],点击[更改名称]来更改你的名称。这需要500个牛铃。</answer>\n\t\t\t<question>问: 如何获得聊天图标或名称颜色?</question>\n\t\t\t<answer>答: 可以使用牛铃从[牛铃商店]购买聊天图标或名称颜色。你可以在[设置]中更改显示的图标和名称颜色。</answer>\n\t\t\t<question>问: 如何向其他玩家发送站内私信?</question>\n\t\t\t<answer>答: 要向其他玩家发送私人信息,请点击该玩家信息前方的名称并点击[私聊]。你也可以使用聊天命令\"/w 玩家名称 聊天内容\"。</answer>\n\t\t\t<question>问: 如何屏蔽其他玩家?</question>\n\t\t\t<answer>答: 要屏蔽一名玩家并停止收到其任何信息,请点击该玩家信息前方的名称并选择[屏蔽]。你也可以使用聊天命令\"/block 玩家名称\"。你可以在[社交]菜单中找到你的黑名单,然后从列表解除对玩家的屏蔽。</answer>\n\t\t\t<heading>游戏玩法</heading>\n\t\t\t<question>问: 什么是行动队列?</question>\n\t\t\t<answer>答: 行动队列允许你为角色设置一连串自动执行的行动。要使用它,请点击[添加到队列]按钮,而不是[开始]按钮。队列槽位可以从牛铃商店解锁或升级。</answer>\n\t\t\t<question>问: 什么是牛铃,如何获得更多的牛铃?</question>\n\t\t\t<answer>\n\t\t\t\t答: 牛铃是游戏中的高级货币。玩家可以用牛铃购买便利升级、外观装扮、社区BUFF和名称更改。获得牛铃有三种方法:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>完成教程: 可以获得80个牛铃作为奖励。</li>\n\t\t\t\t\t<li>稀有掉落: 在技艺训练或与敌人战斗时,有机会从稀有战利品箱中获得牛铃。</li>\n\t\t\t\t\t<li>从牛铃商店购买: 你可以在牛铃商店中充值购买牛铃来支持游戏。</li>\n\t\t\t\t\t<li>从市场购买: 你可以在市场上用金币向其他玩家购买可交易的牛铃袋\"。</li>\n\t\t\t\t</ul>\n\t\t\t</answer>\n\t\t\t<question>问: 什么是稀有掉落?</question>\n\t\t\t<answer>\n\t\t\t\t答: 稀有掉落是在游戏中参与不同行动时可以获得的战利品:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>采集专业: 可以获得包含星星碎片的陨石舱。</li>\n\t\t\t\t\t<li>生产专业、炼金和强化: 可以获得工匠匣,里面有保护碎片和宝石。</li>\n\t\t\t\t\t<li>战斗:可以获得装有宝石的宝箱。</li>\n\t\t\t\t</ul>\n\t\t\t\t所有箱子中都会有金币,偶尔还会有牛铃。完成更高级的技艺或对战更高级的敌人,可获得更大的宝箱。\n\t\t\t</answer>\n\t\t\t<question>问: 宝石有什么用?</question>\n\t\t\t<answer>答: 宝石可以用来制作不同的首饰,这些首饰会带来一些加成。此外,还可以使用\"制作\"专业将宝石粉碎成小块,用来冲泡更高效的咖啡和茶。宝石可以从战斗中获取的宝箱里找到。</answer>\n\t\t\t<question>问: 从哪里获得茶叶?</question>\n\t\t\t<answer>答: 在战斗中击败怪兽可以获得茶叶。在查看战斗区域时,你可以将鼠标悬停在怪兽身上(在手机上长按),查看其掉落的物品。茶叶是泡茶的必备材料,可以为非战斗专业加成。</answer>\n\t\t\t<question>问: 什么是精华?</question>\n\t\t\t<answer>答: 精华可以用于强化特殊装备。每个战斗区域的怪兽都会掉落不同类型的精华。</answer>\n\t\t\t<br />",
                            "gathering": "采集类专业",
                            "gatheringContent": "<heading>挤奶</heading>\n\t\t\t<text>\n\t\t\t\t给神奇的奶牛挤奶可以获得不同种类的牛奶,这些牛奶有多种用途:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>奶酪制作:牛奶可以变成奶酪,然后用来制作近战装备或专业工具。</li>\n\t\t\t\t\t<li>烹饪:牛奶是许多食谱中不可或缺的原料。</li>\n\t\t\t\t\t<li>冲泡:牛奶也用于少数的咖啡和茶配方。</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>你可以通过装备刷子来帮助奶牛更快地生产牛奶。</text>\n\t\t\t<br />\n\t\t\t<heading>采摘</heading>\n\t\t\t<text>采摘可以让你在不同的区域采摘不同的资源。你可以在某个区域采摘特定的物品,也可以在整个区域采摘,以获得各种物品。</text>\n\t\t\t<text>\n\t\t\t\t采摘的资源可用于:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>烹饪: 鸡蛋、小麦、糖、莓果和水果是许多食谱中必不可少的配料。</li>\n\t\t\t\t\t<li>冲泡: 莓果、水果和咖啡豆可用于冲泡咖啡和茶。</li>\n\t\t\t\t\t<li>缝纫: 亚麻、竹子、蚕茧和其他材料可以加工成布料,制作魔法服饰。</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>装备剪子可以提高采摘速度。</text>\n\t\t\t<br />\n\t\t\t<heading>伐木</heading>\n\t\t\t<text>你可以砍伐不同种类树木的原木。</text>\n\t\t\t<text>\n\t\t\t\t原木可用于:\n\t\t\t\t<ul>\n\t\t\t\t\t<li>奶酪锻造: 原木是制作一些近战武器和专业工具的原料。</li>\n\t\t\t\t\t<li>制作: 原木可以加工成木材,用于制作远程武器和魔法武器。</li>\n\t\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<text>装备斧头可以提高伐木速度。</text>\n\t\t\t<br />\n\t\t\t<heading>等级加成</heading>\n\t\t\t<text>你的等级每超过行动的等级要求1级,就会获得1%的效率加成。</text>\n\t\t\t<br />",
                            "production": "生产类专业",
                            "productionContent": "<heading>奶酪锻造</heading>\n\t\t\t<text>奶酪锻造是制造近战装备和工具的专业。</text>\n\t\t\t<text>牛奶被加工成不同等级的奶酪。然后制作成装备(有时与其他资源结合使用)。随着等级的提高,装备可以升级到更高的等级。</text>\n\t\t\t<text>装备锤子可以提高奶酪制作的速度。</text>\n\t\t\t<br />\n\t\t\t<heading>制作</heading>\n\t\t\t<text>制作可以产出多种物品,包括远程武器、魔法武器、珠宝和其他特殊资源。</text>\n\t\t\t<text>原木可以加工成不同等级的木材,然后用来制作远程武器和魔法武器。</text>\n\t\t\t<text>首饰可以用星星碎片和宝石制作,这些都是采集或战斗中发现的稀有物品。</text>\n\t\t\t<text>你可以通过装备凿子来提高制作速度。</text>\n\t\t\t<br />\n\t\t\t<heading>缝纫</heading>\n\t\t\t<text>缝纫可以制作各种魔法服饰和袋子。</text>\n\t\t\t<text>亚麻、竹子和蚕茧等采摘得来的原材料可以加工成布料。与怪兽战斗获得的兽皮也可以加工成皮革。</text>\n\t\t\t<text>布料主要用于制作魔法服饰,如袍服和帽子,而皮革则用于制作远程服饰,如皮衣和皮靴。</text>\n\t\t\t<text>除了服饰,你还可以制作袋子,增加战斗中的最大HP和MP。袋子还能为技艺和战斗提供额外的消耗品槽位。</text>\n\t\t\t<text>你可以通过装备针来提高缝纫速度。</text>\n\t\t\t<br />\n\t\t\t<heading>烹饪</heading>\n\t\t\t<text>烹饪产生的食物可在战斗中使用。</text>\n\t\t\t<text>甜甜圈和蛋糕可以恢复HP,软糖和酸奶可以恢复MP。</text>\n\t\t\t<text>装备锅铲可以提高烹饪速度。</text>\n\t\t\t<br />\n\t\t\t<heading>冲泡</heading>\n\t\t\t<text>冲泡饮料可在短时间内提供增益效果。</text>\n\t\t\t<text>在战斗中饮用咖啡可以提升战斗相关属性,而饮用茶则可以提高非战斗专业。</text>\n\t\t\t<text>你可以通过装备一个壶来提高冲泡速度。</text>\n\t\t\t<br />\n\t\t\t<heading>等级加成</heading>\n\t\t\t<text>你的等级每超过行动的等级要求1级,就会获得1%的效率加成。</text>\n\t\t\t<br />",
                            "alchemy": "炼金",
                            "alchemyContent": "<heading>炼金</heading>\n\t\t\t<text>炼金允许你使用点金、分解或转化将物品变为其他物品。每种行动都有不同的成功率,无论成功与否,投入的物品和金币成本都会被消耗。</text>\n\t\t\t<br />\n\t\t\t<heading>点金</heading>\n\t\t\t<text>点金可以将物品转化为金币。获得的金币数量是物品售价的5倍。基本成功率为70%。</text>\n\t\t\t<br />\n\t\t\t<heading>分解</heading>\n\t\t\t<text>分解可以将物品分解成原材料或精华。装备可以分解成原材料,非装备物品可以分解成技艺精华。分解强化装备可以获得额外的强化精华,强化等级越高,数量越多。基本成功率为60%。</text>\n\t\t\t<br />\n\t\t\t<heading>转化</heading>\n\t\t\t<text>转化可以将物品转化为其他相关物品或稀有独特物品,如贤者之石。基本成功率因被转化的物品而异。</text>\n\t\t\t<br />\n\t\t\t<heading>成功率</heading>\n\t\t\t<text>基础成功率取决于炼金行动和被炼金的特定物品。如果你的炼金专业等级低于物品的等级,成功率就会受到影响。使用催化剂和催化茶可以提高成功率。</text>\n\t\t\t<br />\n\t\t\t<heading>催化剂</heading>\n\t\t\t<text>催化剂是可以用来提高炼金成功率的特殊物品。只有在成功时才会消耗一个催化剂。普通催化剂可以使用专业精华制作。至高催化剂可通过转化普通催化剂获得。</text>\n\t\t\t<br />\n\t\t\t<heading>炼金效率</heading>\n\t\t\t<text>你的等级每超过物品建议等级1级,就会获得1%的效率加成。</text>\n\t\t\t<br />\n\t\t\t<heading>炼金说明</heading>\n\t\t\t<text>以下是炼金的步骤:</text>\n\t\t\t<ol>\n\t\t\t\t<li>选择要炼金的物品;</li>\n\t\t\t\t<li>选择要进行的炼金行动;</li>\n\t\t\t\t<li>决定是否使用催化剂。如果使用,请选择催化剂。</li>\n\t\t\t\t<li>点击\"开始\"按钮,就会开始炼金。</li>\n\t\t\t</ol>\n\t\t\t<br />",
                            "enhancing": "强化",
                            "enhancingContent": "<heading>强化</heading>\n\t\t\t<text>强化是增加任何装备(如盔甲、武器、工具、袋子或首饰)属性的过程。当你成功强化一件装备时,其强化等级会增加 1。但是,如果强化失败,等级会重置为 0。</text>\n\t\t\t<br />\n\t\t\t<heading>强化成功率</heading>\n\t\t\t<text>强化的成功率取决于几个因素,包括你的强化等级、装备的等级以及该装备当前的强化等级。一般来说,装备的等级和强化等级越高,成功率就越低。装备强化器可以提高成功率。</text>\n\t\t\t<br />\n\t\t\t<heading>保护</heading>\n\t\t\t<text>保护机制是一个允许玩家使用基础装备副本、保护之镜或制作组件(仅适用于特殊装备)为每次强化提供保护的功能。如果强化失败,装备的等级只会降低1级,但会消耗1件保护道具。这对毕业阶段的玩家来说是达到高强化等级的一种经济有效的方法。</text>\n\t\t\t<br />\n\t\t\t<heading>提升速度</heading>\n\t\t\t<text>你的等级每超过装备推荐等级1级,就会获得1%的行动速度加成。</text>\n\t\t\t<br />\n\t\t\t<heading>说明</heading>\n\t\t\t<text>以下是强化装备的步骤:</text>\n\t\t\t<ol>\n\t\t\t\t<li>选择要强化的装备。</li>\n\t\t\t\t<li>设定目标强化等级。现实一点,考虑以你目前的资源能达到什么水平。</li>\n\t\t\t\t<li>决定是否使用保护。如果使用,则选择保护道具和使用保护的最低强化等级。一般来说,强化物品的等级越高,使用保护的性价比就越高。</li>\n\t\t\t\t<li>点击\"开始\"按钮,你将继续强化,直到达到目标等级或材料耗尽。</li>\n\t\t\t</ol>\n\t\t\t<br />\n\t\t\t<heading>强化加成</heading>\n\t\t\t<text>强化装备的加成属性按基础属性的一定百分比增加。每个强化等级的总加成如下:\n\t\t\t<br />\n\t\t\t+1: 2.0%\n\t\t\t<br />\n\t\t\t+2: 4.2%\n\t\t\t<br />\n\t\t\t+3: 6.6%\n\t\t\t<br />\n\t\t\t+4: 9.2%\n\t\t\t<br />\n\t\t\t+5: 12.0%\n\t\t\t<br />\n\t\t\t+6: 15.0%\n\t\t\t<br />\n\t\t\t+7: 18.2%\n\t\t\t<br />\n\t\t\t+8: 21.6%\n\t\t\t<br />\n\t\t\t+9: 25.2%\n\t\t\t<br />\n\t\t\t+10: 29.0%\n\t\t\t<br />\n\t\t\t+11: 33.4%\n\t\t\t<br />\n\t\t\t+12: 38.4%\n\t\t\t<br />\n\t\t\t+13: 44.0%\n\t\t\t<br />\n\t\t\t+14: 50.2%\n\t\t\t<br />\n\t\t\t+15: 57.0%\n\t\t\t<br />\n\t\t\t+16: 64.4%\n\t\t\t<br />\n\t\t\t+17: 72.4%\n\t\t\t<br />\n\t\t\t+18: 81.0%\n\t\t\t<br />\n\t\t\t+19: 90.2%\n\t\t\t<br />\n\t\t\t+20: 100%\n\t\t\t</text>\n\t\t\t<text>作为例外,佩饰、背部装备和饰品槽位的强化可获得正常加成的5倍。例如,佩饰的+1强化为10%的加成。</text>\n\t\t\t<br />\n\t\t\t<heading>强化基础成功率</heading>\n\t\t\t<text>\n\t\t\t+1: 50%\n\t\t\t<br />\n\t\t\t+2: 45%\n\t\t\t<br />\n\t\t\t+3: 45%\n\t\t\t<br />\n\t\t\t+4: 40%\n\t\t\t<br />\n\t\t\t+5: 40%\n\t\t\t<br />\n\t\t\t+6: 40%\n\t\t\t<br />\n\t\t\t+7: 35%\n\t\t\t<br />\n\t\t\t+8: 35%\n\t\t\t<br />\n\t\t\t+9: 35%\n\t\t\t<br />\n\t\t\t+10: 35%\n\t\t\t<br />\n\t\t\t+11: 30%\n\t\t\t<br />\n\t\t\t+12: 30%\n\t\t\t<br />\n\t\t\t+13: 30%\n\t\t\t<br />\n\t\t\t+14: 30%\n\t\t\t<br />\n\t\t\t+15: 30%\n\t\t\t<br />\n\t\t\t+16: 30%\n\t\t\t<br />\n\t\t\t+17: 30%\n\t\t\t<br />\n\t\t\t+18: 30%\n\t\t\t<br />\n\t\t\t+19: 30%\n\t\t\t<br />\n\t\t\t+20: 30%\n\t\t\t</text>\n\t\t\t<br />",
                            "combat": "战斗",
                            "combatContent": "<heading>战斗</heading>\n\t\t\t<text>与怪兽战斗可以获得金币、茶叶、兽皮、精华、技能书、宝石、特殊物品以及各种常见资源。在不同的战斗区域会有不同难度的敌人。</text>\n\t\t\t<br />\n\t\t\t<heading>装备</heading>\n\t\t\t<text>穿戴装备可以提高战斗中的属性。你可以直接从库存中装备物品,也可以点击库存旁边[装备]中的装备槽位来装备物品。</text>\n\t\t\t<br />\n\t\t\t<heading>消耗品</heading>\n\t\t\t<text>消耗食物可以恢复HP或MP。饮料可以在一定时间内提供增益效果。升级袋子在可以让你在战斗中携带更多的食物和饮料。</text>\n\t\t\t<br />\n\t\t\t<heading>技能</heading>\n\t\t\t<text>你可以学习技能书,并在战斗中消耗MP来使用技能。要解锁新的技能,必须从技能书中学习。技能会随着等级的提升而增强。每次在战斗中使用技能都会获得0.1的经验。你还可以通过消耗重复的技能书来获得大量经验。</text>\n\t\t\t<text>在战斗中使用多个可用的技能时,它们将按照你的设置从左到右的顺序施放。</text>\n\t\t\t<text>你的智力等级决定了你可以携带多少种技能。</text>\n\t\t\t<br />\n\t\t\t<heading>触发器</heading>\n\t\t\t<text>消耗品和技能都有默认设置,用于决定他们何时会自动使用。这些设置被称为触发器,可以在进入战斗前点击技能下方的[齿轮图标]进行修改。</text>\n\t\t\t<br />\n\t\t\t<heading>击败和重生</heading>\n\t\t\t<text>在战斗中被击败后,你的角色需要等待重生倒计时结束,才能复活并自动重新开始战斗。</text>\n\t\t\t<br />\n\t\t\t<heading>团队战斗</heading>\n\t\t\t<text>你可以创建或加入一个队伍,一起在有多个怪物的区域战斗。当所有队员都按下[准备就绪]键后,队伍将自动前往战斗地点。怪物会随机攻击任何一名队员,而威胁值较高的队员会更频繁地成为攻击目标。怪物的经验和掉落将平均分配给所有玩家。战斗等级比最高等级玩家低20%以上的玩家将获得较少的经验和掉落。</text>\n\t\t\t<br />\n\t\t\t<heading>地下城</heading>\n\t\t\t<text>地下城由多波更高级的精英怪物和独特的地下城boss组成。玩家可以使用地下城钥匙进入地下城,这些钥匙可以从常规战斗区域的boss身上找到钥匙碎片后制作。</text>\n\t\t\t<text>一个地下城队伍中最多可有五名玩家。每个人都必须有一把钥匙,在击败最终boss后消耗钥匙会获得地下城宝箱。如果你以较少的玩家完成了一个地下城,就有机会以多付出一个钥匙为代价得到一个额外的宝箱。如果地下城没有完成,你将保留你的地下城钥匙。</text>\n\t\t\t<text>在地下城中被击败不会触发重生倒计时,只能等队员复活你。如果所有成员都被击败了,地下城任务将被视为失败,你们将从第1波重新开始。</text>\n\t\t\t<br />\n\t\t\t<heading>战斗专业</heading>\n\t\t\t<text>你有 7 个可以升级的战斗专业:</text>\n\t\t\t<ul>\n\t\t\t<li>耐力: 每升一级,最大HP增加10。</li>\n\t\t\t<li>智力: 每升一级,最大MP增加10。</li>\n\t\t\t<li>攻击: 提高你的精准度、攻击速度和施法速度。</li>\n\t\t\t<li>防御: 提高你的闪避、护甲和元素抗性。</li>\n\t\t\t<li>近战: 提高你的近战伤害。</li>\n\t\t\t<li>远程: 提高你的远程伤害。</li>\n\t\t\t<li>魔法: 提高你的魔法伤害。</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>状态效果</heading>\n\t\t\t<text>有些状态效果会暂时阻止你采取某些行动:</text>\n\t\t\t<ul>\n\t\t\t<li>失明: 禁止使用自动攻击。</li>\n\t\t\t<li>沉默: 禁止使用技能。</li>\n\t\t\t<li>眩晕: 禁止使用自动攻击、技能和消耗品。</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>属性</heading>\n\t\t\t<text>你还有次要战斗属性,受你的战斗等级、装备和增益影响:</text>\n\t\t\t<ul>\n\t\t\t<li>战斗风格: 每种攻击都有特定的类型 - 刺击、斩击、钝击、远程或魔法。</li>\n\t\t\t<li>伤害类型: 每次攻击都会造成特定类型的伤害 - 物理、水系、自然系或火系。</li>\n\t\t\t<li>攻击间隔: 自动攻击的速度。</li>\n\t\t\t<li>技能急速: 减少技能冷却时间。</li>\n\t\t\t<li>精确度: 增加击中的几率。</li>\n\t\t\t<li>伤害: 击中时的最大伤害。自动攻击伤害在1和最大伤害之间随机。</li>\n\t\t\t<li>暴击: 暴击总是会造成最大伤害。远程战斗风格具有基础的暴击几率。</li>\n\t\t\t<li>增幅: 增加造成的伤害。</li>\n\t\t\t<li>贯穿: 攻击时忽略敌人一定比例的护甲或抗性。</li>\n\t\t\t<li>闪避: 增加闪避攻击的几率。</li>\n\t\t\t<li>护甲: 减轻一定比例的物理伤害。</li>\n\t\t\t<li>抗性: 减轻一定比例的水系、自然系或火系伤害。</li>\n\t\t\t<li>生命窃取: 根据你自动攻击造成伤害的百分比恢复HP。</li>\n\t\t\t<li>法力汲取: 根据你自动攻击造成伤害的百分比恢复MP。</li>\n\t\t\t<li>荆棘: 被攻击时,将一定比例的防御伤害反射给攻击者。每个护甲或抗性(与攻击类型相对应)增加1%伤害。</li>\n\t\t\t<li>反伤: 被攻击时,将(防御伤害+被攻击伤害)的一定比例以钝击形式反伤攻击者。</li>\n\t\t\t<li>韧性: 降低失明、沉默或眩晕的几率。</li>\n\t\t\t<li>威胁: 增加被怪物攻击的几率。</li>\n\t\t\t<li>HP/MP恢复: 每10秒恢复一定百分比的最大HP/MP。</li>\n\t\t\t<li>食物急速: 减少食物冷却时间。</li>\n\t\t\t<li>饮料浓缩: 增加饮料效果。缩短持续时间和冷却时间。</li>\n\t\t\t<li>战斗掉落率: 提高常规物品的掉落率(不超过100%)。</li>\n\t\t\t<li>战斗掉落数量: 增加常规物品的掉落数量。</li>\n\t\t\t<li>战斗稀有发现: 增加稀有物品的掉落率。</li>\n\t\t\t<li>主修训练: 30%的战斗经验会分配给主修训练专业,这取决于你的武器。</li>\n\t\t\t<li>选修训练: 70%的战斗经验会分配给专注训练专业,这取决于你的护符。</li>\n\t\t\t<li>战斗等级: 仅用于显示,代表基于战斗专业等级的综合战斗力。</li>\n\t\t\t</ul>\n\t\t\t<br />\n\t\t\t<heading>公式</heading>\n\t\t\t<text>对于那些喜欢数学的人,下面是次要战斗属性的计算公式:</text>\n\t\t\t<ul>\n\t\t\t<li>最大HP = 10 * (10 + 耐力)</li>\n\t\t\t<li>最大MP = 10 * (10 + 智力)</li>\n\t\t\t<li>攻击间隔 = 基础间隔 / (1 + (攻击 / 2000)) / (1 + 攻击速度加成)</li>\n\t\t\t<li>施法时间 = 基础施法时间 / (1 + (攻击 / 2000) + 施法速度)</li>\n\t\t\t<li>能力冷却时间 = 基础冷却时间 * 100 / (100 + 技能急速)</li>\n\t\t\t<li>精确度 = (10 + 攻击) * (1 + 加成百分比)</li>\n\t\t\t<li>伤害 = (10 + [近战|远程|魔法|防御]) * (1 + 加成百分比)</li>\n\t\t\t<li>重盾钝击伤害 = 钝击伤害 + 防御伤害</li>\n\t\t\t<li>荆棘伤害 = 防御伤害 * (1 + [护甲|抗性] / 100) * 荆棘%</li>\n\t\t\t<li>反伤伤害 = (防御伤害 + MIN(攻击者未减免伤害, 5 * 防御伤害)) * 反伤%</li>\n\t\t\t<li>命中率 = (我的精准度 ^ 1.4) / (我的精准度 ^ 1.4 + 敌人闪避 ^ 1.4)</li>\n\t\t\t<li>远程暴击加成率 = 0.3 * 命中几率</li>\n\t\t\t<li>闪避 = (10 + 防御) * (1 + 加成百分比)</li>\n\t\t\t<li>护甲 = 0.2 * 防御 + 加成</li>\n\t\t\t<li>受到的物理伤害百分比 = 100 / (100 + 护甲)<br />如果护甲为负值,则 = (100 - 护甲) / 100</li>\n\t\t\t<li>抗性 = 0.2 * 防御 + 加成</li>\n\t\t\t<li>受到的元素伤害百分比 = 100 / (100 + 抗性)<br />如果抗性为负值,则 = (100 - 抗性) / 100</li>\n\t\t\t<li>失明/沉默/眩晕几率 = 基础几率 * 100 / (100 + 韧性)</li>\n\t\t\t<li>被怪物锁定几率 = 我的威胁/(团队总威胁)</li>\n\t\t\t<li>战斗等级 = 0.1 * (耐力 + 智力 + 攻击 + 防御 + MAX(近战, 远程, 魔法)) + 0.5 * MAX(攻击, 防御, 近战, 远程, 魔法)</li>\n\t\t\t</ul>\n\t\t\t<br />",
                            "tasks": "任务",
                            "tasksContent": "<heading>任务功能</heading>\n\t\t\t<text>完成教程后,你将解锁此功能。任务栏会随机生成不同专业长短不一的任务,完成这些任务就会获得奖励。</text>\n\t\t\t<br />\n\t\t\t<heading>任务栏</heading>\n\t\t\t<text>\n\t\t\t<ul>\n\t\t\t\t<li>频率: 任务会定期分配,从每8小时一次开始。升级可以将间隔时间缩短至最低4小时。</li>\n\t\t\t\t<li>种类: 任务可能涉及采集/生产专业或击败怪物。生成的任务会稍微优先考虑玩家等级较高的专业。</li>\n\t\t\t\t<li>重置: 你可以使用金币或牛铃重新选择任务。每次重新选择的费用会翻倍(有上限)。</li>\n\t\t\t\t<li>容量: 任务没有期限,但有任务槽位只有8个。你可以在牛铃商店中升级,增加任务槽位。</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>奖励</heading>\n\t\t\t<text>\n\t\t\t<ul>\n\t\t\t\t<li>完成任务可获得金币和任务代币。每获得一个任务代币还会积累一个任务点数。</li>\n\t\t\t\t<li>累积50个任务点数就可以领取\"小紫牛的礼物\",打开后可以获得金币、任务代币、任务水晶和各种战利品。</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>任务商店</heading>\n\t\t\t<text>任务代币可在任务商店中用于购买永久升级或物品,包括:\n\t\t\t<ul>\n\t\t\t\t<li>任务冷却:减少任务之间的冷却时间。</li>\n\t\t\t\t<li>屏蔽槽位:允许屏蔽被分配特定专业的任务。战斗屏蔽需要额外付费解锁。</li>\n\t\t\t\t<li>任务水晶:用于制作或升级任务徽章。任务徽章可在执行任务时提供大量速度或伤害加成。</li>\n\t\t\t\t<li>战利品箱:大陨石舱、大工匠匣和大宝箱。</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />",
                            "guild": "公会",
                            "guildContent": "<heading>公会</heading>\n\t\t\t<text>通过导航菜单中的[公会]功能发现公会。公会由喜欢一起游戏的玩家组成。虽然公会目前主要作为社交中心,但未来推出的扩展可能会引入更多以团队为导向的活动。</text>\n\t\t\t<br />\n\t\t\t<heading>创建公会</heading>\n\t\t\t<text>你可以投入500万金币并选择一个独特的公会名称,就可以创建自己的公会。作为公会的创建者,你将自动成为公会会长,在公会中拥有最高权力。之后,你可以邀请其他玩家加入你的公会。</text>\n\t\t\t<br />\n\t\t\t<heading>加入公会</heading>\n\t\t\t<text>你可以被邀请加入现有的公会。你可以在招募聊天频道寻找正在招人的公会,公会会在该频道积极寻找新成员。你可以在公会页面上查看你收到的邀请。</text>\n\t\t\t<br />\n\t\t\t<heading>公会功能</heading>\n\t\t\t<text>公会有几个主要功能:\n\t\t\t<ul>\n\t\t\t\t<li>公会聊天频道: 一个私人的、自我管理的空间,供公会成员联系和交谈。</li>\n\t\t\t\t<li>公会公告栏: 一个可由会长或将军编辑的公告板,用于通知所有成员。</li>\n\t\t\t\t<li>公会等级: 随着成员在各种专业获得经验,公会会以1:1000的比例积累公会经验,从而提升公会等级。根据公会等级和经验攀升排行榜。</li>\n\t\t\t\t<li>成员名额: 公会初始时有 {{defaultGuildMemberCount}} 个会员名额,每提升 {{guildLevelsPerMaxMember}} 个公会等级可增加 1 个名额。</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />\n\t\t\t<heading>成员角色</heading>\n\t\t\t<text>公会具有不同的角色和权限。较高等级的角色自动具有任何较低级角色的权限:\n\t\t\t<ul>\n\t\t\t\t<li>会长\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>可将领导权传给另一位成员。</li>\n\t\t\t\t\t\t<li>当公会空无一人时,有权解散公会。</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>将军\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>有权提升或降级任何低级成员。</li>\n\t\t\t\t\t\t<li>可编辑公会公告栏。</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>官员\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>可邀请新成员加入公会。</li>\n\t\t\t\t\t\t<li>可将低级别成员踢出公会。</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>会员\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>可以查看公会概况。</li>\n\t\t\t\t\t\t<li>可以查看公会聊天频道并进行交谈。</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t\t<li>已邀请\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>在接受公会邀请之前没有访问权限</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</li>\n\t\t\t</ul>\n\t\t\t</text>\n\t\t\t<br />",
                            "chatCommands": "聊天命令",
                            "chatCommandsContent": "<heading>聊天命令</heading>\n\t\t\t<text>\n\t\t\t\t<chatCommand>/w [名称] [信息]</chatCommand> - 与其他玩家私聊<br />\n\t\t\t\t<chatCommand>/r</chatCommand> - 回复最后一条私聊<br />\n\t\t\t\t<chatCommand>/profile [名称]</chatCommand> - 查看玩家资料<br />\n\t\t\t\t<chatCommand>/friend [名称]</chatCommand> - 添加好友<br />\n\t\t\t\t<chatCommand>/block [名称]</chatCommand> - 屏蔽玩家<br />\n\t\t\t</text>\n\t\t\t<br />",
                            "experienceTable": "经验表"
                        },
                        "gameRulesPanel": {
                            "gameRules": "游戏规则"
                        },
                        "gameRulesText": {
                            "content": "<div>\n\t\t\t\t银河奶牛放置的规则旨在确保所有玩家都能获得愉快、公平的游戏体验。\n\t\t\t\t违反规则将根据违规行为的类型和严重程度受到相应的处罚,包括警告、禁言、物品移除、交易禁止或账户封禁。\n\t\t\t\t<br /><br />\n\t\t\t</div>\n\t\t\t<olMain>\n\t\t\t\t<li><b>帐号</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>仅限一个账户: </b>\n\t\t\t\t\t\t\t每个人只能使用一个账户进行游戏。游客也被视为账户。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>不得共享账户: </b>\n\t\t\t\t\t\t\t不得与其他玩家共享账户。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>不得使用不恰当的名称: </b>\n\t\t\t\t\t\t\t名称不得具有冒犯性、色情、冒充他人或使用知名现实人物的名字。不适当的名称可导致禁言和强制更名。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>仅限13岁以上玩家: </b>\n\t\t\t\t\t\t\t根据美国COPPA《儿童在线隐私保护法案》规定,你必须年满 13 周岁才能注册和游戏。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>交易</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止真实世界交易/交叉交易: </b>\n\t\t\t\t\t\t\t请勿在银河奶牛放置中交易物品或服务以换取游戏外的任何东西。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止财富转移: </b>\n\t\t\t\t\t\t\t不得向任何玩家输送财产。玩家接受的所有礼物总价值不得超过 10M 金币。超过该限制的财富转移行为,无论是否故意,均会被视为违规行为。非故意的转移 (例如:在市场上偶然购买到超低价的物品) 会被移除相关收益。故意的转移将根据严重程度受到额外处罚。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止欺诈: </b>\n\t\t\t\t\t\t\t不得使用欺骗或敲诈手段从其他玩家处获得物品。如有足够证据,我们将对欺诈者采取行动。但因欺诈而丢失的物品将不予退还。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>在7天内偿还贷款: </b>\n\t\t\t\t\t\t\t贷款风险自负。7天内未偿还的贷款将被视为财富转移/欺诈行为。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>聊天</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>请相互尊重,友善交流: </b>\n\t\t\t\t\t\t\t聊天规则的第一条就是尊重其他玩家。我们的目标是创建一个人人都能享受的友好社区空间。\n\t\t\t\t\t\t\t请避免故意与他人对立或骚扰他人。\n\t\t\t\t\t\t\t虽然偶尔使用脏话并不违反规定,但请不要过度使用脏话,尤其是针对其他玩家时。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>英语聊天频道仅限英语: </b>\n\t\t\t\t\t\t\t请在英语聊天频道使用英语。其他频道可使用不同语言。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止歧视: </b>\n\t\t\t\t\t\t\t请勿使用针对任何个人或群体的污言秽语、俚语或任何攻击性话语。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止非法或色情话题: </b>\n\t\t\t\t\t\t\t请勿讨论非法或色情话题。禁止发送非法活动或色情话题的外部链接。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>避免敏感话题或闹剧: </b>\n\t\t\t\t\t\t\t请避免讨论容易引发争议或闹剧的敏感话题。\n\t\t\t\t\t\t\t这包括但不限于政治、宗教、国际冲突、性别讨论、性取向、\n\t\t\t\t\t\t\t禁言/封禁投诉,以及其他容易引发纷争的话题。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止恶意刷屏: </b>\n\t\t\t\t\t\t\t请勿在聊天中发送大量不必要的垃圾信息、过度使用大写字母、或向他人乞讨免费物品。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>请勿鼓励他人违反规则: </b>\n\t\t\t\t\t\t\t不要误导或怂恿其他玩家违反游戏规则。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>不要泄露个人信息: </b>\n\t\t\t\t\t\t\t请勿披露可识别的个人信息,包括但不限于你的全名、地址、电话号码和电子邮件。\n\t\t\t\t\t\t\t此外,请勿披露其他玩家未公开的任何个人信息,如姓名、年龄或所在地。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>所有广告必须在适当的渠道发布: </b>\n\t\t\t\t\t\t\t所有购买、出售或服务请求应在交易频道中进行。公会/队伍招募或寻求加入公会/队伍的请求应在招募频道提出。\n\t\t\t\t\t\t\t允许在大多聊天频道中询问价格。禁止邀请/推荐链接。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>听从<modIcon />管理员安排: </b>\n\t\t\t\t\t\t\t为了保持良好的聊天环境,管理员会对各聊天频道进行管理。\n\t\t\t\t\t\t\t请配合并尊重他们的要求。如果对管理员有任何争执或投诉,请通过Discord申诉或发送电子邮件至[email protected]。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>机器人、脚本和扩展</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>禁止机器人: </b>\n\t\t\t\t\t\t\t请勿使用任何自动化程序代替你操作游戏。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>脚本和扩展: </b>\n\t\t\t\t\t\t\t任何脚本或扩展程序都不得为玩家执行任何操作(向服务器发送任何请求),\n\t\t\t\t\t\t\t仅限使用于显示信息或改进用户界面 (例如: 显示战斗摘要、跟踪掉落、将按钮移动到不同位置)。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t\t<li><b>错误和漏洞</b>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>\n\t\t\t\t\t\t\t<b>不得滥用漏洞: </b>\n\t\t\t\t\t\t\t请勿滥用游戏错误或漏洞来为自己谋利。请通过Discord告诉我们,谢谢。\n\t\t\t\t\t\t</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</li>\n\t\t\t</olMain>\n\t\t\t<br />"
                        },
                        "gameModeNames": {
                            "standard": "标准",
                            "ironcow": "铁牛",
                            "legacy_ironcow": "传统铁牛"
                        },
                        "gameModeDescriptions": {
                            "standard": "标准游戏模式适合大多数玩家,没有功能限制。",
                            "ironcow": "铁牛游戏模式适合喜欢自力更生的玩家。你不能使用市场与其他玩家交易(例外: 允许购买牛铃)。",
                            "legacy_ironcow": ""
                        },
                        "skillNames": {
                            "/skills/total_level": "总等级",
                            "/skills/milking": "挤奶",
                            "/skills/foraging": "采摘",
                            "/skills/woodcutting": "伐木",
                            "/skills/cheesesmithing": "奶酪锻造",
                            "/skills/crafting": "制作",
                            "/skills/tailoring": "缝纫",
                            "/skills/cooking": "烹饪",
                            "/skills/brewing": "冲泡",
                            "/skills/alchemy": "炼金",
                            "/skills/enhancing": "强化",
                            "/skills/stamina": "耐力",
                            "/skills/intelligence": "智力",
                            "/skills/attack": "攻击",
                            "/skills/defense": "防御",
                            "/skills/melee": "近战",
                            "/skills/ranged": "远程",
                            "/skills/magic": "魔法"
                        },
                        "abilityNames": {
                            "/abilities/poke": "破胆之刺",
                            "/abilities/impale": "透骨之刺",
                            "/abilities/puncture": "破甲之刺",
                            "/abilities/penetrating_strike": "贯心之刺",
                            "/abilities/scratch": "爪影斩",
                            "/abilities/cleave": "分裂斩",
                            "/abilities/maim": "血刃斩",
                            "/abilities/crippling_slash": "致残斩",
                            "/abilities/smack": "重碾",
                            "/abilities/sweep": "重扫",
                            "/abilities/stunning_blow": "重锤",
                            "/abilities/fracturing_impact": "碎裂冲击",
                            "/abilities/shield_bash": "盾击",
                            "/abilities/quick_shot": "快速射击",
                            "/abilities/aqua_arrow": "流水箭",
                            "/abilities/flame_arrow": "烈焰箭",
                            "/abilities/rain_of_arrows": "箭雨",
                            "/abilities/silencing_shot": "沉默之箭",
                            "/abilities/steady_shot": "稳定射击",
                            "/abilities/pestilent_shot": "疫病射击",
                            "/abilities/penetrating_shot": "贯穿射击",
                            "/abilities/water_strike": "流水冲击",
                            "/abilities/ice_spear": "冰枪术",
                            "/abilities/frost_surge": "冰霜爆裂",
                            "/abilities/mana_spring": "法力喷泉",
                            "/abilities/entangle": "缠绕",
                            "/abilities/toxic_pollen": "剧毒粉尘",
                            "/abilities/natures_veil": "自然菌幕",
                            "/abilities/life_drain": "生命吸取",
                            "/abilities/fireball": "火球",
                            "/abilities/flame_blast": "熔岩爆裂",
                            "/abilities/firestorm": "火焰风暴",
                            "/abilities/smoke_burst": "烟爆灭影",
                            "/abilities/minor_heal": "初级自愈术",
                            "/abilities/heal": "自愈术",
                            "/abilities/quick_aid": "快速治疗术",
                            "/abilities/rejuvenate": "群体治疗术",
                            "/abilities/taunt": "嘲讽",
                            "/abilities/provoke": "挑衅",
                            "/abilities/toughness": "坚韧",
                            "/abilities/elusiveness": "闪避",
                            "/abilities/precision": "精确",
                            "/abilities/berserk": "狂暴",
                            "/abilities/frenzy": "狂速",
                            "/abilities/elemental_affinity": "元素增幅",
                            "/abilities/spike_shell": "尖刺防护",
                            "/abilities/retribution": "惩戒",
                            "/abilities/vampirism": "吸血",
                            "/abilities/revive": "复活",
                            "/abilities/insanity": "疯狂",
                            "/abilities/invincible": "无敌",
                            "/abilities/speed_aura": "速度光环",
                            "/abilities/guardian_aura": "守护光环",
                            "/abilities/fierce_aura": "物理光环",
                            "/abilities/critical_aura": "暴击光环",
                            "/abilities/mystic_aura": "元素光环",
                            "/abilities/promote": "晋升"
                        },
                        "abilityDescriptions": {
                            "/abilities/poke": "戳向目标敌人",
                            "/abilities/impale": "刺穿目标敌人",
                            "/abilities/puncture": "击破目标敌人的护甲,造成伤害并临时降低其护甲",
                            "/abilities/penetrating_strike": "刺向目标敌人,如果命中,则贯穿并刺向下一个敌人",
                            "/abilities/scratch": "抓伤目标敌人",
                            "/abilities/cleave": "劈砍所有敌人",
                            "/abilities/maim": "划伤目标敌人,并使其流血",
                            "/abilities/crippling_slash": "斩击所有敌人,并减少其伤害",
                            "/abilities/smack": "猛击目标敌人",
                            "/abilities/sweep": "对所有敌人进行横扫攻击",
                            "/abilities/stunning_blow": "重锤目标敌人,并有几率使其眩晕",
                            "/abilities/fracturing_impact": "对所有敌人造成伤害,并增加其所受伤害",
                            "/abilities/shield_bash": "盾击目标敌人",
                            "/abilities/quick_shot": "对目标敌人进行快速射击",
                            "/abilities/aqua_arrow": "向目标敌人射出水箭",
                            "/abilities/flame_arrow": "向目标敌人射出火焰箭",
                            "/abilities/rain_of_arrows": "向所有敌人射出箭雨",
                            "/abilities/silencing_shot": "对目标敌人射击,并使其沉默",
                            "/abilities/steady_shot": "以极高的精准对目标敌人进行射击",
                            "/abilities/pestilent_shot": "对目标敌人射击,并减少护甲和魔抗",
                            "/abilities/penetrating_shot": "射击目标敌人,如果命中,则贯穿并射向下一个敌人",
                            "/abilities/water_strike": "对目标敌人使用流水冲击",
                            "/abilities/ice_spear": "对目标敌人投掷冰矛,造成伤害并降低其攻击速度",
                            "/abilities/frost_surge": "对所有敌人施放冰霜爆裂,造成伤害并减少闪避",
                            "/abilities/mana_spring": "对所有敌人释放法力喷泉,造成伤害并增加友方MP恢复",
                            "/abilities/entangle": "缠绕目标敌人,造成伤害并有几率使其眩晕",
                            "/abilities/toxic_pollen": "对所有敌人施放剧毒粉尘,造成伤害并减少护甲和魔抗",
                            "/abilities/natures_veil": "给所有敌人蒙上一层菌幕,造成伤害并有几率使其失明",
                            "/abilities/life_drain": "吸取目标敌人的生命力,造成伤害并治疗自己",
                            "/abilities/fireball": "对目标敌人施放火球",
                            "/abilities/flame_blast": "对所有敌人施放熔岩爆裂",
                            "/abilities/firestorm": "对所有敌人施放火焰风暴",
                            "/abilities/smoke_burst": "对目标敌人释放烟爆灭影,造成伤害并减少精准",
                            "/abilities/minor_heal": "对自己施放初级治疗术",
                            "/abilities/heal": "对自己施放治疗术",
                            "/abilities/quick_aid": "对HP%最低的队友施放治疗术",
                            "/abilities/rejuvenate": "治疗所有队友",
                            "/abilities/taunt": "大幅增加威胁等级",
                            "/abilities/provoke": "极大地增加威胁等级",
                            "/abilities/toughness": "临时大幅增加护甲和抗性",
                            "/abilities/elusiveness": "临时大幅增加闪避",
                            "/abilities/precision": "临时大幅增加精准",
                            "/abilities/berserk": "临时大幅增加物理伤害",
                            "/abilities/frenzy": "临时大幅增加攻击速度",
                            "/abilities/elemental_affinity": "临时大幅增加元素伤害",
                            "/abilities/spike_shell": "临时获得物理和元素荆棘",
                            "/abilities/retribution": "临时获得反伤强度",
                            "/abilities/vampirism": "临时获得生命偷取",
                            "/abilities/revive": "复活一位死亡的队友",
                            "/abilities/insanity": "以HP为代价,临时增加伤害、攻击速度和施法速度",
                            "/abilities/invincible": "临时极大增加护甲、抗性和韧性",
                            "/abilities/speed_aura": "增加所有队友的攻击速度和施法速度,效果随施法者的攻击每级增加(0.005x)",
                            "/abilities/guardian_aura": "增加所有队友的治疗增幅、闪避、护甲和抗性,效果随施法者的防御每级增加(0.005x)",
                            "/abilities/fierce_aura": "增加所有队友的物理增幅,效果随施法者的近战每级增加(0.005x)",
                            "/abilities/critical_aura": "增加所有队友的暴击率和暴击伤害,效果随施法者的远程每级增加(0.005x)",
                            "/abilities/mystic_aura": "增加所有队友的元素增幅,效果随施法者的魔法每级增加(0.005x)",
                            "/abilities/promote": "晋升一个小兵"
                        },
                        "itemNames": {
                            "/items/coin": "金币",
                            "/items/task_token": "任务代币",
                            "/items/chimerical_token": "奇幻代币",
                            "/items/sinister_token": "阴森代币",
                            "/items/enchanted_token": "秘法代币",
                            "/items/pirate_token": "海盗代币",
                            "/items/cowbell": "牛铃",
                            "/items/bag_of_10_cowbells": "牛铃袋 (10个)",
                            "/items/purples_gift": "小紫牛的礼物",
                            "/items/small_meteorite_cache": "小陨石舱",
                            "/items/medium_meteorite_cache": "中陨石舱",
                            "/items/large_meteorite_cache": "大陨石舱",
                            "/items/small_artisans_crate": "小工匠匣",
                            "/items/medium_artisans_crate": "中工匠匣",
                            "/items/large_artisans_crate": "大工匠匣",
                            "/items/small_treasure_chest": "小宝箱",
                            "/items/medium_treasure_chest": "中宝箱",
                            "/items/large_treasure_chest": "大宝箱",
                            "/items/chimerical_chest": "奇幻宝箱",
                            "/items/chimerical_refinement_chest": "奇幻精炼宝箱",
                            "/items/sinister_chest": "阴森宝箱",
                            "/items/sinister_refinement_chest": "阴森精炼宝箱",
                            "/items/enchanted_chest": "秘法宝箱",
                            "/items/enchanted_refinement_chest": "秘法精炼宝箱",
                            "/items/pirate_chest": "海盗宝箱",
                            "/items/pirate_refinement_chest": "海盗精炼宝箱",
                            "/items/blue_key_fragment": "蓝色钥匙碎片",
                            "/items/green_key_fragment": "绿色钥匙碎片",
                            "/items/purple_key_fragment": "紫色钥匙碎片",
                            "/items/white_key_fragment": "白色钥匙碎片",
                            "/items/orange_key_fragment": "橙色钥匙碎片",
                            "/items/brown_key_fragment": "棕色钥匙碎片",
                            "/items/stone_key_fragment": "石头钥匙碎片",
                            "/items/dark_key_fragment": "黑暗钥匙碎片",
                            "/items/burning_key_fragment": "燃烧钥匙碎片",
                            "/items/chimerical_entry_key": "奇幻钥匙",
                            "/items/chimerical_chest_key": "奇幻宝箱钥匙",
                            "/items/sinister_entry_key": "阴森钥匙",
                            "/items/sinister_chest_key": "阴森宝箱钥匙",
                            "/items/enchanted_entry_key": "秘法钥匙",
                            "/items/enchanted_chest_key": "秘法宝箱钥匙",
                            "/items/pirate_entry_key": "海盗钥匙",
                            "/items/pirate_chest_key": "海盗宝箱钥匙",
                            "/items/donut": "甜甜圈",
                            "/items/blueberry_donut": "蓝莓甜甜圈",
                            "/items/blackberry_donut": "黑莓甜甜圈",
                            "/items/strawberry_donut": "草莓甜甜圈",
                            "/items/mooberry_donut": "哞莓甜甜圈",
                            "/items/marsberry_donut": "火星莓甜甜圈",
                            "/items/spaceberry_donut": "太空莓甜甜圈",
                            "/items/cupcake": "纸杯蛋糕",
                            "/items/blueberry_cake": "蓝莓蛋糕",
                            "/items/blackberry_cake": "黑莓蛋糕",
                            "/items/strawberry_cake": "草莓蛋糕",
                            "/items/mooberry_cake": "哞莓蛋糕",
                            "/items/marsberry_cake": "火星莓蛋糕",
                            "/items/spaceberry_cake": "太空莓蛋糕",
                            "/items/gummy": "软糖",
                            "/items/apple_gummy": "苹果软糖",
                            "/items/orange_gummy": "橙子软糖",
                            "/items/plum_gummy": "李子软糖",
                            "/items/peach_gummy": "桃子软糖",
                            "/items/dragon_fruit_gummy": "火龙果软糖",
                            "/items/star_fruit_gummy": "杨桃软糖",
                            "/items/yogurt": "酸奶",
                            "/items/apple_yogurt": "苹果酸奶",
                            "/items/orange_yogurt": "橙子酸奶",
                            "/items/plum_yogurt": "李子酸奶",
                            "/items/peach_yogurt": "桃子酸奶",
                            "/items/dragon_fruit_yogurt": "火龙果酸奶",
                            "/items/star_fruit_yogurt": "杨桃酸奶",
                            "/items/milking_tea": "挤奶茶",
                            "/items/foraging_tea": "采摘茶",
                            "/items/woodcutting_tea": "伐木茶",
                            "/items/cooking_tea": "烹饪茶",
                            "/items/brewing_tea": "冲泡茶",
                            "/items/alchemy_tea": "炼金茶",
                            "/items/enhancing_tea": "强化茶",
                            "/items/cheesesmithing_tea": "奶酪锻造茶",
                            "/items/crafting_tea": "制作茶",
                            "/items/tailoring_tea": "缝纫茶",
                            "/items/super_milking_tea": "超级挤奶茶",
                            "/items/super_foraging_tea": "超级采摘茶",
                            "/items/super_woodcutting_tea": "超级伐木茶",
                            "/items/super_cooking_tea": "超级烹饪茶",
                            "/items/super_brewing_tea": "超级冲泡茶",
                            "/items/super_alchemy_tea": "超级炼金茶",
                            "/items/super_enhancing_tea": "超级强化茶",
                            "/items/super_cheesesmithing_tea": "超级奶酪锻造茶",
                            "/items/super_crafting_tea": "超级制作茶",
                            "/items/super_tailoring_tea": "超级缝纫茶",
                            "/items/ultra_milking_tea": "究极挤奶茶",
                            "/items/ultra_foraging_tea": "究极采摘茶",
                            "/items/ultra_woodcutting_tea": "究极伐木茶",
                            "/items/ultra_cooking_tea": "究极烹饪茶",
                            "/items/ultra_brewing_tea": "究极冲泡茶",
                            "/items/ultra_alchemy_tea": "究极炼金茶",
                            "/items/ultra_enhancing_tea": "究极强化茶",
                            "/items/ultra_cheesesmithing_tea": "究极奶酪锻造茶",
                            "/items/ultra_crafting_tea": "究极制作茶",
                            "/items/ultra_tailoring_tea": "究极缝纫茶",
                            "/items/gathering_tea": "采集茶",
                            "/items/gourmet_tea": "美食茶",
                            "/items/wisdom_tea": "经验茶",
                            "/items/processing_tea": "加工茶",
                            "/items/efficiency_tea": "效率茶",
                            "/items/artisan_tea": "工匠茶",
                            "/items/catalytic_tea": "催化茶",
                            "/items/blessed_tea": "福气茶",
                            "/items/stamina_coffee": "耐力咖啡",
                            "/items/intelligence_coffee": "智力咖啡",
                            "/items/defense_coffee": "防御咖啡",
                            "/items/attack_coffee": "攻击咖啡",
                            "/items/melee_coffee": "近战咖啡",
                            "/items/ranged_coffee": "远程咖啡",
                            "/items/magic_coffee": "魔法咖啡",
                            "/items/super_stamina_coffee": "超级耐力咖啡",
                            "/items/super_intelligence_coffee": "超级智力咖啡",
                            "/items/super_defense_coffee": "超级防御咖啡",
                            "/items/super_attack_coffee": "超级攻击咖啡",
                            "/items/super_melee_coffee": "超级近战咖啡",
                            "/items/super_ranged_coffee": "超级远程咖啡",
                            "/items/super_magic_coffee": "超级魔法咖啡",
                            "/items/ultra_stamina_coffee": "究极耐力咖啡",
                            "/items/ultra_intelligence_coffee": "究极智力咖啡",
                            "/items/ultra_defense_coffee": "究极防御咖啡",
                            "/items/ultra_attack_coffee": "究极攻击咖啡",
                            "/items/ultra_melee_coffee": "究极近战咖啡",
                            "/items/ultra_ranged_coffee": "究极远程咖啡",
                            "/items/ultra_magic_coffee": "究极魔法咖啡",
                            "/items/wisdom_coffee": "经验咖啡",
                            "/items/lucky_coffee": "幸运咖啡",
                            "/items/swiftness_coffee": "迅捷咖啡",
                            "/items/channeling_coffee": "吟唱咖啡",
                            "/items/critical_coffee": "暴击咖啡",
                            "/items/poke": "破胆之刺",
                            "/items/impale": "透骨之刺",
                            "/items/puncture": "破甲之刺",
                            "/items/penetrating_strike": "贯心之刺",
                            "/items/scratch": "爪影斩",
                            "/items/cleave": "分裂斩",
                            "/items/maim": "血刃斩",
                            "/items/crippling_slash": "致残斩",
                            "/items/smack": "重碾",
                            "/items/sweep": "重扫",
                            "/items/stunning_blow": "重锤",
                            "/items/fracturing_impact": "碎裂冲击",
                            "/items/shield_bash": "盾击",
                            "/items/quick_shot": "快速射击",
                            "/items/aqua_arrow": "流水箭",
                            "/items/flame_arrow": "烈焰箭",
                            "/items/rain_of_arrows": "箭雨",
                            "/items/silencing_shot": "沉默之箭",
                            "/items/steady_shot": "稳定射击",
                            "/items/pestilent_shot": "疫病射击",
                            "/items/penetrating_shot": "贯穿射击",
                            "/items/water_strike": "流水冲击",
                            "/items/ice_spear": "冰枪术",
                            "/items/frost_surge": "冰霜爆裂",
                            "/items/mana_spring": "法力喷泉",
                            "/items/entangle": "缠绕",
                            "/items/toxic_pollen": "剧毒粉尘",
                            "/items/natures_veil": "自然菌幕",
                            "/items/life_drain": "生命吸取",
                            "/items/fireball": "火球",
                            "/items/flame_blast": "熔岩爆裂",
                            "/items/firestorm": "火焰风暴",
                            "/items/smoke_burst": "烟爆灭影",
                            "/items/minor_heal": "初级自愈术",
                            "/items/heal": "自愈术",
                            "/items/quick_aid": "快速治疗术",
                            "/items/rejuvenate": "群体治疗术",
                            "/items/taunt": "嘲讽",
                            "/items/provoke": "挑衅",
                            "/items/toughness": "坚韧",
                            "/items/elusiveness": "闪避",
                            "/items/precision": "精确",
                            "/items/berserk": "狂暴",
                            "/items/elemental_affinity": "元素增幅",
                            "/items/frenzy": "狂速",
                            "/items/spike_shell": "尖刺防护",
                            "/items/retribution": "惩戒",
                            "/items/vampirism": "吸血",
                            "/items/revive": "复活",
                            "/items/insanity": "疯狂",
                            "/items/invincible": "无敌",
                            "/items/speed_aura": "速度光环",
                            "/items/guardian_aura": "守护光环",
                            "/items/fierce_aura": "物理光环",
                            "/items/critical_aura": "暴击光环",
                            "/items/mystic_aura": "元素光环",
                            "/items/gobo_stabber": "哥布林长剑",
                            "/items/gobo_slasher": "哥布林关刀",
                            "/items/gobo_smasher": "哥布林狼牙棒",
                            "/items/spiked_bulwark": "尖刺重盾",
                            "/items/werewolf_slasher": "狼人关刀",
                            "/items/griffin_bulwark": "狮鹫重盾",
                            "/items/griffin_bulwark_refined": "狮鹫重盾(精)",
                            "/items/gobo_shooter": "哥布林弹弓",
                            "/items/vampiric_bow": "吸血弓",
                            "/items/cursed_bow": "咒怨之弓",
                            "/items/cursed_bow_refined": "咒怨之弓(精)",
                            "/items/gobo_boomstick": "哥布林火棍",
                            "/items/cheese_bulwark": "奶酪重盾",
                            "/items/verdant_bulwark": "翠绿重盾",
                            "/items/azure_bulwark": "蔚蓝重盾",
                            "/items/burble_bulwark": "深紫重盾",
                            "/items/crimson_bulwark": "绛红重盾",
                            "/items/rainbow_bulwark": "彩虹重盾",
                            "/items/holy_bulwark": "神圣重盾",
                            "/items/wooden_bow": "木弓",
                            "/items/birch_bow": "桦木弓",
                            "/items/cedar_bow": "雪松弓",
                            "/items/purpleheart_bow": "紫心弓",
                            "/items/ginkgo_bow": "银杏弓",
                            "/items/redwood_bow": "红杉弓",
                            "/items/arcane_bow": "神秘弓",
                            "/items/stalactite_spear": "石钟长枪",
                            "/items/granite_bludgeon": "花岗岩大棒",
                            "/items/furious_spear": "狂怒长枪",
                            "/items/furious_spear_refined": "狂怒长枪(精)",
                            "/items/regal_sword": "君王之剑",
                            "/items/regal_sword_refined": "君王之剑(精)",
                            "/items/chaotic_flail": "混沌连枷",
                            "/items/chaotic_flail_refined": "混沌连枷(精)",
                            "/items/soul_hunter_crossbow": "灵魂猎手弩",
                            "/items/sundering_crossbow": "裂空之弩",
                            "/items/sundering_crossbow_refined": "裂空之弩(精)",
                            "/items/frost_staff": "冰霜法杖",
                            "/items/infernal_battlestaff": "炼狱法杖",
                            "/items/jackalope_staff": "鹿角兔之杖",
                            "/items/rippling_trident": "涟漪三叉戟",
                            "/items/rippling_trident_refined": "涟漪三叉戟(精)",
                            "/items/blooming_trident": "绽放三叉戟",
                            "/items/blooming_trident_refined": "绽放三叉戟(精)",
                            "/items/blazing_trident": "炽焰三叉戟",
                            "/items/blazing_trident_refined": "炽焰三叉戟(精)",
                            "/items/cheese_sword": "奶酪剑",
                            "/items/verdant_sword": "翠绿剑",
                            "/items/azure_sword": "蔚蓝剑",
                            "/items/burble_sword": "深紫剑",
                            "/items/crimson_sword": "绛红剑",
                            "/items/rainbow_sword": "彩虹剑",
                            "/items/holy_sword": "神圣剑",
                            "/items/cheese_spear": "奶酪长枪",
                            "/items/verdant_spear": "翠绿长枪",
                            "/items/azure_spear": "蔚蓝长枪",
                            "/items/burble_spear": "深紫长枪",
                            "/items/crimson_spear": "绛红长枪",
                            "/items/rainbow_spear": "彩虹长枪",
                            "/items/holy_spear": "神圣长枪",
                            "/items/cheese_mace": "奶酪钉头锤",
                            "/items/verdant_mace": "翠绿钉头锤",
                            "/items/azure_mace": "蔚蓝钉头锤",
                            "/items/burble_mace": "深紫钉头锤",
                            "/items/crimson_mace": "绛红钉头锤",
                            "/items/rainbow_mace": "彩虹钉头锤",
                            "/items/holy_mace": "神圣钉头锤",
                            "/items/wooden_crossbow": "木弩",
                            "/items/birch_crossbow": "桦木弩",
                            "/items/cedar_crossbow": "雪松弩",
                            "/items/purpleheart_crossbow": "紫心弩",
                            "/items/ginkgo_crossbow": "银杏弩",
                            "/items/redwood_crossbow": "红杉弩",
                            "/items/arcane_crossbow": "神秘弩",
                            "/items/wooden_water_staff": "木制水法杖",
                            "/items/birch_water_staff": "桦木水法杖",
                            "/items/cedar_water_staff": "雪松水法杖",
                            "/items/purpleheart_water_staff": "紫心水法杖",
                            "/items/ginkgo_water_staff": "银杏水法杖",
                            "/items/redwood_water_staff": "红杉水法杖",
                            "/items/arcane_water_staff": "神秘水法杖",
                            "/items/wooden_nature_staff": "木制自然法杖",
                            "/items/birch_nature_staff": "桦木自然法杖",
                            "/items/cedar_nature_staff": "雪松自然法杖",
                            "/items/purpleheart_nature_staff": "紫心自然法杖",
                            "/items/ginkgo_nature_staff": "银杏自然法杖",
                            "/items/redwood_nature_staff": "红杉自然法杖",
                            "/items/arcane_nature_staff": "神秘自然法杖",
                            "/items/wooden_fire_staff": "木制火法杖",
                            "/items/birch_fire_staff": "桦木火法杖",
                            "/items/cedar_fire_staff": "雪松火法杖",
                            "/items/purpleheart_fire_staff": "紫心火法杖",
                            "/items/ginkgo_fire_staff": "银杏火法杖",
                            "/items/redwood_fire_staff": "红杉火法杖",
                            "/items/arcane_fire_staff": "神秘火法杖",
                            "/items/eye_watch": "掌上监工",
                            "/items/snake_fang_dirk": "蛇牙短剑",
                            "/items/vision_shield": "视觉盾",
                            "/items/gobo_defender": "哥布林防御者",
                            "/items/vampire_fang_dirk": "吸血鬼短剑",
                            "/items/knights_aegis": "骑士盾",
                            "/items/knights_aegis_refined": "骑士盾(精)",
                            "/items/treant_shield": "树人盾",
                            "/items/manticore_shield": "蝎狮盾",
                            "/items/tome_of_healing": "治疗之书",
                            "/items/tome_of_the_elements": "元素之书",
                            "/items/watchful_relic": "警戒遗物",
                            "/items/bishops_codex": "主教法典",
                            "/items/bishops_codex_refined": "主教法典(精)",
                            "/items/cheese_buckler": "奶酪圆盾",
                            "/items/verdant_buckler": "翠绿圆盾",
                            "/items/azure_buckler": "蔚蓝圆盾",
                            "/items/burble_buckler": "深紫圆盾",
                            "/items/crimson_buckler": "绛红圆盾",
                            "/items/rainbow_buckler": "彩虹圆盾",
                            "/items/holy_buckler": "神圣圆盾",
                            "/items/wooden_shield": "木盾",
                            "/items/birch_shield": "桦木盾",
                            "/items/cedar_shield": "雪松盾",
                            "/items/purpleheart_shield": "紫心盾",
                            "/items/ginkgo_shield": "银杏盾",
                            "/items/redwood_shield": "红杉盾",
                            "/items/arcane_shield": "神秘盾",
                            "/items/sinister_cape": "阴森斗篷",
                            "/items/sinister_cape_refined": "阴森斗篷(精)",
                            "/items/chimerical_quiver": "奇幻箭袋",
                            "/items/chimerical_quiver_refined": "奇幻箭袋(精)",
                            "/items/enchanted_cloak": "秘法披风",
                            "/items/enchanted_cloak_refined": "秘法披风(精)",
                            "/items/red_culinary_hat": "红色厨师帽",
                            "/items/snail_shell_helmet": "蜗牛壳头盔",
                            "/items/vision_helmet": "视觉头盔",
                            "/items/fluffy_red_hat": "蓬松红帽子",
                            "/items/corsair_helmet": "掠夺者头盔",
                            "/items/corsair_helmet_refined": "掠夺者头盔(精)",
                            "/items/acrobatic_hood": "杂技师兜帽",
                            "/items/acrobatic_hood_refined": "杂技师兜帽(精)",
                            "/items/magicians_hat": "魔术师帽",
                            "/items/magicians_hat_refined": "魔术师帽(精)",
                            "/items/cheese_helmet": "奶酪头盔",
                            "/items/verdant_helmet": "翠绿头盔",
                            "/items/azure_helmet": "蔚蓝头盔",
                            "/items/burble_helmet": "深紫头盔",
                            "/items/crimson_helmet": "绛红头盔",
                            "/items/rainbow_helmet": "彩虹头盔",
                            "/items/holy_helmet": "神圣头盔",
                            "/items/rough_hood": "粗糙兜帽",
                            "/items/reptile_hood": "爬行动物兜帽",
                            "/items/gobo_hood": "哥布林兜帽",
                            "/items/beast_hood": "野兽兜帽",
                            "/items/umbral_hood": "暗影兜帽",
                            "/items/cotton_hat": "棉帽",
                            "/items/linen_hat": "亚麻帽",
                            "/items/bamboo_hat": "竹帽",
                            "/items/silk_hat": "丝帽",
                            "/items/radiant_hat": "光辉帽",
                            "/items/dairyhands_top": "挤奶工上衣",
                            "/items/foragers_top": "采摘者上衣",
                            "/items/lumberjacks_top": "伐木工上衣",
                            "/items/cheesemakers_top": "奶酪师上衣",
                            "/items/crafters_top": "工匠上衣",
                            "/items/tailors_top": "裁缝上衣",
                            "/items/chefs_top": "厨师上衣",
                            "/items/brewers_top": "饮品师上衣",
                            "/items/alchemists_top": "炼金师上衣",
                            "/items/enhancers_top": "强化师上衣",
                            "/items/gator_vest": "鳄鱼马甲",
                            "/items/turtle_shell_body": "龟壳胸甲",
                            "/items/colossus_plate_body": "巨像胸甲",
                            "/items/demonic_plate_body": "恶魔胸甲",
                            "/items/anchorbound_plate_body": "锚定胸甲",
                            "/items/anchorbound_plate_body_refined": "锚定胸甲(精)",
                            "/items/maelstrom_plate_body": "怒涛胸甲",
                            "/items/maelstrom_plate_body_refined": "怒涛胸甲(精)",
                            "/items/marine_tunic": "海洋皮衣",
                            "/items/revenant_tunic": "亡灵皮衣",
                            "/items/griffin_tunic": "狮鹫皮衣",
                            "/items/kraken_tunic": "克拉肯皮衣",
                            "/items/kraken_tunic_refined": "克拉肯皮衣(精)",
                            "/items/icy_robe_top": "冰霜袍服",
                            "/items/flaming_robe_top": "烈焰袍服",
                            "/items/luna_robe_top": "月神袍服",
                            "/items/royal_water_robe_top": "皇家水系袍服",
                            "/items/royal_water_robe_top_refined": "皇家水系袍服(精)",
                            "/items/royal_nature_robe_top": "皇家自然系袍服",
                            "/items/royal_nature_robe_top_refined": "皇家自然系袍服(精)",
                            "/items/royal_fire_robe_top": "皇家火系袍服",
                            "/items/royal_fire_robe_top_refined": "皇家火系袍服(精)",
                            "/items/cheese_plate_body": "奶酪胸甲",
                            "/items/verdant_plate_body": "翠绿胸甲",
                            "/items/azure_plate_body": "蔚蓝胸甲",
                            "/items/burble_plate_body": "深紫胸甲",
                            "/items/crimson_plate_body": "绛红胸甲",
                            "/items/rainbow_plate_body": "彩虹胸甲",
                            "/items/holy_plate_body": "神圣胸甲",
                            "/items/rough_tunic": "粗糙皮衣",
                            "/items/reptile_tunic": "爬行动物皮衣",
                            "/items/gobo_tunic": "哥布林皮衣",
                            "/items/beast_tunic": "野兽皮衣",
                            "/items/umbral_tunic": "暗影皮衣",
                            "/items/cotton_robe_top": "棉袍服",
                            "/items/linen_robe_top": "亚麻袍服",
                            "/items/bamboo_robe_top": "竹袍服",
                            "/items/silk_robe_top": "丝绸袍服",
                            "/items/radiant_robe_top": "光辉袍服",
                            "/items/dairyhands_bottoms": "挤奶工下装",
                            "/items/foragers_bottoms": "采摘者下装",
                            "/items/lumberjacks_bottoms": "伐木工下装",
                            "/items/cheesemakers_bottoms": "奶酪师下装",
                            "/items/crafters_bottoms": "工匠下装",
                            "/items/tailors_bottoms": "裁缝下装",
                            "/items/chefs_bottoms": "厨师下装",
                            "/items/brewers_bottoms": "饮品师下装",
                            "/items/alchemists_bottoms": "炼金师下装",
                            "/items/enhancers_bottoms": "强化师下装",
                            "/items/turtle_shell_legs": "龟壳腿甲",
                            "/items/colossus_plate_legs": "巨像腿甲",
                            "/items/demonic_plate_legs": "恶魔腿甲",
                            "/items/anchorbound_plate_legs": "锚定腿甲",
                            "/items/anchorbound_plate_legs_refined": "锚定腿甲(精)",
                            "/items/maelstrom_plate_legs": "怒涛腿甲",
                            "/items/maelstrom_plate_legs_refined": "怒涛腿甲(精)",
                            "/items/marine_chaps": "航海皮裤",
                            "/items/revenant_chaps": "亡灵皮裤",
                            "/items/griffin_chaps": "狮鹫皮裤",
                            "/items/kraken_chaps": "克拉肯皮裤",
                            "/items/kraken_chaps_refined": "克拉肯皮裤(精)",
                            "/items/icy_robe_bottoms": "冰霜袍裙",
                            "/items/flaming_robe_bottoms": "烈焰袍裙",
                            "/items/luna_robe_bottoms": "月神袍裙",
                            "/items/royal_water_robe_bottoms": "皇家水系袍裙",
                            "/items/royal_water_robe_bottoms_refined": "皇家水系袍裙(精)",
                            "/items/royal_nature_robe_bottoms": "皇家自然系袍裙",
                            "/items/royal_nature_robe_bottoms_refined": "皇家自然系袍裙(精)",
                            "/items/royal_fire_robe_bottoms": "皇家火系袍裙",
                            "/items/royal_fire_robe_bottoms_refined": "皇家火系袍裙(精)",
                            "/items/cheese_plate_legs": "奶酪腿甲",
                            "/items/verdant_plate_legs": "翠绿腿甲",
                            "/items/azure_plate_legs": "蔚蓝腿甲",
                            "/items/burble_plate_legs": "深紫腿甲",
                            "/items/crimson_plate_legs": "绛红腿甲",
                            "/items/rainbow_plate_legs": "彩虹腿甲",
                            "/items/holy_plate_legs": "神圣腿甲",
                            "/items/rough_chaps": "粗糙皮裤",
                            "/items/reptile_chaps": "爬行动物皮裤",
                            "/items/gobo_chaps": "哥布林皮裤",
                            "/items/beast_chaps": "野兽皮裤",
                            "/items/umbral_chaps": "暗影皮裤",
                            "/items/cotton_robe_bottoms": "棉袍裙",
                            "/items/linen_robe_bottoms": "亚麻袍裙",
                            "/items/bamboo_robe_bottoms": "竹袍裙",
                            "/items/silk_robe_bottoms": "丝绸袍裙",
                            "/items/radiant_robe_bottoms": "光辉袍裙",
                            "/items/enchanted_gloves": "附魔手套",
                            "/items/pincer_gloves": "蟹钳手套",
                            "/items/panda_gloves": "熊猫手套",
                            "/items/magnetic_gloves": "磁力手套",
                            "/items/dodocamel_gauntlets": "渡渡驼护手",
                            "/items/dodocamel_gauntlets_refined": "渡渡驼护手(精)",
                            "/items/sighted_bracers": "瞄准护腕",
                            "/items/marksman_bracers": "神射护腕",
                            "/items/marksman_bracers_refined": "神射护腕(精)",
                            "/items/chrono_gloves": "时空手套",
                            "/items/cheese_gauntlets": "奶酪护手",
                            "/items/verdant_gauntlets": "翠绿护手",
                            "/items/azure_gauntlets": "蔚蓝护手",
                            "/items/burble_gauntlets": "深紫护手",
                            "/items/crimson_gauntlets": "绛红护手",
                            "/items/rainbow_gauntlets": "彩虹护手",
                            "/items/holy_gauntlets": "神圣护手",
                            "/items/rough_bracers": "粗糙护腕",
                            "/items/reptile_bracers": "爬行动物护腕",
                            "/items/gobo_bracers": "哥布林护腕",
                            "/items/beast_bracers": "野兽护腕",
                            "/items/umbral_bracers": "暗影护腕",
                            "/items/cotton_gloves": "棉手套",
                            "/items/linen_gloves": "亚麻手套",
                            "/items/bamboo_gloves": "竹手套",
                            "/items/silk_gloves": "丝手套",
                            "/items/radiant_gloves": "光辉手套",
                            "/items/collectors_boots": "收藏家靴",
                            "/items/shoebill_shoes": "鲸头鹳鞋",
                            "/items/black_bear_shoes": "黑熊鞋",
                            "/items/grizzly_bear_shoes": "棕熊鞋",
                            "/items/polar_bear_shoes": "北极熊鞋",
                            "/items/centaur_boots": "半人马靴",
                            "/items/sorcerer_boots": "巫师靴",
                            "/items/cheese_boots": "奶酪靴",
                            "/items/verdant_boots": "翠绿靴",
                            "/items/azure_boots": "蔚蓝靴",
                            "/items/burble_boots": "深紫靴",
                            "/items/crimson_boots": "绛红靴",
                            "/items/rainbow_boots": "彩虹靴",
                            "/items/holy_boots": "神圣靴",
                            "/items/rough_boots": "粗糙靴",
                            "/items/reptile_boots": "爬行动物靴",
                            "/items/gobo_boots": "哥布林靴",
                            "/items/beast_boots": "野兽靴",
                            "/items/umbral_boots": "暗影靴",
                            "/items/cotton_boots": "棉靴",
                            "/items/linen_boots": "亚麻靴",
                            "/items/bamboo_boots": "竹靴",
                            "/items/silk_boots": "丝靴",
                            "/items/radiant_boots": "光辉靴",
                            "/items/small_pouch": "小袋子",
                            "/items/medium_pouch": "中袋子",
                            "/items/large_pouch": "大袋子",
                            "/items/giant_pouch": "巨大袋子",
                            "/items/gluttonous_pouch": "贪食之袋",
                            "/items/guzzling_pouch": "暴饮之囊",
                            "/items/necklace_of_efficiency": "效率项链",
                            "/items/fighter_necklace": "战士项链",
                            "/items/ranger_necklace": "射手项链",
                            "/items/wizard_necklace": "巫师项链",
                            "/items/necklace_of_wisdom": "经验项链",
                            "/items/necklace_of_speed": "速度项链",
                            "/items/philosophers_necklace": "贤者项链",
                            "/items/earrings_of_gathering": "采集耳环",
                            "/items/earrings_of_essence_find": "精华发现耳环",
                            "/items/earrings_of_armor": "护甲耳环",
                            "/items/earrings_of_regeneration": "恢复耳环",
                            "/items/earrings_of_resistance": "抗性耳环",
                            "/items/earrings_of_rare_find": "稀有发现耳环",
                            "/items/earrings_of_critical_strike": "暴击耳环",
                            "/items/philosophers_earrings": "贤者耳环",
                            "/items/ring_of_gathering": "采集戒指",
                            "/items/ring_of_essence_find": "精华发现戒指",
                            "/items/ring_of_armor": "护甲戒指",
                            "/items/ring_of_regeneration": "恢复戒指",
                            "/items/ring_of_resistance": "抗性戒指",
                            "/items/ring_of_rare_find": "稀有发现戒指",
                            "/items/ring_of_critical_strike": "暴击戒指",
                            "/items/philosophers_ring": "贤者戒指",
                            "/items/trainee_milking_charm": "实习挤奶护符",
                            "/items/basic_milking_charm": "基础挤奶护符",
                            "/items/advanced_milking_charm": "高级挤奶护符",
                            "/items/expert_milking_charm": "专家挤奶护符",
                            "/items/master_milking_charm": "大师挤奶护符",
                            "/items/grandmaster_milking_charm": "宗师挤奶护符",
                            "/items/trainee_foraging_charm": "实习采摘护符",
                            "/items/basic_foraging_charm": "基础采摘护符",
                            "/items/advanced_foraging_charm": "高级采摘护符",
                            "/items/expert_foraging_charm": "专家采摘护符",
                            "/items/master_foraging_charm": "大师采摘护符",
                            "/items/grandmaster_foraging_charm": "宗师采摘护符",
                            "/items/trainee_woodcutting_charm": "实习伐木护符",
                            "/items/basic_woodcutting_charm": "基础伐木护符",
                            "/items/advanced_woodcutting_charm": "高级伐木护符",
                            "/items/expert_woodcutting_charm": "专家伐木护符",
                            "/items/master_woodcutting_charm": "大师伐木护符",
                            "/items/grandmaster_woodcutting_charm": "宗师伐木护符",
                            "/items/trainee_cheesesmithing_charm": "实习奶酪锻造护符",
                            "/items/basic_cheesesmithing_charm": "基础奶酪锻造护符",
                            "/items/advanced_cheesesmithing_charm": "高级奶酪锻造护符",
                            "/items/expert_cheesesmithing_charm": "专家奶酪锻造护符",
                            "/items/master_cheesesmithing_charm": "大师奶酪锻造护符",
                            "/items/grandmaster_cheesesmithing_charm": "宗师奶酪锻造护符",
                            "/items/trainee_crafting_charm": "实习制作护符",
                            "/items/basic_crafting_charm": "基础制作护符",
                            "/items/advanced_crafting_charm": "高级制作护符",
                            "/items/expert_crafting_charm": "专家制作护符",
                            "/items/master_crafting_charm": "大师制作护符",
                            "/items/grandmaster_crafting_charm": "宗师制作护符",
                            "/items/trainee_tailoring_charm": "实习缝纫护符",
                            "/items/basic_tailoring_charm": "基础缝纫护符",
                            "/items/advanced_tailoring_charm": "高级缝纫护符",
                            "/items/expert_tailoring_charm": "专家缝纫护符",
                            "/items/master_tailoring_charm": "大师缝纫护符",
                            "/items/grandmaster_tailoring_charm": "宗师缝纫护符",
                            "/items/trainee_cooking_charm": "实习烹饪护符",
                            "/items/basic_cooking_charm": "基础烹饪护符",
                            "/items/advanced_cooking_charm": "高级烹饪护符",
                            "/items/expert_cooking_charm": "专家烹饪护符",
                            "/items/master_cooking_charm": "大师烹饪护符",
                            "/items/grandmaster_cooking_charm": "宗师烹饪护符",
                            "/items/trainee_brewing_charm": "实习冲泡护符",
                            "/items/basic_brewing_charm": "基础冲泡护符",
                            "/items/advanced_brewing_charm": "高级冲泡护符",
                            "/items/expert_brewing_charm": "专家冲泡护符",
                            "/items/master_brewing_charm": "大师冲泡护符",
                            "/items/grandmaster_brewing_charm": "宗师冲泡护符",
                            "/items/trainee_alchemy_charm": "实习炼金护符",
                            "/items/basic_alchemy_charm": "基础炼金护符",
                            "/items/advanced_alchemy_charm": "高级炼金护符",
                            "/items/expert_alchemy_charm": "专家炼金护符",
                            "/items/master_alchemy_charm": "大师炼金护符",
                            "/items/grandmaster_alchemy_charm": "宗师炼金护符",
                            "/items/trainee_enhancing_charm": "实习强化护符",
                            "/items/basic_enhancing_charm": "基础强化护符",
                            "/items/advanced_enhancing_charm": "高级强化护符",
                            "/items/expert_enhancing_charm": "专家强化护符",
                            "/items/master_enhancing_charm": "大师强化护符",
                            "/items/grandmaster_enhancing_charm": "宗师强化护符",
                            "/items/trainee_stamina_charm": "实习耐力护符",
                            "/items/basic_stamina_charm": "基础耐力护符",
                            "/items/advanced_stamina_charm": "高级耐力护符",
                            "/items/expert_stamina_charm": "专家耐力护符",
                            "/items/master_stamina_charm": "大师耐力护符",
                            "/items/grandmaster_stamina_charm": "宗师耐力护符",
                            "/items/trainee_intelligence_charm": "实习智力护符",
                            "/items/basic_intelligence_charm": "基础智力护符",
                            "/items/advanced_intelligence_charm": "高级智力护符",
                            "/items/expert_intelligence_charm": "专家智力护符",
                            "/items/master_intelligence_charm": "大师智力护符",
                            "/items/grandmaster_intelligence_charm": "宗师智力护符",
                            "/items/trainee_attack_charm": "实习攻击护符",
                            "/items/basic_attack_charm": "基础攻击护符",
                            "/items/advanced_attack_charm": "高级攻击护符",
                            "/items/expert_attack_charm": "专家攻击护符",
                            "/items/master_attack_charm": "大师攻击护符",
                            "/items/grandmaster_attack_charm": "宗师攻击护符",
                            "/items/trainee_defense_charm": "实习防御护符",
                            "/items/basic_defense_charm": "基础防御护符",
                            "/items/advanced_defense_charm": "高级防御护符",
                            "/items/expert_defense_charm": "专家防御护符",
                            "/items/master_defense_charm": "大师防御护符",
                            "/items/grandmaster_defense_charm": "宗师防御护符",
                            "/items/trainee_melee_charm": "实习近战护符",
                            "/items/basic_melee_charm": "基础近战护符",
                            "/items/advanced_melee_charm": "高级近战护符",
                            "/items/expert_melee_charm": "专家近战护符",
                            "/items/master_melee_charm": "大师近战护符",
                            "/items/grandmaster_melee_charm": "宗师近战护符",
                            "/items/trainee_ranged_charm": "实习远程护符",
                            "/items/basic_ranged_charm": "基础远程护符",
                            "/items/advanced_ranged_charm": "高级远程护符",
                            "/items/expert_ranged_charm": "专家远程护符",
                            "/items/master_ranged_charm": "大师远程护符",
                            "/items/grandmaster_ranged_charm": "宗师远程护符",
                            "/items/trainee_magic_charm": "实习魔法护符",
                            "/items/basic_magic_charm": "基础魔法护符",
                            "/items/advanced_magic_charm": "高级魔法护符",
                            "/items/expert_magic_charm": "专家魔法护符",
                            "/items/master_magic_charm": "大师魔法护符",
                            "/items/grandmaster_magic_charm": "宗师魔法护符",
                            "/items/basic_task_badge": "基础任务徽章",
                            "/items/advanced_task_badge": "高级任务徽章",
                            "/items/expert_task_badge": "专家任务徽章",
                            "/items/celestial_brush": "星空刷子",
                            "/items/cheese_brush": "奶酪刷子",
                            "/items/verdant_brush": "翠绿刷子",
                            "/items/azure_brush": "蔚蓝刷子",
                            "/items/burble_brush": "深紫刷子",
                            "/items/crimson_brush": "绛红刷子",
                            "/items/rainbow_brush": "彩虹刷子",
                            "/items/holy_brush": "神圣刷子",
                            "/items/celestial_shears": "星空剪刀",
                            "/items/cheese_shears": "奶酪剪刀",
                            "/items/verdant_shears": "翠绿剪刀",
                            "/items/azure_shears": "蔚蓝剪刀",
                            "/items/burble_shears": "深紫剪刀",
                            "/items/crimson_shears": "绛红剪刀",
                            "/items/rainbow_shears": "彩虹剪刀",
                            "/items/holy_shears": "神圣剪刀",
                            "/items/celestial_hatchet": "星空斧头",
                            "/items/cheese_hatchet": "奶酪斧头",
                            "/items/verdant_hatchet": "翠绿斧头",
                            "/items/azure_hatchet": "蔚蓝斧头",
                            "/items/burble_hatchet": "深紫斧头",
                            "/items/crimson_hatchet": "绛红斧头",
                            "/items/rainbow_hatchet": "彩虹斧头",
                            "/items/holy_hatchet": "神圣斧头",
                            "/items/celestial_hammer": "星空锤子",
                            "/items/cheese_hammer": "奶酪锤子",
                            "/items/verdant_hammer": "翠绿锤子",
                            "/items/azure_hammer": "蔚蓝锤子",
                            "/items/burble_hammer": "深紫锤子",
                            "/items/crimson_hammer": "绛红锤子",
                            "/items/rainbow_hammer": "彩虹锤子",
                            "/items/holy_hammer": "神圣锤子",
                            "/items/celestial_chisel": "星空凿子",
                            "/items/cheese_chisel": "奶酪凿子",
                            "/items/verdant_chisel": "翠绿凿子",
                            "/items/azure_chisel": "蔚蓝凿子",
                            "/items/burble_chisel": "深紫凿子",
                            "/items/crimson_chisel": "绛红凿子",
                            "/items/rainbow_chisel": "彩虹凿子",
                            "/items/holy_chisel": "神圣凿子",
                            "/items/celestial_needle": "星空针",
                            "/items/cheese_needle": "奶酪针",
                            "/items/verdant_needle": "翠绿针",
                            "/items/azure_needle": "蔚蓝针",
                            "/items/burble_needle": "深紫针",
                            "/items/crimson_needle": "绛红针",
                            "/items/rainbow_needle": "彩虹针",
                            "/items/holy_needle": "神圣针",
                            "/items/celestial_spatula": "星空锅铲",
                            "/items/cheese_spatula": "奶酪锅铲",
                            "/items/verdant_spatula": "翠绿锅铲",
                            "/items/azure_spatula": "蔚蓝锅铲",
                            "/items/burble_spatula": "深紫锅铲",
                            "/items/crimson_spatula": "绛红锅铲",
                            "/items/rainbow_spatula": "彩虹锅铲",
                            "/items/holy_spatula": "神圣锅铲",
                            "/items/celestial_pot": "星空壶",
                            "/items/cheese_pot": "奶酪壶",
                            "/items/verdant_pot": "翠绿壶",
                            "/items/azure_pot": "蔚蓝壶",
                            "/items/burble_pot": "深紫壶",
                            "/items/crimson_pot": "绛红壶",
                            "/items/rainbow_pot": "彩虹壶",
                            "/items/holy_pot": "神圣壶",
                            "/items/celestial_alembic": "星空蒸馏器",
                            "/items/cheese_alembic": "奶酪蒸馏器",
                            "/items/verdant_alembic": "翠绿蒸馏器",
                            "/items/azure_alembic": "蔚蓝蒸馏器",
                            "/items/burble_alembic": "深紫蒸馏器",
                            "/items/crimson_alembic": "绛红蒸馏器",
                            "/items/rainbow_alembic": "彩虹蒸馏器",
                            "/items/holy_alembic": "神圣蒸馏器",
                            "/items/celestial_enhancer": "星空强化器",
                            "/items/cheese_enhancer": "奶酪强化器",
                            "/items/verdant_enhancer": "翠绿强化器",
                            "/items/azure_enhancer": "蔚蓝强化器",
                            "/items/burble_enhancer": "深紫强化器",
                            "/items/crimson_enhancer": "绛红强化器",
                            "/items/rainbow_enhancer": "彩虹强化器",
                            "/items/holy_enhancer": "神圣强化器",
                            "/items/milk": "牛奶",
                            "/items/verdant_milk": "翠绿牛奶",
                            "/items/azure_milk": "蔚蓝牛奶",
                            "/items/burble_milk": "深紫牛奶",
                            "/items/crimson_milk": "绛红牛奶",
                            "/items/rainbow_milk": "彩虹牛奶",
                            "/items/holy_milk": "神圣牛奶",
                            "/items/cheese": "奶酪",
                            "/items/verdant_cheese": "翠绿奶酪",
                            "/items/azure_cheese": "蔚蓝奶酪",
                            "/items/burble_cheese": "深紫奶酪",
                            "/items/crimson_cheese": "绛红奶酪",
                            "/items/rainbow_cheese": "彩虹奶酪",
                            "/items/holy_cheese": "神圣奶酪",
                            "/items/log": "原木",
                            "/items/birch_log": "白桦原木",
                            "/items/cedar_log": "雪松原木",
                            "/items/purpleheart_log": "紫心原木",
                            "/items/ginkgo_log": "银杏原木",
                            "/items/redwood_log": "红杉原木",
                            "/items/arcane_log": "神秘原木",
                            "/items/lumber": "木板",
                            "/items/birch_lumber": "白桦木板",
                            "/items/cedar_lumber": "雪松木板",
                            "/items/purpleheart_lumber": "紫心木板",
                            "/items/ginkgo_lumber": "银杏木板",
                            "/items/redwood_lumber": "红杉木板",
                            "/items/arcane_lumber": "神秘木板",
                            "/items/rough_hide": "粗糙兽皮",
                            "/items/reptile_hide": "爬行动物皮",
                            "/items/gobo_hide": "哥布林皮",
                            "/items/beast_hide": "野兽皮",
                            "/items/umbral_hide": "暗影皮",
                            "/items/rough_leather": "粗糙皮革",
                            "/items/reptile_leather": "爬行动物皮革",
                            "/items/gobo_leather": "哥布林皮革",
                            "/items/beast_leather": "野兽皮革",
                            "/items/umbral_leather": "暗影皮革",
                            "/items/cotton": "棉花",
                            "/items/flax": "亚麻",
                            "/items/bamboo_branch": "竹子",
                            "/items/cocoon": "蚕茧",
                            "/items/radiant_fiber": "光辉纤维",
                            "/items/cotton_fabric": "棉花布料",
                            "/items/linen_fabric": "亚麻布料",
                            "/items/bamboo_fabric": "竹子布料",
                            "/items/silk_fabric": "丝绸",
                            "/items/radiant_fabric": "光辉布料",
                            "/items/egg": "鸡蛋",
                            "/items/wheat": "小麦",
                            "/items/sugar": "糖",
                            "/items/blueberry": "蓝莓",
                            "/items/blackberry": "黑莓",
                            "/items/strawberry": "草莓",
                            "/items/mooberry": "哞莓",
                            "/items/marsberry": "火星莓",
                            "/items/spaceberry": "太空莓",
                            "/items/apple": "苹果",
                            "/items/orange": "橙子",
                            "/items/plum": "李子",
                            "/items/peach": "桃子",
                            "/items/dragon_fruit": "火龙果",
                            "/items/star_fruit": "杨桃",
                            "/items/arabica_coffee_bean": "低级咖啡豆",
                            "/items/robusta_coffee_bean": "中级咖啡豆",
                            "/items/liberica_coffee_bean": "高级咖啡豆",
                            "/items/excelsa_coffee_bean": "特级咖啡豆",
                            "/items/fieriosa_coffee_bean": "火山咖啡豆",
                            "/items/spacia_coffee_bean": "太空咖啡豆",
                            "/items/green_tea_leaf": "绿茶叶",
                            "/items/black_tea_leaf": "黑茶叶",
                            "/items/burble_tea_leaf": "紫茶叶",
                            "/items/moolong_tea_leaf": "哞龙茶叶",
                            "/items/red_tea_leaf": "红茶叶",
                            "/items/emp_tea_leaf": "虚空茶叶",
                            "/items/catalyst_of_coinification": "点金催化剂",
                            "/items/catalyst_of_decomposition": "分解催化剂",
                            "/items/catalyst_of_transmutation": "转化催化剂",
                            "/items/prime_catalyst": "至高催化剂",
                            "/items/snake_fang": "蛇牙",
                            "/items/shoebill_feather": "鲸头鹳羽毛",
                            "/items/snail_shell": "蜗牛壳",
                            "/items/crab_pincer": "蟹钳",
                            "/items/turtle_shell": "乌龟壳",
                            "/items/marine_scale": "海洋鳞片",
                            "/items/treant_bark": "树皮",
                            "/items/centaur_hoof": "半人马蹄",
                            "/items/luna_wing": "月神翼",
                            "/items/gobo_rag": "哥布林抹布",
                            "/items/goggles": "护目镜",
                            "/items/magnifying_glass": "放大镜",
                            "/items/eye_of_the_watcher": "观察者之眼",
                            "/items/icy_cloth": "冰霜织物",
                            "/items/flaming_cloth": "烈焰织物",
                            "/items/sorcerers_sole": "魔法师鞋底",
                            "/items/chrono_sphere": "时空球",
                            "/items/frost_sphere": "冰霜球",
                            "/items/panda_fluff": "熊猫绒",
                            "/items/black_bear_fluff": "黑熊绒",
                            "/items/grizzly_bear_fluff": "棕熊绒",
                            "/items/polar_bear_fluff": "北极熊绒",
                            "/items/red_panda_fluff": "小熊猫绒",
                            "/items/magnet": "磁铁",
                            "/items/stalactite_shard": "钟乳石碎片",
                            "/items/living_granite": "花岗岩",
                            "/items/colossus_core": "巨像核心",
                            "/items/vampire_fang": "吸血鬼之牙",
                            "/items/werewolf_claw": "狼人之爪",
                            "/items/revenant_anima": "亡者之魂",
                            "/items/soul_fragment": "灵魂碎片",
                            "/items/infernal_ember": "地狱余烬",
                            "/items/demonic_core": "恶魔核心",
                            "/items/griffin_leather": "狮鹫之皮",
                            "/items/manticore_sting": "蝎狮之刺",
                            "/items/jackalope_antler": "鹿角兔之角",
                            "/items/dodocamel_plume": "渡渡驼之翎",
                            "/items/griffin_talon": "狮鹫之爪",
                            "/items/chimerical_refinement_shard": "奇幻精炼碎片",
                            "/items/acrobats_ribbon": "杂技师彩带",
                            "/items/magicians_cloth": "魔术师织物",
                            "/items/chaotic_chain": "混沌锁链",
                            "/items/cursed_ball": "诅咒之球",
                            "/items/sinister_refinement_shard": "阴森精炼碎片",
                            "/items/royal_cloth": "皇家织物",
                            "/items/knights_ingot": "骑士之锭",
                            "/items/bishops_scroll": "主教卷轴",
                            "/items/regal_jewel": "君王宝石",
                            "/items/sundering_jewel": "裂空宝石",
                            "/items/enchanted_refinement_shard": "秘法精炼碎片",
                            "/items/marksman_brooch": "神射胸针",
                            "/items/corsair_crest": "掠夺者徽章",
                            "/items/damaged_anchor": "破损船锚",
                            "/items/maelstrom_plating": "怒涛甲片",
                            "/items/kraken_leather": "克拉肯皮革",
                            "/items/kraken_fang": "克拉肯之牙",
                            "/items/pirate_refinement_shard": "海盗精炼碎片",
                            "/items/butter_of_proficiency": "精通之油",
                            "/items/thread_of_expertise": "专精之线",
                            "/items/branch_of_insight": "洞察之枝",
                            "/items/gluttonous_energy": "贪食能量",
                            "/items/guzzling_energy": "暴饮能量",
                            "/items/milking_essence": "挤奶精华",
                            "/items/foraging_essence": "采摘精华",
                            "/items/woodcutting_essence": "伐木精华",
                            "/items/cheesesmithing_essence": "奶酪锻造精华",
                            "/items/crafting_essence": "制作精华",
                            "/items/tailoring_essence": "缝纫精华",
                            "/items/cooking_essence": "烹饪精华",
                            "/items/brewing_essence": "冲泡精华",
                            "/items/alchemy_essence": "炼金精华",
                            "/items/enhancing_essence": "强化精华",
                            "/items/swamp_essence": "沼泽精华",
                            "/items/aqua_essence": "海洋精华",
                            "/items/jungle_essence": "丛林精华",
                            "/items/gobo_essence": "哥布林精华",
                            "/items/eyessence": "眼精华",
                            "/items/sorcerer_essence": "法师精华",
                            "/items/bear_essence": "熊熊精华",
                            "/items/golem_essence": "魔像精华",
                            "/items/twilight_essence": "暮光精华",
                            "/items/abyssal_essence": "地狱精华",
                            "/items/chimerical_essence": "奇幻精华",
                            "/items/sinister_essence": "阴森精华",
                            "/items/enchanted_essence": "秘法精华",
                            "/items/pirate_essence": "海盗精华",
                            "/items/task_crystal": "任务水晶",
                            "/items/star_fragment": "星光碎片",
                            "/items/pearl": "珍珠",
                            "/items/amber": "琥珀",
                            "/items/garnet": "石榴石",
                            "/items/jade": "翡翠",
                            "/items/amethyst": "紫水晶",
                            "/items/moonstone": "月亮石",
                            "/items/sunstone": "太阳石",
                            "/items/philosophers_stone": "贤者之石",
                            "/items/crushed_pearl": "珍珠碎片",
                            "/items/crushed_amber": "琥珀碎片",
                            "/items/crushed_garnet": "石榴石碎片",
                            "/items/crushed_jade": "翡翠碎片",
                            "/items/crushed_amethyst": "紫水晶碎片",
                            "/items/crushed_moonstone": "月亮石碎片",
                            "/items/crushed_sunstone": "太阳石碎片",
                            "/items/crushed_philosophers_stone": "贤者之石碎片",
                            "/items/shard_of_protection": "保护碎片",
                            "/items/mirror_of_protection": "保护之镜"
                        },
                        "itemDescriptions": {
                            "/items/coin": "基础货币",
                            "/items/task_token": "任务代币。可在任务商店中使用这些代币",
                            "/items/chimerical_token": "来自【奇幻洞穴】的地下城代币。可以在地下城商店里消费",
                            "/items/sinister_token": "来自【阴森马戏团】的地下城代币。可以在地下城商店里消费",
                            "/items/enchanted_token": "来自【秘法要塞】的地下城代币。可以在地下城商店里消费",
                            "/items/pirate_token": "来自【海盗基地】的地下城代币。可以在地下城商店里消费",
                            "/items/cowbell": "高级货币。可在牛铃商店购买或使用这些货币",
                            "/items/bag_of_10_cowbells": "可交易的一袋牛铃,每袋包含10个牛铃。只能整袋交易,一旦打开将无法出售",
                            "/items/purples_gift": "获得任务积分后小紫牛赠送的礼物,看起来里面装着物品!",
                            "/items/small_meteorite_cache": "在采集时可以找到,看起来里面装着物品!",
                            "/items/medium_meteorite_cache": "在采集时可以找到,看起来里面装着物品!",
                            "/items/large_meteorite_cache": "在采集时可以找到,看起来里面装着物品!",
                            "/items/small_artisans_crate": "在生产时可以找到,看起来里面装着物品!",
                            "/items/medium_artisans_crate": "在生产时可以找到,看起来里面装着物品!",
                            "/items/large_artisans_crate": "在生产时可以找到,看起来里面装着物品!",
                            "/items/small_treasure_chest": "可以从怪物身上找到,看起来里面装着物品!",
                            "/items/medium_treasure_chest": "可以从怪物身上找到,看起来里面装着物品!",
                            "/items/large_treasure_chest": "可以从怪物身上找到,看起来里面装着物品!",
                            "/items/chimerical_chest": "攻克【奇幻洞穴】后的奖励,可以用【奇幻宝箱钥匙】打开",
                            "/items/chimerical_refinement_chest": "攻克【奇幻洞穴】(T1+) 后的奖励,可以用【奇幻宝箱钥匙】打开",
                            "/items/sinister_chest": "攻克【阴森马戏团】后的奖励,可以用【阴森宝箱钥匙】打开",
                            "/items/sinister_refinement_chest": "攻克【阴森马戏团】(T1+)后的奖励,可以用【阴森宝箱钥匙】打开",
                            "/items/enchanted_chest": "攻克【秘法要塞】后的奖励,可以用【秘法宝箱钥匙】打开",
                            "/items/enchanted_refinement_chest": "攻克【秘法要塞】(T1+)后的奖励,可以用【秘法宝箱钥匙】打开",
                            "/items/pirate_chest": "攻克【海盗基地】后的奖励,可以用【海盗宝箱钥匙】打开",
                            "/items/pirate_refinement_chest": "攻克【海盗基地】(T1+)后的奖励,可以用【海盗宝箱钥匙】打开",
                            "/items/blue_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                            "/items/green_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                            "/items/purple_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                            "/items/white_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                            "/items/orange_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                            "/items/brown_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                            "/items/stone_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                            "/items/dark_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                            "/items/burning_key_fragment": "看起来是某种钥匙的碎片,用来制作地下城钥匙",
                            "/items/chimerical_entry_key": "允许进入地下城【奇幻洞穴】1次",
                            "/items/chimerical_chest_key": "开启一个奇幻宝箱",
                            "/items/sinister_entry_key": "允许进入地下城【阴森马戏团】1次",
                            "/items/sinister_chest_key": "开启一个阴森宝箱",
                            "/items/enchanted_entry_key": "允许进入地下城【秘法要塞】1次",
                            "/items/enchanted_chest_key": "开启一个秘法宝箱",
                            "/items/pirate_entry_key": "允许进入地下城【海盗基地】1次",
                            "/items/pirate_chest_key": "开启一个海盗宝箱",
                            "/items/donut": "",
                            "/items/blueberry_donut": "",
                            "/items/blackberry_donut": "",
                            "/items/strawberry_donut": "",
                            "/items/mooberry_donut": "",
                            "/items/marsberry_donut": "",
                            "/items/spaceberry_donut": "",
                            "/items/cupcake": "",
                            "/items/blueberry_cake": "",
                            "/items/blackberry_cake": "",
                            "/items/strawberry_cake": "",
                            "/items/mooberry_cake": "",
                            "/items/marsberry_cake": "",
                            "/items/spaceberry_cake": "",
                            "/items/gummy": "",
                            "/items/apple_gummy": "",
                            "/items/orange_gummy": "",
                            "/items/plum_gummy": "",
                            "/items/peach_gummy": "",
                            "/items/dragon_fruit_gummy": "",
                            "/items/star_fruit_gummy": "",
                            "/items/yogurt": "",
                            "/items/apple_yogurt": "",
                            "/items/orange_yogurt": "",
                            "/items/plum_yogurt": "",
                            "/items/peach_yogurt": "",
                            "/items/dragon_fruit_yogurt": "",
                            "/items/star_fruit_yogurt": "",
                            "/items/milking_tea": "",
                            "/items/foraging_tea": "",
                            "/items/woodcutting_tea": "",
                            "/items/cooking_tea": "",
                            "/items/brewing_tea": "",
                            "/items/alchemy_tea": "",
                            "/items/enhancing_tea": "",
                            "/items/cheesesmithing_tea": "",
                            "/items/crafting_tea": "",
                            "/items/tailoring_tea": "",
                            "/items/super_milking_tea": "",
                            "/items/super_foraging_tea": "",
                            "/items/super_woodcutting_tea": "",
                            "/items/super_cooking_tea": "",
                            "/items/super_brewing_tea": "",
                            "/items/super_alchemy_tea": "",
                            "/items/super_enhancing_tea": "",
                            "/items/super_cheesesmithing_tea": "",
                            "/items/super_crafting_tea": "",
                            "/items/super_tailoring_tea": "",
                            "/items/ultra_milking_tea": "",
                            "/items/ultra_foraging_tea": "",
                            "/items/ultra_woodcutting_tea": "",
                            "/items/ultra_cooking_tea": "",
                            "/items/ultra_brewing_tea": "",
                            "/items/ultra_alchemy_tea": "",
                            "/items/ultra_enhancing_tea": "",
                            "/items/ultra_cheesesmithing_tea": "",
                            "/items/ultra_crafting_tea": "",
                            "/items/ultra_tailoring_tea": "",
                            "/items/gathering_tea": "",
                            "/items/gourmet_tea": "",
                            "/items/wisdom_tea": "",
                            "/items/processing_tea": "",
                            "/items/efficiency_tea": "",
                            "/items/artisan_tea": "",
                            "/items/catalytic_tea": "",
                            "/items/blessed_tea": "",
                            "/items/stamina_coffee": "",
                            "/items/intelligence_coffee": "",
                            "/items/defense_coffee": "",
                            "/items/attack_coffee": "",
                            "/items/melee_coffee": "",
                            "/items/ranged_coffee": "",
                            "/items/magic_coffee": "",
                            "/items/super_stamina_coffee": "",
                            "/items/super_intelligence_coffee": "",
                            "/items/super_defense_coffee": "",
                            "/items/super_attack_coffee": "",
                            "/items/super_melee_coffee": "",
                            "/items/super_ranged_coffee": "",
                            "/items/super_magic_coffee": "",
                            "/items/ultra_stamina_coffee": "",
                            "/items/ultra_intelligence_coffee": "",
                            "/items/ultra_defense_coffee": "",
                            "/items/ultra_attack_coffee": "",
                            "/items/ultra_melee_coffee": "",
                            "/items/ultra_ranged_coffee": "",
                            "/items/ultra_magic_coffee": "",
                            "/items/wisdom_coffee": "",
                            "/items/lucky_coffee": "",
                            "/items/swiftness_coffee": "",
                            "/items/channeling_coffee": "",
                            "/items/critical_coffee": "",
                            "/items/poke": "",
                            "/items/impale": "",
                            "/items/puncture": "",
                            "/items/penetrating_strike": "",
                            "/items/scratch": "",
                            "/items/cleave": "",
                            "/items/maim": "",
                            "/items/crippling_slash": "",
                            "/items/smack": "",
                            "/items/sweep": "",
                            "/items/stunning_blow": "",
                            "/items/fracturing_impact": "",
                            "/items/shield_bash": "",
                            "/items/quick_shot": "",
                            "/items/aqua_arrow": "",
                            "/items/flame_arrow": "",
                            "/items/rain_of_arrows": "",
                            "/items/silencing_shot": "",
                            "/items/steady_shot": "",
                            "/items/pestilent_shot": "",
                            "/items/penetrating_shot": "",
                            "/items/water_strike": "",
                            "/items/ice_spear": "",
                            "/items/frost_surge": "",
                            "/items/mana_spring": "",
                            "/items/entangle": "",
                            "/items/toxic_pollen": "",
                            "/items/natures_veil": "",
                            "/items/life_drain": "",
                            "/items/fireball": "",
                            "/items/flame_blast": "",
                            "/items/firestorm": "",
                            "/items/smoke_burst": "",
                            "/items/minor_heal": "",
                            "/items/heal": "",
                            "/items/quick_aid": "",
                            "/items/rejuvenate": "",
                            "/items/taunt": "",
                            "/items/provoke": "",
                            "/items/toughness": "",
                            "/items/elusiveness": "",
                            "/items/precision": "",
                            "/items/berserk": "",
                            "/items/elemental_affinity": "",
                            "/items/frenzy": "",
                            "/items/spike_shell": "",
                            "/items/retribution": "",
                            "/items/vampirism": "",
                            "/items/revive": "",
                            "/items/insanity": "",
                            "/items/invincible": "",
                            "/items/speed_aura": "",
                            "/items/guardian_aura": "",
                            "/items/fierce_aura": "",
                            "/items/critical_aura": "",
                            "/items/mystic_aura": "",
                            "/items/gobo_stabber": "",
                            "/items/gobo_slasher": "",
                            "/items/gobo_smasher": "",
                            "/items/spiked_bulwark": "",
                            "/items/werewolf_slasher": "",
                            "/items/griffin_bulwark": "",
                            "/items/griffin_bulwark_refined": "",
                            "/items/gobo_shooter": "",
                            "/items/vampiric_bow": "",
                            "/items/cursed_bow": "",
                            "/items/cursed_bow_refined": "",
                            "/items/gobo_boomstick": "",
                            "/items/cheese_bulwark": "",
                            "/items/verdant_bulwark": "",
                            "/items/azure_bulwark": "",
                            "/items/burble_bulwark": "",
                            "/items/crimson_bulwark": "",
                            "/items/rainbow_bulwark": "",
                            "/items/holy_bulwark": "",
                            "/items/wooden_bow": "",
                            "/items/birch_bow": "",
                            "/items/cedar_bow": "",
                            "/items/purpleheart_bow": "",
                            "/items/ginkgo_bow": "",
                            "/items/redwood_bow": "",
                            "/items/arcane_bow": "",
                            "/items/stalactite_spear": "",
                            "/items/granite_bludgeon": "",
                            "/items/furious_spear": "",
                            "/items/furious_spear_refined": "",
                            "/items/regal_sword": "",
                            "/items/regal_sword_refined": "",
                            "/items/chaotic_flail": "",
                            "/items/chaotic_flail_refined": "",
                            "/items/soul_hunter_crossbow": "",
                            "/items/sundering_crossbow": "",
                            "/items/sundering_crossbow_refined": "",
                            "/items/frost_staff": "",
                            "/items/infernal_battlestaff": "",
                            "/items/jackalope_staff": "",
                            "/items/rippling_trident": "",
                            "/items/rippling_trident_refined": "",
                            "/items/blooming_trident": "",
                            "/items/blooming_trident_refined": "",
                            "/items/blazing_trident": "",
                            "/items/blazing_trident_refined": "",
                            "/items/cheese_sword": "",
                            "/items/verdant_sword": "",
                            "/items/azure_sword": "",
                            "/items/burble_sword": "",
                            "/items/crimson_sword": "",
                            "/items/rainbow_sword": "",
                            "/items/holy_sword": "",
                            "/items/cheese_spear": "",
                            "/items/verdant_spear": "",
                            "/items/azure_spear": "",
                            "/items/burble_spear": "",
                            "/items/crimson_spear": "",
                            "/items/rainbow_spear": "",
                            "/items/holy_spear": "",
                            "/items/cheese_mace": "",
                            "/items/verdant_mace": "",
                            "/items/azure_mace": "",
                            "/items/burble_mace": "",
                            "/items/crimson_mace": "",
                            "/items/rainbow_mace": "",
                            "/items/holy_mace": "",
                            "/items/wooden_crossbow": "",
                            "/items/birch_crossbow": "",
                            "/items/cedar_crossbow": "",
                            "/items/purpleheart_crossbow": "",
                            "/items/ginkgo_crossbow": "",
                            "/items/redwood_crossbow": "",
                            "/items/arcane_crossbow": "",
                            "/items/wooden_water_staff": "",
                            "/items/birch_water_staff": "",
                            "/items/cedar_water_staff": "",
                            "/items/purpleheart_water_staff": "",
                            "/items/ginkgo_water_staff": "",
                            "/items/redwood_water_staff": "",
                            "/items/arcane_water_staff": "",
                            "/items/wooden_nature_staff": "",
                            "/items/birch_nature_staff": "",
                            "/items/cedar_nature_staff": "",
                            "/items/purpleheart_nature_staff": "",
                            "/items/ginkgo_nature_staff": "",
                            "/items/redwood_nature_staff": "",
                            "/items/arcane_nature_staff": "",
                            "/items/wooden_fire_staff": "",
                            "/items/birch_fire_staff": "",
                            "/items/cedar_fire_staff": "",
                            "/items/purpleheart_fire_staff": "",
                            "/items/ginkgo_fire_staff": "",
                            "/items/redwood_fire_staff": "",
                            "/items/arcane_fire_staff": "",
                            "/items/eye_watch": "",
                            "/items/snake_fang_dirk": "",
                            "/items/vision_shield": "",
                            "/items/gobo_defender": "",
                            "/items/vampire_fang_dirk": "",
                            "/items/knights_aegis": "",
                            "/items/knights_aegis_refined": "",
                            "/items/treant_shield": "",
                            "/items/manticore_shield": "",
                            "/items/tome_of_healing": "",
                            "/items/tome_of_the_elements": "",
                            "/items/watchful_relic": "",
                            "/items/bishops_codex": "",
                            "/items/bishops_codex_refined": "",
                            "/items/cheese_buckler": "",
                            "/items/verdant_buckler": "",
                            "/items/azure_buckler": "",
                            "/items/burble_buckler": "",
                            "/items/crimson_buckler": "",
                            "/items/rainbow_buckler": "",
                            "/items/holy_buckler": "",
                            "/items/wooden_shield": "",
                            "/items/birch_shield": "",
                            "/items/cedar_shield": "",
                            "/items/purpleheart_shield": "",
                            "/items/ginkgo_shield": "",
                            "/items/redwood_shield": "",
                            "/items/arcane_shield": "",
                            "/items/sinister_cape": "",
                            "/items/sinister_cape_refined": "",
                            "/items/chimerical_quiver": "",
                            "/items/chimerical_quiver_refined": "",
                            "/items/enchanted_cloak": "",
                            "/items/enchanted_cloak_refined": "",
                            "/items/red_culinary_hat": "",
                            "/items/snail_shell_helmet": "",
                            "/items/vision_helmet": "",
                            "/items/fluffy_red_hat": "",
                            "/items/corsair_helmet": "",
                            "/items/corsair_helmet_refined": "",
                            "/items/acrobatic_hood": "",
                            "/items/acrobatic_hood_refined": "",
                            "/items/magicians_hat": "",
                            "/items/magicians_hat_refined": "",
                            "/items/cheese_helmet": "",
                            "/items/verdant_helmet": "",
                            "/items/azure_helmet": "",
                            "/items/burble_helmet": "",
                            "/items/crimson_helmet": "",
                            "/items/rainbow_helmet": "",
                            "/items/holy_helmet": "",
                            "/items/rough_hood": "",
                            "/items/reptile_hood": "",
                            "/items/gobo_hood": "",
                            "/items/beast_hood": "",
                            "/items/umbral_hood": "",
                            "/items/cotton_hat": "",
                            "/items/linen_hat": "",
                            "/items/bamboo_hat": "",
                            "/items/silk_hat": "",
                            "/items/radiant_hat": "",
                            "/items/dairyhands_top": "",
                            "/items/foragers_top": "",
                            "/items/lumberjacks_top": "",
                            "/items/cheesemakers_top": "",
                            "/items/crafters_top": "",
                            "/items/tailors_top": "",
                            "/items/chefs_top": "",
                            "/items/brewers_top": "",
                            "/items/alchemists_top": "",
                            "/items/enhancers_top": "",
                            "/items/gator_vest": "",
                            "/items/turtle_shell_body": "",
                            "/items/colossus_plate_body": "",
                            "/items/demonic_plate_body": "",
                            "/items/anchorbound_plate_body": "",
                            "/items/anchorbound_plate_body_refined": "",
                            "/items/maelstrom_plate_body": "",
                            "/items/maelstrom_plate_body_refined": "",
                            "/items/marine_tunic": "",
                            "/items/revenant_tunic": "",
                            "/items/griffin_tunic": "",
                            "/items/kraken_tunic": "",
                            "/items/kraken_tunic_refined": "",
                            "/items/icy_robe_top": "",
                            "/items/flaming_robe_top": "",
                            "/items/luna_robe_top": "",
                            "/items/royal_water_robe_top": "",
                            "/items/royal_water_robe_top_refined": "",
                            "/items/royal_nature_robe_top": "",
                            "/items/royal_nature_robe_top_refined": "",
                            "/items/royal_fire_robe_top": "",
                            "/items/royal_fire_robe_top_refined": "",
                            "/items/cheese_plate_body": "",
                            "/items/verdant_plate_body": "",
                            "/items/azure_plate_body": "",
                            "/items/burble_plate_body": "",
                            "/items/crimson_plate_body": "",
                            "/items/rainbow_plate_body": "",
                            "/items/holy_plate_body": "",
                            "/items/rough_tunic": "",
                            "/items/reptile_tunic": "",
                            "/items/gobo_tunic": "",
                            "/items/beast_tunic": "",
                            "/items/umbral_tunic": "",
                            "/items/cotton_robe_top": "",
                            "/items/linen_robe_top": "",
                            "/items/bamboo_robe_top": "",
                            "/items/silk_robe_top": "",
                            "/items/radiant_robe_top": "",
                            "/items/dairyhands_bottoms": "",
                            "/items/foragers_bottoms": "",
                            "/items/lumberjacks_bottoms": "",
                            "/items/cheesemakers_bottoms": "",
                            "/items/crafters_bottoms": "",
                            "/items/tailors_bottoms": "",
                            "/items/chefs_bottoms": "",
                            "/items/brewers_bottoms": "",
                            "/items/alchemists_bottoms": "",
                            "/items/enhancers_bottoms": "",
                            "/items/turtle_shell_legs": "",
                            "/items/colossus_plate_legs": "",
                            "/items/demonic_plate_legs": "",
                            "/items/anchorbound_plate_legs": "",
                            "/items/anchorbound_plate_legs_refined": "",
                            "/items/maelstrom_plate_legs": "",
                            "/items/maelstrom_plate_legs_refined": "",
                            "/items/marine_chaps": "",
                            "/items/revenant_chaps": "",
                            "/items/griffin_chaps": "",
                            "/items/kraken_chaps": "",
                            "/items/kraken_chaps_refined": "",
                            "/items/icy_robe_bottoms": "",
                            "/items/flaming_robe_bottoms": "",
                            "/items/luna_robe_bottoms": "",
                            "/items/royal_water_robe_bottoms": "",
                            "/items/royal_water_robe_bottoms_refined": "",
                            "/items/royal_nature_robe_bottoms": "",
                            "/items/royal_nature_robe_bottoms_refined": "",
                            "/items/royal_fire_robe_bottoms": "",
                            "/items/royal_fire_robe_bottoms_refined": "",
                            "/items/cheese_plate_legs": "",
                            "/items/verdant_plate_legs": "",
                            "/items/azure_plate_legs": "",
                            "/items/burble_plate_legs": "",
                            "/items/crimson_plate_legs": "",
                            "/items/rainbow_plate_legs": "",
                            "/items/holy_plate_legs": "",
                            "/items/rough_chaps": "",
                            "/items/reptile_chaps": "",
                            "/items/gobo_chaps": "",
                            "/items/beast_chaps": "",
                            "/items/umbral_chaps": "",
                            "/items/cotton_robe_bottoms": "",
                            "/items/linen_robe_bottoms": "",
                            "/items/bamboo_robe_bottoms": "",
                            "/items/silk_robe_bottoms": "",
                            "/items/radiant_robe_bottoms": "",
                            "/items/enchanted_gloves": "",
                            "/items/pincer_gloves": "",
                            "/items/panda_gloves": "",
                            "/items/magnetic_gloves": "",
                            "/items/dodocamel_gauntlets": "",
                            "/items/dodocamel_gauntlets_refined": "",
                            "/items/sighted_bracers": "",
                            "/items/marksman_bracers": "",
                            "/items/marksman_bracers_refined": "",
                            "/items/chrono_gloves": "",
                            "/items/cheese_gauntlets": "",
                            "/items/verdant_gauntlets": "",
                            "/items/azure_gauntlets": "",
                            "/items/burble_gauntlets": "",
                            "/items/crimson_gauntlets": "",
                            "/items/rainbow_gauntlets": "",
                            "/items/holy_gauntlets": "",
                            "/items/rough_bracers": "",
                            "/items/reptile_bracers": "",
                            "/items/gobo_bracers": "",
                            "/items/beast_bracers": "",
                            "/items/umbral_bracers": "",
                            "/items/cotton_gloves": "",
                            "/items/linen_gloves": "",
                            "/items/bamboo_gloves": "",
                            "/items/silk_gloves": "",
                            "/items/radiant_gloves": "",
                            "/items/collectors_boots": "",
                            "/items/shoebill_shoes": "",
                            "/items/black_bear_shoes": "",
                            "/items/grizzly_bear_shoes": "",
                            "/items/polar_bear_shoes": "",
                            "/items/centaur_boots": "",
                            "/items/sorcerer_boots": "",
                            "/items/cheese_boots": "",
                            "/items/verdant_boots": "",
                            "/items/azure_boots": "",
                            "/items/burble_boots": "",
                            "/items/crimson_boots": "",
                            "/items/rainbow_boots": "",
                            "/items/holy_boots": "",
                            "/items/rough_boots": "",
                            "/items/reptile_boots": "",
                            "/items/gobo_boots": "",
                            "/items/beast_boots": "",
                            "/items/umbral_boots": "",
                            "/items/cotton_boots": "",
                            "/items/linen_boots": "",
                            "/items/bamboo_boots": "",
                            "/items/silk_boots": "",
                            "/items/radiant_boots": "",
                            "/items/small_pouch": "",
                            "/items/medium_pouch": "",
                            "/items/large_pouch": "",
                            "/items/giant_pouch": "",
                            "/items/gluttonous_pouch": "",
                            "/items/guzzling_pouch": "",
                            "/items/necklace_of_efficiency": "",
                            "/items/fighter_necklace": "",
                            "/items/ranger_necklace": "",
                            "/items/wizard_necklace": "",
                            "/items/necklace_of_wisdom": "",
                            "/items/necklace_of_speed": "",
                            "/items/philosophers_necklace": "",
                            "/items/earrings_of_gathering": "",
                            "/items/earrings_of_essence_find": "",
                            "/items/earrings_of_armor": "",
                            "/items/earrings_of_regeneration": "",
                            "/items/earrings_of_resistance": "",
                            "/items/earrings_of_rare_find": "",
                            "/items/earrings_of_critical_strike": "",
                            "/items/philosophers_earrings": "",
                            "/items/ring_of_gathering": "",
                            "/items/ring_of_essence_find": "",
                            "/items/ring_of_armor": "",
                            "/items/ring_of_regeneration": "",
                            "/items/ring_of_resistance": "",
                            "/items/ring_of_rare_find": "",
                            "/items/ring_of_critical_strike": "",
                            "/items/philosophers_ring": "",
                            "/items/trainee_milking_charm": "",
                            "/items/basic_milking_charm": "",
                            "/items/advanced_milking_charm": "",
                            "/items/expert_milking_charm": "",
                            "/items/master_milking_charm": "",
                            "/items/grandmaster_milking_charm": "",
                            "/items/trainee_foraging_charm": "",
                            "/items/basic_foraging_charm": "",
                            "/items/advanced_foraging_charm": "",
                            "/items/expert_foraging_charm": "",
                            "/items/master_foraging_charm": "",
                            "/items/grandmaster_foraging_charm": "",
                            "/items/trainee_woodcutting_charm": "",
                            "/items/basic_woodcutting_charm": "",
                            "/items/advanced_woodcutting_charm": "",
                            "/items/expert_woodcutting_charm": "",
                            "/items/master_woodcutting_charm": "",
                            "/items/grandmaster_woodcutting_charm": "",
                            "/items/trainee_cheesesmithing_charm": "",
                            "/items/basic_cheesesmithing_charm": "",
                            "/items/advanced_cheesesmithing_charm": "",
                            "/items/expert_cheesesmithing_charm": "",
                            "/items/master_cheesesmithing_charm": "",
                            "/items/grandmaster_cheesesmithing_charm": "",
                            "/items/trainee_crafting_charm": "",
                            "/items/basic_crafting_charm": "",
                            "/items/advanced_crafting_charm": "",
                            "/items/expert_crafting_charm": "",
                            "/items/master_crafting_charm": "",
                            "/items/grandmaster_crafting_charm": "",
                            "/items/trainee_tailoring_charm": "",
                            "/items/basic_tailoring_charm": "",
                            "/items/advanced_tailoring_charm": "",
                            "/items/expert_tailoring_charm": "",
                            "/items/master_tailoring_charm": "",
                            "/items/grandmaster_tailoring_charm": "",
                            "/items/trainee_cooking_charm": "",
                            "/items/basic_cooking_charm": "",
                            "/items/advanced_cooking_charm": "",
                            "/items/expert_cooking_charm": "",
                            "/items/master_cooking_charm": "",
                            "/items/grandmaster_cooking_charm": "",
                            "/items/trainee_brewing_charm": "",
                            "/items/basic_brewing_charm": "",
                            "/items/advanced_brewing_charm": "",
                            "/items/expert_brewing_charm": "",
                            "/items/master_brewing_charm": "",
                            "/items/grandmaster_brewing_charm": "",
                            "/items/trainee_alchemy_charm": "",
                            "/items/basic_alchemy_charm": "",
                            "/items/advanced_alchemy_charm": "",
                            "/items/expert_alchemy_charm": "",
                            "/items/master_alchemy_charm": "",
                            "/items/grandmaster_alchemy_charm": "",
                            "/items/trainee_enhancing_charm": "",
                            "/items/basic_enhancing_charm": "",
                            "/items/advanced_enhancing_charm": "",
                            "/items/expert_enhancing_charm": "",
                            "/items/master_enhancing_charm": "",
                            "/items/grandmaster_enhancing_charm": "",
                            "/items/trainee_stamina_charm": "",
                            "/items/basic_stamina_charm": "",
                            "/items/advanced_stamina_charm": "",
                            "/items/expert_stamina_charm": "",
                            "/items/master_stamina_charm": "",
                            "/items/grandmaster_stamina_charm": "",
                            "/items/trainee_intelligence_charm": "",
                            "/items/basic_intelligence_charm": "",
                            "/items/advanced_intelligence_charm": "",
                            "/items/expert_intelligence_charm": "",
                            "/items/master_intelligence_charm": "",
                            "/items/grandmaster_intelligence_charm": "",
                            "/items/trainee_attack_charm": "",
                            "/items/basic_attack_charm": "",
                            "/items/advanced_attack_charm": "",
                            "/items/expert_attack_charm": "",
                            "/items/master_attack_charm": "",
                            "/items/grandmaster_attack_charm": "",
                            "/items/trainee_defense_charm": "",
                            "/items/basic_defense_charm": "",
                            "/items/advanced_defense_charm": "",
                            "/items/expert_defense_charm": "",
                            "/items/master_defense_charm": "",
                            "/items/grandmaster_defense_charm": "",
                            "/items/trainee_melee_charm": "",
                            "/items/basic_melee_charm": "",
                            "/items/advanced_melee_charm": "",
                            "/items/expert_melee_charm": "",
                            "/items/master_melee_charm": "",
                            "/items/grandmaster_melee_charm": "",
                            "/items/trainee_ranged_charm": "",
                            "/items/basic_ranged_charm": "",
                            "/items/advanced_ranged_charm": "",
                            "/items/expert_ranged_charm": "",
                            "/items/master_ranged_charm": "",
                            "/items/grandmaster_ranged_charm": "",
                            "/items/trainee_magic_charm": "",
                            "/items/basic_magic_charm": "",
                            "/items/advanced_magic_charm": "",
                            "/items/expert_magic_charm": "",
                            "/items/master_magic_charm": "",
                            "/items/grandmaster_magic_charm": "",
                            "/items/basic_task_badge": "",
                            "/items/advanced_task_badge": "",
                            "/items/expert_task_badge": "",
                            "/items/celestial_brush": "",
                            "/items/cheese_brush": "",
                            "/items/verdant_brush": "",
                            "/items/azure_brush": "",
                            "/items/burble_brush": "",
                            "/items/crimson_brush": "",
                            "/items/rainbow_brush": "",
                            "/items/holy_brush": "",
                            "/items/celestial_shears": "",
                            "/items/cheese_shears": "",
                            "/items/verdant_shears": "",
                            "/items/azure_shears": "",
                            "/items/burble_shears": "",
                            "/items/crimson_shears": "",
                            "/items/rainbow_shears": "",
                            "/items/holy_shears": "",
                            "/items/celestial_hatchet": "",
                            "/items/cheese_hatchet": "",
                            "/items/verdant_hatchet": "",
                            "/items/azure_hatchet": "",
                            "/items/burble_hatchet": "",
                            "/items/crimson_hatchet": "",
                            "/items/rainbow_hatchet": "",
                            "/items/holy_hatchet": "",
                            "/items/celestial_hammer": "",
                            "/items/cheese_hammer": "",
                            "/items/verdant_hammer": "",
                            "/items/azure_hammer": "",
                            "/items/burble_hammer": "",
                            "/items/crimson_hammer": "",
                            "/items/rainbow_hammer": "",
                            "/items/holy_hammer": "",
                            "/items/celestial_chisel": "",
                            "/items/cheese_chisel": "",
                            "/items/verdant_chisel": "",
                            "/items/azure_chisel": "",
                            "/items/burble_chisel": "",
                            "/items/crimson_chisel": "",
                            "/items/rainbow_chisel": "",
                            "/items/holy_chisel": "",
                            "/items/celestial_needle": "",
                            "/items/cheese_needle": "",
                            "/items/verdant_needle": "",
                            "/items/azure_needle": "",
                            "/items/burble_needle": "",
                            "/items/crimson_needle": "",
                            "/items/rainbow_needle": "",
                            "/items/holy_needle": "",
                            "/items/celestial_spatula": "",
                            "/items/cheese_spatula": "",
                            "/items/verdant_spatula": "",
                            "/items/azure_spatula": "",
                            "/items/burble_spatula": "",
                            "/items/crimson_spatula": "",
                            "/items/rainbow_spatula": "",
                            "/items/holy_spatula": "",
                            "/items/celestial_pot": "",
                            "/items/cheese_pot": "",
                            "/items/verdant_pot": "",
                            "/items/azure_pot": "",
                            "/items/burble_pot": "",
                            "/items/crimson_pot": "",
                            "/items/rainbow_pot": "",
                            "/items/holy_pot": "",
                            "/items/celestial_alembic": "",
                            "/items/cheese_alembic": "",
                            "/items/verdant_alembic": "",
                            "/items/azure_alembic": "",
                            "/items/burble_alembic": "",
                            "/items/crimson_alembic": "",
                            "/items/rainbow_alembic": "",
                            "/items/holy_alembic": "",
                            "/items/celestial_enhancer": "",
                            "/items/cheese_enhancer": "",
                            "/items/verdant_enhancer": "",
                            "/items/azure_enhancer": "",
                            "/items/burble_enhancer": "",
                            "/items/crimson_enhancer": "",
                            "/items/rainbow_enhancer": "",
                            "/items/holy_enhancer": "",
                            "/items/milk": "哞",
                            "/items/verdant_milk": "哞哞",
                            "/items/azure_milk": "哞哞哞",
                            "/items/burble_milk": "哞哞哞哞",
                            "/items/crimson_milk": "哞哞哞哞哞",
                            "/items/rainbow_milk": "哞哞哞哞哞哞",
                            "/items/holy_milk": "哞哞哞哞哞哞哞",
                            "/items/cheese": "",
                            "/items/verdant_cheese": "",
                            "/items/azure_cheese": "",
                            "/items/burble_cheese": "",
                            "/items/crimson_cheese": "",
                            "/items/rainbow_cheese": "",
                            "/items/holy_cheese": "",
                            "/items/log": "",
                            "/items/birch_log": "",
                            "/items/cedar_log": "",
                            "/items/purpleheart_log": "",
                            "/items/ginkgo_log": "",
                            "/items/redwood_log": "",
                            "/items/arcane_log": "",
                            "/items/lumber": "",
                            "/items/birch_lumber": "",
                            "/items/cedar_lumber": "",
                            "/items/purpleheart_lumber": "",
                            "/items/ginkgo_lumber": "",
                            "/items/redwood_lumber": "",
                            "/items/arcane_lumber": "",
                            "/items/rough_hide": "",
                            "/items/reptile_hide": "",
                            "/items/gobo_hide": "",
                            "/items/beast_hide": "",
                            "/items/umbral_hide": "",
                            "/items/rough_leather": "",
                            "/items/reptile_leather": "",
                            "/items/gobo_leather": "",
                            "/items/beast_leather": "",
                            "/items/umbral_leather": "",
                            "/items/cotton": "",
                            "/items/flax": "",
                            "/items/bamboo_branch": "",
                            "/items/cocoon": "",
                            "/items/radiant_fiber": "",
                            "/items/cotton_fabric": "",
                            "/items/linen_fabric": "",
                            "/items/bamboo_fabric": "",
                            "/items/silk_fabric": "",
                            "/items/radiant_fabric": "",
                            "/items/egg": "",
                            "/items/wheat": "",
                            "/items/sugar": "",
                            "/items/blueberry": "",
                            "/items/blackberry": "",
                            "/items/strawberry": "",
                            "/items/mooberry": "",
                            "/items/marsberry": "",
                            "/items/spaceberry": "",
                            "/items/apple": "",
                            "/items/orange": "",
                            "/items/plum": "",
                            "/items/peach": "",
                            "/items/dragon_fruit": "",
                            "/items/star_fruit": "",
                            "/items/arabica_coffee_bean": "",
                            "/items/robusta_coffee_bean": "",
                            "/items/liberica_coffee_bean": "",
                            "/items/excelsa_coffee_bean": "",
                            "/items/fieriosa_coffee_bean": "",
                            "/items/spacia_coffee_bean": "",
                            "/items/green_tea_leaf": "",
                            "/items/black_tea_leaf": "",
                            "/items/burble_tea_leaf": "",
                            "/items/moolong_tea_leaf": "",
                            "/items/red_tea_leaf": "",
                            "/items/emp_tea_leaf": "",
                            "/items/catalyst_of_coinification": "在炼金时使用,可提高15%的点金成功率 (乘法)。成功时消耗一个催化剂。",
                            "/items/catalyst_of_decomposition": "在炼金时使用,可将分解成功率提高 15% (乘法)。成功时消耗一个催化剂。",
                            "/items/catalyst_of_transmutation": "在炼金时使用,可将转化成功率提高 15% (乘法)。成功时消耗一个催化剂。",
                            "/items/prime_catalyst": "在炼金时使用,可将任何行动的成功率提高 25% (乘法)。成功时消耗一个催化剂。",
                            "/items/snake_fang": "用于锻造蛇牙短剑的材料",
                            "/items/shoebill_feather": "用于缝纫鲸头鹳鞋的材料",
                            "/items/snail_shell": "用于锻造蜗牛壳头盔的材料",
                            "/items/crab_pincer": "用于锻造蟹钳手套的材料",
                            "/items/turtle_shell": "用于锻造龟壳胸甲或腿甲的材料",
                            "/items/marine_scale": "用于缝纫海洋皮衣或皮裤的材料",
                            "/items/treant_bark": "用于制作树人盾的材料",
                            "/items/centaur_hoof": "用于缝纫半人马靴的材料",
                            "/items/luna_wing": "用于缝纫月神袍服或袍裙的材料",
                            "/items/gobo_rag": "用于缝纫收藏家靴的材料",
                            "/items/goggles": "用于锻造视觉头盔的材料",
                            "/items/magnifying_glass": "用于锻造视觉盾或缝纫瞄准护腕的材料",
                            "/items/eye_of_the_watcher": "用于制作掌上监工或警戒遗物的材料",
                            "/items/icy_cloth": "用于缝纫冰霜袍服或袍裙的材料",
                            "/items/flaming_cloth": "用于缝纫烈焰袍服或袍裙的材料",
                            "/items/sorcerers_sole": "用于缝纫魔法师靴的材料",
                            "/items/chrono_sphere": "用于缝纫附魔手套或时空手套的材料",
                            "/items/frost_sphere": "用于制作冰霜法杖的材料",
                            "/items/panda_fluff": "用于锻造熊猫手套的材料",
                            "/items/black_bear_fluff": "用于锻造黑熊鞋的材料",
                            "/items/grizzly_bear_fluff": "用于锻造棕熊鞋的材料",
                            "/items/polar_bear_fluff": "用于锻造北极熊鞋的材料",
                            "/items/red_panda_fluff": "用于缝纫红色厨师帽或蓬松红帽的材料",
                            "/items/magnet": "用于锻造磁力手套的材料",
                            "/items/stalactite_shard": "用于锻造石钟长枪或尖刺重盾的材料",
                            "/items/living_granite": "用于锻造花岗岩大棒或尖刺重盾的材料",
                            "/items/colossus_core": "用于锻造巨像胸甲或腿甲的材料",
                            "/items/vampire_fang": "用于锻造吸血鬼短剑或制作吸血弓的材料",
                            "/items/werewolf_claw": "用于锻造狼人关刀或制作吸血弓的材料",
                            "/items/revenant_anima": "用于缝纫亡灵皮衣或皮裤的材料",
                            "/items/soul_fragment": "用于制作灵魂猎手弩的材料",
                            "/items/infernal_ember": "用于制作炼狱法杖的材料",
                            "/items/demonic_core": "用于锻造恶魔胸甲或腿甲的材料",
                            "/items/griffin_leather": "用于锻造狮鹫重盾跟缝纫狮鹫皮衣或皮裤的材料",
                            "/items/manticore_sting": "用于制作蝎狮盾的材料",
                            "/items/jackalope_antler": "用于制作鹿角兔之杖的材料",
                            "/items/dodocamel_plume": "用于锻造渡渡驼护手的材料",
                            "/items/griffin_talon": "用于锻造狮鹫重盾的材料",
                            "/items/chimerical_refinement_shard": "用于升级【奇幻洞穴】95级装备和奇幻箭袋的材料",
                            "/items/acrobats_ribbon": "用于缝纫杂技师兜帽的材料",
                            "/items/magicians_cloth": "用于缝纫魔术师帽的材料",
                            "/items/chaotic_chain": "用于锻造混沌连枷的材料",
                            "/items/cursed_ball": "用于制作咒怨之弓的材料",
                            "/items/sinister_refinement_shard": "用于升级【阴森马戏团】95级装备和阴森斗篷的材料",
                            "/items/royal_cloth": "用于缝纫皇家袍服和皇家袍裙的材料",
                            "/items/knights_ingot": "用于锻造骑士之盾的材料",
                            "/items/bishops_scroll": "用于制作主教之书的材料",
                            "/items/regal_jewel": "用于锻造君王之剑和狂怒长枪的材料",
                            "/items/sundering_jewel": "用于制作裂空之弩和锻造狂怒长枪的材料",
                            "/items/enchanted_refinement_shard": "用于升级【秘法要塞】95级装备和秘法披风的材料",
                            "/items/marksman_brooch": "用于缝纫神射护腕的材料",
                            "/items/corsair_crest": "用于锻造掠夺者头盔的材料",
                            "/items/damaged_anchor": "用于锻造锚定胸甲或腿甲的材料",
                            "/items/maelstrom_plating": "用于锻造怒涛胸甲或腿甲的材料",
                            "/items/kraken_leather": "用于缝纫克拉肯皮衣或皮裤的材料",
                            "/items/kraken_fang": "用于制作涟漪、绽放或炽焰三叉戟的材料",
                            "/items/pirate_refinement_shard": "用于升级【海盗基地】95级装备的材料",
                            "/items/butter_of_proficiency": "用于制作特殊专业工具和服装的材料",
                            "/items/thread_of_expertise": "用于制作特殊专业服装的材料",
                            "/items/branch_of_insight": "用于制作特殊专业工具和服装的材料",
                            "/items/gluttonous_energy": "用于缝纫贪食之袋",
                            "/items/guzzling_energy": "用于缝纫暴饮之囊",
                            "/items/milking_essence": "用于冲泡奶茶和制作炼金催化剂",
                            "/items/foraging_essence": "用于冲泡采摘茶和制作炼金催化剂",
                            "/items/woodcutting_essence": "用于冲泡伐木茶和制作炼金催化剂",
                            "/items/cheesesmithing_essence": "用于冲泡奶酪锻造茶和制作炼金催化剂",
                            "/items/crafting_essence": "用于冲泡制作茶和制作炼金催化剂",
                            "/items/tailoring_essence": "用于冲泡缝纫茶和制作炼金催化剂",
                            "/items/cooking_essence": "用于冲泡烹饪茶和制作炼金催化剂",
                            "/items/brewing_essence": "用于冲泡冲泡茶和制作炼金催化剂",
                            "/items/alchemy_essence": "用于冲泡炼金茶和制作炼金催化剂",
                            "/items/enhancing_essence": "用于冲泡强化茶和制作炼金催化剂",
                            "/items/swamp_essence": "用于强化沼泽星球特殊装备的材料",
                            "/items/aqua_essence": "用于强化海洋星球特殊装备的材料",
                            "/items/jungle_essence": "用于强化丛林星球特殊装备的材料",
                            "/items/gobo_essence": "用于强化哥布林星球特殊装备的材料",
                            "/items/eyessence": "用于强化眼球星球特殊装备的材料",
                            "/items/sorcerer_essence": "用于强化巫师之塔特殊装备的材料",
                            "/items/bear_essence": "用于强化熊熊星球特殊装备的材料",
                            "/items/golem_essence": "用于强化魔像洞穴特殊装备的材料",
                            "/items/twilight_essence": "用于强化暮光之城特殊装备的材料",
                            "/items/abyssal_essence": "用于强化地狱深渊特殊装备的材料",
                            "/items/chimerical_essence": "用于强化奇幻洞穴特殊装备的材料",
                            "/items/sinister_essence": "用于强化阴森马戏团特殊装备的材料",
                            "/items/enchanted_essence": "用于强化秘法要塞特殊装备的材料",
                            "/items/pirate_essence": "用于强化海盗基地特殊装备的材料",
                            "/items/task_crystal": "小紫牛给的水晶,可以用来制作特殊的饰品。",
                            "/items/star_fragment": "在陨石舱里发现的碎片,可以用来制作珠宝。",
                            "/items/pearl": "一种闪亮的宝石,通常在宝箱中找到",
                            "/items/amber": "一种闪亮的宝石,通常在宝箱中找到",
                            "/items/garnet": "一种闪亮的宝石,通常在宝箱中找到",
                            "/items/jade": "一种闪亮的宝石,通常在宝箱中找到",
                            "/items/amethyst": "一种闪亮的宝石,通常在宝箱中找到",
                            "/items/moonstone": "一种闪亮的宝石,通常在宝箱中找到",
                            "/items/sunstone": "一种闪亮的太阳形状的宝石",
                            "/items/philosophers_stone": "传说中拥有无穷力量的石头",
                            "/items/crushed_pearl": "曾经是一粒珍珠",
                            "/items/crushed_amber": "曾经是一块琥珀",
                            "/items/crushed_garnet": "曾经是一颗石榴石",
                            "/items/crushed_jade": "曾经是一块翡翠",
                            "/items/crushed_amethyst": "曾经是一颗紫水晶",
                            "/items/crushed_moonstone": "曾经是一枚月亮石",
                            "/items/crushed_sunstone": "曾经是一枚太阳石",
                            "/items/crushed_philosophers_stone": "曾经是一块贤者之石",
                            "/items/shard_of_protection": "从工匠匣中获得,用于合成保护之镜",
                            "/items/mirror_of_protection": "一种稀有神器,可在强化时作为任何保护装备的副本"
                        },
                        "itemCategoryNames": {
                            "/item_categories/currency": "货币",
                            "/item_categories/loot": "战利品",
                            "/item_categories/key": "钥匙",
                            "/item_categories/food": "食物",
                            "/item_categories/drink": "饮料",
                            "/item_categories/ability_book": "技能书",
                            "/item_categories/equipment": "装备",
                            "/item_categories/resource": "资源"
                        },
                        "itemCategoryPluralNames": {
                            "/item_categories/currency": "货币",
                            "/item_categories/loot": "战利品",
                            "/item_categories/key": "钥匙",
                            "/item_categories/food": "食物",
                            "/item_categories/drink": "饮料",
                            "/item_categories/ability_book": "技能书",
                            "/item_categories/equipment": "装备",
                            "/item_categories/resource": "资源"
                        },
                        "equipmentTypeNames": {
                            "/equipment_types/two_hand": "双手",
                            "/equipment_types/main_hand": "主手",
                            "/equipment_types/off_hand": "副手",
                            "/equipment_types/back": "背部",
                            "/equipment_types/head": "头部",
                            "/equipment_types/body": "身体",
                            "/equipment_types/legs": "腿部",
                            "/equipment_types/hands": "手部",
                            "/equipment_types/feet": "脚部",
                            "/equipment_types/pouch": "袋子",
                            "/equipment_types/neck": "项链",
                            "/equipment_types/earrings": "耳环",
                            "/equipment_types/ring": "戒指",
                            "/equipment_types/charm": "护符",
                            "/equipment_types/trinket": "饰品",
                            "/equipment_types/milking_tool": "挤奶工具",
                            "/equipment_types/foraging_tool": "采摘工具",
                            "/equipment_types/woodcutting_tool": "伐木工具",
                            "/equipment_types/cheesesmithing_tool": "奶酪锻造工具",
                            "/equipment_types/crafting_tool": "制作工具",
                            "/equipment_types/tailoring_tool": "缝纫工具",
                            "/equipment_types/cooking_tool": "烹饪工具",
                            "/equipment_types/brewing_tool": "冲泡工具",
                            "/equipment_types/alchemy_tool": "炼金工具",
                            "/equipment_types/enhancing_tool": "强化工具"
                        },
                        "combatStyleNames": {
                            "/combat_styles/stab": "刺击",
                            "/combat_styles/slash": "斩击",
                            "/combat_styles/smash": "钝击",
                            "/combat_styles/ranged": "远程",
                            "/combat_styles/magic": "魔法",
                            "/combat_styles/heal": "治疗"
                        },
                        "damageTypeNames": {
                            "/damage_types/physical": "物理",
                            "/damage_types/water": "水系",
                            "/damage_types/nature": "自然系",
                            "/damage_types/fire": "火系"
                        },
                        "monsterNames": {
                            "/monsters/abyssal_imp": "深渊小鬼",
                            "/monsters/acrobat": "杂技师",
                            "/monsters/anchor_shark": "持锚鲨",
                            "/monsters/aquahorse": "水马",
                            "/monsters/black_bear": "黑熊",
                            "/monsters/gobo_boomy": "轰轰",
                            "/monsters/brine_marksman": "海盐射手",
                            "/monsters/captain_fishhook": "鱼钩船长",
                            "/monsters/butterjerry": "蝶鼠",
                            "/monsters/centaur_archer": "半人马弓箭手",
                            "/monsters/chronofrost_sorcerer": "霜时巫师",
                            "/monsters/crystal_colossus": "水晶巨像",
                            "/monsters/demonic_overlord": "恶魔霸主",
                            "/monsters/deranged_jester": "小丑皇",
                            "/monsters/dodocamel": "渡渡驼",
                            "/monsters/dusk_revenant": "黄昏亡灵",
                            "/monsters/elementalist": "元素法师",
                            "/monsters/enchanted_bishop": "秘法主教",
                            "/monsters/enchanted_king": "秘法国王",
                            "/monsters/enchanted_knight": "秘法骑士",
                            "/monsters/enchanted_pawn": "秘法士兵",
                            "/monsters/enchanted_queen": "秘法王后",
                            "/monsters/enchanted_rook": "秘法堡垒",
                            "/monsters/eye": "独眼",
                            "/monsters/eyes": "叠眼",
                            "/monsters/flame_sorcerer": "火焰巫师",
                            "/monsters/fly": "苍蝇",
                            "/monsters/frog": "青蛙",
                            "/monsters/sea_snail": "蜗牛",
                            "/monsters/giant_shoebill": "鲸头鹳",
                            "/monsters/gobo_chieftain": "哥布林酋长",
                            "/monsters/granite_golem": "花岗魔像",
                            "/monsters/griffin": "狮鹫",
                            "/monsters/grizzly_bear": "棕熊",
                            "/monsters/gummy_bear": "软糖熊",
                            "/monsters/crab": "螃蟹",
                            "/monsters/ice_sorcerer": "冰霜巫师",
                            "/monsters/infernal_warlock": "地狱术士",
                            "/monsters/jackalope": "鹿角兔",
                            "/monsters/rat": "杰瑞",
                            "/monsters/juggler": "杂耍者",
                            "/monsters/jungle_sprite": "丛林精灵",
                            "/monsters/luna_empress": "月神之蝶",
                            "/monsters/magician": "魔术师",
                            "/monsters/magnetic_golem": "磁力魔像",
                            "/monsters/manticore": "狮蝎兽",
                            "/monsters/marine_huntress": "海洋猎手",
                            "/monsters/myconid": "蘑菇人",
                            "/monsters/nom_nom": "咬咬鱼",
                            "/monsters/novice_sorcerer": "新手巫师",
                            "/monsters/panda": "熊猫",
                            "/monsters/polar_bear": "北极熊",
                            "/monsters/porcupine": "豪猪",
                            "/monsters/rabid_rabbit": "疯魔兔",
                            "/monsters/red_panda": "小熊猫",
                            "/monsters/alligator": "夏洛克",
                            "/monsters/gobo_shooty": "咻咻",
                            "/monsters/skunk": "臭鼬",
                            "/monsters/gobo_slashy": "砍砍",
                            "/monsters/slimy": "史莱姆",
                            "/monsters/gobo_smashy": "锤锤",
                            "/monsters/soul_hunter": "灵魂猎手",
                            "/monsters/squawker": "鹦鹉",
                            "/monsters/gobo_stabby": "刺刺",
                            "/monsters/stalactite_golem": "钟乳石魔像",
                            "/monsters/swampy": "沼泽虫",
                            "/monsters/the_kraken": "克拉肯",
                            "/monsters/the_watcher": "观察者",
                            "/monsters/snake": "蛇",
                            "/monsters/tidal_conjuror": "潮汐召唤师",
                            "/monsters/treant": "树人",
                            "/monsters/turtle": "忍者龟",
                            "/monsters/vampire": "吸血鬼",
                            "/monsters/veyes": "复眼",
                            "/monsters/werewolf": "狼人",
                            "/monsters/zombie": "僵尸",
                            "/monsters/zombie_bear": "僵尸熊"
                        },
                        "combatTriggerDependencyNames": {
                            "/combat_trigger_dependencies/all_allies": "所有队友的",
                            "/combat_trigger_dependencies/all_enemies": "所有敌人的",
                            "/combat_trigger_dependencies/self": "我的",
                            "/combat_trigger_dependencies/targeted_enemy": "目标敌人的"
                        },
                        "combatTriggerConditionNames": {
                            "/combat_trigger_conditions/number_of_active_units": "存活数",
                            "/combat_trigger_conditions/number_of_dead_units": "死亡数",
                            "/combat_trigger_conditions/attack_coffee": "攻击咖啡",
                            "/combat_trigger_conditions/berserk": "狂暴",
                            "/combat_trigger_conditions/blind_status": "失明状态",
                            "/combat_trigger_conditions/channeling_coffee": "吟唱咖啡",
                            "/combat_trigger_conditions/crippling_slash": "致残斩减益",
                            "/combat_trigger_conditions/critical_aura": "致命光环",
                            "/combat_trigger_conditions/critical_coffee": "暴击咖啡",
                            "/combat_trigger_conditions/current_hp": "当前HP",
                            "/combat_trigger_conditions/current_mp": "当前MP",
                            "/combat_trigger_conditions/curse": "诅咒",
                            "/combat_trigger_conditions/defense_coffee": "防御咖啡",
                            "/combat_trigger_conditions/elemental_affinity": "元素增幅",
                            "/combat_trigger_conditions/elusiveness": "闪避",
                            "/combat_trigger_conditions/enrage": "暴走",
                            "/combat_trigger_conditions/fierce_aura": "物理光环",
                            "/combat_trigger_conditions/fracturing_impact": "碎裂冲击减益",
                            "/combat_trigger_conditions/frenzy": "狂速",
                            "/combat_trigger_conditions/frost_surge": "冰霜爆裂减益",
                            "/combat_trigger_conditions/fury": "狂怒",
                            "/combat_trigger_conditions/guardian_aura": "守护光环",
                            "/combat_trigger_conditions/ice_spear": "冰枪减益",
                            "/combat_trigger_conditions/insanity": "疯狂",
                            "/combat_trigger_conditions/intelligence_coffee": "智力咖啡",
                            "/combat_trigger_conditions/invincible": "无敌光环",
                            "/combat_trigger_conditions/lowest_hp_percentage": "最低HP%",
                            "/combat_trigger_conditions/lucky_coffee": "幸运咖啡",
                            "/combat_trigger_conditions/magic_coffee": "魔法咖啡",
                            "/combat_trigger_conditions/maim": "血刃斩减益",
                            "/combat_trigger_conditions/mana_spring": "法力喷泉",
                            "/combat_trigger_conditions/melee_coffee": "近战咖啡",
                            "/combat_trigger_conditions/missing_hp": "缺失HP",
                            "/combat_trigger_conditions/missing_mp": "缺失MP",
                            "/combat_trigger_conditions/mystic_aura": "元素光环",
                            "/combat_trigger_conditions/pestilent_shot": "疫病射击减益",
                            "/combat_trigger_conditions/precision": "精确",
                            "/combat_trigger_conditions/provoke": "挑衅",
                            "/combat_trigger_conditions/puncture": "破甲之刺减益",
                            "/combat_trigger_conditions/ranged_coffee": "远程咖啡",
                            "/combat_trigger_conditions/retribution": "惩戒",
                            "/combat_trigger_conditions/silence_status": "沉默状态",
                            "/combat_trigger_conditions/smoke_burst": "烟爆灭影减益",
                            "/combat_trigger_conditions/speed_aura": "速度光环",
                            "/combat_trigger_conditions/spike_shell": "尖刺防护",
                            "/combat_trigger_conditions/stamina_coffee": "耐力咖啡",
                            "/combat_trigger_conditions/stun_status": "眩晕状态",
                            "/combat_trigger_conditions/swiftness_coffee": "迅捷咖啡",
                            "/combat_trigger_conditions/taunt": "嘲讽",
                            "/combat_trigger_conditions/toughness": "坚韧",
                            "/combat_trigger_conditions/toxic_pollen": "剧毒粉尘减益",
                            "/combat_trigger_conditions/vampirism": "吸血",
                            "/combat_trigger_conditions/weaken": "虚弱状态",
                            "/combat_trigger_conditions/wisdom_coffee": "经验咖啡"
                        },
                        "combatTriggerComparatorNames": {
                            "/combat_trigger_comparators/less_than_equal": "<=",
                            "/combat_trigger_comparators/greater_than_equal": ">=",
                            "/combat_trigger_comparators/is_active": "已生效",
                            "/combat_trigger_comparators/is_inactive": "未生效"
                        },
                        "shopCategoryNames": {
                            "/shop_categories/dungeon": "地下城",
                            "/shop_categories/general": "杂货",
                            "/shop_categories/tester": "测试"
                        },
                        "actionNames": {
                            "/actions/milking/cow": "奶牛",
                            "/actions/milking/verdant_cow": "翠绿奶牛",
                            "/actions/milking/azure_cow": "蔚蓝奶牛",
                            "/actions/milking/burble_cow": "深紫奶牛",
                            "/actions/milking/crimson_cow": "绛红奶牛",
                            "/actions/milking/unicow": "彩虹奶牛",
                            "/actions/milking/holy_cow": "神圣奶牛",
                            "/actions/foraging/egg": "鸡蛋",
                            "/actions/foraging/wheat": "小麦",
                            "/actions/foraging/sugar": "糖",
                            "/actions/foraging/cotton": "棉花",
                            "/actions/foraging/farmland": "翠野农场",
                            "/actions/foraging/blueberry": "蓝莓",
                            "/actions/foraging/apple": "苹果",
                            "/actions/foraging/arabica_coffee_bean": "低级咖啡豆",
                            "/actions/foraging/flax": "亚麻",
                            "/actions/foraging/shimmering_lake": "波光湖泊",
                            "/actions/foraging/blackberry": "黑莓",
                            "/actions/foraging/orange": "橙子",
                            "/actions/foraging/robusta_coffee_bean": "中级咖啡豆",
                            "/actions/foraging/misty_forest": "迷雾森林",
                            "/actions/foraging/strawberry": "草莓",
                            "/actions/foraging/plum": "李子",
                            "/actions/foraging/liberica_coffee_bean": "高级咖啡豆",
                            "/actions/foraging/bamboo_branch": "竹子",
                            "/actions/foraging/burble_beach": "深紫沙滩",
                            "/actions/foraging/mooberry": "哞莓",
                            "/actions/foraging/peach": "桃子",
                            "/actions/foraging/excelsa_coffee_bean": "特级咖啡豆",
                            "/actions/foraging/cocoon": "蚕茧",
                            "/actions/foraging/silly_cow_valley": "傻牛山谷",
                            "/actions/foraging/marsberry": "火星莓",
                            "/actions/foraging/dragon_fruit": "火龙果",
                            "/actions/foraging/fieriosa_coffee_bean": "火山咖啡豆",
                            "/actions/foraging/olympus_mons": "奥林匹斯山",
                            "/actions/foraging/spaceberry": "太空莓",
                            "/actions/foraging/star_fruit": "杨桃",
                            "/actions/foraging/spacia_coffee_bean": "太空咖啡豆",
                            "/actions/foraging/radiant_fiber": "光辉纤维",
                            "/actions/foraging/asteroid_belt": "小行星带",
                            "/actions/woodcutting/tree": "树",
                            "/actions/woodcutting/birch_tree": "桦树",
                            "/actions/woodcutting/cedar_tree": "雪松树",
                            "/actions/woodcutting/purpleheart_tree": "紫心树",
                            "/actions/woodcutting/ginkgo_tree": "银杏树",
                            "/actions/woodcutting/redwood_tree": "红杉树",
                            "/actions/woodcutting/arcane_tree": "奥秘树",
                            "/actions/cheesesmithing/cheese": "奶酪",
                            "/actions/cheesesmithing/cheese_boots": "奶酪靴",
                            "/actions/cheesesmithing/cheese_gauntlets": "奶酪护手",
                            "/actions/cheesesmithing/cheese_sword": "奶酪剑",
                            "/actions/cheesesmithing/cheese_brush": "奶酪刷子",
                            "/actions/cheesesmithing/cheese_shears": "奶酪剪刀",
                            "/actions/cheesesmithing/cheese_hatchet": "奶酪斧头",
                            "/actions/cheesesmithing/cheese_spear": "奶酪长枪",
                            "/actions/cheesesmithing/cheese_hammer": "奶酪锤子",
                            "/actions/cheesesmithing/cheese_chisel": "奶酪凿子",
                            "/actions/cheesesmithing/cheese_needle": "奶酪针",
                            "/actions/cheesesmithing/cheese_spatula": "奶酪锅铲",
                            "/actions/cheesesmithing/cheese_pot": "奶酪壶",
                            "/actions/cheesesmithing/cheese_mace": "奶酪钉头锤",
                            "/actions/cheesesmithing/cheese_alembic": "奶酪蒸馏器",
                            "/actions/cheesesmithing/cheese_enhancer": "奶酪强化器",
                            "/actions/cheesesmithing/cheese_helmet": "奶酪头盔",
                            "/actions/cheesesmithing/cheese_buckler": "奶酪圆盾",
                            "/actions/cheesesmithing/cheese_bulwark": "奶酪重盾",
                            "/actions/cheesesmithing/cheese_plate_legs": "奶酪腿甲",
                            "/actions/cheesesmithing/cheese_plate_body": "奶酪胸甲",
                            "/actions/cheesesmithing/verdant_cheese": "翠绿奶酪",
                            "/actions/cheesesmithing/verdant_boots": "翠绿靴",
                            "/actions/cheesesmithing/verdant_gauntlets": "翠绿护手",
                            "/actions/cheesesmithing/verdant_sword": "翠绿剑",
                            "/actions/cheesesmithing/verdant_brush": "翠绿刷子",
                            "/actions/cheesesmithing/verdant_shears": "翠绿剪刀",
                            "/actions/cheesesmithing/verdant_hatchet": "翠绿斧头",
                            "/actions/cheesesmithing/verdant_spear": "翠绿长枪",
                            "/actions/cheesesmithing/verdant_hammer": "翠绿锤子",
                            "/actions/cheesesmithing/verdant_chisel": "翠绿凿子",
                            "/actions/cheesesmithing/verdant_needle": "翠绿针",
                            "/actions/cheesesmithing/verdant_spatula": "翠绿锅铲",
                            "/actions/cheesesmithing/verdant_pot": "翠绿壶",
                            "/actions/cheesesmithing/verdant_mace": "翠绿钉头锤",
                            "/actions/cheesesmithing/snake_fang_dirk": "蛇牙短剑",
                            "/actions/cheesesmithing/verdant_alembic": "翠绿蒸馏器",
                            "/actions/cheesesmithing/verdant_enhancer": "翠绿强化器",
                            "/actions/cheesesmithing/verdant_helmet": "翠绿头盔",
                            "/actions/cheesesmithing/verdant_buckler": "翠绿圆盾",
                            "/actions/cheesesmithing/verdant_bulwark": "翠绿重盾",
                            "/actions/cheesesmithing/verdant_plate_legs": "翠绿腿甲",
                            "/actions/cheesesmithing/verdant_plate_body": "翠绿胸甲",
                            "/actions/cheesesmithing/azure_cheese": "蔚蓝奶酪",
                            "/actions/cheesesmithing/azure_boots": "蔚蓝靴",
                            "/actions/cheesesmithing/azure_gauntlets": "蔚蓝护手",
                            "/actions/cheesesmithing/azure_sword": "蔚蓝剑",
                            "/actions/cheesesmithing/azure_brush": "蔚蓝刷子",
                            "/actions/cheesesmithing/azure_shears": "蔚蓝剪刀",
                            "/actions/cheesesmithing/azure_hatchet": "蔚蓝斧头",
                            "/actions/cheesesmithing/azure_spear": "蔚蓝长枪",
                            "/actions/cheesesmithing/azure_hammer": "蔚蓝锤子",
                            "/actions/cheesesmithing/azure_chisel": "蔚蓝凿子",
                            "/actions/cheesesmithing/azure_needle": "蔚蓝针",
                            "/actions/cheesesmithing/azure_spatula": "蔚蓝锅铲",
                            "/actions/cheesesmithing/azure_pot": "蔚蓝壶",
                            "/actions/cheesesmithing/azure_mace": "蔚蓝钉头锤",
                            "/actions/cheesesmithing/pincer_gloves": "蟹钳手套",
                            "/actions/cheesesmithing/azure_alembic": "蔚蓝蒸馏器",
                            "/actions/cheesesmithing/azure_enhancer": "蔚蓝强化器",
                            "/actions/cheesesmithing/azure_helmet": "蔚蓝头盔",
                            "/actions/cheesesmithing/azure_buckler": "蔚蓝圆盾",
                            "/actions/cheesesmithing/azure_bulwark": "蔚蓝重盾",
                            "/actions/cheesesmithing/azure_plate_legs": "蔚蓝腿甲",
                            "/actions/cheesesmithing/snail_shell_helmet": "蜗牛壳头盔",
                            "/actions/cheesesmithing/azure_plate_body": "蔚蓝胸甲",
                            "/actions/cheesesmithing/turtle_shell_legs": "龟壳腿甲",
                            "/actions/cheesesmithing/turtle_shell_body": "龟壳胸甲",
                            "/actions/cheesesmithing/burble_cheese": "深紫奶酪",
                            "/actions/cheesesmithing/burble_boots": "深紫靴",
                            "/actions/cheesesmithing/burble_gauntlets": "深紫护手",
                            "/actions/cheesesmithing/burble_sword": "深紫剑",
                            "/actions/cheesesmithing/burble_brush": "深紫刷子",
                            "/actions/cheesesmithing/burble_shears": "深紫剪刀",
                            "/actions/cheesesmithing/burble_hatchet": "深紫斧头",
                            "/actions/cheesesmithing/burble_spear": "深紫长枪",
                            "/actions/cheesesmithing/burble_hammer": "深紫锤子",
                            "/actions/cheesesmithing/burble_chisel": "深紫凿子",
                            "/actions/cheesesmithing/burble_needle": "深紫针",
                            "/actions/cheesesmithing/burble_spatula": "深紫锅铲",
                            "/actions/cheesesmithing/burble_pot": "深紫壶",
                            "/actions/cheesesmithing/burble_mace": "深紫钉头锤",
                            "/actions/cheesesmithing/burble_alembic": "深紫蒸馏器",
                            "/actions/cheesesmithing/burble_enhancer": "深紫强化器",
                            "/actions/cheesesmithing/burble_helmet": "深紫头盔",
                            "/actions/cheesesmithing/burble_buckler": "深紫圆盾",
                            "/actions/cheesesmithing/burble_bulwark": "深紫重盾",
                            "/actions/cheesesmithing/burble_plate_legs": "深紫腿甲",
                            "/actions/cheesesmithing/burble_plate_body": "深紫胸甲",
                            "/actions/cheesesmithing/crimson_cheese": "绛红奶酪",
                            "/actions/cheesesmithing/crimson_boots": "绛红靴",
                            "/actions/cheesesmithing/crimson_gauntlets": "绛红护手",
                            "/actions/cheesesmithing/crimson_sword": "绛红剑",
                            "/actions/cheesesmithing/crimson_brush": "绛红刷子",
                            "/actions/cheesesmithing/crimson_shears": "绛红剪刀",
                            "/actions/cheesesmithing/crimson_hatchet": "绛红斧头",
                            "/actions/cheesesmithing/crimson_spear": "绛红长枪",
                            "/actions/cheesesmithing/crimson_hammer": "绛红锤子",
                            "/actions/cheesesmithing/crimson_chisel": "绛红凿子",
                            "/actions/cheesesmithing/crimson_needle": "绛红针",
                            "/actions/cheesesmithing/crimson_spatula": "绛红锅铲",
                            "/actions/cheesesmithing/crimson_pot": "绛红壶",
                            "/actions/cheesesmithing/crimson_mace": "绛红钉头锤",
                            "/actions/cheesesmithing/crimson_alembic": "绛红蒸馏器",
                            "/actions/cheesesmithing/crimson_enhancer": "绛红强化器",
                            "/actions/cheesesmithing/crimson_helmet": "绛红头盔",
                            "/actions/cheesesmithing/crimson_buckler": "绛红圆盾",
                            "/actions/cheesesmithing/crimson_bulwark": "绛红重盾",
                            "/actions/cheesesmithing/crimson_plate_legs": "绛红腿甲",
                            "/actions/cheesesmithing/vision_helmet": "视觉头盔",
                            "/actions/cheesesmithing/vision_shield": "视觉盾",
                            "/actions/cheesesmithing/crimson_plate_body": "绛红胸甲",
                            "/actions/cheesesmithing/rainbow_cheese": "彩虹奶酪",
                            "/actions/cheesesmithing/rainbow_boots": "彩虹靴",
                            "/actions/cheesesmithing/black_bear_shoes": "黑熊鞋",
                            "/actions/cheesesmithing/grizzly_bear_shoes": "棕熊鞋",
                            "/actions/cheesesmithing/polar_bear_shoes": "北极熊鞋",
                            "/actions/cheesesmithing/rainbow_gauntlets": "彩虹护手",
                            "/actions/cheesesmithing/rainbow_sword": "彩虹剑",
                            "/actions/cheesesmithing/panda_gloves": "熊猫手套",
                            "/actions/cheesesmithing/rainbow_brush": "彩虹刷子",
                            "/actions/cheesesmithing/rainbow_shears": "彩虹剪刀",
                            "/actions/cheesesmithing/rainbow_hatchet": "彩虹斧头",
                            "/actions/cheesesmithing/rainbow_spear": "彩虹长枪",
                            "/actions/cheesesmithing/rainbow_hammer": "彩虹锤子",
                            "/actions/cheesesmithing/rainbow_chisel": "彩虹凿子",
                            "/actions/cheesesmithing/rainbow_needle": "彩虹针",
                            "/actions/cheesesmithing/rainbow_spatula": "彩虹锅铲",
                            "/actions/cheesesmithing/rainbow_pot": "彩虹壶",
                            "/actions/cheesesmithing/rainbow_mace": "彩虹钉头锤",
                            "/actions/cheesesmithing/rainbow_alembic": "彩虹蒸馏器",
                            "/actions/cheesesmithing/rainbow_enhancer": "彩虹强化器",
                            "/actions/cheesesmithing/rainbow_helmet": "彩虹头盔",
                            "/actions/cheesesmithing/rainbow_buckler": "彩虹圆盾",
                            "/actions/cheesesmithing/rainbow_bulwark": "彩虹重盾",
                            "/actions/cheesesmithing/rainbow_plate_legs": "彩虹腿甲",
                            "/actions/cheesesmithing/rainbow_plate_body": "彩虹胸甲",
                            "/actions/cheesesmithing/holy_cheese": "神圣奶酪",
                            "/actions/cheesesmithing/holy_boots": "神圣靴",
                            "/actions/cheesesmithing/holy_gauntlets": "神圣护手",
                            "/actions/cheesesmithing/holy_sword": "神圣剑",
                            "/actions/cheesesmithing/holy_brush": "神圣刷子",
                            "/actions/cheesesmithing/holy_shears": "神圣剪刀",
                            "/actions/cheesesmithing/holy_hatchet": "神圣斧头",
                            "/actions/cheesesmithing/holy_spear": "神圣长枪",
                            "/actions/cheesesmithing/holy_hammer": "神圣锤子",
                            "/actions/cheesesmithing/holy_chisel": "神圣凿子",
                            "/actions/cheesesmithing/holy_needle": "神圣针",
                            "/actions/cheesesmithing/holy_spatula": "神圣锅铲",
                            "/actions/cheesesmithing/holy_pot": "神圣壶",
                            "/actions/cheesesmithing/holy_mace": "神圣钉头锤",
                            "/actions/cheesesmithing/magnetic_gloves": "磁力手套",
                            "/actions/cheesesmithing/stalactite_spear": "石钟长枪",
                            "/actions/cheesesmithing/granite_bludgeon": "花岗岩大棒",
                            "/actions/cheesesmithing/vampire_fang_dirk": "吸血鬼短剑",
                            "/actions/cheesesmithing/werewolf_slasher": "狼人关刀",
                            "/actions/cheesesmithing/holy_alembic": "神圣蒸馏器",
                            "/actions/cheesesmithing/holy_enhancer": "神圣强化器",
                            "/actions/cheesesmithing/holy_helmet": "神圣头盔",
                            "/actions/cheesesmithing/holy_buckler": "神圣圆盾",
                            "/actions/cheesesmithing/holy_bulwark": "神圣重盾",
                            "/actions/cheesesmithing/holy_plate_legs": "神圣腿甲",
                            "/actions/cheesesmithing/holy_plate_body": "神圣胸甲",
                            "/actions/cheesesmithing/celestial_brush": "星空刷子",
                            "/actions/cheesesmithing/celestial_shears": "星空剪刀",
                            "/actions/cheesesmithing/celestial_hatchet": "星空斧头",
                            "/actions/cheesesmithing/celestial_hammer": "星空锤子",
                            "/actions/cheesesmithing/celestial_chisel": "星空凿子",
                            "/actions/cheesesmithing/celestial_needle": "星空针",
                            "/actions/cheesesmithing/celestial_spatula": "星空锅铲",
                            "/actions/cheesesmithing/celestial_pot": "星空壶",
                            "/actions/cheesesmithing/celestial_alembic": "星空蒸馏器",
                            "/actions/cheesesmithing/celestial_enhancer": "星空强化器",
                            "/actions/cheesesmithing/colossus_plate_body": "巨像胸甲",
                            "/actions/cheesesmithing/colossus_plate_legs": "巨像腿甲",
                            "/actions/cheesesmithing/demonic_plate_body": "恶魔胸甲",
                            "/actions/cheesesmithing/demonic_plate_legs": "恶魔腿甲",
                            "/actions/cheesesmithing/spiked_bulwark": "尖刺重盾",
                            "/actions/cheesesmithing/dodocamel_gauntlets": "渡渡驼护手",
                            "/actions/cheesesmithing/corsair_helmet": "掠夺者头盔",
                            "/actions/cheesesmithing/knights_aegis": "骑士盾",
                            "/actions/cheesesmithing/anchorbound_plate_legs": "锚定腿甲",
                            "/actions/cheesesmithing/maelstrom_plate_legs": "怒涛腿甲",
                            "/actions/cheesesmithing/griffin_bulwark": "狮鹫重盾",
                            "/actions/cheesesmithing/furious_spear": "狂怒长枪",
                            "/actions/cheesesmithing/chaotic_flail": "混沌连枷",
                            "/actions/cheesesmithing/regal_sword": "君王之剑",
                            "/actions/cheesesmithing/anchorbound_plate_body": "锚定胸甲",
                            "/actions/cheesesmithing/maelstrom_plate_body": "怒涛胸甲",
                            "/actions/cheesesmithing/dodocamel_gauntlets_refined": "渡渡驼护手(精)",
                            "/actions/cheesesmithing/corsair_helmet_refined": "掠夺者头盔(精)",
                            "/actions/cheesesmithing/knights_aegis_refined": "骑士盾(精)",
                            "/actions/cheesesmithing/anchorbound_plate_legs_refined": "锚定腿甲(精)",
                            "/actions/cheesesmithing/maelstrom_plate_legs_refined": "怒涛腿甲(精)",
                            "/actions/cheesesmithing/griffin_bulwark_refined": "狮鹫重盾(精)",
                            "/actions/cheesesmithing/furious_spear_refined": "狂怒长枪(精)",
                            "/actions/cheesesmithing/chaotic_flail_refined": "混沌连枷(精)",
                            "/actions/cheesesmithing/regal_sword_refined": "君王之剑(精)",
                            "/actions/cheesesmithing/anchorbound_plate_body_refined": "锚定胸甲(精)",
                            "/actions/cheesesmithing/maelstrom_plate_body_refined": "怒涛胸甲(精)",
                            "/actions/crafting/lumber": "木板",
                            "/actions/crafting/wooden_crossbow": "木弩",
                            "/actions/crafting/wooden_water_staff": "木制水法杖",
                            "/actions/crafting/basic_task_badge": "基础任务徽章",
                            "/actions/crafting/advanced_task_badge": "高级任务徽章",
                            "/actions/crafting/expert_task_badge": "专家任务徽章",
                            "/actions/crafting/wooden_shield": "木盾",
                            "/actions/crafting/wooden_nature_staff": "木制自然法杖",
                            "/actions/crafting/wooden_bow": "木弓",
                            "/actions/crafting/wooden_fire_staff": "木制火法杖",
                            "/actions/crafting/birch_lumber": "白桦木板",
                            "/actions/crafting/birch_crossbow": "桦木弩",
                            "/actions/crafting/birch_water_staff": "桦木水法杖",
                            "/actions/crafting/crushed_pearl": "珍珠碎片",
                            "/actions/crafting/birch_shield": "桦木盾",
                            "/actions/crafting/birch_nature_staff": "桦木自然法杖",
                            "/actions/crafting/birch_bow": "桦木弓",
                            "/actions/crafting/ring_of_gathering": "采集戒指",
                            "/actions/crafting/birch_fire_staff": "桦木火法杖",
                            "/actions/crafting/earrings_of_gathering": "采集耳环",
                            "/actions/crafting/cedar_lumber": "雪松木板",
                            "/actions/crafting/cedar_crossbow": "雪松弩",
                            "/actions/crafting/cedar_water_staff": "雪松水法杖",
                            "/actions/crafting/basic_milking_charm": "基础挤奶护符",
                            "/actions/crafting/basic_foraging_charm": "基础采摘护符",
                            "/actions/crafting/basic_woodcutting_charm": "基础伐木护符",
                            "/actions/crafting/basic_cheesesmithing_charm": "基础奶酪锻造护符",
                            "/actions/crafting/basic_crafting_charm": "基础制作护符",
                            "/actions/crafting/basic_tailoring_charm": "基础缝纫护符",
                            "/actions/crafting/basic_cooking_charm": "基础烹饪护符",
                            "/actions/crafting/basic_brewing_charm": "基础冲泡护符",
                            "/actions/crafting/basic_alchemy_charm": "基础炼金护符",
                            "/actions/crafting/basic_enhancing_charm": "基础强化护符",
                            "/actions/crafting/cedar_shield": "雪松盾",
                            "/actions/crafting/cedar_nature_staff": "雪松自然法杖",
                            "/actions/crafting/cedar_bow": "雪松弓",
                            "/actions/crafting/crushed_amber": "琥珀碎片",
                            "/actions/crafting/cedar_fire_staff": "雪松火法杖",
                            "/actions/crafting/ring_of_essence_find": "精华发现戒指",
                            "/actions/crafting/earrings_of_essence_find": "精华发现耳环",
                            "/actions/crafting/necklace_of_efficiency": "效率项链",
                            "/actions/crafting/purpleheart_lumber": "紫心木板",
                            "/actions/crafting/purpleheart_crossbow": "紫心弩",
                            "/actions/crafting/purpleheart_water_staff": "紫心水法杖",
                            "/actions/crafting/purpleheart_shield": "紫心盾",
                            "/actions/crafting/purpleheart_nature_staff": "紫心自然法杖",
                            "/actions/crafting/purpleheart_bow": "紫心弓",
                            "/actions/crafting/advanced_milking_charm": "高级挤奶护符",
                            "/actions/crafting/advanced_foraging_charm": "高级采摘护符",
                            "/actions/crafting/advanced_woodcutting_charm": "高级伐木护符",
                            "/actions/crafting/advanced_cheesesmithing_charm": "高级奶酪锻造护符",
                            "/actions/crafting/advanced_crafting_charm": "高级制作护符",
                            "/actions/crafting/advanced_tailoring_charm": "高级缝纫护符",
                            "/actions/crafting/advanced_cooking_charm": "高级烹饪护符",
                            "/actions/crafting/advanced_brewing_charm": "高级冲泡护符",
                            "/actions/crafting/advanced_alchemy_charm": "高级炼金护符",
                            "/actions/crafting/advanced_enhancing_charm": "高级强化护符",
                            "/actions/crafting/advanced_stamina_charm": "高级耐力护符",
                            "/actions/crafting/advanced_intelligence_charm": "高级智力护符",
                            "/actions/crafting/advanced_attack_charm": "高级攻击护符",
                            "/actions/crafting/advanced_defense_charm": "高级防御护符",
                            "/actions/crafting/advanced_melee_charm": "高级近战护符",
                            "/actions/crafting/advanced_ranged_charm": "高级远程护符",
                            "/actions/crafting/advanced_magic_charm": "高级魔法护符",
                            "/actions/crafting/crushed_garnet": "石榴石碎片",
                            "/actions/crafting/crushed_jade": "翡翠碎片",
                            "/actions/crafting/crushed_amethyst": "紫水晶碎片",
                            "/actions/crafting/catalyst_of_coinification": "点金催化剂",
                            "/actions/crafting/treant_shield": "树人盾",
                            "/actions/crafting/purpleheart_fire_staff": "紫心火法杖",
                            "/actions/crafting/ring_of_regeneration": "恢复戒指",
                            "/actions/crafting/earrings_of_regeneration": "恢复耳环",
                            "/actions/crafting/fighter_necklace": "战士项链",
                            "/actions/crafting/ginkgo_lumber": "银杏木板",
                            "/actions/crafting/ginkgo_crossbow": "银杏弩",
                            "/actions/crafting/ginkgo_water_staff": "银杏水法杖",
                            "/actions/crafting/ring_of_armor": "护甲戒指",
                            "/actions/crafting/catalyst_of_decomposition": "分解催化剂",
                            "/actions/crafting/ginkgo_shield": "银杏盾",
                            "/actions/crafting/earrings_of_armor": "护甲耳环",
                            "/actions/crafting/ginkgo_nature_staff": "银杏自然法杖",
                            "/actions/crafting/ranger_necklace": "射手项链",
                            "/actions/crafting/ginkgo_bow": "银杏弓",
                            "/actions/crafting/ring_of_resistance": "抗性戒指",
                            "/actions/crafting/crushed_moonstone": "月亮石碎片",
                            "/actions/crafting/ginkgo_fire_staff": "银杏火法杖",
                            "/actions/crafting/earrings_of_resistance": "抗性耳环",
                            "/actions/crafting/wizard_necklace": "巫师项链",
                            "/actions/crafting/ring_of_rare_find": "稀有发现戒指",
                            "/actions/crafting/expert_milking_charm": "专家挤奶护符",
                            "/actions/crafting/expert_foraging_charm": "专家采摘护符",
                            "/actions/crafting/expert_woodcutting_charm": "专家伐木护符",
                            "/actions/crafting/expert_cheesesmithing_charm": "专家奶酪锻造护符",
                            "/actions/crafting/expert_crafting_charm": "专家制作护符",
                            "/actions/crafting/expert_tailoring_charm": "专家缝纫护符",
                            "/actions/crafting/expert_cooking_charm": "专家烹饪护符",
                            "/actions/crafting/expert_brewing_charm": "专家冲泡护符",
                            "/actions/crafting/expert_alchemy_charm": "专家炼金护符",
                            "/actions/crafting/expert_enhancing_charm": "专家强化护符",
                            "/actions/crafting/expert_stamina_charm": "专家耐力护符",
                            "/actions/crafting/expert_intelligence_charm": "专家智力护符",
                            "/actions/crafting/expert_attack_charm": "专家攻击护符",
                            "/actions/crafting/expert_defense_charm": "专家防御护符",
                            "/actions/crafting/expert_melee_charm": "专家近战护符",
                            "/actions/crafting/expert_ranged_charm": "专家远程护符",
                            "/actions/crafting/expert_magic_charm": "专家魔法护符",
                            "/actions/crafting/catalyst_of_transmutation": "转化催化剂",
                            "/actions/crafting/earrings_of_rare_find": "稀有发现耳环",
                            "/actions/crafting/necklace_of_wisdom": "经验项链",
                            "/actions/crafting/redwood_lumber": "红杉木板",
                            "/actions/crafting/redwood_crossbow": "红杉弩",
                            "/actions/crafting/redwood_water_staff": "红杉水法杖",
                            "/actions/crafting/redwood_shield": "红杉盾",
                            "/actions/crafting/redwood_nature_staff": "红杉自然法杖",
                            "/actions/crafting/redwood_bow": "红杉弓",
                            "/actions/crafting/crushed_sunstone": "太阳石碎片",
                            "/actions/crafting/chimerical_entry_key": "奇幻钥匙",
                            "/actions/crafting/chimerical_chest_key": "奇幻宝箱钥匙",
                            "/actions/crafting/eye_watch": "掌上监工",
                            "/actions/crafting/watchful_relic": "警戒遗物",
                            "/actions/crafting/redwood_fire_staff": "红杉火法杖",
                            "/actions/crafting/ring_of_critical_strike": "暴击戒指",
                            "/actions/crafting/mirror_of_protection": "保护之镜",
                            "/actions/crafting/earrings_of_critical_strike": "暴击耳环",
                            "/actions/crafting/necklace_of_speed": "速度项链",
                            "/actions/crafting/arcane_lumber": "神秘木板",
                            "/actions/crafting/arcane_crossbow": "神秘弩",
                            "/actions/crafting/arcane_water_staff": "神秘水法杖",
                            "/actions/crafting/master_milking_charm": "大师挤奶护符",
                            "/actions/crafting/master_foraging_charm": "大师采摘护符",
                            "/actions/crafting/master_woodcutting_charm": "大师伐木护符",
                            "/actions/crafting/master_cheesesmithing_charm": "大师奶酪锻造护符",
                            "/actions/crafting/master_crafting_charm": "大师制作护符",
                            "/actions/crafting/master_tailoring_charm": "大师缝纫护符",
                            "/actions/crafting/master_cooking_charm": "大师烹饪护符",
                            "/actions/crafting/master_brewing_charm": "大师冲泡护符",
                            "/actions/crafting/master_alchemy_charm": "大师炼金护符",
                            "/actions/crafting/master_enhancing_charm": "大师强化护符",
                            "/actions/crafting/master_stamina_charm": "大师耐力护符",
                            "/actions/crafting/master_intelligence_charm": "大师智力护符",
                            "/actions/crafting/master_attack_charm": "大师攻击护符",
                            "/actions/crafting/master_defense_charm": "大师防御护符",
                            "/actions/crafting/master_melee_charm": "大师近战护符",
                            "/actions/crafting/master_ranged_charm": "大师远程护符",
                            "/actions/crafting/master_magic_charm": "大师魔法护符",
                            "/actions/crafting/sinister_entry_key": "阴森钥匙",
                            "/actions/crafting/sinister_chest_key": "阴森宝箱钥匙",
                            "/actions/crafting/arcane_shield": "神秘盾",
                            "/actions/crafting/arcane_nature_staff": "神秘自然法杖",
                            "/actions/crafting/manticore_shield": "蝎狮盾",
                            "/actions/crafting/arcane_bow": "神秘弓",
                            "/actions/crafting/enchanted_entry_key": "秘法钥匙",
                            "/actions/crafting/enchanted_chest_key": "秘法宝箱钥匙",
                            "/actions/crafting/pirate_entry_key": "海盗钥匙",
                            "/actions/crafting/pirate_chest_key": "海盗宝箱钥匙",
                            "/actions/crafting/arcane_fire_staff": "神秘火法杖",
                            "/actions/crafting/vampiric_bow": "吸血弓",
                            "/actions/crafting/soul_hunter_crossbow": "灵魂猎手弩",
                            "/actions/crafting/frost_staff": "冰霜法杖",
                            "/actions/crafting/infernal_battlestaff": "炼狱法杖",
                            "/actions/crafting/jackalope_staff": "鹿角兔之杖",
                            "/actions/crafting/philosophers_ring": "贤者戒指",
                            "/actions/crafting/crushed_philosophers_stone": "贤者之石碎片",
                            "/actions/crafting/philosophers_earrings": "贤者耳环",
                            "/actions/crafting/philosophers_necklace": "贤者项链",
                            "/actions/crafting/bishops_codex": "主教法典",
                            "/actions/crafting/cursed_bow": "咒怨之弓",
                            "/actions/crafting/sundering_crossbow": "裂空之弩",
                            "/actions/crafting/rippling_trident": "涟漪三叉戟",
                            "/actions/crafting/blooming_trident": "绽放三叉戟",
                            "/actions/crafting/blazing_trident": "炽焰三叉戟",
                            "/actions/crafting/grandmaster_milking_charm": "宗师挤奶护符",
                            "/actions/crafting/grandmaster_foraging_charm": "宗师采摘护符",
                            "/actions/crafting/grandmaster_woodcutting_charm": "宗师伐木护符",
                            "/actions/crafting/grandmaster_cheesesmithing_charm": "宗师奶酪锻造护符",
                            "/actions/crafting/grandmaster_crafting_charm": "宗师制作护符",
                            "/actions/crafting/grandmaster_tailoring_charm": "宗师缝纫护符",
                            "/actions/crafting/grandmaster_cooking_charm": "宗师烹饪护符",
                            "/actions/crafting/grandmaster_brewing_charm": "宗师冲泡护符",
                            "/actions/crafting/grandmaster_alchemy_charm": "宗师炼金护符",
                            "/actions/crafting/grandmaster_enhancing_charm": "宗师强化护符",
                            "/actions/crafting/grandmaster_stamina_charm": "宗师耐力护符",
                            "/actions/crafting/grandmaster_intelligence_charm": "宗师智力护符",
                            "/actions/crafting/grandmaster_attack_charm": "宗师攻击护符",
                            "/actions/crafting/grandmaster_defense_charm": "宗师防御护符",
                            "/actions/crafting/grandmaster_melee_charm": "宗师近战护符",
                            "/actions/crafting/grandmaster_ranged_charm": "宗师远程护符",
                            "/actions/crafting/grandmaster_magic_charm": "宗师魔法护符",
                            "/actions/crafting/bishops_codex_refined": "主教法典(精)",
                            "/actions/crafting/cursed_bow_refined": "咒怨之弓(精)",
                            "/actions/crafting/sundering_crossbow_refined": "裂空之弩(精)",
                            "/actions/crafting/rippling_trident_refined": "涟漪三叉戟(精)",
                            "/actions/crafting/blooming_trident_refined": "绽放三叉戟(精)",
                            "/actions/crafting/blazing_trident_refined": "炽焰三叉戟(精)",
                            "/actions/tailoring/rough_leather": "粗糙皮革",
                            "/actions/tailoring/cotton_fabric": "棉花布料",
                            "/actions/tailoring/rough_boots": "粗糙靴",
                            "/actions/tailoring/cotton_boots": "棉靴",
                            "/actions/tailoring/rough_bracers": "粗糙护腕",
                            "/actions/tailoring/cotton_gloves": "棉手套",
                            "/actions/tailoring/small_pouch": "小袋子",
                            "/actions/tailoring/rough_hood": "粗糙兜帽",
                            "/actions/tailoring/cotton_hat": "棉帽",
                            "/actions/tailoring/rough_chaps": "粗糙皮裤",
                            "/actions/tailoring/cotton_robe_bottoms": "棉袍裙",
                            "/actions/tailoring/rough_tunic": "粗糙皮衣",
                            "/actions/tailoring/cotton_robe_top": "棉袍服",
                            "/actions/tailoring/reptile_leather": "爬行动物皮革",
                            "/actions/tailoring/linen_fabric": "亚麻布料",
                            "/actions/tailoring/reptile_boots": "爬行动物靴",
                            "/actions/tailoring/linen_boots": "亚麻靴",
                            "/actions/tailoring/reptile_bracers": "爬行动物护腕",
                            "/actions/tailoring/linen_gloves": "亚麻手套",
                            "/actions/tailoring/reptile_hood": "爬行动物兜帽",
                            "/actions/tailoring/linen_hat": "亚麻帽",
                            "/actions/tailoring/reptile_chaps": "爬行动物皮裤",
                            "/actions/tailoring/linen_robe_bottoms": "亚麻袍裙",
                            "/actions/tailoring/medium_pouch": "中袋子",
                            "/actions/tailoring/reptile_tunic": "爬行动物皮衣",
                            "/actions/tailoring/linen_robe_top": "亚麻袍服",
                            "/actions/tailoring/shoebill_shoes": "鲸头鹳鞋",
                            "/actions/tailoring/gobo_leather": "哥布林皮革",
                            "/actions/tailoring/bamboo_fabric": "竹子布料",
                            "/actions/tailoring/gobo_boots": "哥布林靴",
                            "/actions/tailoring/bamboo_boots": "竹靴",
                            "/actions/tailoring/gobo_bracers": "哥布林护腕",
                            "/actions/tailoring/bamboo_gloves": "竹手套",
                            "/actions/tailoring/gobo_hood": "哥布林兜帽",
                            "/actions/tailoring/bamboo_hat": "竹帽",
                            "/actions/tailoring/gobo_chaps": "哥布林皮裤",
                            "/actions/tailoring/bamboo_robe_bottoms": "竹袍裙",
                            "/actions/tailoring/large_pouch": "大袋子",
                            "/actions/tailoring/gobo_tunic": "哥布林皮衣",
                            "/actions/tailoring/bamboo_robe_top": "竹袍服",
                            "/actions/tailoring/marine_tunic": "海洋皮衣",
                            "/actions/tailoring/marine_chaps": "航海皮裤",
                            "/actions/tailoring/icy_robe_top": "冰霜袍服",
                            "/actions/tailoring/icy_robe_bottoms": "冰霜袍裙",
                            "/actions/tailoring/flaming_robe_top": "烈焰袍服",
                            "/actions/tailoring/flaming_robe_bottoms": "烈焰袍裙",
                            "/actions/tailoring/beast_leather": "野兽皮革",
                            "/actions/tailoring/silk_fabric": "丝绸",
                            "/actions/tailoring/beast_boots": "野兽靴",
                            "/actions/tailoring/silk_boots": "丝靴",
                            "/actions/tailoring/beast_bracers": "野兽护腕",
                            "/actions/tailoring/silk_gloves": "丝手套",
                            "/actions/tailoring/collectors_boots": "收藏家靴",
                            "/actions/tailoring/sighted_bracers": "瞄准护腕",
                            "/actions/tailoring/beast_hood": "野兽兜帽",
                            "/actions/tailoring/silk_hat": "丝帽",
                            "/actions/tailoring/beast_chaps": "野兽皮裤",
                            "/actions/tailoring/silk_robe_bottoms": "丝绸袍裙",
                            "/actions/tailoring/centaur_boots": "半人马靴",
                            "/actions/tailoring/sorcerer_boots": "巫师靴",
                            "/actions/tailoring/giant_pouch": "巨大袋子",
                            "/actions/tailoring/beast_tunic": "野兽皮衣",
                            "/actions/tailoring/silk_robe_top": "丝绸袍服",
                            "/actions/tailoring/red_culinary_hat": "红色厨师帽",
                            "/actions/tailoring/luna_robe_top": "月神袍服",
                            "/actions/tailoring/luna_robe_bottoms": "月神袍裙",
                            "/actions/tailoring/umbral_leather": "暗影皮革",
                            "/actions/tailoring/radiant_fabric": "光辉布料",
                            "/actions/tailoring/umbral_boots": "暗影靴",
                            "/actions/tailoring/radiant_boots": "光辉靴",
                            "/actions/tailoring/umbral_bracers": "暗影护腕",
                            "/actions/tailoring/radiant_gloves": "光辉手套",
                            "/actions/tailoring/enchanted_gloves": "附魔手套",
                            "/actions/tailoring/fluffy_red_hat": "蓬松红帽子",
                            "/actions/tailoring/chrono_gloves": "时空手套",
                            "/actions/tailoring/umbral_hood": "暗影兜帽",
                            "/actions/tailoring/radiant_hat": "光辉帽",
                            "/actions/tailoring/umbral_chaps": "暗影皮裤",
                            "/actions/tailoring/radiant_robe_bottoms": "光辉袍裙",
                            "/actions/tailoring/umbral_tunic": "暗影皮衣",
                            "/actions/tailoring/radiant_robe_top": "光辉袍服",
                            "/actions/tailoring/revenant_chaps": "亡灵皮裤",
                            "/actions/tailoring/griffin_chaps": "狮鹫皮裤",
                            "/actions/tailoring/dairyhands_top": "挤奶工上衣",
                            "/actions/tailoring/dairyhands_bottoms": "挤奶工下装",
                            "/actions/tailoring/foragers_top": "采摘者上衣",
                            "/actions/tailoring/foragers_bottoms": "采摘者下装",
                            "/actions/tailoring/lumberjacks_top": "伐木工上衣",
                            "/actions/tailoring/lumberjacks_bottoms": "伐木工下装",
                            "/actions/tailoring/cheesemakers_top": "奶酪师上衣",
                            "/actions/tailoring/cheesemakers_bottoms": "奶酪师下装",
                            "/actions/tailoring/crafters_top": "工匠上衣",
                            "/actions/tailoring/crafters_bottoms": "工匠下装",
                            "/actions/tailoring/tailors_top": "裁缝上衣",
                            "/actions/tailoring/tailors_bottoms": "裁缝下装",
                            "/actions/tailoring/chefs_top": "厨师上衣",
                            "/actions/tailoring/chefs_bottoms": "厨师下装",
                            "/actions/tailoring/brewers_top": "饮品师上衣",
                            "/actions/tailoring/brewers_bottoms": "饮品师下装",
                            "/actions/tailoring/alchemists_top": "炼金师上衣",
                            "/actions/tailoring/alchemists_bottoms": "炼金师下装",
                            "/actions/tailoring/enhancers_top": "强化师上衣",
                            "/actions/tailoring/enhancers_bottoms": "强化师下装",
                            "/actions/tailoring/revenant_tunic": "亡灵皮衣",
                            "/actions/tailoring/griffin_tunic": "狮鹫皮衣",
                            "/actions/tailoring/gluttonous_pouch": "贪食之袋",
                            "/actions/tailoring/guzzling_pouch": "暴饮之囊",
                            "/actions/tailoring/marksman_bracers": "神射护腕",
                            "/actions/tailoring/acrobatic_hood": "杂技师兜帽",
                            "/actions/tailoring/magicians_hat": "魔术师帽",
                            "/actions/tailoring/kraken_chaps": "克拉肯皮裤",
                            "/actions/tailoring/royal_water_robe_bottoms": "皇家水系袍裙",
                            "/actions/tailoring/royal_nature_robe_bottoms": "皇家自然系袍裙",
                            "/actions/tailoring/royal_fire_robe_bottoms": "皇家火系袍裙",
                            "/actions/tailoring/kraken_tunic": "克拉肯皮衣",
                            "/actions/tailoring/royal_water_robe_top": "皇家水系袍服",
                            "/actions/tailoring/royal_nature_robe_top": "皇家自然系袍服",
                            "/actions/tailoring/royal_fire_robe_top": "皇家火系袍服",
                            "/actions/tailoring/chimerical_quiver_refined": "奇幻箭袋(精)",
                            "/actions/tailoring/sinister_cape_refined": "阴森斗篷(精)",
                            "/actions/tailoring/enchanted_cloak_refined": "秘法披风(精)",
                            "/actions/tailoring/marksman_bracers_refined": "神射护腕(精)",
                            "/actions/tailoring/acrobatic_hood_refined": "杂技师兜帽(精)",
                            "/actions/tailoring/magicians_hat_refined": "魔术师帽(精)",
                            "/actions/tailoring/kraken_chaps_refined": "克拉肯皮裤(精)",
                            "/actions/tailoring/royal_water_robe_bottoms_refined": "皇家水系袍裙(精)",
                            "/actions/tailoring/royal_nature_robe_bottoms_refined": "皇家自然系袍裙(精)",
                            "/actions/tailoring/royal_fire_robe_bottoms_refined": "皇家火系袍裙(精)",
                            "/actions/tailoring/kraken_tunic_refined": "克拉肯皮衣(精)",
                            "/actions/tailoring/royal_water_robe_top_refined": "皇家水系袍服(精)",
                            "/actions/tailoring/royal_nature_robe_top_refined": "皇家自然系袍服(精)",
                            "/actions/tailoring/royal_fire_robe_top_refined": "皇家火系袍服(精)",
                            "/actions/cooking/donut": "甜甜圈",
                            "/actions/cooking/cupcake": "纸杯蛋糕",
                            "/actions/cooking/gummy": "软糖",
                            "/actions/cooking/yogurt": "酸奶",
                            "/actions/cooking/blueberry_donut": "蓝莓甜甜圈",
                            "/actions/cooking/blueberry_cake": "蓝莓蛋糕",
                            "/actions/cooking/apple_gummy": "苹果软糖",
                            "/actions/cooking/apple_yogurt": "苹果酸奶",
                            "/actions/cooking/blackberry_donut": "黑莓甜甜圈",
                            "/actions/cooking/blackberry_cake": "黑莓蛋糕",
                            "/actions/cooking/orange_gummy": "橙子软糖",
                            "/actions/cooking/orange_yogurt": "橙子酸奶",
                            "/actions/cooking/strawberry_donut": "草莓甜甜圈",
                            "/actions/cooking/strawberry_cake": "草莓蛋糕",
                            "/actions/cooking/plum_gummy": "李子软糖",
                            "/actions/cooking/plum_yogurt": "李子酸奶",
                            "/actions/cooking/mooberry_donut": "哞莓甜甜圈",
                            "/actions/cooking/mooberry_cake": "哞莓蛋糕",
                            "/actions/cooking/peach_gummy": "桃子软糖",
                            "/actions/cooking/peach_yogurt": "桃子酸奶",
                            "/actions/cooking/marsberry_donut": "火星莓甜甜圈",
                            "/actions/cooking/marsberry_cake": "火星莓蛋糕",
                            "/actions/cooking/dragon_fruit_gummy": "火龙果软糖",
                            "/actions/cooking/dragon_fruit_yogurt": "火龙果酸奶",
                            "/actions/cooking/spaceberry_donut": "太空莓甜甜圈",
                            "/actions/cooking/spaceberry_cake": "太空莓蛋糕",
                            "/actions/cooking/star_fruit_gummy": "杨桃软糖",
                            "/actions/cooking/star_fruit_yogurt": "杨桃酸奶",
                            "/actions/brewing/milking_tea": "挤奶茶",
                            "/actions/brewing/stamina_coffee": "耐力咖啡",
                            "/actions/brewing/foraging_tea": "采摘茶",
                            "/actions/brewing/intelligence_coffee": "智力咖啡",
                            "/actions/brewing/gathering_tea": "采集茶",
                            "/actions/brewing/woodcutting_tea": "伐木茶",
                            "/actions/brewing/cooking_tea": "烹饪茶",
                            "/actions/brewing/defense_coffee": "防御咖啡",
                            "/actions/brewing/brewing_tea": "冲泡茶",
                            "/actions/brewing/attack_coffee": "攻击咖啡",
                            "/actions/brewing/gourmet_tea": "美食茶",
                            "/actions/brewing/alchemy_tea": "炼金茶",
                            "/actions/brewing/enhancing_tea": "强化茶",
                            "/actions/brewing/cheesesmithing_tea": "奶酪锻造茶",
                            "/actions/brewing/melee_coffee": "近战咖啡",
                            "/actions/brewing/crafting_tea": "制作茶",
                            "/actions/brewing/ranged_coffee": "远程咖啡",
                            "/actions/brewing/wisdom_tea": "经验茶",
                            "/actions/brewing/wisdom_coffee": "经验咖啡",
                            "/actions/brewing/tailoring_tea": "缝纫茶",
                            "/actions/brewing/magic_coffee": "魔法咖啡",
                            "/actions/brewing/super_milking_tea": "超级挤奶茶",
                            "/actions/brewing/super_stamina_coffee": "超级耐力咖啡",
                            "/actions/brewing/super_foraging_tea": "超级采摘茶",
                            "/actions/brewing/super_intelligence_coffee": "超级智力咖啡",
                            "/actions/brewing/processing_tea": "加工茶",
                            "/actions/brewing/lucky_coffee": "幸运咖啡",
                            "/actions/brewing/super_woodcutting_tea": "超级伐木茶",
                            "/actions/brewing/super_cooking_tea": "超级烹饪茶",
                            "/actions/brewing/super_defense_coffee": "超级防御咖啡",
                            "/actions/brewing/super_brewing_tea": "超级冲泡茶",
                            "/actions/brewing/ultra_milking_tea": "究极挤奶茶",
                            "/actions/brewing/super_attack_coffee": "超级攻击咖啡",
                            "/actions/brewing/ultra_stamina_coffee": "究极耐力咖啡",
                            "/actions/brewing/efficiency_tea": "效率茶",
                            "/actions/brewing/swiftness_coffee": "迅捷咖啡",
                            "/actions/brewing/super_alchemy_tea": "超级炼金茶",
                            "/actions/brewing/super_enhancing_tea": "超级强化茶",
                            "/actions/brewing/ultra_foraging_tea": "究极采摘茶",
                            "/actions/brewing/ultra_intelligence_coffee": "究极智力咖啡",
                            "/actions/brewing/channeling_coffee": "吟唱咖啡",
                            "/actions/brewing/super_cheesesmithing_tea": "超级奶酪锻造茶",
                            "/actions/brewing/ultra_woodcutting_tea": "究极伐木茶",
                            "/actions/brewing/super_melee_coffee": "超级近战咖啡",
                            "/actions/brewing/artisan_tea": "工匠茶",
                            "/actions/brewing/super_crafting_tea": "超级制作茶",
                            "/actions/brewing/ultra_cooking_tea": "究极烹饪茶",
                            "/actions/brewing/super_ranged_coffee": "超级远程咖啡",
                            "/actions/brewing/ultra_defense_coffee": "究极防御咖啡",
                            "/actions/brewing/catalytic_tea": "催化茶",
                            "/actions/brewing/critical_coffee": "暴击咖啡",
                            "/actions/brewing/super_tailoring_tea": "超级缝纫茶",
                            "/actions/brewing/ultra_brewing_tea": "究极冲泡茶",
                            "/actions/brewing/super_magic_coffee": "超级魔法咖啡",
                            "/actions/brewing/ultra_attack_coffee": "究极攻击咖啡",
                            "/actions/brewing/blessed_tea": "福气茶",
                            "/actions/brewing/ultra_alchemy_tea": "究极炼金茶",
                            "/actions/brewing/ultra_enhancing_tea": "究极强化茶",
                            "/actions/brewing/ultra_cheesesmithing_tea": "究极奶酪锻造茶",
                            "/actions/brewing/ultra_melee_coffee": "究极近战咖啡",
                            "/actions/brewing/ultra_crafting_tea": "究极制作茶",
                            "/actions/brewing/ultra_ranged_coffee": "究极远程咖啡",
                            "/actions/brewing/ultra_tailoring_tea": "究极缝纫茶",
                            "/actions/brewing/ultra_magic_coffee": "究极魔法咖啡",
                            "/actions/alchemy/coinify": "点金",
                            "/actions/alchemy/transmute": "转化",
                            "/actions/alchemy/decompose": "分解",
                            "/actions/enhancing/enhance": "强化",
                            "/actions/combat/fly": "苍蝇",
                            "/actions/combat/rat": "杰瑞",
                            "/actions/combat/skunk": "臭鼬",
                            "/actions/combat/porcupine": "豪猪",
                            "/actions/combat/slimy": "史莱姆",
                            "/actions/combat/smelly_planet": "臭臭星球",
                            "/actions/combat/frog": "青蛙",
                            "/actions/combat/snake": "蛇",
                            "/actions/combat/swampy": "沼泽虫",
                            "/actions/combat/alligator": "夏洛克",
                            "/actions/combat/swamp_planet": "沼泽星球",
                            "/actions/combat/sea_snail": "蜗牛",
                            "/actions/combat/crab": "螃蟹",
                            "/actions/combat/aquahorse": "水马",
                            "/actions/combat/nom_nom": "咬咬鱼",
                            "/actions/combat/turtle": "忍者龟",
                            "/actions/combat/aqua_planet": "海洋星球",
                            "/actions/combat/jungle_sprite": "丛林精灵",
                            "/actions/combat/myconid": "蘑菇人",
                            "/actions/combat/treant": "树人",
                            "/actions/combat/centaur_archer": "半人马弓箭手",
                            "/actions/combat/jungle_planet": "丛林星球",
                            "/actions/combat/gobo_stabby": "刺刺",
                            "/actions/combat/gobo_slashy": "砍砍",
                            "/actions/combat/gobo_smashy": "锤锤",
                            "/actions/combat/gobo_shooty": "咻咻",
                            "/actions/combat/gobo_boomy": "轰轰",
                            "/actions/combat/gobo_planet": "哥布林星球",
                            "/actions/combat/eye": "独眼",
                            "/actions/combat/eyes": "叠眼",
                            "/actions/combat/veyes": "复眼",
                            "/actions/combat/planet_of_the_eyes": "眼球星球",
                            "/actions/combat/novice_sorcerer": "新手巫师",
                            "/actions/combat/ice_sorcerer": "冰霜巫师",
                            "/actions/combat/flame_sorcerer": "火焰巫师",
                            "/actions/combat/elementalist": "元素法师",
                            "/actions/combat/sorcerers_tower": "巫师之塔",
                            "/actions/combat/gummy_bear": "软糖熊",
                            "/actions/combat/panda": "熊猫",
                            "/actions/combat/black_bear": "黑熊",
                            "/actions/combat/grizzly_bear": "棕熊",
                            "/actions/combat/polar_bear": "北极熊",
                            "/actions/combat/bear_with_it": "熊熊星球",
                            "/actions/combat/magnetic_golem": "磁力魔像",
                            "/actions/combat/stalactite_golem": "钟乳石魔像",
                            "/actions/combat/granite_golem": "花岗岩魔像",
                            "/actions/combat/golem_cave": "魔像洞穴",
                            "/actions/combat/zombie": "僵尸",
                            "/actions/combat/vampire": "吸血鬼",
                            "/actions/combat/werewolf": "狼人",
                            "/actions/combat/twilight_zone": "暮光之地",
                            "/actions/combat/abyssal_imp": "深渊小鬼",
                            "/actions/combat/soul_hunter": "灵魂猎手",
                            "/actions/combat/infernal_warlock": "地狱术士",
                            "/actions/combat/infernal_abyss": "地狱深渊",
                            "/actions/combat/chimerical_den": "奇幻洞穴",
                            "/actions/combat/sinister_circus": "阴森马戏团",
                            "/actions/combat/enchanted_fortress": "秘法要塞",
                            "/actions/combat/pirate_cove": "海盗基地"
                        },
                        "actionTypeNames": {
                            "/action_types/milking": "挤奶",
                            "/action_types/foraging": "采摘",
                            "/action_types/woodcutting": "伐木",
                            "/action_types/cheesesmithing": "奶酪锻造",
                            "/action_types/crafting": "制作",
                            "/action_types/tailoring": "缝纫",
                            "/action_types/cooking": "烹饪",
                            "/action_types/brewing": "冲泡",
                            "/action_types/alchemy": "炼金",
                            "/action_types/enhancing": "强化",
                            "/action_types/combat": "战斗"
                        },
                        "actionCategoryNames": {
                            "/action_categories/milking/cows": "奶牛",
                            "/action_categories/foraging/farmland": "翠野农场",
                            "/action_categories/foraging/shimmering_lake": "波光湖泊",
                            "/action_categories/foraging/misty_forest": "迷雾森林",
                            "/action_categories/foraging/burble_beach": "深紫沙滩",
                            "/action_categories/foraging/silly_cow_valley": "傻牛山谷",
                            "/action_categories/foraging/olympus_mons": "奥林匹斯山",
                            "/action_categories/foraging/asteroid_belt": "小行星带",
                            "/action_categories/woodcutting/trees": "树",
                            "/action_categories/cheesesmithing/material": "材料",
                            "/action_categories/cheesesmithing/tool": "工具",
                            "/action_categories/cheesesmithing/main_hand": "主手",
                            "/action_categories/cheesesmithing/two_hand": "双手",
                            "/action_categories/cheesesmithing/off_hand": "副手",
                            "/action_categories/cheesesmithing/feet": "脚部",
                            "/action_categories/cheesesmithing/hands": "手部",
                            "/action_categories/cheesesmithing/head": "头部",
                            "/action_categories/cheesesmithing/legs": "腿部",
                            "/action_categories/cheesesmithing/body": "身体",
                            "/action_categories/crafting/lumber": "木板",
                            "/action_categories/crafting/crossbow": "弩",
                            "/action_categories/crafting/bow": "弓",
                            "/action_categories/crafting/staff": "法杖",
                            "/action_categories/crafting/off_hand": "副手",
                            "/action_categories/crafting/ring": "戒指",
                            "/action_categories/crafting/earrings": "耳环",
                            "/action_categories/crafting/neck": "项链",
                            "/action_categories/crafting/charm": "护符",
                            "/action_categories/crafting/trinket": "饰品",
                            "/action_categories/crafting/special": "特殊",
                            "/action_categories/crafting/dungeon_keys": "地下城钥匙",
                            "/action_categories/tailoring/material": "材料",
                            "/action_categories/tailoring/feet": "脚部",
                            "/action_categories/tailoring/hands": "手部",
                            "/action_categories/tailoring/head": "头部",
                            "/action_categories/tailoring/legs": "腿部",
                            "/action_categories/tailoring/body": "身体",
                            "/action_categories/tailoring/pouch": "袋子",
                            "/action_categories/tailoring/back": "背部",
                            "/action_categories/cooking/instant_heal": "即时回血",
                            "/action_categories/cooking/heal_over_time": "持续回血",
                            "/action_categories/cooking/instant_mana": "即时回蓝",
                            "/action_categories/cooking/mana_over_time": "持续回蓝",
                            "/action_categories/brewing/tea": "茶",
                            "/action_categories/brewing/coffee": "咖啡",
                            "/action_categories/alchemy/alchemy": "炼金",
                            "/action_categories/enhancing/enhance": "强化",
                            "/action_categories/combat/smelly_planet": "臭臭星球",
                            "/action_categories/combat/swamp_planet": "沼泽星球",
                            "/action_categories/combat/aqua_planet": "海洋星球",
                            "/action_categories/combat/jungle_planet": "丛林星球",
                            "/action_categories/combat/gobo_planet": "哥布林星球",
                            "/action_categories/combat/planet_of_the_eyes": "眼球星球",
                            "/action_categories/combat/sorcerers_tower": "巫师之塔",
                            "/action_categories/combat/bear_with_it": "熊熊星球",
                            "/action_categories/combat/golem_cave": "魔像洞穴",
                            "/action_categories/combat/twilight_zone": "暮光之地",
                            "/action_categories/combat/infernal_abyss": "地狱深渊",
                            "/action_categories/combat/dungeons": "地下城"
                        },
                        "buffTypeNames": {
                            "/buff_types/gathering": "采集数量",
                            "/buff_types/efficiency": "效率",
                            "/buff_types/alchemy_success": "炼金成功率",
                            "/buff_types/enhancing_success": "强化成功率",
                            "/buff_types/action_speed": "行动速度",
                            "/buff_types/task_action_speed": "任务行动速度",
                            "/buff_types/milking_level": "挤奶等级",
                            "/buff_types/foraging_level": "采摘等级",
                            "/buff_types/woodcutting_level": "伐木等级",
                            "/buff_types/cheesesmithing_level": "奶酪锻造等级",
                            "/buff_types/crafting_level": "制作等级",
                            "/buff_types/tailoring_level": "缝纫等级",
                            "/buff_types/cooking_level": "烹饪等级",
                            "/buff_types/brewing_level": "冲泡等级",
                            "/buff_types/alchemy_level": "炼金等级",
                            "/buff_types/enhancing_level": "强化等级",
                            "/buff_types/gourmet": "美食",
                            "/buff_types/wisdom": "经验",
                            "/buff_types/processing": "加工",
                            "/buff_types/artisan": "工匠",
                            "/buff_types/blessed": "福气",
                            "/buff_types/action_level": "行动所需等级",
                            "/buff_types/essence_find": "精华发现",
                            "/buff_types/rare_find": "稀有发现",
                            "/buff_types/stamina_level": "耐力等级",
                            "/buff_types/intelligence_level": "智力等级",
                            "/buff_types/defense_level": "防御等级",
                            "/buff_types/attack_level": "攻击等级",
                            "/buff_types/melee_level": "近战等级",
                            "/buff_types/ranged_level": "远程等级",
                            "/buff_types/magic_level": "魔法等级",
                            "/buff_types/attack_speed": "攻击速度",
                            "/buff_types/cast_speed": "施法速度",
                            "/buff_types/critical_rate": "暴击率",
                            "/buff_types/critical_damage": "暴击伤害",
                            "/buff_types/accuracy": "精准",
                            "/buff_types/damage": "伤害",
                            "/buff_types/physical_amplify": "物理增幅",
                            "/buff_types/water_amplify": "水系增幅",
                            "/buff_types/nature_amplify": "自然系增幅",
                            "/buff_types/fire_amplify": "火系增幅",
                            "/buff_types/healing_amplify": "治疗增幅",
                            "/buff_types/evasion": "闪避",
                            "/buff_types/armor": "护甲",
                            "/buff_types/water_resistance": "水系抗性",
                            "/buff_types/nature_resistance": "自然系抗性",
                            "/buff_types/fire_resistance": "火系抗性",
                            "/buff_types/damage_taken": "所受伤害",
                            "/buff_types/life_steal": "生命窃取",
                            "/buff_types/mana_leech": "法力吸取",
                            "/buff_types/physical_thorns": "物理荆棘",
                            "/buff_types/elemental_thorns": "元素荆棘",
                            "/buff_types/retaliation": "反伤强度",
                            "/buff_types/tenacity": "韧性",
                            "/buff_types/hp_regen": "HP恢复",
                            "/buff_types/mp_regen": "MP恢复",
                            "/buff_types/threat": "威胁",
                            "/buff_types/combat_drop_rate": "战斗掉落率",
                            "/buff_types/combat_drop_quantity": "战斗掉落数量"
                        },
                        "buffTypeDescriptions": {
                            "/buff_types/gathering": "增加采集数量",
                            "/buff_types/efficiency": "立即重复行动的几率",
                            "/buff_types/alchemy_success": "炼金成功率的乘法加成",
                            "/buff_types/enhancing_success": "强化成功率的乘法加成",
                            "/buff_types/action_speed": "减少行动所需时间",
                            "/buff_types/task_action_speed": "减少任务行动所需时间",
                            "/buff_types/milking_level": "增益挤奶等级",
                            "/buff_types/foraging_level": "增益采摘等级",
                            "/buff_types/woodcutting_level": "增益伐木等级",
                            "/buff_types/cheesesmithing_level": "增益奶酪锻造等级",
                            "/buff_types/crafting_level": "增益制作等级",
                            "/buff_types/tailoring_level": "增益缝纫等级",
                            "/buff_types/cooking_level": "增益烹饪等级",
                            "/buff_types/brewing_level": "增益冲泡等级",
                            "/buff_types/alchemy_level": "增益炼金等级",
                            "/buff_types/enhancing_level": "增益强化等级",
                            "/buff_types/gourmet": "有机会免费获得一个额外物品",
                            "/buff_types/wisdom": "增加获得经验",
                            "/buff_types/processing": "有机会立即将原材料转化成产品 (奶酪、布料、和木材)",
                            "/buff_types/artisan": "减少生产过程中所需材料",
                            "/buff_types/blessed": "有机会在强化成功时获得+2而不是+1",
                            "/buff_types/action_level": "增加行动所需等级",
                            "/buff_types/essence_find": "增加精华的掉落率",
                            "/buff_types/rare_find": "增加稀有物品的掉落率",
                            "/buff_types/stamina_level": "增益耐力等级",
                            "/buff_types/intelligence_level": "增益智力等级",
                            "/buff_types/defense_level": "增益防御等级",
                            "/buff_types/attack_level": "增益攻击等级",
                            "/buff_types/melee_level": "增益近战等级",
                            "/buff_types/ranged_level": "增益远程等级",
                            "/buff_types/magic_level": "增益魔法等级",
                            "/buff_types/attack_speed": "增加自动攻击速度",
                            "/buff_types/cast_speed": "增加施法速度",
                            "/buff_types/critical_rate": "增加暴击率",
                            "/buff_types/critical_damage": "增加暴击伤害",
                            "/buff_types/accuracy": "增加精准度",
                            "/buff_types/damage": "增加伤害",
                            "/buff_types/physical_amplify": "增加物理伤害",
                            "/buff_types/water_amplify": "增加水系伤害",
                            "/buff_types/nature_amplify": "增加自然系伤害",
                            "/buff_types/fire_amplify": "增加火系伤害",
                            "/buff_types/healing_amplify": "增加治疗量",
                            "/buff_types/evasion": "增加闪避率",
                            "/buff_types/armor": "减少所受物理伤害",
                            "/buff_types/water_resistance": "减少所受水系伤害",
                            "/buff_types/nature_resistance": "减少所受自然系伤害",
                            "/buff_types/fire_resistance": "减少所受火系伤害",
                            "/buff_types/damage_taken": "增加所受伤害",
                            "/buff_types/life_steal": "自动攻击时获得生命窃取",
                            "/buff_types/mana_leech": "自动攻击时获得法力吸取",
                            "/buff_types/physical_thorns": "受到物理攻击时,对攻击者造成基于你护甲的一定物理伤害",
                            "/buff_types/elemental_thorns": "受到元素攻击时,对攻击者造成基于你抗性的一定元素伤害",
                            "/buff_types/retaliation": "将攻击原始伤害的一定比例以钝击形式反伤攻击者",
                            "/buff_types/tenacity": "降低失明、沉默或眩晕的几率",
                            "/buff_types/hp_regen": "增加HP恢复",
                            "/buff_types/mp_regen": "增加MP恢复",
                            "/buff_types/threat": "增加战斗中被攻击的几率",
                            "/buff_types/combat_drop_rate": "增加战斗战利品的掉落率",
                            "/buff_types/combat_drop_quantity": "增加战斗战利品数量"
                        },
                        "buffTypeDebuffDescriptions": {
                            "/buff_types/gathering": "减少采集数量",
                            "/buff_types/efficiency": "降低立即重复行动的可能性",
                            "/buff_types/alchemy_success": "",
                            "/buff_types/enhancing_success": "",
                            "/buff_types/action_speed": "",
                            "/buff_types/task_action_speed": "",
                            "/buff_types/milking_level": "",
                            "/buff_types/foraging_level": "",
                            "/buff_types/woodcutting_level": "",
                            "/buff_types/cheesesmithing_level": "",
                            "/buff_types/crafting_level": "",
                            "/buff_types/tailoring_level": "",
                            "/buff_types/cooking_level": "",
                            "/buff_types/brewing_level": "",
                            "/buff_types/alchemy_level": "",
                            "/buff_types/enhancing_level": "",
                            "/buff_types/gourmet": "",
                            "/buff_types/wisdom": "",
                            "/buff_types/processing": "",
                            "/buff_types/artisan": "",
                            "/buff_types/blessed": "",
                            "/buff_types/action_level": "",
                            "/buff_types/essence_find": "",
                            "/buff_types/rare_find": "",
                            "/buff_types/stamina_level": "",
                            "/buff_types/intelligence_level": "",
                            "/buff_types/defense_level": "",
                            "/buff_types/attack_level": "",
                            "/buff_types/melee_level": "",
                            "/buff_types/ranged_level": "",
                            "/buff_types/magic_level": "",
                            "/buff_types/attack_speed": "",
                            "/buff_types/cast_speed": "",
                            "/buff_types/critical_rate": "",
                            "/buff_types/critical_damage": "",
                            "/buff_types/accuracy": "",
                            "/buff_types/damage": "",
                            "/buff_types/physical_amplify": "",
                            "/buff_types/water_amplify": "",
                            "/buff_types/nature_amplify": "",
                            "/buff_types/fire_amplify": "",
                            "/buff_types/healing_amplify": "",
                            "/buff_types/evasion": "",
                            "/buff_types/armor": "",
                            "/buff_types/water_resistance": "",
                            "/buff_types/nature_resistance": "",
                            "/buff_types/fire_resistance": "",
                            "/buff_types/damage_taken": "",
                            "/buff_types/life_steal": "",
                            "/buff_types/mana_leech": "",
                            "/buff_types/physical_thorns": "",
                            "/buff_types/elemental_thorns": "",
                            "/buff_types/retaliation": "",
                            "/buff_types/tenacity": "",
                            "/buff_types/hp_regen": "",
                            "/buff_types/mp_regen": "",
                            "/buff_types/threat": "",
                            "/buff_types/combat_drop_rate": "",
                            "/buff_types/combat_drop_quantity": ""
                        },
                        "houseRoomNames": {
                            "/house_rooms/dairy_barn": "奶牛棚",
                            "/house_rooms/garden": "花园",
                            "/house_rooms/log_shed": "木棚",
                            "/house_rooms/forge": "锻造台",
                            "/house_rooms/workshop": "工作间",
                            "/house_rooms/sewing_parlor": "缝纫室",
                            "/house_rooms/kitchen": "厨房",
                            "/house_rooms/brewery": "冲泡坊",
                            "/house_rooms/laboratory": "实验室",
                            "/house_rooms/observatory": "天文台",
                            "/house_rooms/dining_room": "餐厅",
                            "/house_rooms/library": "图书馆",
                            "/house_rooms/dojo": "道场",
                            "/house_rooms/armory": "军械库",
                            "/house_rooms/gym": "健身房",
                            "/house_rooms/archery_range": "射箭场",
                            "/house_rooms/mystical_study": "神秘研究室"
                        },
                        "purchaseBundleNames": {
                            "/purchase_bundles/cowbells_500": "500个牛铃",
                            "/purchase_bundles/cowbells_1050": "1050个牛铃",
                            "/purchase_bundles/cowbells_2700": "2700个牛铃",
                            "/purchase_bundles/cowbells_5500": "5500个牛铃",
                            "/purchase_bundles/cowbells_11500": "11500个牛铃",
                            "/purchase_bundles/moo_pass_standard_30": "30天哞卡(标准)",
                            "/purchase_bundles/moo_pass_standard_90": "90天哞卡(标准)",
                            "/purchase_bundles/moo_pass_standard_365": "1年哞卡(标准)",
                            "/purchase_bundles/moo_pass_ironcow_30": "30天哞卡(铁牛)",
                            "/purchase_bundles/moo_pass_ironcow_90": "90天哞卡(铁牛)",
                            "/purchase_bundles/moo_pass_ironcow_365": "1年哞卡(铁牛)",
                            "/purchase_bundles/moo_pass_account_30": "30天哞卡(所有角色)",
                            "/purchase_bundles/moo_pass_account_90": "90天哞卡(所有角色)",
                            "/purchase_bundles/moo_pass_account_365": "1年哞卡(所有角色)"
                        },
                        "buyableUpgradeNames": {
                            "/buyable_upgrades/offline_hour_cap_1": "+1小时离线进度",
                            "/buyable_upgrades/offline_hour_cap_2": "+1小时离线进度",
                            "/buyable_upgrades/offline_hour_cap_3": "+1小时离线进度",
                            "/buyable_upgrades/offline_hour_cap_4": "+1小时离线进度",
                            "/buyable_upgrades/market_listing_cap_1": "+1市场挂牌",
                            "/buyable_upgrades/market_listing_cap_2": "+1市场挂牌",
                            "/buyable_upgrades/market_listing_cap_3": "+1市场挂牌",
                            "/buyable_upgrades/market_listing_cap_4": "+1市场挂牌",
                            "/buyable_upgrades/market_listing_cap_5": "+1市场挂牌",
                            "/buyable_upgrades/action_queue_cap_1": "+1行动队列",
                            "/buyable_upgrades/action_queue_cap_2": "+1行动队列",
                            "/buyable_upgrades/action_queue_cap_3": "+1行动队列",
                            "/buyable_upgrades/action_queue_cap_4": "+1行动队列",
                            "/buyable_upgrades/loadout_slot_cap_1": "+1配装槽位",
                            "/buyable_upgrades/loadout_slot_cap_2": "+1配装槽位",
                            "/buyable_upgrades/loadout_slot_cap_3": "+1配装槽位",
                            "/buyable_upgrades/loadout_slot_cap_4": "+1配装槽位",
                            "/buyable_upgrades/task_slot_cap_1": "+1任务槽位",
                            "/buyable_upgrades/task_slot_cap_2": "+1任务槽位",
                            "/buyable_upgrades/task_slot_cap_3": "+1任务槽位",
                            "/buyable_upgrades/task_slot_cap_4": "+1任务槽位"
                        },
                        "chatIconNames": {
                            "/chat_icons/admin": "Admin",
                            "/chat_icons/cco": "CCO",
                            "/chat_icons/community_manager": "社区经理",
                            "/chat_icons/super_moderator": "超级管理员",
                            "/chat_icons/moderator": "管理员",
                            "/chat_icons/bug_finder": "BUG发现者",
                            "/chat_icons/super_bug_finder": "超级BUG发现者",
                            "/chat_icons/contributor": "贡献者",
                            "/chat_icons/super_contributor": "超级贡献者",
                            "/chat_icons/supporter": "支持者",
                            "/chat_icons/verdant_supporter": "翠绿支持者",
                            "/chat_icons/azure_supporter": "蔚蓝支持者",
                            "/chat_icons/burble_supporter": "深紫支持者",
                            "/chat_icons/crimson_supporter": "绛红支持者",
                            "/chat_icons/rainbow_supporter": "彩虹支持者",
                            "/chat_icons/holy_supporter": "神圣支持者",
                            "/chat_icons/beta_bunny": "测试兔",
                            "/chat_icons/jack_o_lantern": "杰克灯笼",
                            "/chat_icons/santa_hat": "圣诞帽",
                            "/chat_icons/spring_festival_lantern": "春节灯笼",
                            "/chat_icons/anniversary_purple": "周年小紫牛",
                            "/chat_icons/og_jerry": "原版杰瑞",
                            "/chat_icons/milking": "挤奶",
                            "/chat_icons/foraging": "采摘",
                            "/chat_icons/woodcutting": "伐木",
                            "/chat_icons/cheesesmithing": "奶酪锻造",
                            "/chat_icons/crafting": "制作",
                            "/chat_icons/tailoring": "缝纫",
                            "/chat_icons/cooking": "烹饪",
                            "/chat_icons/brewing": "冲泡",
                            "/chat_icons/alchemy": "炼金",
                            "/chat_icons/enhancing": "强化",
                            "/chat_icons/combat": "战斗",
                            "/chat_icons/stamina": "耐力",
                            "/chat_icons/intelligence": "智力",
                            "/chat_icons/attack": "攻击",
                            "/chat_icons/melee": "近战",
                            "/chat_icons/defense": "防御",
                            "/chat_icons/ranged": "远程",
                            "/chat_icons/magic": "魔法",
                            "/chat_icons/marketplace": "市场",
                            "/chat_icons/tasks": "任务",
                            "/chat_icons/blueberry": "蓝莓",
                            "/chat_icons/blackberry": "黑莓",
                            "/chat_icons/strawberry": "草莓",
                            "/chat_icons/mooberry": "哞莓",
                            "/chat_icons/marsberry": "火星莓",
                            "/chat_icons/spaceberry": "太空莓",
                            "/chat_icons/apple": "苹果",
                            "/chat_icons/orange": "橙子",
                            "/chat_icons/plum": "李子",
                            "/chat_icons/peach": "桃子",
                            "/chat_icons/dragon_fruit": "火龙果",
                            "/chat_icons/star_fruit": "杨桃",
                            "/chat_icons/egg": "鸡蛋",
                            "/chat_icons/bamboo": "竹子",
                            "/chat_icons/cheese": "奶酪",
                            "/chat_icons/cupcake": "纸杯蛋糕",
                            "/chat_icons/clover": "幸运草",
                            "/chat_icons/tea": "茶",
                            "/chat_icons/coffee": "咖啡",
                            "/chat_icons/task_crystal": "任务水晶",
                            "/chat_icons/star_fragment": "星光碎片",
                            "/chat_icons/pearl": "珍珠",
                            "/chat_icons/amber": "琥珀",
                            "/chat_icons/garnet": "石榴石",
                            "/chat_icons/jade": "翡翠",
                            "/chat_icons/amethyst": "紫水晶",
                            "/chat_icons/moonstone": "月亮石",
                            "/chat_icons/sunstone": "太阳石",
                            "/chat_icons/philosophers_stone": "贤者之石",
                            "/chat_icons/sword": "剑",
                            "/chat_icons/spear": "枪",
                            "/chat_icons/mace": "钉头锤",
                            "/chat_icons/bulwark": "重盾",
                            "/chat_icons/bow": "弓",
                            "/chat_icons/crossbow": "弩",
                            "/chat_icons/staff": "法杖",
                            "/chat_icons/book": "书籍",
                            "/chat_icons/mages_hat": "法师帽",
                            "/chat_icons/panda_paw": "熊猫爪",
                            "/chat_icons/fly": "苍蝇",
                            "/chat_icons/rat": "杰瑞",
                            "/chat_icons/skunk": "臭鼬",
                            "/chat_icons/porcupine": "豪猪",
                            "/chat_icons/slimy": "史莱姆",
                            "/chat_icons/frog": "青蛙",
                            "/chat_icons/snake": "蛇",
                            "/chat_icons/swampy": "沼泽虫",
                            "/chat_icons/alligator": "夏洛克",
                            "/chat_icons/giant_shoebill": "鲸头鹳",
                            "/chat_icons/sea_snail": "蜗牛",
                            "/chat_icons/crab": "螃蟹",
                            "/chat_icons/aquahorse": "水马",
                            "/chat_icons/nom_nom": "咬咬鱼",
                            "/chat_icons/turtle": "忍者龟",
                            "/chat_icons/marine_huntress": "海洋猎手",
                            "/chat_icons/jungle_sprite": "丛林精灵",
                            "/chat_icons/myconid": "蘑菇人",
                            "/chat_icons/treant": "树人",
                            "/chat_icons/centaur_archer": "半人马弓箭手",
                            "/chat_icons/luna_empress": "月神之蝶",
                            "/chat_icons/eyes": "叠眼",
                            "/chat_icons/the_watcher": "观察者",
                            "/chat_icons/ice_sorcerer": "冰霜巫师",
                            "/chat_icons/flame_sorcerer": "火焰巫师",
                            "/chat_icons/elementalist": "元素法师",
                            "/chat_icons/chronofrost_sorcerer": "霜时巫师",
                            "/chat_icons/gummy_bear": "软糖熊",
                            "/chat_icons/panda": "熊猫",
                            "/chat_icons/black_bear": "黑熊",
                            "/chat_icons/grizzly_bear": "棕熊",
                            "/chat_icons/polar_bear": "北极熊",
                            "/chat_icons/red_panda": "小熊猫",
                            "/chat_icons/zombie": "僵尸",
                            "/chat_icons/vampire": "吸血鬼",
                            "/chat_icons/werewolf": "狼人",
                            "/chat_icons/dusk_revenant": "黄昏亡灵",
                            "/chat_icons/abyssal_imp": "深渊小鬼",
                            "/chat_icons/soul_hunter": "灵魂猎手",
                            "/chat_icons/infernal_warlock": "地狱术士",
                            "/chat_icons/demonic_overlord": "恶魔霸主",
                            "/chat_icons/butterjerry": "蝶鼠",
                            "/chat_icons/rabid_rabbit": "疯魔兔",
                            "/chat_icons/enchanted_knight": "秘法骑士",
                            "/chat_icons/enchanted_bishop": "秘法主教",
                            "/chat_icons/squawker": "鹦鹉",
                            "/chat_icons/iron_cow": "铁牛",
                            "/chat_icons/cow": "奶牛",
                            "/chat_icons/verdant_cow": "翠绿奶牛",
                            "/chat_icons/azure_cow": "蔚蓝奶牛",
                            "/chat_icons/burble_cow": "深紫奶牛",
                            "/chat_icons/crimson_cow": "绛红奶牛",
                            "/chat_icons/unicow": "彩虹奶牛",
                            "/chat_icons/holy_cow": "神圣奶牛",
                            "/chat_icons/duckling": "小鸭",
                            "/chat_icons/whale": "鲸鱼",
                            "/chat_icons/golden_coin": "金币",
                            "/chat_icons/golden_marketplace": "金色市场",
                            "/chat_icons/golden_egg": "金蛋",
                            "/chat_icons/golden_berry": "金色莓果",
                            "/chat_icons/golden_apple": "金色苹果",
                            "/chat_icons/golden_donut": "金色甜甜圈",
                            "/chat_icons/golden_cupcake": "金色纸杯蛋糕",
                            "/chat_icons/golden_clover": "金色幸运草",
                            "/chat_icons/golden_biceps": "金色二头肌",
                            "/chat_icons/golden_frog": "金色青蛙",
                            "/chat_icons/golden_piggy": "金色小猪",
                            "/chat_icons/golden_duckling": "金色小鸭",
                            "/chat_icons/golden_whale": "金色鲸鱼"
                        },
                        "nameColorNames": {
                            "/name_colors/burble": "紫色",
                            "/name_colors/blue": "蓝色",
                            "/name_colors/green": "绿色",
                            "/name_colors/yellow": "黄色",
                            "/name_colors/coral": "珊瑚",
                            "/name_colors/pink": "粉色",
                            "/name_colors/fancy_burble": "华丽紫色",
                            "/name_colors/fancy_blue": "华丽蓝色",
                            "/name_colors/fancy_green": "华丽绿色",
                            "/name_colors/fancy_yellow": "华丽黄色",
                            "/name_colors/fancy_coral": "华丽珊瑚",
                            "/name_colors/fancy_pink": "华丽粉色",
                            "/name_colors/iron": "铁色",
                            "/name_colors/rainbow": "彩虹色",
                            "/name_colors/golden": "金色"
                        },
                        "communityBuffTypeNames": {
                            "/community_buff_types/experience": "经验",
                            "/community_buff_types/gathering_quantity": "采集数量",
                            "/community_buff_types/production_efficiency": "生产效率",
                            "/community_buff_types/enhancing_speed": "强化速度",
                            "/community_buff_types/combat_drop_quantity": "战斗掉落数量"
                        },
                        "chatChannelTypeNames": {
                            "/chat_channel_types/general": "英语",
                            "/chat_channel_types/chinese": "中文",
                            "/chat_channel_types/french": "Français",
                            "/chat_channel_types/german": "Deutsch",
                            "/chat_channel_types/spanish": "Español",
                            "/chat_channel_types/portuguese": "Português",
                            "/chat_channel_types/russian": "Русский",
                            "/chat_channel_types/hebrew": "עברית",
                            "/chat_channel_types/arabic": "العربية",
                            "/chat_channel_types/hindi": "हिंदी",
                            "/chat_channel_types/japanese": "日本語",
                            "/chat_channel_types/korean": "한국어",
                            "/chat_channel_types/vietnamese": "Tiếng Việt",
                            "/chat_channel_types/ironcow": "铁牛",
                            "/chat_channel_types/trade": "交易",
                            "/chat_channel_types/recruit": "招募",
                            "/chat_channel_types/beginner": "新手",
                            "/chat_channel_types/guild": "公会",
                            "/chat_channel_types/party": "队伍",
                            "/chat_channel_types/moderator": "管理员",
                            "/chat_channel_types/whisper": "私聊"
                        },
                        "guildCharacterRoleNames": {
                            "leader": "会长",
                            "general": "将军",
                            "officer": "官员",
                            "member": "会员"
                        },
                        "leaderboardTypeNames": {
                            "standard": "标准",
                            "ironcow": "铁牛",
                            "legacy_ironcow": "传统铁牛",
                            "steam_standard": "标准 (Steam)",
                            "steam_ironcow": "铁牛 (Steam)",
                            "guild": "公会"
                        },
                        "leaderboardCategoryNames": {
                            "total_level": "总等级",
                            "milking": "挤奶",
                            "foraging": "采摘",
                            "woodcutting": "伐木",
                            "cheesesmithing": "奶酪锻造",
                            "crafting": "制作",
                            "tailoring": "缝纫",
                            "cooking": "烹饪",
                            "brewing": "冲泡",
                            "alchemy": "炼金",
                            "enhancing": "强化",
                            "stamina": "耐力",
                            "intelligence": "智力",
                            "attack": "攻击",
                            "melee": "近战",
                            "defense": "防御",
                            "ranged": "远程",
                            "magic": "魔法",
                            "task_points": "任务积分",
                            "fame_points": "名望积分",
                            "guild": "公会"
                        }
                    }
                }
            },
            "language": "zh",
            "languages": [
                "zh",
                "en"
            ],
            "resolvedLanguage": "zh"
        }
    };
})();