diff --git a/.eslintrc.cjs b/.eslintrc.cjs index f8f64a1..fc2f7b5 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1,19 +1,15 @@ /* eslint-env node */ -require('@rushstack/eslint-patch/modern-module-resolution') +require("@rushstack/eslint-patch/modern-module-resolution") module.exports = { - root: true, - 'extends': [ - 'plugin:vue/vue3-essential', - 'eslint:recommended', - '@vue/eslint-config-typescript' - ], - parserOptions: { - ecmaVersion: 'latest' - }, - rules: { - 'vue/multi-word-component-names': 'off', - 'vue/valid-template-root': 'off', - '@typescript-eslint/no-unused-vars': 'off' - } + root: true, + extends: ["plugin:vue/vue3-essential", "eslint:recommended", "@vue/eslint-config-typescript"], + parserOptions: { + ecmaVersion: "latest", + }, + rules: { + "vue/multi-word-component-names": "off", + "vue/valid-template-root": "off", + "@typescript-eslint/no-unused-vars": "off", + }, } diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 59a3389..920f288 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,88 +16,89 @@ jobs: echo "text=$(jq -r .version src-tauri/tauri.conf.json)" >> "$GITHUB_OUTPUT" outputs: app_version: ${{ steps.step.outputs.text }} + # TODO: wait for github support aarch64 + # build-arm-linux: + # needs: [get-version] + # runs-on: ubuntu-22.04 + # strategy: + # fail-fast: false + # matrix: + # arch: [aarch64, armv7l] + # include: + # - arch: aarch64 + # cpu: cortex-a72 + # base_image: https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm.img.xz + # deb: arm64 + # rpm: aarch64 + # appimage: aarch64 + # - arch: armv7l + # cpu: cortex-a53 + # deb: armhfp + # rpm: arm + # appimage: armhf + # base_image: https://dietpi.com/downloads/images/DietPi_RPi-ARMv7-Bookworm.img.xz + + # steps: + # - uses: actions/checkout@v4 + + # - name: Cache rust build artifacts + # uses: Swatinem/rust-cache@v2 + # with: + # workspaces: src-tauri + # cache-on-failure: true + + # - name: Build app + # uses: pguyot/arm-runner-action@v2.6.5 + # with: + # base_image: ${{ matrix.base_image }} + # cpu: ${{ matrix.cpu }} + # bind_mount_repository: true + # image_additional_mb: 10240 + # optimize_image: no + # exit_on_fail: no + # commands: | + # # Prevent Rust from complaining about $HOME not matching eid home + # export HOME=/root + + # # Workaround to CI worker being stuck on Updating crates.io index + # export CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse + + # # Install setup prerequisites + # apt-get update -y --allow-releaseinfo-change + # apt-get autoremove -y + # apt-get install -y --no-install-recommends --no-install-suggests curl libwebkit2gtk-4.1-dev build-essential libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf libfuse2 wget file + # curl https://sh.rustup.rs -sSf | sh -s -- -y + # . "$HOME/.cargo/env" + # curl -fsSL https://deb.nodesource.com/setup_lts.x | bash + # apt-get install -y nodejs + + # # Install yarn + # npm install -g yarn + + # # Install frontend dependencies + # yarn install + + # # Build the application + # yarn tauri build -- --verbose + + # - name: Upload deb bundle + # uses: actions/upload-artifact@v4 + # with: + # name: Debian Bundle + # path: ${{ github.workspace }}/src-tauri/target/release/bundle/deb/amethyst-launcher_${{ needs.get-version.outputs.app_version }}_${{ matrix.deb }}.deb + + # - name: Upload rpm bundle + # uses: actions/upload-artifact@v4 + # with: + # name: RPM Bundle + # path: ${{ github.workspace }}/src-tauri/target/release/bundle/rpm/amethyst-launcher-${{ needs.get-version.outputs.app_version }}-1.${{ matrix.rpm }}.rpm + + # - name: Upload appimage bundle + # uses: actions/upload-artifact@v4 + # with: + # name: AppImage Bundle + # path: ${{ github.workspace }}/src-tauri/target/release/bundle/appimage/amethyst-launcher_${{ needs.get-version.outputs.app_version }}_${{ matrix.appimage }}.AppImage - build-arm-linux: - needs: [get-version] - runs-on: ubuntu-22.04 - strategy: - fail-fast: false - matrix: - arch: [aarch64, armv7l] - include: - - arch: aarch64 - cpu: cortex-a72 - base_image: https://dietpi.com/downloads/images/DietPi_RPi-ARMv8-Bookworm.img.xz - deb: arm64 - rpm: aarch64 - appimage: aarch64 - - arch: armv7l - cpu: cortex-a53 - deb: armhfp - rpm: arm - appimage: armhf - base_image: https://dietpi.com/downloads/images/DietPi_RPi-ARMv7-Bookworm.img.xz - - steps: - - uses: actions/checkout@v4 - - - name: Cache rust build artifacts - uses: Swatinem/rust-cache@v2 - with: - workspaces: src-tauri - cache-on-failure: true - - - name: Build app - uses: pguyot/arm-runner-action@v2.6.5 - with: - base_image: ${{ matrix.base_image }} - cpu: ${{ matrix.cpu }} - bind_mount_repository: true - image_additional_mb: 10240 - optimize_image: no - exit_on_fail: no - commands: | - # Prevent Rust from complaining about $HOME not matching eid home - export HOME=/root - - # Workaround to CI worker being stuck on Updating crates.io index - export CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse - - # Install setup prerequisites - apt-get update -y --allow-releaseinfo-change - apt-get autoremove -y - apt-get install -y --no-install-recommends --no-install-suggests curl libwebkit2gtk-4.1-dev build-essential libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev patchelf libfuse2 wget file - curl https://sh.rustup.rs -sSf | sh -s -- -y - . "$HOME/.cargo/env" - curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - apt-get install -y nodejs - - # Install yarn - npm install -g yarn - - # Install frontend dependencies - yarn install - - # Build the application - yarn tauri build -- --verbose - - - name: Upload deb bundle - uses: actions/upload-artifact@v4 - with: - name: Debian Bundle - path: ${{ github.workspace }}/src-tauri/target/release/bundle/deb/amethyst-launcher_${{ needs.get-version.outputs.app_version }}_${{ matrix.deb }}.deb - - - name: Upload rpm bundle - uses: actions/upload-artifact@v4 - with: - name: RPM Bundle - path: ${{ github.workspace }}/src-tauri/target/release/bundle/rpm/amethyst-launcher-${{ needs.get-version.outputs.app_version }}-1.${{ matrix.rpm }}.rpm - - - name: Upload appimage bundle - uses: actions/upload-artifact@v4 - with: - name: AppImage Bundle - path: ${{ github.workspace }}/src-tauri/target/release/bundle/appimage/amethyst-launcher_${{ needs.get-version.outputs.app_version }}_${{ matrix.appimage }}.AppImage build-other: needs: [get-version] permissions: diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3c4924c..c7ace68 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,11 +13,11 @@ name: "CodeQL" on: push: - branches: [ "master" ] + branches: ["master"] pull_request: - branches: [ "master" ] + branches: ["master"] schedule: - - cron: '19 4 * * 1' + - cron: "19 4 * * 1" jobs: analyze: @@ -44,8 +44,8 @@ jobs: fail-fast: false matrix: include: - - language: javascript-typescript - build-mode: none + - language: javascript-typescript + build-mode: none # CodeQL supports the following values keywords for 'language': 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' # Use `c-cpp` to analyze code written in C, C++ or both # Use 'java-kotlin' to analyze code written in Java, Kotlin or both @@ -55,39 +55,39 @@ jobs: # If you are analyzing a compiled language, you can modify the 'build-mode' for that language to customize how # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - - name: Checkout repository - uses: actions/checkout@v4 + - name: Checkout repository + uses: actions/checkout@v4 - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - build-mode: ${{ matrix.build-mode }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + build-mode: ${{ matrix.build-mode }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. - # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs - # queries: security-extended,security-and-quality + # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality - # If the analyze step fails for one of the languages you are analyzing with - # "We were unable to automatically build your code", modify the matrix above - # to set the build mode to "manual" for that language. Then modify this step - # to build your code. - # ℹ️ Command-line programs to run using the OS shell. - # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun - - if: matrix.build-mode == 'manual' - shell: bash - run: | - echo 'If you are using a "manual" build mode for one or more of the' \ - 'languages you are analyzing, replace this with the commands to build' \ - 'your code, for example:' - echo ' make bootstrap' - echo ' make release' - exit 1 + # If the analyze step fails for one of the languages you are analyzing with + # "We were unable to automatically build your code", modify the matrix above + # to set the build mode to "manual" for that language. Then modify this step + # to build your code. + # ℹ️ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + - if: matrix.build-mode == 'manual' + shell: bash + run: | + echo 'If you are using a "manual" build mode for one or more of the' \ + 'languages you are analyzing, replace this with the commands to build' \ + 'your code, for example:' + echo ' make bootstrap' + echo ' make release' + exit 1 - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 - with: - category: "/language:${{matrix.language}}" + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" diff --git a/.github/workflows/lint-js.yml b/.github/workflows/lint-js.yml new file mode 100644 index 0000000..0d51bdf --- /dev/null +++ b/.github/workflows/lint-js.yml @@ -0,0 +1,34 @@ +name: lint js + +on: + push: + paths: + - ".github/workflows/lint-js.yml" + - "src/*" + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + eslint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v3 + with: + node-version: "20" + cache: yarn + cache-dependency-path: yarn.lock + - name: Run ts:check + working-directory: ./ + run: yarn ts:check + - name: Install Dependencies + working-directory: ./ + run: yarn + - name: Run lint + working-directory: ./ + run: yarn lint + - name: Run format + working-directory: ./ + run: yarn format:check diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..3f76abc --- /dev/null +++ b/.prettierignore @@ -0,0 +1,3 @@ +src-tauri/target +**/assets +**/.gitignore diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..de22aa2 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,16 @@ +{ + "semi": false, + "tabWidth": 4, + "printWidth": 100, + "useTabs": false, + "singleQuote": false, + "bracketSameLine": true, + "overrides": [ + { + "files": ["*.vue", "*.html", "*.yml"], + "options": { + "tabWidth": 2 + } + } + ] +} diff --git a/README.md b/README.md index bf934b3..d65858f 100644 --- a/README.md +++ b/README.md @@ -7,38 +7,39 @@ [简体中文](./README.zh.md) -Please go to the [official website](https://launcher.btlcraft.top) to download the launcher! +Please go to the [official website](https://launcher.btlcraft.top) to download the launcher! Translated with www.DeepL.com/Translator (free version) ## Features -- You can install `Minecraft`, `Forge`, `Fabric`, `Optifine`, `Quilt` -- **Cross-platform**, Launcher written in rust that runs on Windows, MacOS, and GNU/Linux -- **Cosmic unbeatable download speed**, It even takes only 15 seconds to install the game on a system with the Linux kernel -- **Instance management**, Supports grouping and other functions to easily manage multiple instances -- **Mod download**, You can download mods from Curseforge, Modrinth, FTB directly from the launcher +- You can install `Minecraft`, `Forge`, `Fabric`, `Optifine`, `Quilt` +- **Cross-platform**, Launcher written in rust that runs on Windows, MacOS, and GNU/Linux +- **Cosmic unbeatable download speed**, It even takes only 15 seconds to install the game on a system with the Linux kernel +- **Instance management**, Supports grouping and other functions to easily manage multiple instances +- **Mod download**, You can download mods from Curseforge, Modrinth, FTB directly from the launcher ## Advantages -- **Save storage space**, the same material packs enabled in multiple instances are only stored once -- **Automatically test for modules that will not start**, you can automatically test which modules will cause crashes when the game starts -- **Customize the appearance of the launcher**, every inch of the launcher can be customized -- **Modify the game rules of the archive in the launcher**, no need to enter commands in the game -- **Custom download source**, you can use self-built mirror source without compiling it yourself +- **Save storage space**, the same material packs enabled in multiple instances are only stored once +- **Automatically test for modules that will not start**, you can automatically test which modules will cause crashes when the game starts +- **Customize the appearance of the launcher**, every inch of the launcher can be customized +- **Modify the game rules of the archive in the launcher**, no need to enter commands in the game +- **Custom download source**, you can use self-built mirror source without compiling it yourself ## License + The software is distributed under [GPL-3.0](https://www.gnu.org/licenses/gpl-3.0.html) with additional terms. ### Additional terms under GPLv3 Section 7 + 1. When you distribute a modified version of the software, you must change the software name or the version number in a reasonable way in order to distinguish it from the original version. (Under [GPL-3.0, 7(c)](./LICENSE#L372-L374)) You need to find all the words related to the name of this program in the source code and replace them with the name of your own program - 2. You must not remove the copyright declaration displayed in the software. (Under [GPL-3.0, 7(b)](./LICENSE#L368-L370)) -3. If someone signs something of a contractual nature with the recipient and provides a commitment of liability, the licensor and author are not subject to this liability jointly and severally. (Under [GPL-3.0, 7(b)](./LICENSE#L382-L386)) +3. If someone signs something of a contractual nature with the recipient and provides a commitment of liability, the licensor and author are not subject to this liability jointly and severally. (Under [GPL-3.0, 7(b)](./LICENSE#L382-L386)) ## Manual build diff --git a/README.zh.md b/README.zh.md index 86746da..a2ab125 100644 --- a/README.zh.md +++ b/README.zh.md @@ -9,30 +9,30 @@ 请到 [官网](https://launcher.btlcraft.top) 下载启动器! - ## 特性 -- 可以下载 `Minecraft`, `Forge`, `Fabric`, `Optifine`, `Quilt`, 会自动选择速度最快的镜像服务器安装游戏 -- **跨平台**,使用rust编写的启动器,能够在 Windows, MacOS 和 GNU/Linux 上运行,~~甚至可以在手机上运行~~ -- **宇宙无敌的下载速度**,在 Linux 内核的系统上安装游戏甚至只需要15秒 -- **实例管理**,支持分组等功能,轻松管理多个实例 -- **模组下载**,你可以直接在启动器内下载 Curseforge, Modrinth, FTB 上的模组 -- **与 PCL2, HMCL, Bakaxl 联机** -- **支持多种账号系统**,内置支持 Microsoft 和 Mojang Yggdrasil API。内置支持 LittleSkin,您也可以自行添加新的第三方验证服务! +- 可以下载 `Minecraft`, `Forge`, `Fabric`, `Optifine`, `Quilt`, 会自动选择速度最快的镜像服务器安装游戏 +- **跨平台**,使用rust编写的启动器,能够在 Windows, MacOS 和 GNU/Linux 上运行,~~甚至可以在手机上运行~~ +- **宇宙无敌的下载速度**,在 Linux 内核的系统上安装游戏甚至只需要15秒 +- **实例管理**,支持分组等功能,轻松管理多个实例 +- **模组下载**,你可以直接在启动器内下载 Curseforge, Modrinth, FTB 上的模组 +- **与 PCL2, HMCL, Bakaxl 联机** +- **支持多种账号系统**,内置支持 Microsoft 和 Mojang Yggdrasil API。内置支持 LittleSkin,您也可以自行添加新的第三方验证服务! ## 优势 -- **节约存储空间**,在多个实例中启用的相同材质包只存储一次 -- **自动测试导致无法启动的模组**,可以自动测试哪些模组会在游戏启动时导致崩溃 -- **自定义启动器外观**,启动器的每一寸角落都可以自定义 -- **在启动器中修改存档的游戏规则**,不需要在游戏内输入指令 -- **自定义下载源**,可以使用自建镜像源而无需自己编译 +- **节约存储空间**,在多个实例中启用的相同材质包只存储一次 +- **自动测试导致无法启动的模组**,可以自动测试哪些模组会在游戏启动时导致崩溃 +- **自定义启动器外观**,启动器的每一寸角落都可以自定义 +- **在启动器中修改存档的游戏规则**,不需要在游戏内输入指令 +- **自定义下载源**,可以使用自建镜像源而无需自己编译 ## 开源协议 该程序在 GPL-3.0 开源协议下发布, 同时附有附加条款. ### 附加条款 (依据 GPL-3.0 开源协议第七条) + 1. 当您分发该程序的修改版本时, 您必须以一种合理的方式修改该程序的名称或版本号, 以示其与原始版本不同. (依据 [GPL-3.0, 7(c)](./LICENSE#L372-L374)) 您需要自行在源码中查找所有与本程序名称相关的词语并替换为您自己程序的名称 @@ -65,4 +65,3 @@ yarn tauri build ``` 如果你想为此项目作贡献,执行 `yarn tauri dev` 来调试应用程序,在[此处](https://tauri.app/zh-cn/v1/guides/)查看详细信息。 - diff --git a/index.html b/index.html index 534994d..ad5b583 100644 --- a/index.html +++ b/index.html @@ -1,38 +1,36 @@ + + + + + Amethyst Launcher + + + + - - - - - Amethyst Launcher - - - - - - - -
- - - - - -
- - - + + +
+ + + + + +
+ + diff --git a/package.json b/package.json index 5d1d6a8..53f1b6c 100644 --- a/package.json +++ b/package.json @@ -1,44 +1,50 @@ { - "name": "amethyst-launcher", - "private": true, - "version": "0.0.0", - "type": "module", - "scripts": { - "dev": "vite", - "build": "vue-tsc --noEmit && vite build", - "preview": "vite preview", - "tauri": "tauri" - }, - "license": "GPL-3.0-only", - "dependencies": { - "@tauri-apps/api": ">=2.0.0-rc.0", - "@tauri-apps/plugin-http": "^2.0.0-rc.0", - "@tauri-apps/plugin-shell": ">=2.0.0-rc.0", - "jquery": "^3.6.4", - "less": "^4.1.3", - "less-loader": "^11.1.0", - "pinia": "^2.0.32", - "vue": "^3.3.4" - }, - "devDependencies": { - "@rushstack/eslint-patch": "^1.2.0", - "@tauri-apps/cli": ">=2.0.0-rc.0", - "@types/jquery": "^3.5.29", - "@types/jsdom": "^21.1.0", - "@types/node": "^18.14.2", - "@vitejs/plugin-vue": "^5.0.5", - "@vitejs/plugin-vue-jsx": "^3.0.0", - "@vue/eslint-config-typescript": "^11.0.2", - "@vue/test-utils": "^2.3.0", - "@vue/tsconfig": "^0.1.3", - "eslint": "^8.34.0", - "eslint-plugin-vue": "^9.9.0", - "jsdom": "^21.1.0", - "npm-run-all": "^4.1.5", - "typescript": "^5.2.2", - "vite": "^5.3.1", - "vitest": "^0.29.1", - "vue-tsc": "^2.0.22", - "yarn": "1.22.19" - } + "name": "amethyst-launcher", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vue-tsc --noEmit && vite build", + "preview": "vite preview", + "tauri": "tauri", + "ts:check": "tsc --noEmit", + "lint": "eslint \"src/**\" --ignore-pattern \"src/assets\"", + "lint:fix": "eslint \"src/**\" --ignore-pattern \"src/assets\" --fix", + "format": "yarn prettier --write .", + "format:check": "yarn prettier --check ." + }, + "license": "GPL-3.0-only", + "dependencies": { + "@tauri-apps/api": ">=2.0.0-rc.0", + "@tauri-apps/plugin-http": "^2.0.0-rc.0", + "@tauri-apps/plugin-shell": ">=2.0.0-rc.0", + "jquery": "^3.6.4", + "less": "^4.1.3", + "less-loader": "^11.1.0", + "pinia": "^2.0.32", + "vue": "^3.3.4" + }, + "devDependencies": { + "@rushstack/eslint-patch": "^1.2.0", + "@tauri-apps/cli": ">=2.0.0-rc.0", + "@types/jquery": "^3.5.29", + "@types/jsdom": "^21.1.0", + "@types/node": "^18.14.2", + "@vitejs/plugin-vue": "^5.0.5", + "@vitejs/plugin-vue-jsx": "^3.0.0", + "@vue/eslint-config-typescript": "^11.0.2", + "@vue/test-utils": "^2.3.0", + "@vue/tsconfig": "^0.1.3", + "eslint": "^8.34.0", + "eslint-plugin-vue": "^9.9.0", + "jsdom": "^21.1.0", + "npm-run-all": "^4.1.5", + "prettier": "^3.3.3", + "typescript": "^5.2.2", + "vite": "^5.3.1", + "vitest": "^0.29.1", + "vue-tsc": "^2.0.22", + "yarn": "1.22.19" + } } diff --git a/public/articles.json b/public/articles.json index 1ca4b91..e5b60fb 100644 --- a/public/articles.json +++ b/public/articles.json @@ -23,14 +23,10 @@ "tile_size": "2x1", "title": "A Sonic-tastic Texture Pack" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/new-sonic-texture-pack", "publish_date": "23 May 2023 17:15:02 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -45,11 +41,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Trails & Tales Update" - ], + "categories": ["News", "Minecraft", "Trails & Tales Update"], "article_url": "/zh-hans/article/minecraft-1-20-pre-release-5", "publish_date": "23 May 2023 13:33:11 UTC", "tags": [ @@ -71,11 +63,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Realms Java" - ], + "categories": ["News", "Minecraft", "Realms Java"], "article_url": "/zh-hans/article/realms-now-easier-manage", "publish_date": "23 May 2023 15:36:26 UTC", "tags": [ @@ -107,16 +95,10 @@ "tile_size": "2x1", "title": "New Lost Legend and the day 30 patch" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/new-lost-legend-and-day-30-patch", "publish_date": "18 May 2023 16:05:42 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -131,16 +113,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/gilded-blackstone", "publish_date": "17 May 2023 17:03:36 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -155,16 +131,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Trails & Tales Update" - ], + "categories": ["News", "Trails & Tales Update"], "article_url": "/zh-hans/article/minecraft-1-20-pre-release-2", "publish_date": "19 May 2023 13:29:31 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/trails-tales-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/trails-tales-update"] }, { "default_tile": { @@ -179,16 +149,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--nether-star", "publish_date": "11 May 2023 15:00:15 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -213,16 +177,10 @@ "tile_size": "2x1", "title": "Minecraft Legends-themed event" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/minecraft-legends-themed-event", "publish_date": "11 May 2023 15:45:59 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -237,11 +195,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Trails & Tales Update" - ], + "categories": ["News", "Minecraft", "Trails & Tales Update"], "article_url": "/zh-hans/article/minecraft-1-20-pre-release-1", "publish_date": "22 May 2023 11:36:36 UTC", "tags": [ @@ -263,16 +217,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/account-migration-last-call", "publish_date": "08 May 2023 15:00:01 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -287,16 +235,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Legends" - ], + "categories": ["Deep Dives", "Legends"], "article_url": "/zh-hans/article/minecraft-legends-return-piglins", "publish_date": "05 May 2023 15:00:59 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -310,11 +252,7 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Realms Plus", - "Minecraft" - ], + "categories": ["Marketplace", "Realms Plus", "Minecraft"], "article_url": "/zh-hans/article/realms-plus--may-2023", "publish_date": "04 May 2023 17:00:02 UTC", "tags": [ @@ -336,14 +274,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/meet-your-minecraft-cms", "publish_date": "04 May 2023 15:52:28 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -358,16 +292,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/mob-menagerie--silverfish", "publish_date": "04 May 2023 14:42:32 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -382,16 +310,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-23w18a", "publish_date": "10 May 2023 12:51:10 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -416,11 +338,7 @@ "tile_size": "2x1", "title": "The Sound of Cherry Groves" }, - "categories": [ - "Deep Dives", - "Minecraft", - "Trails & Tales Update" - ], + "categories": ["Deep Dives", "Minecraft", "Trails & Tales Update"], "article_url": "/zh-hans/article/cherry-groves-composer-interview", "publish_date": "22 May 2023 11:29:38 UTC", "tags": [ @@ -442,14 +360,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/star-wars-celebration-2023", "publish_date": "03 May 2023 15:28:54 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -464,16 +378,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/java-realms-april-2023", "publish_date": "28 April 2023 12:00:22 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -498,16 +406,10 @@ "tile_size": "2x1", "title": "Minecraft Legends hotfix highlights" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/minecraft-legends-hotfix-highlights", "publish_date": "05 May 2023 14:45:04 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -522,16 +424,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--windswept-forest", "publish_date": "27 April 2023 14:52:04 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -564,16 +460,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-23w17a", "publish_date": "26 April 2023 15:33:48 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -587,11 +477,7 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Minecraft", - "News" - ], + "categories": ["Marketplace", "Minecraft", "News"], "article_url": "/zh-hans/article/bikini-bottom-back-", "publish_date": "26 April 2023 18:00:01 UTC", "tags": [ @@ -623,16 +509,10 @@ "tile_size": "2x1", "title": "Watch the final Minecraft Legends short" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/watch-final-minecraft-legends-short", "publish_date": "05 May 2023 14:49:14 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -657,16 +537,10 @@ "tile_size": "2x1", "title": "Earth Day 2023" }, - "categories": [ - "News", - "Marketplace" - ], + "categories": ["News", "Marketplace"], "article_url": "/zh-hans/article/earth-day-2023", "publish_date": "21 April 2023 19:59:55 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -681,14 +555,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/a-working-minecraft-rubik-s-cube", "publish_date": "21 April 2023 19:40:51 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -703,14 +573,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/fun-official-minecraft-cookbook", "publish_date": "20 April 2023 21:07:39 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -725,16 +591,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-month--dried-kelp", "publish_date": "20 April 2023 20:33:28 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -749,16 +609,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-23w16a", "publish_date": "24 April 2023 12:06:50 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -783,16 +637,10 @@ "tile_size": "2x1", "title": "Lost Legends: Portal Pile" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/lost-legends-portal-pile", "publish_date": "16 May 2023 11:29:20 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -817,16 +665,10 @@ "tile_size": "4x2", "title": "Minecraft Legends is here" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/minecraft-legends-here", "publish_date": "16 May 2023 11:27:15 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -859,16 +701,10 @@ }, "articleLang": "en-us", "primary_category": "Events", - "categories": [ - "Events", - "Legends" - ], + "categories": ["Events", "Legends"], "article_url": "/zh-hans/article/minecraft-legends-pvp-stream", "publish_date": "16 May 2023 11:28:11 UTC", - "tags": [ - "minecraft:stockholm/events", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/events", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -883,16 +719,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--bow", "publish_date": "13 April 2023 15:00:01 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -907,14 +737,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/real-life-minecraft-food", "publish_date": "12 April 2023 22:35:31 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -929,14 +755,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-preview-1-20-0-20", "publish_date": "13 April 2023 07:27:13 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -961,16 +783,10 @@ "tile_size": "2x1", "title": "Win a Custom Minecraft Legends PC" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/win-custom-minecraft-legends-pc", "publish_date": "18 April 2023 17:48:26 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -995,16 +811,10 @@ "tile_size": "2x1", "title": "Minecraft Legends Short #3 Is Here" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/minecraft-legends-short--3-is-here", "publish_date": "16 May 2023 11:30:38 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -1027,14 +837,10 @@ "tile_size": "1x2", "title": "A Minecraft Cookbook " }, - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/a-minecraft-cookbook", "publish_date": "10 April 2023 17:15:05 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -1049,16 +855,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/mob-menagerie--allay", "publish_date": "06 April 2023 18:26:46 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1073,16 +873,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-april-2023", "publish_date": "06 April 2023 17:00:09 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -1107,16 +901,10 @@ "tile_size": "4x2", "title": "Craft Your Own Legend: Before the Hero" }, - "categories": [ - "Deep Dives", - "Legends" - ], + "categories": ["Deep Dives", "Legends"], "article_url": "/zh-hans/article/craft-your-own-legend", "publish_date": "18 April 2023 17:34:25 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -1131,14 +919,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/our-icons-are-changing", "publish_date": "05 April 2023 14:55:21 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -1153,16 +937,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-23w14a", "publish_date": "05 April 2023 13:13:32 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1177,14 +955,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/marketplace-spring-sale-back-2023", "publish_date": "05 April 2023 15:52:43 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -1209,16 +983,10 @@ "tile_size": "2x1", "title": "Watch the second Minecraft Legends short" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/watch-second-minecraft-legends-short", "publish_date": "18 April 2023 17:46:19 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -1233,16 +1001,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/vote-update", "publish_date": "01 April 2023 21:22:02 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1257,16 +1019,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-realms--after-party", "publish_date": "05 April 2023 12:53:13 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -1281,16 +1037,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--mangrove-swamp", "publish_date": "30 March 2023 15:55:20 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1305,14 +1055,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-23w13a", "publish_date": "29 March 2023 14:22:01 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -1337,16 +1083,10 @@ "tile_size": "2x1", "title": "Introducing Minecraft Legends Shorts!" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/introducing-minecraft-legends-shorts", "publish_date": "18 April 2023 17:46:28 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -1361,14 +1101,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-tiktok", "publish_date": "24 March 2023 15:58:46 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -1383,16 +1119,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-month--composter", "publish_date": "23 March 2023 16:29:27 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1407,16 +1137,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-23w12a", "publish_date": "22 March 2023 16:06:46 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1431,14 +1155,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-preview-1-19-80-22", "publish_date": "30 March 2023 13:49:50 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -1452,14 +1172,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/decorate-your-house-with-minecraft", "publish_date": "20 March 2023 19:37:03 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -1474,16 +1190,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--armor-stand", "publish_date": "16 March 2023 16:55:19 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1508,14 +1218,10 @@ "tile_size": "2x2", "title": "Minecraft is launching on Chromebook" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-launching-chromebook", "publish_date": "21 March 2023 08:19:03 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -1530,14 +1236,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-preview-1-19-80-21", "publish_date": "15 March 2023 15:50:36 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -1552,16 +1254,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-java-edition-1-19-4", "publish_date": "14 March 2023 16:00:06 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1576,14 +1272,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/1-19-70-update-available-bedrock", "publish_date": "14 March 2023 15:49:33 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -1598,16 +1290,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-4-release-candidate-3", "publish_date": "13 March 2023 10:47:53 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1630,16 +1316,10 @@ "tile_size": "2x1", "title": "Minecraft Legends Dev Diary: Art and Visuals" }, - "categories": [ - "Deep Dives", - "Legends" - ], + "categories": ["Deep Dives", "Legends"], "article_url": "/zh-hans/article/minecraft-legends-dev-diary-art-and-visuals", "publish_date": "10 March 2023 16:00:04 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -1664,14 +1344,10 @@ "tile_size": "2x2", "title": "New emote features for Bedrock Edition " }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/new-emote-features-bedrock-edition", "publish_date": "09 March 2023 18:00:36 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -1686,16 +1362,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/mob-menagerie--horse", "publish_date": "09 March 2023 17:17:01 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1710,16 +1380,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-4-release-candidate-1", "publish_date": "10 March 2023 13:55:39 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1744,16 +1408,10 @@ "tile_size": "2x2", "title": "Realms Plus: March 2023" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-march-2023", "publish_date": "08 March 2023 18:00:30 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -1768,14 +1426,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-preview-1-19-80-20", "publish_date": "09 March 2023 11:40:51 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -1790,16 +1444,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-4-pre-release-4", "publish_date": "09 March 2023 13:47:53 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1814,14 +1462,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/artemis-mission-dlc-minecraft", "publish_date": "07 March 2023 18:00:20 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -1836,14 +1480,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/monthly-skins--party-outfits", "publish_date": "03 March 2023 22:49:00 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -1858,16 +1498,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--cold-ocean", "publish_date": "28 March 2023 07:37:40 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -1890,11 +1524,7 @@ "tile_size": "4x2", "title": "The Trails & Tales Update" }, - "categories": [ - "News", - "Minecraft", - "Trails & Tales Update" - ], + "categories": ["News", "Minecraft", "Trails & Tales Update"], "article_url": "/zh-hans/article/the-trails---tales-update", "publish_date": "22 May 2023 11:36:04 UTC", "tags": [ @@ -1916,16 +1546,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/play-dungeons-free-ps-", "publish_date": "01 March 2023 18:27:48 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -1940,14 +1564,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--lunar-new-year", "publish_date": "01 March 2023 00:55:16 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -1962,14 +1582,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/share-your-minecraft-stories", "publish_date": "27 February 2023 16:36:33 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -1984,16 +1600,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-4-pre-release-2", "publish_date": "01 March 2023 15:03:59 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2007,16 +1617,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Legends" - ], + "categories": ["Deep Dives", "Legends"], "article_url": "/zh-hans/article/the-hero-minecraft-legends", "publish_date": "24 February 2023 16:24:47 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -2031,16 +1635,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-month--froglight", "publish_date": "23 February 2023 15:58:46 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2055,16 +1653,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-4-pre-release-1", "publish_date": "22 February 2023 16:58:50 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2089,16 +1681,10 @@ "tile_size": "2x1", "title": "Mega Man X DLC" }, - "categories": [ - "Marketplace", - "Minecraft" - ], + "categories": ["Marketplace", "Minecraft"], "article_url": "/zh-hans/article/mega-man-x-dlc", "publish_date": "23 February 2023 17:15:20 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2113,14 +1699,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/minecraft-x-crocs", "publish_date": "16 February 2023 18:00:27 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -2135,16 +1717,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--goat-horn", "publish_date": "16 February 2023 15:55:14 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2169,14 +1745,10 @@ "tile_size": "2x2", "title": "Minecraft Preview 1.19.70.23" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-preview-1-19-70-23", "publish_date": "15 February 2023 16:01:31 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -2191,16 +1763,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-23w07a", "publish_date": "15 February 2023 15:59:51 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2215,14 +1781,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/coloring-contest--valentine-s-day", "publish_date": "15 February 2023 00:32:32 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -2245,14 +1807,10 @@ "tile_size": "2x2", "title": "Cherry Blossom Biome coming to Minecraft 1.20" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/cherry-blossom-biome-coming-minecraft-120", "publish_date": "14 February 2023 16:05:27 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -2275,14 +1833,10 @@ "tile_size": "2x2", "title": "Sniffer coming to Minecraft 1.20" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/sniffer-coming-minecraft-120", "publish_date": "13 February 2023 15:55:49 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -2297,14 +1851,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/privacy-prodigy-launches", "publish_date": "10 February 2023 18:00:02 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -2318,16 +1868,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Legends" - ], + "categories": ["Deep Dives", "Legends"], "article_url": "/zh-hans/article/minecraft-legends-dev-diary-music-and-sound", "publish_date": "10 February 2023 16:05:11 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -2350,14 +1894,10 @@ "tile_size": "2x2", "title": "Archeology coming to Minecraft 1.20" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/archeology-coming-minecraft-120", "publish_date": "22 March 2023 16:00:46 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -2372,16 +1912,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/mob-menagerie--polar-bear", "publish_date": "09 February 2023 15:55:45 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2396,16 +1930,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-23w06a", "publish_date": "08 February 2023 15:39:31 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2420,14 +1948,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/community-crafting-bench--recipe-fun", "publish_date": "07 February 2023 21:05:11 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -2452,16 +1976,10 @@ "tile_size": "2x1", "title": "Realms Plus: February 2023" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-february-2023", "publish_date": "15 February 2023 08:51:47 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -2476,14 +1994,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/1-19-60-update-available-bedrock", "publish_date": "08 February 2023 09:30:06 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -2498,16 +2012,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--windswept-savanna", "publish_date": "04 February 2023 12:00:01 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2530,16 +2038,10 @@ "tile_size": "2x2", "title": "The Overworld of Minecraft Legends" }, - "categories": [ - "Deep Dives", - "Legends" - ], + "categories": ["Deep Dives", "Legends"], "article_url": "/zh-hans/article/the-overworld-minecraft-legends", "publish_date": "03 February 2023 14:05:14 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -2554,14 +2056,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--statues", "publish_date": "02 February 2023 21:41:54 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -2576,14 +2074,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/how-use-skulk-sensors", "publish_date": "06 February 2023 16:43:58 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -2598,16 +2092,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-23w05a", "publish_date": "01 February 2023 15:59:34 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2622,16 +2110,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch", - "Marketplace" - ], + "categories": ["Merch", "Marketplace"], "article_url": "/zh-hans/article/welcome-camp-enderwood", "publish_date": "31 January 2023 18:04:35 UTC", - "tags": [ - "minecraft:stockholm/merch", - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/merch", "minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -2646,16 +2128,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/java-realms-fighting-words", "publish_date": "30 January 2023 09:20:16 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -2670,16 +2146,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-preview-1-19-70-20", "publish_date": "26 January 2023 17:59:05 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2694,16 +2164,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-month--infested-block", "publish_date": "26 January 2023 17:39:01 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2726,16 +2190,10 @@ "tile_size": "4x2", "title": "Minecraft Legends official release date" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/minecraft-legends-official-release-date", "publish_date": "25 January 2023 21:19:20 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -2750,16 +2208,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-23w04a", "publish_date": "24 January 2023 15:59:42 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2782,14 +2234,10 @@ "tile_size": "2x2", "title": "Armor Trims Coming to Minecraft 1.20" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/armor-trims-coming-minecraft-1-20", "publish_date": "24 January 2023 16:17:30 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -2812,14 +2260,10 @@ "tile_size": "2x2", "title": "From Aimless Ambler to Purposeful Porpoise" }, - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/from-aimless-ambler-purposeful-porpoise", "publish_date": "23 January 2023 16:00:42 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -2833,16 +2277,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/new-minecraft-youtube-series", "publish_date": "23 January 2023 12:15:50 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2865,14 +2303,10 @@ "tile_size": "1x2", "title": "Start a New Story: City Living " }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/start-new-story-city-living", "publish_date": "25 January 2023 20:24:38 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -2887,16 +2321,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--recovery-compass", "publish_date": "19 January 2023 17:55:56 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2911,14 +2339,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/start-new-story--parkour", "publish_date": "19 January 2023 15:55:50 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -2943,14 +2367,10 @@ "tile_size": "2x2", "title": "Start a New Story: from farmer to fighter" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/start-new-story-dragons", "publish_date": "18 January 2023 16:00:27 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -2965,16 +2385,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-23w03a", "publish_date": "18 January 2023 14:02:40 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -2989,14 +2403,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/jazz-up-your-nether-portal", "publish_date": "18 January 2023 00:11:29 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -3021,10 +2431,7 @@ "tile_size": "2x2", "title": "New Year\u2019s Celebration: Lunar New Year" }, - "categories": [ - "Marketplace", - "New Year's Celebration 2022" - ], + "categories": ["Marketplace", "New Year's Celebration 2022"], "article_url": "/zh-hans/article/new-year-celebration-lunar-new-year", "publish_date": "17 January 2023 18:00:36 UTC", "tags": [ @@ -3055,16 +2462,10 @@ "tile_size": "2x2", "title": "Mob Menagerie: Strider" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/mob-menagerie--strider", "publish_date": "16 January 2023 15:50:12 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -3089,16 +2490,10 @@ "tile_size": "2x2", "title": "Realms Plus: January 2023" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-january-2023", "publish_date": "13 January 2023 18:00:18 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -3123,14 +2518,10 @@ "tile_size": "2x2", "title": "A new chapter begins" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/start-new-story-minecraft-marketplace", "publish_date": "12 January 2023 18:00:29 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -3155,10 +2546,7 @@ "tile_size": "2x1", "title": "New Year\u2019s Celebration: Holiday Resort" }, - "categories": [ - "Marketplace", - "New Year's Celebration 2022" - ], + "categories": ["Marketplace", "New Year's Celebration 2022"], "article_url": "/zh-hans/article/new-year-celebration-holiday-resort", "publish_date": "10 January 2023 18:00:24 UTC", "tags": [ @@ -3207,14 +2595,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/ideas-for-map-art", "publish_date": "05 January 2023 00:43:27 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -3239,10 +2623,7 @@ "tile_size": "2x2", "title": " New Year\u2019s Celebration: Rising Lava Parkour" }, - "categories": [ - "Marketplace", - "New Year's Celebration 2022" - ], + "categories": ["Marketplace", "New Year's Celebration 2022"], "article_url": "/zh-hans/article/new-year-celebration-rising-lava-parkour", "publish_date": "03 January 2023 17:50:03 UTC", "tags": [ @@ -3273,14 +2654,10 @@ "tile_size": "2x2", "title": "Happy Holidays " }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/happy-holidays-2022", "publish_date": "30 December 2022 16:00:07 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -3295,14 +2672,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/irl-crafting--diys-perfect-parties", "publish_date": "30 December 2022 00:12:04 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -3317,14 +2690,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/how-to-find-ancient-debris", "publish_date": "29 December 2022 23:53:49 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -3339,14 +2708,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/the-fastest-way-oxidize-copper", "publish_date": "29 December 2022 23:41:48 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -3361,16 +2726,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-month--nylium", "publish_date": "29 December 2022 15:58:10 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -3385,16 +2744,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/minecraft-vinyl", "publish_date": "28 December 2022 15:55:58 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -3417,10 +2770,7 @@ "tile_size": "2x1", "title": "New Year\u2019s Celebration: Trident City" }, - "categories": [ - "Marketplace", - "New Year's Celebration 2022" - ], + "categories": ["Marketplace", "New Year's Celebration 2022"], "article_url": "/zh-hans/article/new-year-s-celebration-trident-city", "publish_date": "27 December 2022 18:14:51 UTC", "tags": [ @@ -3440,16 +2790,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms--a-java-realms-day-miracle", "publish_date": "23 December 2022 13:41:32 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -3464,16 +2808,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--copper-ingot", "publish_date": "22 December 2022 20:18:25 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -3487,14 +2825,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/monthly-skins--ugly-sweaters", "publish_date": "21 December 2022 23:06:33 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -3509,10 +2843,7 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "New Year's Celebration 2022" - ], + "categories": ["Marketplace", "New Year's Celebration 2022"], "article_url": "/zh-hans/article/new-year-s-celebration--lucky-s-minigame-mayhem", "publish_date": "23 December 2022 09:50:02 UTC", "tags": [ @@ -3533,14 +2864,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/community-new-year-s-giveaways-", "publish_date": "21 December 2022 18:36:21 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -3555,14 +2882,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/5-steps-host-holiday-party-minecraft", "publish_date": "16 December 2022 21:17:00 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -3585,14 +2908,10 @@ "tile_size": "4x2", "title": "Scenes from the Overworld " }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/scenes-overworld", "publish_date": "23 December 2022 09:50:02 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -3607,14 +2926,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--vacation", "publish_date": "16 December 2022 00:24:06 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -3629,14 +2944,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/irl-crafting--hamborghini--the-rideable-pig", "publish_date": "14 December 2022 23:21:13 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -3661,10 +2972,7 @@ "tile_size": "2x2", "title": "Join the New Year\u2019s Celebration\u202f" }, - "categories": [ - "Marketplace", - "New Year's Celebration 2022" - ], + "categories": ["Marketplace", "New Year's Celebration 2022"], "article_url": "/zh-hans/article/new-year-celebration-2022", "publish_date": "23 December 2022 09:50:02 UTC", "tags": [ @@ -3685,14 +2993,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/monthly-skins--historical-figures", "publish_date": "13 December 2022 17:48:36 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -3707,14 +3011,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--batman", "publish_date": "13 December 2022 17:03:15 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -3737,16 +3037,10 @@ "tile_size": "1x2", "title": "When old foes become new friends" }, - "categories": [ - "Deep Dives", - "Legends" - ], + "categories": ["Deep Dives", "Legends"], "article_url": "/zh-hans/article/when-old-foes-become-new-friends", "publish_date": "23 December 2022 09:50:02 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -3761,16 +3055,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--sunflower-plains", "publish_date": "08 December 2022 16:49:27 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -3785,16 +3073,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-java-edition-1-19-3", "publish_date": "16 December 2022 10:30:21 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -3809,14 +3091,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/monthly-skins--fall-fashion", "publish_date": "13 December 2022 17:03:18 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -3841,16 +3119,10 @@ "tile_size": "2x1", "title": "Realms Plus December 2022" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-december-2022", "publish_date": "23 December 2022 09:50:02 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -3875,14 +3147,10 @@ "tile_size": "2x2", "title": "A new Avatar adventure" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/new-avatar-adventure", "publish_date": "06 December 2022 18:15:01 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -3897,16 +3165,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-3-release-candidate-3", "publish_date": "06 December 2022 13:28:36 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -3921,16 +3183,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-month--fence", "publish_date": "01 December 2022 20:12:19 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -3945,16 +3201,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-3-release-candidate-1", "publish_date": "05 December 2022 14:10:33 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -3969,14 +3219,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/1-19-50-update-available-bedrock", "publish_date": "02 December 2022 13:58:23 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -3991,16 +3237,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-3-pre-release-3", "publish_date": "29 November 2022 15:34:53 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4015,16 +3255,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms--maps-lazy", "publish_date": "28 November 2022 12:26:42 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -4039,16 +3273,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--cornflower", "publish_date": "24 November 2022 15:55:59 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4063,14 +3291,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/community-roundup--sniffer-fanart", "publish_date": "23 November 2022 00:59:57 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -4095,16 +3319,10 @@ "tile_size": "2x2", "title": "Mob Menagerie: Frog" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/mob-menagerie--frog", "publish_date": "23 November 2022 16:16:47 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4129,14 +3347,10 @@ "tile_size": "2x2", "title": "Block Friday returns" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/block-friday-returns", "publish_date": "22 November 2022 18:00:11 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -4151,16 +3365,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-3-pre-release-1", "publish_date": "23 November 2022 16:50:25 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4174,14 +3382,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/a-festive-gift-guide-2022", "publish_date": "02 December 2022 08:56:54 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -4196,16 +3400,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/dungeons--new-tower-rotations", "publish_date": "18 November 2022 18:00:02 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -4220,16 +3418,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/minecraft-legends-dev-diaries-pvp", "publish_date": "18 November 2022 16:01:06 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -4244,16 +3436,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Marketplace" - ], + "categories": ["News", "Marketplace"], "article_url": "/zh-hans/article/kick-soccer-celebration", "publish_date": "17 November 2022 18:07:14 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -4268,16 +3454,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w46a", "publish_date": "16 November 2022 15:02:15 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4292,16 +3472,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--eroded-badlands", "publish_date": "14 November 2022 17:37:38 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4316,14 +3490,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/playable-mob-sounds-coming-minecraft-1-20", "publish_date": "14 November 2022 17:31:56 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -4338,14 +3508,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/hour-code-escape-estate", "publish_date": "10 November 2022 08:38:36 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -4360,16 +3526,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w45a", "publish_date": "09 November 2022 15:02:59 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4384,14 +3544,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/from-blocky-hill", "publish_date": "07 November 2022 16:25:44 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -4405,14 +3561,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/block-month--fletching-table", "publish_date": "03 November 2022 17:13:36 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -4427,16 +3579,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w44a", "publish_date": "02 November 2022 14:24:04 UTC", - "tags": [ - "minecraft:article/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:article/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4451,14 +3597,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--spooky-hotel", "publish_date": "01 November 2022 19:24:24 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -4481,14 +3623,10 @@ "tile_size": "2x2", "title": "Minecraft x Burberry" }, - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/minecraft-x-burberry", "publish_date": "03 November 2022 16:59:13 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -4513,16 +3651,10 @@ "tile_size": "2x2", "title": "Realms Plus: November 2022" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-november-2022", "publish_date": "01 November 2022 17:01:01 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -4537,14 +3669,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/community-crafting-bench--spooky-results", "publish_date": "31 October 2022 19:38:17 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -4559,14 +3687,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/halloween-fan-art", "publish_date": "31 October 2022 18:48:05 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -4581,14 +3705,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/monthly-skins--halloween-costumes", "publish_date": "28 October 2022 19:45:26 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -4603,16 +3723,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Halloween 2022" - ], + "categories": ["Deep Dives", "Halloween 2022"], "article_url": "/zh-hans/article/spooky-writers-challenge/try-spooky-challenge", "publish_date": "28 October 2022 15:00:51 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/halloween-2022" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/halloween-2022"] }, { "default_tile": { @@ -4627,16 +3741,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Halloween 2022" - ], + "categories": ["Deep Dives", "Halloween 2022"], "article_url": "/zh-hans/article/spooky-writers-challenge", "publish_date": "28 October 2022 15:00:03 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/halloween-2022" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/halloween-2022"] }, { "default_tile": { @@ -4651,16 +3759,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-realms--scary-movies", "publish_date": "28 October 2022 11:52:38 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -4683,14 +3785,10 @@ "tile_size": "2x1", "title": "Turning LEGO® bricks and Minecraft SFX into Music" }, - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/turning-lego--bricks-and-minecraft-sfx-music", "publish_date": "27 October 2022 19:31:29 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -4705,14 +3803,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/ask-mojang-anything--ama---minecraft-live-2022", "publish_date": "27 October 2022 17:55:19 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -4727,11 +3821,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Deep Dives", - "Dungeons" - ], + "categories": ["News", "Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/tower-team-up", "publish_date": "27 October 2022 16:55:44 UTC", "tags": [ @@ -4753,14 +3843,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/batman-dlc--dev-q-a", "publish_date": "26 October 2022 22:57:23 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -4785,11 +3871,7 @@ "tile_size": "2x2", "title": "Spooky Fall awakens" }, - "categories": [ - "News", - "Dungeons", - "Halloween 2022" - ], + "categories": ["News", "Dungeons", "Halloween 2022"], "article_url": "/zh-hans/article/spooky-fall-awakens", "publish_date": "26 October 2022 14:58:18 UTC", "tags": [ @@ -4811,16 +3893,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w43a", "publish_date": "26 October 2022 13:02:37 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4835,16 +3911,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Halloween 2022" - ], + "categories": ["Marketplace", "Halloween 2022"], "article_url": "/zh-hans/article/minecraft-marketplace-spooky-season", "publish_date": "25 October 2022 18:00:02 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/halloween-2022" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/halloween-2022"] }, { "default_tile": { @@ -4859,14 +3929,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/1-19-40-update-available-bedrock", "publish_date": "25 October 2022 16:32:00 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -4889,14 +3955,10 @@ "tile_size": "4x2", "title": "Introducing new default skins " }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/introducing-new-default-skins", "publish_date": "29 November 2022 16:01:24 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -4911,16 +3973,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--crossbow", "publish_date": "31 October 2022 10:15:21 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4935,16 +3991,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-preview-1-19-50-21", "publish_date": "19 October 2022 23:41:39 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4959,16 +4009,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w42a", "publish_date": "19 October 2022 14:18:33 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -4993,14 +4037,10 @@ "tile_size": "2x2", "title": "Batman swoops into Minecraft" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/batman-dlc-swoops-minecraft", "publish_date": "18 October 2022 21:55:07 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -5023,14 +4063,10 @@ "tile_size": "2x2", "title": "Try the first Minecraft 1.20 features" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/try-first-minecraft-1-20-features", "publish_date": "19 October 2022 15:50:54 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -5045,16 +4081,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/my-fair-e--pet", "publish_date": "17 October 2022 15:07:24 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -5077,14 +4107,10 @@ "tile_size": "4x2", "title": "Minecraft Live 2022 The Recap" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-live-2022-the-recap", "publish_date": "18 October 2022 07:00:52 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -5099,14 +4125,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/best-mob-vote-tutorials", "publish_date": "14 October 2022 22:11:35 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -5120,14 +4142,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/testing-new-minecraft-features", "publish_date": "02 November 2022 12:14:10 UTC", - "tags": [ - "minecraft:stockholm/guides" - ] + "tags": ["minecraft:stockholm/guides"] }, { "default_tile": { @@ -5152,16 +4170,10 @@ "tile_size": "2x2", "title": "New Friends: The Golems of Minecraft Legends " }, - "categories": [ - "Deep Dives", - "Legends" - ], + "categories": ["Deep Dives", "Legends"], "article_url": "/zh-hans/article/new-friends--the-golems-minecraft-legends", "publish_date": "12 October 2022 17:01:02 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -5186,16 +4198,10 @@ "tile_size": "4x2", "title": "Welcome to Fauna Faire" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/welcome-fauna-faire", "publish_date": "12 October 2022 14:59:14 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -5210,14 +4216,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-live-2022-afterparty-", "publish_date": "12 October 2022 22:14:28 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -5232,16 +4234,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--frozen-peaks", "publish_date": "11 October 2022 16:36:16 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -5256,14 +4252,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/community-crafting-bench--halloween-handiwork", "publish_date": "07 October 2022 20:31:25 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -5278,16 +4270,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-month--hyphae", "publish_date": "07 October 2022 14:50:01 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -5310,14 +4296,10 @@ "tile_size": "2x2", "title": "Mob Vote 2022: Tuff Golem" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/mob-vote-2022-tuff-golem", "publish_date": "07 October 2022 07:16:07 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -5340,14 +4322,10 @@ "tile_size": "2x2", "title": "Mob Vote 2022: Rascal" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/mob-vote-2022-rascal", "publish_date": "07 October 2022 07:16:07 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -5372,16 +4350,10 @@ "tile_size": "2x2", "title": "Spookyfest has arrived" }, - "categories": [ - "News", - "Halloween 2022" - ], + "categories": ["News", "Halloween 2022"], "article_url": "/zh-hans/article/minecraft-spookyfest-2022-here", "publish_date": "04 October 2022 17:55:08 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/halloween-2022" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/halloween-2022"] }, { "default_tile": { @@ -5395,16 +4367,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-october0", "publish_date": "07 October 2022 16:50:09 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -5427,14 +4393,10 @@ "tile_size": "2x2", "title": "Mob Vote 2022: Sniffer" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/mob-vote-2022-sniffer", "publish_date": "07 October 2022 07:16:07 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -5448,14 +4410,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/minecraft-creator-series", "publish_date": "03 October 2022 14:50:46 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -5478,16 +4436,10 @@ "tile_size": "2x1", "title": "The Second Minecraft Legends Dev Diary Is Out Now" }, - "categories": [ - "Deep Dives", - "Legends" - ], + "categories": ["Deep Dives", "Legends"], "article_url": "/zh-hans/article/the-second-minecraft-legends-dev-diary-is-out-now", "publish_date": "30 September 2022 15:02:08 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -5501,14 +4453,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/featuring-features-from-now-on", "publish_date": "30 September 2022 14:45:37 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -5533,16 +4481,10 @@ "tile_size": "2x2", "title": "New on Realms: Motivational Madness" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-realms--motivational-madness", "publish_date": "30 September 2022 11:59:11 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -5557,16 +4499,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--door", "publish_date": "29 September 2022 14:50:43 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -5581,14 +4517,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/nick-s-ice-cream-goes-blocky", "publish_date": "27 September 2022 14:50:07 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -5613,16 +4545,10 @@ "tile_size": "2x1", "title": "Mob Menagerie: Fox" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/mob-menagerie--fox", "publish_date": "22 September 2022 17:16:50 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -5647,14 +4573,10 @@ "tile_size": "2x2", "title": "Discover the Frozen Planet II DLC" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/discover-frozen-planet-2-dlc", "publish_date": "21 September 2022 19:03:51 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -5679,16 +4601,10 @@ "tile_size": "2x2", "title": "Realms Plus September" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-september-2022", "publish_date": "20 September 2022 17:00:03 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -5702,14 +4618,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/1-19-30-update-available-bedrock", "publish_date": "20 September 2022 16:02:40 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -5734,16 +4646,10 @@ "tile_size": "2x1", "title": "Around the Block: Sparse Jungle" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--sparse-jungle", "publish_date": "15 September 2022 16:41:10 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -5758,14 +4664,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/how-enjoy-minecraft-more", "publish_date": "14 September 2022 20:32:45 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -5780,16 +4682,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-month--mud", "publish_date": "11 September 2022 16:29:52 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -5804,14 +4700,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/irl-crafting--mine-crafting-axolittles", "publish_date": "09 September 2022 21:38:48 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -5834,14 +4726,10 @@ "tile_size": "4x2", "title": "Minecraft Live 2022 is back" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-live-2022-back", "publish_date": "08 September 2022 23:47:54 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -5856,14 +4744,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--chunk", "publish_date": "06 September 2022 23:29:38 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -5888,14 +4772,10 @@ "tile_size": "1x2", "title": "Watch the first Minecraft Legends dev diary" }, - "categories": [ - "Legends" - ], + "categories": ["Legends"], "article_url": "/zh-hans/article/watch-first-minecraft-legends-dev-diary", "publish_date": "13 September 2022 07:44:18 UTC", - "tags": [ - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/legends"] }, { "default_tile": { @@ -5910,14 +4790,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/community-skins--camping", "publish_date": "01 September 2022 20:34:01 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -5932,16 +4808,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--mushroom-stew", "publish_date": "01 September 2022 20:07:45 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -5956,14 +4826,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/bedrock-tips-and-tricks", "publish_date": "31 August 2022 18:47:33 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -5988,14 +4854,10 @@ "tile_size": "2x1", "title": "Join Worlds of Learning" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/join-worlds-learning", "publish_date": "30 August 2022 15:14:24 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -6018,16 +4880,10 @@ "tile_size": "2x1", "title": "Mob Menagerie: Goat" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/mob-menagerie--goat", "publish_date": "29 August 2022 16:11:32 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -6052,16 +4908,10 @@ "tile_size": "2x2", "title": "New on Java Realms: Advancements in Science" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms--advancements-science", "publish_date": "12 September 2022 15:42:14 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -6084,16 +4934,10 @@ "tile_size": "4x2", "title": "New Minecraft Legends trailer" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/new-minecraft-legends-trailer", "publish_date": "23 September 2022 09:02:53 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -6108,14 +4952,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--dance-club", "publish_date": "24 August 2022 20:18:46 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -6129,14 +4969,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-now-august", "publish_date": "25 August 2022 06:27:20 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -6151,14 +4987,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/team-build-challenge--sky-builds", "publish_date": "19 August 2022 19:39:49 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -6172,16 +5004,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--lukewarm-ocean", "publish_date": "18 August 2022 16:50:17 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -6195,14 +5021,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/a-new-wave-uniqlo-x-minecraft", "publish_date": "18 August 2022 14:55:11 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -6217,14 +5039,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/the-best-way-to-mine", "publish_date": "16 August 2022 23:13:23 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -6238,16 +5056,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/introducing-vanilla-cape", "publish_date": "30 August 2022 15:45:30 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -6262,16 +5074,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-month-nether-wart", "publish_date": "11 August 2022 15:00:02 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -6286,14 +5092,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/angry-birds-dlc--dev-q-a", "publish_date": "11 August 2022 19:05:13 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -6308,14 +5110,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/1-19-20-update-available-bedrock", "publish_date": "09 August 2022 17:26:31 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -6329,14 +5127,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/representing-lgbtq-pride-minecraft", "publish_date": "09 August 2022 06:17:14 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -6351,16 +5145,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update" - ], + "categories": ["News", "Wild Update"], "article_url": "/zh-hans/article/minecraft-java-edition-1-19-2", "publish_date": "05 August 2022 13:59:04 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -6375,14 +5163,10 @@ }, "articleLang": "en-us", "primary_category": "Realms Plus", - "categories": [ - "Realms Plus" - ], + "categories": ["Realms Plus"], "article_url": "/zh-hans/article/realms-plus-august-2022", "publish_date": "04 August 2022 17:00:58 UTC", - "tags": [ - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -6397,16 +5181,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory-lead", "publish_date": "04 August 2022 15:00:01 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -6421,14 +5199,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/team-build-challenge--park-playground", "publish_date": "04 August 2022 19:46:15 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -6443,16 +5217,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-2-release-candidate-1", "publish_date": "05 August 2022 09:13:18 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -6467,14 +5235,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--stylish-furnishings", "publish_date": "03 August 2022 19:01:37 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -6489,14 +5253,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/a-working-chicken-coop", "publish_date": "02 August 2022 17:05:03 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -6511,14 +5271,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/minecraft-legends-community-roundup--fan-art-part-2", "publish_date": "01 August 2022 23:48:49 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -6543,16 +5299,10 @@ "tile_size": "2x1", "title": "New on Java Realms: Programming" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-progamming", "publish_date": "12 September 2022 15:44:08 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -6567,14 +5317,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/around-block-old-growth-taiga", "publish_date": "28 July 2022 15:00:03 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -6589,14 +5335,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--dinosaurs", "publish_date": "28 July 2022 22:49:18 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -6611,16 +5353,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update" - ], + "categories": ["News", "Wild Update"], "article_url": "/zh-hans/article/minecraft-java-edition-1-19-1", "publish_date": "04 May 2023 20:02:16 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -6635,14 +5371,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--spongebob-squarepants", "publish_date": "27 July 2022 19:40:28 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -6667,14 +5399,10 @@ "tile_size": "2x2", "title": "Bikini Bottom just got blocky" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/spongebob-dlc-arrives-minecraft", "publish_date": "03 August 2022 13:05:13 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -6689,16 +5417,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update" - ], + "categories": ["News", "Wild Update"], "article_url": "/zh-hans/article/minecraft-1-19-1-release-candidate-3", "publish_date": "26 July 2022 16:43:20 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -6713,16 +5435,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--smoker", "publish_date": "22 July 2022 06:04:36 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -6737,16 +5453,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update" - ], + "categories": ["News", "Wild Update"], "article_url": "/zh-hans/article/minecraft-1-19-1-release-candidate-2", "publish_date": "21 July 2022 16:50:42 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -6761,14 +5471,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--the-wild-update", "publish_date": "21 July 2022 17:17:52 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -6783,16 +5489,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update" - ], + "categories": ["News", "Wild Update"], "article_url": "/zh-hans/article/minecraft-1-19-1-pre-release-6", "publish_date": "20 July 2022 16:26:50 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -6817,16 +5517,10 @@ "tile_size": "2x2", "title": "Minecraft and NFTs" }, - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-and-nfts", "publish_date": "20 July 2022 15:49:28 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -6841,16 +5535,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art", - "Legends" - ], + "categories": ["Fan Art", "Legends"], "article_url": "/zh-hans/article/minecraft-legends-community-roundup--fan-art-part-1", "publish_date": "01 September 2022 16:08:07 UTC", - "tags": [ - "minecraft:redmond/fan-art", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:redmond/fan-art", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -6865,16 +5553,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update" - ], + "categories": ["News", "Wild Update"], "article_url": "/zh-hans/article/minecraft-1-19-1-pre-release-5", "publish_date": "20 July 2022 16:19:45 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -6889,14 +5571,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/1-19-10-update-out-bedrock", "publish_date": "06 September 2022 12:08:20 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -6921,16 +5599,10 @@ "tile_size": "2x2", "title": "Realms Plus: July" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-july-2022", "publish_date": "13 September 2022 08:06:38 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -6955,16 +5627,10 @@ "tile_size": "2x1", "title": "Around the Block: Stony Shore" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--stony-shore", "publish_date": "07 July 2022 14:55:22 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -6979,11 +5645,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-1-pre-release-3", "publish_date": "08 July 2022 13:06:36 UTC", "tags": [ @@ -7005,14 +5667,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/minecraft--zombies-", "publish_date": "05 July 2022 14:50:11 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -7027,14 +5685,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/how-not-be-bored-minecraft", "publish_date": "05 July 2022 17:20:36 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -7059,14 +5713,10 @@ "tile_size": "2x2", "title": "Make Way for the Minions" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/make-way-minions", "publish_date": "01 July 2022 18:55:30 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -7081,11 +5731,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Wild Update" - ], + "categories": ["News", "Minecraft", "Wild Update"], "article_url": "/zh-hans/article/minecraft-1-19-1-pre-release-2", "publish_date": "30 June 2022 16:24:19 UTC", "tags": [ @@ -7107,14 +5753,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--land-rainbows-ii", "publish_date": "30 June 2022 18:01:51 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -7129,14 +5771,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/spongebob-build-challenge-", "publish_date": "30 June 2022 19:05:07 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -7150,16 +5788,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/addressing-player-chat-reporting-tool", "publish_date": "01 July 2022 08:27:37 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -7173,14 +5805,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-now--june", "publish_date": "29 June 2022 16:50:25 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -7194,14 +5822,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/allay-duplication-here", "publish_date": "12 July 2022 14:50:42 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -7226,10 +5850,7 @@ "tile_size": "2x2", "title": "Don\u2019t miss the Marketplace Celebration Sale" }, - "categories": [ - "Marketplace", - "Marketplace 5 Year Celebration" - ], + "categories": ["Marketplace", "Marketplace 5 Year Celebration"], "article_url": "/zh-hans/article/marketplace-celebration-sale", "publish_date": "16 September 2022 07:54:56 UTC", "tags": [ @@ -7249,14 +5870,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/a-minecraft-midsummer", "publish_date": "24 June 2022 14:50:04 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -7271,11 +5888,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-1-release-candidate-1", "publish_date": "27 June 2022 09:12:45 UTC", "tags": [ @@ -7297,16 +5910,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--glow-lichen", "publish_date": "23 June 2022 14:50:41 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -7331,16 +5938,10 @@ "tile_size": "2x1", "title": "New on Realms: Destruction, Terror & Mayhem" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-mayhem", "publish_date": "23 June 2022 12:00:44 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -7365,10 +5966,7 @@ "tile_size": "2x1", "title": "Marketplace Fan Favorites: Year 5" }, - "categories": [ - "Marketplace", - "Marketplace 5 Year Celebration" - ], + "categories": ["Marketplace", "Marketplace 5 Year Celebration"], "article_url": "/zh-hans/article/marketplace-fan-favorites-year-5", "publish_date": "22 June 2022 15:00:18 UTC", "tags": [ @@ -7389,11 +5987,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-1-pre-release-1", "publish_date": "21 June 2022 17:39:53 UTC", "tags": [ @@ -7414,16 +6008,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update" - ], + "categories": ["News", "Wild Update"], "article_url": "/zh-hans/article/the-mangrove-restoration-project", "publish_date": "11 November 2022 16:00:43 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -7437,14 +6025,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/dig-deep-pride", "publish_date": "20 June 2022 15:28:20 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -7467,14 +6051,10 @@ "tile_size": "2x1", "title": "Lightyear DLC now available on Minecraft Marketplace " }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/lightyear-dlc-now-available-minecraft-marketplace", "publish_date": "17 June 2022 17:15:02 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -7497,16 +6077,10 @@ "tile_size": "2x1", "title": "Around the Block: Flower Forest" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--flower-forest", "publish_date": "16 June 2022 14:50:19 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -7521,11 +6095,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w24a", "publish_date": "15 June 2022 17:00:53 UTC", "tags": [ @@ -7557,10 +6127,7 @@ "tile_size": "2x1", "title": "Marketplace Fan Favorites: Year 4" }, - "categories": [ - "Marketplace", - "Marketplace 5 Year Celebration" - ], + "categories": ["Marketplace", "Marketplace 5 Year Celebration"], "article_url": "/zh-hans/article/marketplace-fan-favorites-year-3/marketplace-fan-favorites-year-4", "publish_date": "15 June 2022 15:00:07 UTC", "tags": [ @@ -7581,14 +6148,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/five-simple-path-designs", "publish_date": "14 June 2022 23:08:26 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -7602,16 +6165,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Wild Update" - ], + "categories": ["Deep Dives", "Wild Update"], "article_url": "/zh-hans/article/which-frog-are-you-", "publish_date": "13 June 2022 14:50:06 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -7634,16 +6191,10 @@ "tile_size": "4x2", "title": "Minecraft Legends" }, - "categories": [ - "News", - "Legends" - ], + "categories": ["News", "Legends"], "article_url": "/zh-hans/article/minecraft-legends", "publish_date": "01 September 2022 16:08:54 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/legends" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/legends"] }, { "default_tile": { @@ -7668,16 +6219,10 @@ "tile_size": "2x2", "title": "Realms Plus: June" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-june-2022", "publish_date": "10 June 2022 17:00:02 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -7702,16 +6247,10 @@ "tile_size": "2x2", "title": "Dungeons Anniversary Infographic" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/dungeons-anniversary-infographic", "publish_date": "14 June 2022 09:18:04 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -7726,16 +6265,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--golden-carrot", "publish_date": "09 June 2022 15:07:26 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -7760,10 +6293,7 @@ "tile_size": "2x1", "title": "Marketplace Fan Favorites: Year 3" }, - "categories": [ - "Marketplace", - "Marketplace 5 Year Celebration" - ], + "categories": ["Marketplace", "Marketplace 5 Year Celebration"], "article_url": "/zh-hans/article/marketplace-fan-favorites-year-3", "publish_date": "09 June 2022 08:18:21 UTC", "tags": [ @@ -7783,14 +6313,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/the-wild-update-out-today-bedrock", "publish_date": "08 June 2022 08:50:33 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -7815,11 +6341,7 @@ "tile_size": "2x2", "title": "The Wild Update Out Today on Java" }, - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/the-wild-update-out-today-java", "publish_date": "08 June 2022 14:09:44 UTC", "tags": [ @@ -7849,16 +6371,10 @@ "tile_size": "4x2", "title": "The Wild Update is Here" }, - "categories": [ - "News", - "Wild Update" - ], + "categories": ["News", "Wild Update"], "article_url": "/zh-hans/article/the-wild-update-here", "publish_date": "07 June 2022 14:57:48 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -7873,16 +6389,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Wild Update" - ], + "categories": ["Minecraft Builds", "Wild Update"], "article_url": "/zh-hans/article/community-spotlight--the-wild-update", "publish_date": "07 June 2022 18:29:20 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/wild-update" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/wild-update"] }, { "default_tile": { @@ -7905,16 +6415,10 @@ "tile_size": "2x2", "title": "The Wild Update is dropping tomorrow " }, - "categories": [ - "News", - "Wild Update" - ], + "categories": ["News", "Wild Update"], "article_url": "/zh-hans/article/the-wild-update-dropping-tomorrow", "publish_date": "06 June 2022 14:58:01 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -7929,14 +6433,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/dungeons-community-roundup--luminous-night-fan-art", "publish_date": "06 June 2022 22:54:35 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -7959,16 +6459,10 @@ "tile_size": "2x2", "title": "The Wild Update is almost here" }, - "categories": [ - "News", - "Wild Update" - ], + "categories": ["News", "Wild Update"], "article_url": "/zh-hans/article/the-wild-update-almost-here", "publish_date": "05 June 2022 15:58:40 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -7982,16 +6476,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/java---bedrock-edition-pc-out-june-7", "publish_date": "07 June 2022 16:47:30 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -8016,11 +6504,7 @@ "tile_size": "2x2", "title": "Meet the Warden" }, - "categories": [ - "Deep Dives", - "Minecraft", - "Wild Update" - ], + "categories": ["Deep Dives", "Minecraft", "Wild Update"], "article_url": "/zh-hans/article/meet-warden", "publish_date": "03 June 2022 14:55:42 UTC", "tags": [ @@ -8118,16 +6602,10 @@ "tile_size": "4x2", "title": "CRAFT YOUR OWN ADVENTURE: WILD TALES" }, - "categories": [ - "Deep Dives", - "Wild Update" - ], + "categories": ["Deep Dives", "Wild Update"], "article_url": "/zh-hans/article/craft-your-own-adventure--wild-tales", "publish_date": "02 June 2022 14:57:00 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -8142,11 +6620,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Wild Update" - ], + "categories": ["News", "Minecraft", "Wild Update"], "article_url": "/zh-hans/article/minecraft-1-19-release-candidate-1", "publish_date": "03 June 2022 12:44:15 UTC", "tags": [ @@ -8178,10 +6652,7 @@ "tile_size": "2x1", "title": "Marketplace Fan Favorites: Year 2" }, - "categories": [ - "Marketplace", - "Marketplace 5 Year Celebration" - ], + "categories": ["Marketplace", "Marketplace 5 Year Celebration"], "article_url": "/zh-hans/article/marketplace-fan-favorites-year-2", "publish_date": "01 June 2022 15:00:08 UTC", "tags": [ @@ -8212,14 +6683,10 @@ "tile_size": "2x2", "title": "Ice Age arrives in the Overworld" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/ice-age-arrives-overworld", "publish_date": "31 May 2022 17:15:14 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -8242,16 +6709,10 @@ "tile_size": "2x1", "title": "Meet the Frog" }, - "categories": [ - "Deep Dives", - "Wild Update" - ], + "categories": ["Deep Dives", "Wild Update"], "article_url": "/zh-hans/article/meet-frog", "publish_date": "30 May 2022 15:26:19 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -8266,11 +6727,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-pre-release-4", "publish_date": "01 June 2022 13:07:52 UTC", "tags": [ @@ -8302,16 +6759,10 @@ "tile_size": "2x1", "title": "Meet the Allay" }, - "categories": [ - "Deep Dives", - "Wild Update" - ], + "categories": ["Deep Dives", "Wild Update"], "article_url": "/zh-hans/article/meet-allay", "publish_date": "27 May 2022 15:00:58 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -8336,16 +6787,10 @@ "tile_size": "2x1", "title": "New on Realms: Hardcore Parkour" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-hardcore-parkour", "publish_date": "12 September 2022 15:47:49 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -8370,16 +6815,10 @@ "tile_size": "2x1", "title": "Around the Block: Nether Wastes" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--nether-wastes", "publish_date": "26 May 2022 16:45:16 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -8402,16 +6841,10 @@ "tile_size": "4x2", "title": "The Wild Update is coming" }, - "categories": [ - "News", - "Wild Update" - ], + "categories": ["News", "Wild Update"], "article_url": "/zh-hans/article/the-wild-update-coming", "publish_date": "26 May 2022 14:59:19 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/wild-update" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/wild-update"] }, { "default_tile": { @@ -8436,10 +6869,7 @@ "tile_size": "2x1", "title": "Marketplace Fan Favorites: Year 1" }, - "categories": [ - "Marketplace", - "Marketplace 5 Year Celebration" - ], + "categories": ["Marketplace", "Marketplace 5 Year Celebration"], "article_url": "/zh-hans/article/marketplace-fan-favorites-year-1", "publish_date": "25 May 2022 16:55:54 UTC", "tags": [ @@ -8470,16 +6900,10 @@ "tile_size": "4x2", "title": "Dungeons\u2019 2nd anniversary event is here" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/dungeons--2nd-anniversary-event-here", "publish_date": "25 May 2022 14:57:30 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -8504,10 +6928,7 @@ "tile_size": "2x2", "title": "Marketplace 5 Year Celebration" }, - "categories": [ - "Marketplace", - "Marketplace 5 Year Celebration" - ], + "categories": ["Marketplace", "Marketplace 5 Year Celebration"], "article_url": "/zh-hans/article/marketplace-5-year-celebration", "publish_date": "25 May 2022 06:52:53 UTC", "tags": [ @@ -8528,16 +6949,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/creating-create-new-world", "publish_date": "25 May 2022 08:20:17 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -8552,11 +6967,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-pre-release-2", "publish_date": "25 May 2022 12:19:21 UTC", "tags": [ @@ -8586,14 +6997,10 @@ "tile_size": "2x2", "title": "Vision of an Accessible Future" }, - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/vision-accessible-future", "publish_date": "19 May 2022 14:45:06 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -8608,16 +7015,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--deepslate", "publish_date": "30 May 2022 11:58:46 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -8632,16 +7033,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/learning-languages-through-play", "publish_date": "18 May 2022 16:50:42 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -8656,11 +7051,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-19-pre-release-1", "publish_date": "18 May 2022 15:59:35 UTC", "tags": [ @@ -8681,14 +7072,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-now-may", "publish_date": "18 May 2022 14:45:06 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -8703,14 +7090,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--land-cheese", "publish_date": "18 May 2022 16:00:19 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -8725,14 +7108,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/how-beat-minecraft-under-30-mins", "publish_date": "18 May 2022 15:35:51 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -8757,14 +7136,10 @@ "tile_size": "2x2", "title": "Angry Birds swoops into Minecraft" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/angry-birds-swoops-minecraft", "publish_date": "17 May 2022 23:06:28 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -8789,16 +7164,10 @@ "tile_size": "2x1", "title": "Celebrate Dungeons' second anniversary" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/celebrate-dungeons--second-anniversary", "publish_date": "16 May 2022 15:13:21 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -8813,11 +7182,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w19a", "publish_date": "12 May 2022 17:11:15 UTC", "tags": [ @@ -8839,16 +7204,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--potion", "publish_date": "18 May 2022 13:58:55 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -8863,16 +7222,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/city-lights", "publish_date": "11 May 2022 14:50:40 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -8887,14 +7240,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--pastry-and-bread", "publish_date": "11 May 2022 18:50:01 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -8909,16 +7258,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--jagged-peaks", "publish_date": "06 May 2022 14:56:37 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -8932,16 +7275,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-may", "publish_date": "05 May 2022 16:50:02 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -8955,14 +7292,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/a-gift-guide-spring", - "publish_date": "05 May 2022 14:45:01 UTC", - "tags": [ - "minecraft:stockholm/guides" - ] + "publish_date": "05 May 2022 14:45:01 UTC", + "tags": ["minecraft:stockholm/guides"] }, { "default_tile": { @@ -8977,11 +7310,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Wild Update" - ], + "categories": ["News", "Minecraft", "Wild Update"], "article_url": "/zh-hans/article/minecraft-snapshot-22w18a", "publish_date": "04 May 2022 17:48:18 UTC", "tags": [ @@ -9013,14 +7342,10 @@ "tile_size": "2x1", "title": "Celebrate all things Star Wars" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/celebrate-all-things-star-wars", "publish_date": "03 May 2022 16:55:05 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -9045,16 +7370,10 @@ "tile_size": "2x1", "title": "Cruising through Crystal Cliffs" }, - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/cruising-through-crystal-cliffs", "publish_date": "02 May 2022 14:50:07 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -9069,14 +7388,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--star-wars-x-minecraft", "publish_date": "03 May 2022 17:06:38 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -9099,16 +7414,10 @@ "tile_size": "2x1", "title": "New on Realms: Affordable Housing" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-realms-affordable-housing", "publish_date": "29 April 2022 11:50:15 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -9123,16 +7432,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--calcite", "publish_date": "28 April 2022 14:55:56 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -9147,11 +7450,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w17a", "publish_date": "27 April 2022 17:49:34 UTC", "tags": [ @@ -9172,14 +7471,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-now-april", "publish_date": "25 April 2022 16:50:57 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -9202,16 +7497,10 @@ "tile_size": "1x2", "title": "Worldwide works" }, - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/worldwide-works", "publish_date": "25 April 2022 14:50:23 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -9225,14 +7514,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/go-wild-earth-day", "publish_date": "22 April 2022 14:50:49 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -9247,16 +7532,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--wheat", "publish_date": "21 April 2022 14:45:18 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -9281,16 +7560,10 @@ "tile_size": "2x2", "title": "Luminous Night is live" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/luminous-night-live", "publish_date": "20 April 2022 15:00:01 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -9305,11 +7578,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w16a", "publish_date": "20 April 2022 17:47:03 UTC", "tags": [ @@ -9331,14 +7600,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-1-18-30-bedrock", "publish_date": "19 April 2022 15:46:09 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -9362,16 +7627,10 @@ "tile_size": "2x2", "title": "Meet the Wildfire" }, - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/meet-wildfire", "publish_date": "16 May 2022 15:42:04 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -9396,16 +7655,10 @@ "tile_size": "2x1", "title": "Around the Block: Meadow" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--meadow", "publish_date": "14 April 2022 14:50:30 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -9420,11 +7673,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w15a", "publish_date": "13 April 2022 16:19:39 UTC", "tags": [ @@ -9456,14 +7705,10 @@ "tile_size": "2x2", "title": "Don\u2019t miss the Minecraft Marketplace Spring Sale" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/minecraft-marketplace-spring-sale-2022", "publish_date": "12 April 2022 17:07:50 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -9478,16 +7723,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--rooted-dirt", "publish_date": "08 April 2022 14:50:40 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -9512,16 +7751,10 @@ "tile_size": "2x1", "title": "Realms Plus: April" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-april-2022", "publish_date": "07 April 2022 16:55:03 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -9535,14 +7768,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/lacoste-x-sport-dans-la-ville-challenge", "publish_date": "07 April 2022 17:23:30 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -9557,11 +7786,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w14a", "publish_date": "06 April 2022 16:07:25 UTC", "tags": [ @@ -9583,16 +7808,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-beta---preview-1-19-0-20", "publish_date": "06 April 2022 16:08:53 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -9615,14 +7834,10 @@ "tile_size": "2x1", "title": "Mob Squad: Never Say Nether" }, - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/mob-squad--never-say-nether-by-delilah-s--dawson", "publish_date": "06 April 2022 14:50:43 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -9647,14 +7862,10 @@ "tile_size": "2x2", "title": "Start a new adventure with Sonic" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/new-sonic-adventure", "publish_date": "05 April 2022 18:55:01 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -9677,16 +7888,10 @@ "tile_size": "2x2", "title": "Announcing Luminous Night" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/announcing-luminous-night", "publish_date": "04 April 2022 14:55:25 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -9709,16 +7914,10 @@ "tile_size": "4x2", "title": "Mojang Studios release new astonishing update" }, - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/mojang-studios-release-new-astonishing-update", "publish_date": "01 April 2022 14:57:20 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -9733,11 +7932,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w13a", "publish_date": "31 March 2022 16:34:13 UTC", "tags": [ @@ -9759,14 +7954,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-beta---preview---1-18-30-32-33", "publish_date": "06 April 2022 11:53:31 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -9791,14 +7982,10 @@ "tile_size": "2x2", "title": "A new update for blocky MLB® fans" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/a-new-update-blocky-mlb-fans", "publish_date": "29 March 2022 16:55:02 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -9821,16 +8008,10 @@ "tile_size": "2x1", "title": "New on Java Realms: Career Choices " }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms--career-choices", "publish_date": "25 March 2022 13:57:00 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -9845,11 +8026,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Wild Update", - "Minecraft" - ], + "categories": ["News", "Wild Update", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w12a", "publish_date": "24 March 2022 17:14:41 UTC", "tags": [ @@ -9871,14 +8048,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-beta---preview---1-18-30-28-29", "publish_date": "28 March 2022 23:03:21 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -9903,11 +8076,7 @@ "tile_size": "4x2", "title": "Minecraft Snapshot 22w11a" }, - "categories": [ - "News", - "Minecraft", - "Wild Update" - ], + "categories": ["News", "Minecraft", "Wild Update"], "article_url": "/zh-hans/article/minecraft-snapshot-22w11a", "publish_date": "16 March 2022 16:42:11 UTC", "tags": [ @@ -9929,16 +8098,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-beta---preview---1-18-30-22-23", "publish_date": "15 March 2022 16:13:46 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -9952,14 +8115,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/lacoste-x-minecraft", "publish_date": "17 March 2022 09:38:02 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -9984,16 +8143,10 @@ "tile_size": "2x2", "title": "New on Java Realms: Players vs Players" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-players-vs-players", "publish_date": "17 March 2022 10:37:38 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -10018,16 +8171,10 @@ "tile_size": "2x2", "title": "Realms Plus: March" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-march-2022", "publish_date": "08 March 2022 17:55:03 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -10041,14 +8188,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/blazing-game-trail", "publish_date": "08 March 2022 15:45:20 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -10073,11 +8216,7 @@ "tile_size": "2x2", "title": "Minecraft Java Edition 1.18.2" }, - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/minecraft-java-edition-1-18-2", "publish_date": "28 February 2022 15:01:29 UTC", "tags": [ @@ -10099,11 +8238,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-1-18-2-release-candidate-1", "publish_date": "25 February 2022 15:21:52 UTC", "tags": [ @@ -10125,14 +8260,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/make-your-houses-better", "publish_date": "23 February 2022 18:40:23 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -10147,16 +8278,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/medieval-madness", "publish_date": "22 February 2022 15:55:46 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -10171,11 +8296,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-18-2-pre-release-2", "publish_date": "23 February 2022 16:34:17 UTC", "tags": [ @@ -10207,14 +8328,10 @@ "tile_size": "2x2", "title": "New Challengers Approach in the World Warrior Skin Pack " }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/world-warrior-skin-pack", "publish_date": "18 February 2022 18:00:01 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -10229,11 +8346,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-1-18-2-pre-release-1", "publish_date": "18 February 2022 16:36:46 UTC", "tags": [ @@ -10255,14 +8368,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/2021-global-build-challenge--peace-nature", "publish_date": "18 February 2022 22:58:11 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -10276,14 +8385,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/a-very-scary-snapshot", "publish_date": "17 February 2022 19:20:17 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -10297,16 +8402,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--spyglass", "publish_date": "17 February 2022 20:11:06 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -10321,11 +8420,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w07a", "publish_date": "16 February 2022 17:31:57 UTC", "tags": [ @@ -10355,14 +8450,10 @@ "tile_size": "2x1", "title": "The Father of the Video Game Cartridge " }, - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/the-father-video-game-cartridge", "publish_date": "15 February 2022 15:50:35 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -10376,14 +8467,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/a-cinematic-valentines-day", "publish_date": "14 February 2022 16:22:45 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -10398,14 +8485,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-update-1-18-10", "publish_date": "11 February 2022 17:59:56 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -10420,14 +8503,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--garden--back-roots", "publish_date": "11 February 2022 21:57:41 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -10450,16 +8529,10 @@ "tile_size": "1x2", "title": "Around the Block: Dripstone Caves" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--dripstone-caves", "publish_date": "10 February 2022 15:55:29 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -10474,14 +8547,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/life-hacks-1-17", "publish_date": "10 February 2022 17:11:55 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -10506,16 +8575,10 @@ "tile_size": "2x2", "title": "Realms Plus: February" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-february-2022", "publish_date": "09 February 2022 18:00:02 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -10530,11 +8593,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-22w06a", "publish_date": "09 February 2022 17:19:55 UTC", "tags": [ @@ -10566,16 +8625,10 @@ "tile_size": "4x2", "title": "Join the Festival of Frost" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/join-festival-frost", "publish_date": "08 February 2022 16:45:20 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -10598,16 +8651,10 @@ "tile_size": "2x1", "title": "Minecraft x PUMA" }, - "categories": [ - "Merch", - "Marketplace" - ], + "categories": ["Merch", "Marketplace"], "article_url": "/zh-hans/article/minecraft-x-puma", "publish_date": "09 February 2022 08:21:36 UTC", - "tags": [ - "minecraft:stockholm/merch", - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/merch", "minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -10621,14 +8668,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-now-february", "publish_date": "05 February 2022 17:45:01 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -10642,16 +8685,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/last-call-voluntarily-migrate-java-accounts", "publish_date": "07 February 2022 12:54:17 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -10666,16 +8703,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--coral", "publish_date": "03 February 2022 15:50:01 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -10690,11 +8721,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-22w05a", "publish_date": "02 February 2022 16:56:46 UTC", "tags": [ @@ -10725,14 +8752,10 @@ "tile_size": "1x2", "title": "Happy Year of the Tiger" }, - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/happy-year-tiger", "publish_date": "02 February 2022 15:55:03 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -10755,14 +8778,10 @@ "tile_size": "2x2", "title": "Lunar New Year is here" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/lunar-new-year-here", "publish_date": "04 February 2022 08:53:51 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -10785,16 +8804,10 @@ "tile_size": "2x2", "title": "New on Java Realms: Getting Old" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-getting-old", "publish_date": "03 February 2022 13:56:45 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -10809,16 +8822,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--sugar", "publish_date": "27 January 2022 15:50:29 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -10832,11 +8839,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Java", - "Realms Plus" - ], + "categories": ["News", "Realms Java", "Realms Plus"], "article_url": "/zh-hans/article/important-realms-update", "publish_date": "27 January 2022 08:04:38 UTC", "tags": [ @@ -10858,14 +8861,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/build----a-circle-", "publish_date": "25 January 2022 22:14:25 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -10879,14 +8878,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/the-haven-trials-suyi-davies", "publish_date": "21 January 2022 15:50:03 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -10901,14 +8896,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--abandoned-arctic-outpost", "publish_date": "22 January 2022 00:34:53 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -10933,16 +8924,10 @@ "tile_size": "1x2", "title": "Around the Block: Beach" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--beach", "publish_date": "20 January 2022 18:38:58 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -10957,11 +8942,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-22w03a", "publish_date": "19 January 2022 16:55:06 UTC", "tags": [ @@ -10991,14 +8972,10 @@ "tile_size": "2x1", "title": "Adventures in English with Cambridge available for Bedrock Edition" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/adventures-english-cambridge-available-bedrock-edition", "publish_date": "04 February 2022 09:03:21 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -11023,14 +9000,10 @@ "tile_size": "2x1", "title": "Creative vs. Survival mode" }, - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/creative-vs-survival-mode", "publish_date": "14 March 2023 10:18:44 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -11044,16 +9017,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--spawner", "publish_date": "14 January 2022 13:51:08 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -11068,14 +9035,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/caves---cliffs-update--part-ii-dev-q-a", "publish_date": "13 January 2022 20:25:25 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -11100,16 +9063,10 @@ "tile_size": "2x2", "title": "Realms Plus: January" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-january-2022", "publish_date": "12 January 2022 17:55:42 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -11132,16 +9089,10 @@ "tile_size": "2x2", "title": "New Year\u2019s Celebration: Grave Danger" }, - "categories": [ - "Marketplace", - "New Year's Celebration" - ], + "categories": ["Marketplace", "New Year's Celebration"], "article_url": "/zh-hans/article/new-years-celebration-grave-danger", "publish_date": "11 January 2022 17:55:02 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/new-years-celebration" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/new-years-celebration"] }, { "default_tile": { @@ -11156,14 +9107,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/tutorial--28-useful-minecraft-tips", "publish_date": "11 January 2022 22:20:29 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -11186,14 +9133,10 @@ "tile_size": "2x2", "title": "Minecraft Now is back" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-now-back", "publish_date": "10 January 2022 13:41:06 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -11207,16 +9150,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--spawn-egg", "publish_date": "06 January 2022 15:45:06 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -11239,16 +9176,10 @@ "tile_size": "2x2", "title": "New Year\u2019s Celebration: Axolotl Islands Map" }, - "categories": [ - "Marketplace", - "New Year's Celebration" - ], + "categories": ["Marketplace", "New Year's Celebration"], "article_url": "/zh-hans/article/new-year-s-celebration-axolotl-islands-map", "publish_date": "04 January 2022 18:04:49 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/new-years-celebration" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/new-years-celebration"] }, { "default_tile": { @@ -11262,14 +9193,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/minecraft-x-aape", "publish_date": "24 January 2022 08:07:00 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -11292,14 +9219,10 @@ "tile_size": "1x2", "title": "The Minecraft.net awards " }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/the-minecraft-net-awards", "publish_date": "30 December 2021 17:50:42 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -11314,16 +9237,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--lush-caves", "publish_date": "30 December 2021 15:50:02 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -11338,14 +9255,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/community-roundup--allay-fanart", "publish_date": "30 December 2021 20:39:49 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -11368,16 +9281,10 @@ "tile_size": "2x2", "title": "New Year\u2019s Celebration: Doggie Daycare\u202f" }, - "categories": [ - "Marketplace", - "New Year's Celebration" - ], + "categories": ["Marketplace", "New Year's Celebration"], "article_url": "/zh-hans/article/new-years-celebration-doggie-daycare", "publish_date": "28 December 2021 17:50:47 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/new-years-celebration" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/new-years-celebration"] }, { "default_tile": { @@ -11392,14 +9299,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/tutorial--four-machine-builds", "publish_date": "29 December 2021 01:24:59 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -11414,14 +9317,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--steampunk-airship", "publish_date": "29 December 2021 01:25:06 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -11436,16 +9335,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--barrel", "publish_date": "23 December 2021 16:00:01 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -11468,16 +9361,10 @@ "tile_size": "2x2", "title": "New Year\u2019s Celebration: Howl of the Wild" }, - "categories": [ - "Marketplace", - "New Year's Celebration" - ], + "categories": ["Marketplace", "New Year's Celebration"], "article_url": "/zh-hans/article/new-years-celebration-howl-wild", "publish_date": "28 December 2021 18:50:09 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/new-years-celebration" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/new-years-celebration"] }, { "default_tile": { @@ -11492,14 +9379,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/festive-community-skins-", "publish_date": "22 December 2021 18:21:40 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -11513,16 +9396,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "New Year's Celebration" - ], + "categories": ["Marketplace", "New Year's Celebration"], "article_url": "/zh-hans/article/new-years-celebration-caves---cliffs-explorers", "publish_date": "21 December 2021 17:50:30 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/new-years-celebration" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/new-years-celebration"] }, { "default_tile": { @@ -11547,14 +9424,10 @@ "tile_size": "1x2", "title": "Happy Holidays from Minecraft.net" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/happy-holidays-minecraft-net", "publish_date": "22 December 2021 13:12:57 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -11569,14 +9442,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/team-build-challenge--winter-getaway", "publish_date": "17 December 2021 17:06:53 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -11599,14 +9468,10 @@ "tile_size": "2x2", "title": "New on Java Realms: Java Realms Day Special" }, - "categories": [ - "Realms Java" - ], + "categories": ["Realms Java"], "article_url": "/zh-hans/article/new-java-realms-java-realms-day-special", - "publish_date": "17 December 2021 13:20:40 UTC", - "tags": [ - "minecraft:stockholm/realms-java" - ] + "publish_date": "17 December 2021 13:20:40 UTC", + "tags": ["minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -11620,14 +9485,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/a-more-festive-gift-guide", "publish_date": "16 December 2021 18:09:11 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -11642,16 +9503,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--potato", "publish_date": "16 December 2021 15:45:50 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -11674,16 +9529,10 @@ "tile_size": "2x2", "title": "Minecraft Beta 1.18.10.24" }, - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-beta-1-18-10-24", "publish_date": "15 December 2021 16:45:09 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -11706,14 +9555,10 @@ "tile_size": "4x2", "title": "YouTube Celebrates the Minecraft Community" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/youtube-celebrates-minecraft-community", "publish_date": "15 December 2021 18:02:55 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -11736,16 +9581,10 @@ "tile_size": "2x2", "title": "Let the New Year\u2019s Celebration Begin" }, - "categories": [ - "News", - "New Year's Celebration" - ], + "categories": ["News", "New Year's Celebration"], "article_url": "/zh-hans/article/let-new-years-celebration-begin", "publish_date": "16 December 2021 08:09:12 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/new-years-celebration" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/new-years-celebration"] }, { "default_tile": { @@ -11760,14 +9599,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/tutorial--easy-starter-bases-survival-mode", "publish_date": "14 December 2021 22:23:27 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -11781,14 +9616,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/the-minecraft-master-chief-mash-up-pack-back", "publish_date": "13 December 2021 17:26:35 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -11802,16 +9633,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/important-message--security-vulnerability-java-edition", "publish_date": "14 December 2021 06:03:07 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -11826,16 +9651,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--windswept-hills", "publish_date": "09 December 2021 15:55:36 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -11850,11 +9669,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/minecraft-java-edition-1-18-1", "publish_date": "12 August 2022 14:34:48 UTC", "tags": [ @@ -11884,14 +9699,10 @@ "tile_size": "2x2", "title": "It\u2019s almost time for Minecraft Now" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/it-s-almost-time-minecraft-now", "publish_date": "08 December 2021 15:50:22 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -11906,14 +9717,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/community-roundup--warden-fanart", "publish_date": "08 December 2021 17:25:08 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -11945,16 +9752,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-december", "publish_date": "14 December 2021 15:56:47 UTC", - "tags": [ - "minecraft:article/Marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:article/Marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -11969,11 +9770,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-18-1-release-candidate-1", "publish_date": "10 December 2021 04:11:44 UTC", "tags": [ @@ -11994,16 +9791,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Caves and Cliffs" - ], + "categories": ["Deep Dives", "Caves and Cliffs"], "article_url": "/zh-hans/article/caves---cliffs-part-ii-the-features", "publish_date": "03 December 2021 17:50:03 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/caves-and-cliffs" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -12026,16 +9817,10 @@ "tile_size": "1x2", "title": "Tower Scour" }, - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/tower-scour", "publish_date": "03 December 2021 15:55:40 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -12050,11 +9835,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-18-1-pre-release-1", "publish_date": "03 December 2021 14:29:00 UTC", "tags": [ @@ -12076,14 +9857,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/wdw-magic-kingdom-adventure-dlc--dev-q-a", "publish_date": "03 December 2021 20:12:10 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -12098,16 +9875,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--end-portal-frame", "publish_date": "02 December 2021 17:50:36 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -12130,14 +9901,10 @@ "tile_size": "2x2", "title": "MINECRAFT NOW IS COMING TO YOUTUBE" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-now-coming-youtube", "publish_date": "02 December 2021 16:00:41 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -12152,16 +9919,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/ocean-emotions", "publish_date": "01 December 2021 17:56:00 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -12176,14 +9937,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/tutorial--100-mini-builds", "publish_date": "01 December 2021 18:20:46 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -12208,11 +9965,7 @@ "tile_size": "2x2", "title": "Caves & Cliffs: Part II out today on Java" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/caves---cliffs--part-ii-out-today-java", "publish_date": "30 November 2021 16:22:35 UTC", "tags": [ @@ -12242,16 +9995,10 @@ "tile_size": "4x2", "title": "The Caves & Cliffs: Part II Update is here" }, - "categories": [ - "News", - "Caves and Cliffs" - ], + "categories": ["News", "Caves and Cliffs"], "article_url": "/zh-hans/article/the-caves---cliffs-part-ii-update-here", "publish_date": "30 November 2021 16:09:33 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/caves-and-cliffs" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -12266,11 +10013,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/caves---cliffs--part-ii-out-today-bedrock", "publish_date": "01 December 2021 16:57:25 UTC", "tags": [ @@ -12292,14 +10035,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/-caves---cliffs-part-ii--prep-guide", "publish_date": "29 November 2021 22:13:21 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -12322,16 +10061,10 @@ "tile_size": "2x1", "title": "Cloudy Climb explained" }, - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/cloudy-climb-explained", "publish_date": "26 November 2021 16:00:37 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -12356,11 +10089,7 @@ "tile_size": "2x2", "title": "New on Java Realms: Everyday I\u2019m Puzzlin\u2019" }, - "categories": [ - "News", - "Realms Java", - "Minecraft" - ], + "categories": ["News", "Realms Java", "Minecraft"], "article_url": "/zh-hans/article/new-java-realms--everyday-i-m-puzzlin-", "publish_date": "26 November 2021 13:00:18 UTC", "tags": [ @@ -12382,16 +10111,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--blaze-powder", "publish_date": "25 November 2021 16:00:05 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -12406,11 +10129,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-1-18-release-candidate-1", "publish_date": "29 November 2021 14:13:35 UTC", "tags": [ @@ -12431,14 +10150,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/block-friday-back", "publish_date": "23 November 2021 17:55:40 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -12453,14 +10168,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--autumn-fairy-garden", "publish_date": "23 November 2021 19:13:18 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -12475,11 +10186,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-18-pre-release-6", "publish_date": "24 November 2021 15:35:39 UTC", "tags": [ @@ -12501,16 +10208,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--savanna", "publish_date": "18 November 2021 17:45:01 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -12524,16 +10225,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/cloudy-climb-launching-dec-14", "publish_date": "22 November 2021 11:19:02 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -12548,14 +10243,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/community-roundup--the-wild-update-fanart", "publish_date": "18 November 2021 21:54:00 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -12578,16 +10269,10 @@ "tile_size": "4x2", "title": "Caves & Cliffs Update: Part II is coming" }, - "categories": [ - "News", - "Caves and Cliffs" - ], + "categories": ["News", "Caves and Cliffs"], "article_url": "/zh-hans/article/caves---cliffs-update-part-ii-coming", "publish_date": "17 November 2021 15:59:14 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/caves-and-cliffs" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -12601,14 +10286,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/minecraft-x-walt-disney-world-magic-kingdom-adventure-dlc", "publish_date": "17 November 2021 08:46:19 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -12623,14 +10304,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/tutorial--tips-for-landscaping-and-terraforming", "publish_date": "16 November 2021 20:05:33 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -12645,11 +10322,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-1-18-pre-release-2", "publish_date": "19 November 2021 16:18:57 UTC", "tags": [ @@ -12679,16 +10352,10 @@ "tile_size": "2x1", "title": "What do you see?" }, - "categories": [ - "Deep Dives", - "Caves and Cliffs" - ], + "categories": ["Deep Dives", "Caves and Cliffs"], "article_url": "/zh-hans/article/what-do-you-see-", "publish_date": "15 November 2021 15:50:12 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/caves-and-cliffs" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -12711,16 +10378,10 @@ "tile_size": "2x1", "title": "How to be good at Minecraft" }, - "categories": [ - "Merch", - "Minecraft" - ], + "categories": ["Merch", "Minecraft"], "article_url": "/zh-hans/article/how-be-good-minecraft", "publish_date": "11 November 2021 17:50:52 UTC", - "tags": [ - "minecraft:stockholm/merch", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/merch", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -12735,11 +10396,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-1-18-pre-release-1", "publish_date": "11 November 2021 16:59:24 UTC", "tags": [ @@ -12760,16 +10417,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--ancient-debris", "publish_date": "11 November 2021 17:11:59 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -12783,16 +10434,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Caves and Cliffs" - ], + "categories": ["Deep Dives", "Caves and Cliffs"], "article_url": "/zh-hans/article/courageous-cave-crawling", "publish_date": "10 November 2021 15:50:15 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/caves-and-cliffs" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -12807,14 +10452,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--allay-sanctuary", "publish_date": "10 November 2021 17:32:20 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -12829,14 +10470,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/free-character-creator-items", "publish_date": "09 November 2021 15:50:56 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -12851,14 +10488,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/playing-together-and-staying-safe", "publish_date": "09 November 2021 22:26:17 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -12872,14 +10505,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/save-future-through-timecraft", "publish_date": "08 November 2021 15:50:13 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -12893,16 +10522,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--sweet-berries", "publish_date": "04 November 2021 15:52:06 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -12917,11 +10540,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w44a", "publish_date": "03 November 2021 17:54:16 UTC", "tags": [ @@ -12951,14 +10570,10 @@ "tile_size": "2x1", "title": "The Great Cave Quiz" }, - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/the-great-cave-quiz", "publish_date": "03 November 2021 16:08:09 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -12973,14 +10588,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/bang-gong", "publish_date": "03 November 2021 21:28:22 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -12994,16 +10605,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-november", "publish_date": "02 November 2021 17:55:47 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -13026,16 +10631,10 @@ "tile_size": "2x2", "title": "Minecraft is now included in Game Pass for PC! " }, - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-now-included-game-pass-pc-", "publish_date": "02 November 2021 14:55:53 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -13050,14 +10649,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/spooky-dungeons-fan-art", "publish_date": "29 October 2021 21:27:19 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -13072,14 +10667,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-challenge--spooktacular-surprises", "publish_date": "29 October 2021 21:04:30 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -13093,16 +10684,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-the-raven", "publish_date": "29 October 2021 12:27:56 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -13116,16 +10701,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--frozen-ocean", "publish_date": "28 October 2021 15:31:41 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -13140,11 +10719,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w43a", "publish_date": "27 October 2021 20:34:55 UTC", "tags": [ @@ -13166,14 +10741,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/team-build-challenge--halloween", "publish_date": "27 October 2021 20:03:44 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -13196,16 +10767,10 @@ "tile_size": "2x1", "title": "Bedrock or Java Edition" }, - "categories": [ - "Guides", - "Minecraft" - ], + "categories": ["Guides", "Minecraft"], "article_url": "/zh-hans/article/java-or-bedrock-edition", "publish_date": "12 August 2022 14:34:56 UTC", - "tags": [ - "minecraft:stockholm/guides", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/guides", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -13228,14 +10793,10 @@ "tile_size": "2x1", "title": "Marketplace is haunted" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/-marketplace-haunted", "publish_date": "28 October 2021 17:19:02 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -13250,14 +10811,10 @@ }, "articleLang": "en-us", "primary_category": "Fan Art", - "categories": [ - "Fan Art" - ], + "categories": ["Fan Art"], "article_url": "/zh-hans/article/spooky-community-skins-", "publish_date": "28 October 2021 21:22:44 UTC", - "tags": [ - "minecraft:redmond/fan-art" - ] + "tags": ["minecraft:redmond/fan-art"] }, { "default_tile": { @@ -13271,14 +10828,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/city-bridge", "publish_date": "22 October 2021 14:50:57 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds" - ] + "tags": ["minecraft:stockholm/minecraft-builds"] }, { "default_tile": { @@ -13292,14 +10845,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/-the-magic-kuma--eystreem", "publish_date": "27 October 2021 23:47:54 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -13324,11 +10873,7 @@ "tile_size": "2x2", "title": "Minecraft Beta 1.18.0.22" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-beta-1-18-0-22", "publish_date": "21 October 2021 16:42:43 UTC", "tags": [ @@ -13349,16 +10894,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--powder-snow", "publish_date": "21 October 2021 14:55:14 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -13373,14 +10912,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-live-afterparty-recap", "publish_date": "20 October 2021 23:37:54 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -13405,11 +10940,7 @@ "tile_size": "2x2", "title": "Minecraft Snapshot 21w42a" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w42a", "publish_date": "20 October 2021 15:05:02 UTC", "tags": [ @@ -13431,14 +10962,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/how-do-mega-builds", "publish_date": "19 October 2021 20:23:42 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -13452,14 +10979,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/the-secretlab-minecraft-edition-chair-here-", "publish_date": "18 October 2021 14:55:28 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -13482,16 +11005,10 @@ "tile_size": "4x2", "title": "Minecraft Live 2021: The Recap" }, - "categories": [ - "News", - "Minecraft Live 2021" - ], + "categories": ["News", "Minecraft Live 2021"], "article_url": "/zh-hans/article/minecraft-live-2021-the-recap", "publish_date": "18 October 2021 12:16:24 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft-live-2021" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft-live-2021"] }, { "default_tile": { @@ -13505,16 +11022,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft Live 2021" - ], + "categories": ["News", "Minecraft Live 2021"], "article_url": "/zh-hans/article/minecraft-live-2021-where-when-why-wow", "publish_date": "15 October 2021 14:58:53 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft-live-2021" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft-live-2021"] }, { "default_tile": { @@ -13528,16 +11039,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--glow-ink-sac", "publish_date": "14 October 2021 14:52:05 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -13562,16 +11067,10 @@ "tile_size": "2x2", "title": "Fear the Spookier Fall" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/fear-spookier-fall", "publish_date": "13 October 2021 16:59:57 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -13586,11 +11085,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w41a", "publish_date": "13 October 2021 16:01:29 UTC", "tags": [ @@ -13620,16 +11115,10 @@ "tile_size": "4x2", "title": "Mob Vote 2021: Copper Golem" }, - "categories": [ - "News", - "Minecraft Live 2021" - ], + "categories": ["News", "Minecraft Live 2021"], "article_url": "/zh-hans/article/mob-vote-2021-copper-golem", "publish_date": "12 August 2022 14:34:29 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft-live-2021" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft-live-2021"] }, { "default_tile": { @@ -13644,14 +11133,10 @@ }, "articleLang": "en-us", "primary_category": "Events", - "categories": [ - "Events" - ], + "categories": ["Events"], "article_url": "/zh-hans/article/how-get-most-out-your-minecraft-live-experience", "publish_date": "15 October 2021 16:58:09 UTC", - "tags": [ - "minecraft:redmond/events" - ] + "tags": ["minecraft:redmond/events"] }, { "default_tile": { @@ -13674,16 +11159,10 @@ "tile_size": "4x2", "title": "Mob Vote 2021: Glare" }, - "categories": [ - "News", - "Minecraft Live 2021" - ], + "categories": ["News", "Minecraft Live 2021"], "article_url": "/zh-hans/article/mob-vote-2021-glare", "publish_date": "11 October 2021 14:59:04 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft-live-2021" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft-live-2021"] }, { "default_tile": { @@ -13706,16 +11185,10 @@ "tile_size": "4x2", "title": "Mob Vote 2021: Allay" }, - "categories": [ - "News", - "Minecraft Live 2021" - ], + "categories": ["News", "Minecraft Live 2021"], "article_url": "/zh-hans/article/mob-vote-2021-allay", "publish_date": "12 August 2022 14:34:13 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft-live-2021" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft-live-2021"] }, { "default_tile": { @@ -13730,16 +11203,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--tinted-glass", "publish_date": "07 October 2021 15:00:57 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -13754,11 +11221,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w40a", "publish_date": "07 October 2021 15:02:38 UTC", "tags": [ @@ -13780,14 +11243,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/bi-monthly-build-challenge--fantasy-book", "publish_date": "07 October 2021 00:06:33 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -13810,16 +11269,10 @@ "tile_size": "2x1", "title": "Realms Plus: October" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-october", "publish_date": "21 October 2021 07:22:29 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -13834,14 +11287,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/tridents-everyone-", "publish_date": "05 October 2021 19:55:52 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -13864,14 +11313,10 @@ "tile_size": "2x1", "title": "The Minecraft Spookyfest is upon us!" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/the-minecraft-spookyfest-upon-us-", "publish_date": "06 October 2021 08:14:03 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -13885,16 +11330,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--candle", "publish_date": "30 September 2021 14:50:26 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -13909,11 +11348,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w39a", "publish_date": "29 September 2021 17:46:57 UTC", "tags": [ @@ -13935,14 +11370,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/bi-monthly-build-challenge--land-of-the-plants-", "publish_date": "15 October 2021 17:00:30 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -13956,14 +11387,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/mob-squad", "publish_date": "28 September 2021 14:50:18 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -13986,14 +11413,10 @@ "tile_size": "2x2", "title": "Your Pet Parade Champion" }, - "categories": [ - "Dungeons" - ], + "categories": ["Dungeons"], "article_url": "/zh-hans/article/your-pet-parade-champion", "publish_date": "27 September 2021 14:55:01 UTC", - "tags": [ - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -14008,11 +11431,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w38a", "publish_date": "23 September 2021 15:14:59 UTC", "tags": [ @@ -14034,16 +11453,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--bamboo-jungle", "publish_date": "24 September 2021 07:55:46 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -14058,11 +11471,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-beta-1-17-40-21", "publish_date": "22 September 2021 16:57:54 UTC", "tags": [ @@ -14083,14 +11492,10 @@ }, "articleLang": "en-us", "primary_category": "Dungeons", - "categories": [ - "Dungeons" - ], + "categories": ["Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons-now-steam", "publish_date": "22 September 2021 15:57:10 UTC", - "tags": [ - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -14105,14 +11510,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/bi-monthly-build-challenge--revamped-pillager-tower-", "publish_date": "15 October 2021 17:02:26 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -14127,14 +11528,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/tutorial--cottagecore-decor", "publish_date": "15 October 2021 17:01:33 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -14157,14 +11554,10 @@ "tile_size": "2x1", "title": "Play a map made for mobile" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/play-map-made-mobile", "publish_date": "22 September 2021 10:36:39 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -14179,14 +11572,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/welcome-your-dream-house", "publish_date": "15 October 2021 17:04:07 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -14211,11 +11600,7 @@ "tile_size": "2x2", "title": "Minecraft Snapshot 21w37a" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w37a", "publish_date": "15 September 2021 16:45:31 UTC", "tags": [ @@ -14236,14 +11621,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/sonic-the-hedgehog-dlc--dev-q-a", "publish_date": "15 September 2021 14:49:59 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -14258,14 +11639,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/bi-monthly-build-challenge--pirate-cave", "publish_date": "15 October 2021 17:05:14 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -14290,11 +11667,7 @@ "tile_size": "2x2", "title": "Minecraft Beta 1.17.40.20" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-beta-1-17-40-20", "publish_date": "12 August 2022 14:35:00 UTC", "tags": [ @@ -14314,17 +11687,11 @@ "title": "Block of the Week: Tuff" }, "articleLang": "en-us", - "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Caves and Cliffs" - ], - "article_url": "/zh-hans/article/block-week--tuff", - "publish_date": "10 September 2021 09:20:05 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/caves-and-cliffs" - ] + "primary_category": "Deep Dives", + "categories": ["Deep Dives", "Caves and Cliffs"], + "article_url": "/zh-hans/article/block-week--tuff", + "publish_date": "10 September 2021 09:20:05 UTC", + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -14338,14 +11705,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/tutorial--bedrock-beginner-farms", "publish_date": "08 September 2021 17:20:41 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -14359,14 +11722,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/bi-monthly-build-challenge--olympic-stadium-", "publish_date": "08 September 2021 23:01:32 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -14389,16 +11748,10 @@ "tile_size": "2x1", "title": "Realms Plus: September" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-september", "publish_date": "07 September 2021 16:55:21 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -14421,16 +11774,10 @@ "tile_size": "4x2", "title": "Minecraft Live is Back! " }, - "categories": [ - "News", - "Minecraft Live 2021" - ], + "categories": ["News", "Minecraft Live 2021"], "article_url": "/zh-hans/article/minecraft-live-back", "publish_date": "02 September 2021 14:59:03 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft-live-2021" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft-live-2021"] }, { "default_tile": { @@ -14444,14 +11791,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/bi-monthly-build-challenge--turtles-", "publish_date": "01 September 2021 23:02:56 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -14465,14 +11808,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/back-school-maps", "publish_date": "31 August 2021 19:45:26 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -14486,16 +11825,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-keepin-up-with-the-pillagers", "publish_date": "30 August 2021 09:24:20 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -14509,14 +11842,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/taking-inventory-azalea", "publish_date": "26 August 2021 14:45:01 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -14531,11 +11860,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-beta-1-17-30-23", "publish_date": "12 August 2022 14:34:32 UTC", "tags": [ @@ -14565,16 +11890,10 @@ "tile_size": "2x2", "title": "Introducing mobile-first maps" }, - "categories": [ - "News", - "Marketplace" - ], + "categories": ["News", "Marketplace"], "article_url": "/zh-hans/article/introducing-mobile-first-maps", "publish_date": "24 August 2021 16:55:16 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -14588,14 +11907,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/pride-2021-thank-you-year", "publish_date": "24 August 2021 14:45:12 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -14618,14 +11933,10 @@ "tile_size": "2x2", "title": "Minecraft Dungeons is coming to Steam" }, - "categories": [ - "Dungeons" - ], + "categories": ["Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons-coming-steam", "publish_date": "23 August 2021 14:57:18 UTC", - "tags": [ - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -14639,14 +11950,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/around-block-mushroom-fields", "publish_date": "19 August 2021 14:45:10 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -14660,14 +11967,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/your-friendly-neighborhood-cow-crater", "publish_date": "18 August 2021 21:04:01 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -14690,14 +11993,10 @@ "tile_size": "2x2", "title": "THE PETS OF MINECRAFT DUNGEONS FACE OFF" }, - "categories": [ - "Dungeons" - ], + "categories": ["Dungeons"], "article_url": "/zh-hans/article/the-pets-minecraft-dungeons-face-off", "publish_date": "17 August 2021 14:45:53 UTC", - "tags": [ - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -14711,14 +12010,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/block-week--soul-soil", "publish_date": "12 August 2021 14:45:07 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -14732,14 +12027,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minions-x-minecraft-dlc--dev-q-a", "publish_date": "13 August 2021 16:29:13 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -14753,14 +12044,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/pride-2021-community-skins-submissions", "publish_date": "11 August 2021 14:50:41 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds" - ] + "tags": ["minecraft:stockholm/minecraft-builds"] }, { "default_tile": { @@ -14774,14 +12061,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/castle-in-the-sky", "publish_date": "09 August 2021 14:50:52 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds" - ] + "tags": ["minecraft:stockholm/minecraft-builds"] }, { "default_tile": { @@ -14795,14 +12078,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/students-battle-better-city-minecraft-espn-", "publish_date": "06 August 2021 17:44:00 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -14825,16 +12104,10 @@ "tile_size": "2x1", "title": "Realms Plus: August" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-august", "publish_date": "12 August 2021 06:56:03 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -14848,14 +12121,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/taking-inventory-flower-pot", "publish_date": "05 August 2021 14:50:53 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -14869,14 +12138,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/bi-monthly-build-challenge--trains-", "publish_date": "13 August 2021 15:44:09 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -14900,14 +12165,10 @@ "tile_size": "4x2", "title": "It takes a Village" }, - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/it-takes-village", "publish_date": "04 August 2021 14:50:02 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -14930,14 +12191,10 @@ "tile_size": "2x2", "title": "Join the Major League Baseball Home Run Derby®" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/join-major-league-baseball-home-run-derby", "publish_date": "03 August 2021 16:57:05 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -14951,14 +12208,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/check-out-record-breaking-survival-gold-farm-", "publish_date": "13 August 2021 15:43:46 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -14972,14 +12225,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/spot-the-difference--summer-edition", "publish_date": "13 August 2021 15:44:34 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -14994,14 +12243,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/around-block--ice-spikes", "publish_date": "29 July 2021 14:55:03 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -15024,16 +12269,10 @@ "tile_size": "4x2", "title": "Echoing Void has arrived" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/echoing-void-has-arrived", "publish_date": "28 July 2021 14:57:00 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -15058,14 +12297,10 @@ "tile_size": "2x1", "title": "New show alert: The Secrets of Minecraft" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/new-show-alert--the-secrets-minecraft", "publish_date": "26 July 2021 14:58:28 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -15088,16 +12323,10 @@ "tile_size": "1x2", "title": "Meet the Enderlings" }, - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/meet-enderlings", "publish_date": "25 July 2021 14:45:04 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -15111,14 +12340,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/minecraft-dungeons-oceans-fanart", "publish_date": "22 July 2021 16:34:33 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -15132,16 +12357,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--cartography-table", "publish_date": "22 July 2021 14:50:46 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -15155,14 +12374,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/caves---cliffs-pt--1-community-builds", "publish_date": "21 July 2021 20:24:21 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -15176,14 +12391,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/pride-2021-community-skins", "publish_date": "21 July 2021 14:55:01 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -15208,16 +12419,10 @@ "tile_size": "2x1", "title": "Exploring the End Wilds" }, - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/exploring-end-wilds", "publish_date": "18 July 2021 16:50:02 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -15231,14 +12436,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/illuminations-minions-minecraft-dlc-launches-today", "publish_date": "26 July 2021 06:45:21 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -15253,16 +12454,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--totem-undying", "publish_date": "16 July 2021 14:50:34 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -15276,14 +12471,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/bi-monthly-build-challenge--space-", "publish_date": "14 July 2021 20:40:36 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -15298,11 +12489,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-beta-1-17-10-22/minecraft-beta-1-17-20-22", "publish_date": "19 August 2022 07:36:30 UTC", "tags": [ @@ -15323,16 +12510,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--july0", "publish_date": "14 July 2021 23:53:10 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -15355,11 +12536,7 @@ "tile_size": "2x2", "title": "New world generation in Bedrock available for testing" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/new-world-generation-bedrock-available-testing", "publish_date": "12 November 2021 10:32:25 UTC", "tags": [ @@ -15391,11 +12568,7 @@ "tile_size": "2x2", "title": "New world generation in Java available for testing" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/new-world-generation-java-available-testing", "publish_date": "12 August 2022 14:35:15 UTC", "tags": [ @@ -15425,16 +12598,10 @@ "tile_size": "4x2", "title": "Echoing Void DLC coming to Dungeons" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/echoing-void-dlc-coming-dungeons", "publish_date": "17 July 2021 19:23:04 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -15459,16 +12626,10 @@ "tile_size": "2x2", "title": "Around the Block: Badlands" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--badlands", "publish_date": "08 July 2021 14:54:17 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -15482,14 +12643,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/the-dragon", "publish_date": "06 July 2021 14:55:04 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -15504,11 +12661,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-java-edition-1-17-1", "publish_date": "12 August 2022 14:34:16 UTC", "tags": [ @@ -15529,14 +12682,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/minecraft-dungeons-anniversary-fanart", "publish_date": "01 July 2021 22:59:16 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -15550,14 +12699,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/community-team-builds--pride", "publish_date": "01 July 2021 21:58:21 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -15571,16 +12716,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--moss", "publish_date": "01 July 2021 14:52:10 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -15595,11 +12734,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-1-17-1-release-candidate-1", "publish_date": "05 July 2021 15:11:32 UTC", "tags": [ @@ -15620,14 +12755,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/community-streamer-showcase--highlights-", "publish_date": "07 July 2021 17:13:49 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -15650,16 +12781,10 @@ "tile_size": "2x1", "title": "The Marketplace Summer Celebration sale is here!" }, - "categories": [ - "Marketplace", - "Summer Celebration" - ], + "categories": ["Marketplace", "Summer Celebration"], "article_url": "/zh-hans/article/the-marketplace-summer-celebration-sale-here", "publish_date": "29 June 2021 18:12:04 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/summer-celebration" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/summer-celebration"] }, { "default_tile": { @@ -15673,14 +12798,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/pride-2021-community-builds", "publish_date": "29 June 2021 16:05:48 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds" - ] + "tags": ["minecraft:stockholm/minecraft-builds"] }, { "default_tile": { @@ -15695,11 +12816,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-1-17-1-pre-release-2", "publish_date": "30 June 2021 16:08:56 UTC", "tags": [ @@ -15729,16 +12846,10 @@ "tile_size": "2x1", "title": "Who built it best?" }, - "categories": [ - "Deep Dives", - "Caves and Cliffs" - ], + "categories": ["Deep Dives", "Caves and Cliffs"], "article_url": "/zh-hans/article/who-built-it-best-", "publish_date": "24 June 2021 16:45:27 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/caves-and-cliffs" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -15752,16 +12863,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--slimeball", "publish_date": "24 June 2021 14:45:10 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -15784,14 +12889,10 @@ "tile_size": "4x2", "title": "Pride 2021: Studio Spotlights " }, - "categories": [ - "Events" - ], + "categories": ["Events"], "article_url": "/zh-hans/article/pride-2021-studio-spotlights", "publish_date": "23 June 2021 14:55:52 UTC", - "tags": [ - "minecraft:stockholm/events" - ] + "tags": ["minecraft:stockholm/events"] }, { "default_tile": { @@ -15814,14 +12915,10 @@ "tile_size": "2x1", "title": "Sonic the Hedgehog DLC is here" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/sonic-hedgehog-dlc-here", "publish_date": "16 July 2021 06:50:45 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -15836,11 +12933,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-1-17-1-pre-release-1", "publish_date": "18 June 2021 13:19:10 UTC", "tags": [ @@ -15870,16 +12963,10 @@ "tile_size": "2x1", "title": "New on Java Realms: The Realms Travel Agency" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-the-realms-travel-agency", "publish_date": "18 June 2021 12:47:55 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -15894,16 +12981,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--dark-forest", "publish_date": "17 June 2021 14:49:21 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -15917,14 +12998,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/caves---cliffs--part-i--dev-q-a", "publish_date": "17 June 2021 23:51:25 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -15947,14 +13024,10 @@ "tile_size": "4x2", "title": "Let the Pride Celebration Commence!" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/let-pride-celebration-commence", "publish_date": "16 June 2021 14:55:55 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -15968,14 +13041,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/bi-monthly-build-challenge--pride-", "publish_date": "16 June 2021 22:42:22 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -15989,14 +13058,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/check-out-good-trouble-juneteenth-", "publish_date": "15 June 2021 22:52:30 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -16010,14 +13075,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/get-started-gametest-framework-test-your-add-ons-and-worlds", "publish_date": "12 June 2021 03:16:33 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -16031,11 +13092,7 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["Deep Dives", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/block-week--dripstone", "publish_date": "10 June 2021 15:32:40 UTC", "tags": [ @@ -16056,14 +13113,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/ben-10-dlc--dev-q-a", "publish_date": "10 June 2021 18:15:04 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -16077,16 +13130,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch", - "Caves and Cliffs" - ], + "categories": ["Merch", "Caves and Cliffs"], "article_url": "/zh-hans/article/a-caves---cliffs-gift-guide", "publish_date": "10 June 2021 08:35:52 UTC", - "tags": [ - "minecraft:stockholm/merch", - "minecraft:stockholm/caves-and-cliffs" - ] + "tags": ["minecraft:stockholm/merch", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -16101,11 +13148,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-beta-1-17-10-22", "publish_date": "12 August 2022 14:35:25 UTC", "tags": [ @@ -16127,14 +13170,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/community-streamer-showcase-caves---cliffs--part-i-", "publish_date": "08 June 2021 16:16:14 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -16159,11 +13198,7 @@ "tile_size": "2x2", "title": "Caves & Cliffs: Part I Out Today on Bedrock" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/caves---cliffs--part-i-out-today-bedrock", "publish_date": "08 June 2021 15:27:43 UTC", "tags": [ @@ -16193,16 +13228,10 @@ "tile_size": "4x2", "title": "The Caves & Cliffs Update is here" }, - "categories": [ - "News", - "Caves and Cliffs" - ], + "categories": ["News", "Caves and Cliffs"], "article_url": "/zh-hans/article/the-caves-cliffs-update-here", "publish_date": "12 August 2022 14:34:24 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/caves-and-cliffs" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -16227,11 +13256,7 @@ "tile_size": "2x2", "title": "Caves & Cliffs: Part I out today on Java" }, - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/caves---cliffs--part-i-out-today-java", "publish_date": "12 August 2022 14:35:05 UTC", "tags": [ @@ -16253,11 +13278,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-17-release-candidate-1", "publish_date": "07 June 2021 12:23:43 UTC", "tags": [ @@ -16278,16 +13299,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--lightning-rod", "publish_date": "03 June 2021 16:50:14 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -16301,14 +13316,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/bi-monthly-build-challenge--birthday-cakes", "publish_date": "03 June 2021 20:34:49 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -16331,16 +13342,10 @@ "tile_size": "2x2", "title": "Dungeons Anniversary by numbers" }, - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/dungeons-anniversary-numbers", "publish_date": "04 June 2021 07:03:55 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -16354,16 +13359,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--june0", "publish_date": "02 June 2021 17:00:33 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -16377,16 +13376,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Caves and Cliffs" - ], + "categories": ["Deep Dives", "Caves and Cliffs"], "article_url": "/zh-hans/article/axolotl-adventures", "publish_date": "02 June 2021 14:57:44 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/caves-and-cliffs" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -16409,14 +13402,10 @@ "tile_size": "2x1", "title": "Ben 10 DLC comes to Minecraft" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/ben-10-dlc-comes-minecraft", "publish_date": "02 June 2021 16:50:07 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -16430,14 +13419,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/celebrating-aapihm---part-2", "publish_date": "31 May 2021 16:50:19 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -16460,11 +13445,7 @@ "tile_size": "2x2", "title": "Caves & Cliffs: Part I has a release date!" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/caves---cliffs--part-i-has-release-date-", "publish_date": "31 May 2021 14:57:09 UTC", "tags": [ @@ -16486,11 +13467,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-1-17-pre-release-2", "publish_date": "03 June 2021 18:16:21 UTC", "tags": [ @@ -16512,16 +13489,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/oh-captain--my-raid-captain", "publish_date": "28 May 2021 14:45:02 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -16544,16 +13515,10 @@ "tile_size": "2x1", "title": "Hidden Depths DLC Out Now" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/hidden-depths-dlc-out-now", "publish_date": "27 May 2021 17:55:38 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -16567,16 +13532,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Caves and Cliffs" - ], + "categories": ["Deep Dives", "Caves and Cliffs"], "article_url": "/zh-hans/article/block-week--copper-ore", "publish_date": "27 May 2021 15:01:38 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/caves-and-cliffs" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -16601,11 +13560,7 @@ "tile_size": "2x1", "title": "Minecraft 1.17 Pre-Release 1" }, - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-17-pre-release-1", "publish_date": "27 May 2021 13:35:44 UTC", "tags": [ @@ -16626,16 +13581,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Caves and Cliffs" - ], + "categories": ["Deep Dives", "Caves and Cliffs"], "article_url": "/zh-hans/article/the-legend-screaming-goat", "publish_date": "25 May 2021 14:55:23 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/caves-and-cliffs" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/caves-and-cliffs"] }, { "default_tile": { @@ -16650,14 +13599,10 @@ }, "articleLang": "en-us", "primary_category": "Events", - "categories": [ - "Events" - ], + "categories": ["Events"], "article_url": "/zh-hans/article/minecraft-community-celebrates-12-years-creating-together", "publish_date": "21 May 2021 17:28:36 UTC", - "tags": [ - "minecraft:redmond/events" - ] + "tags": ["minecraft:redmond/events"] }, { "default_tile": { @@ -16671,16 +13616,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-don-t-lose-yourself", "publish_date": "21 May 2021 11:24:52 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -16694,11 +13633,7 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["Deep Dives", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/taking-inventory--amethyst-shard", "publish_date": "20 May 2021 14:47:33 UTC", "tags": [ @@ -16720,14 +13655,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/bi-monthly-build-challenge--end-cities-", "publish_date": "19 May 2021 19:51:54 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -16742,11 +13673,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w20a", "publish_date": "20 May 2021 08:09:26 UTC", "tags": [ @@ -16776,16 +13703,10 @@ "tile_size": "2x1", "title": "Minecraft Dungeons turns one " }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons-turns-one", "publish_date": "18 May 2021 14:57:50 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -16808,14 +13729,10 @@ "tile_size": "4x2", "title": "Celebrating AAPIHM: Part 1" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/celebrating-aapihm--part-1", "publish_date": "17 May 2021 14:50:19 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -16830,16 +13747,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/lost-labyrinth", "publish_date": "17 May 2021 08:41:37 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -16853,16 +13764,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--snowy-beach", "publish_date": "12 May 2021 12:45:52 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -16877,11 +13782,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w19a", "publish_date": "12 May 2021 12:09:23 UTC", "tags": [ @@ -16911,16 +13812,10 @@ "tile_size": "2x1", "title": "DreamWorks How to Train Your Dragon DLC" }, - "categories": [ - "News", - "Marketplace" - ], + "categories": ["News", "Marketplace"], "article_url": "/zh-hans/article/dreamworks-how-train-your-dragon-dlc", "publish_date": "11 May 2021 16:58:01 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -16935,16 +13830,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--blackstone", "publish_date": "11 May 2021 07:01:34 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -16967,16 +13856,10 @@ "tile_size": "2x1", "title": "HIDDEN DEPTHS DLC COMING TO DUNGEONS " }, - "categories": [ - "News", - "Dungeons" - ], - "article_url": "/zh-hans/article/hidden-depths-dlc-coming-to-dungeons", - "publish_date": "12 May 2021 10:18:27 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "categories": ["News", "Dungeons"], + "article_url": "/zh-hans/article/hidden-depths-dlc-coming-to-dungeons", + "publish_date": "12 May 2021 10:18:27 UTC", + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -16991,14 +13874,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/new-technical-content-and-tutorials-creators-", "publish_date": "07 May 2021 20:16:53 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -17013,16 +13892,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--item-frame", "publish_date": "06 May 2021 16:49:19 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -17037,11 +13910,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w18a", "publish_date": "06 May 2021 06:39:25 UTC", "tags": [ @@ -17063,16 +13932,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/dungeons-cloud-saves-out-now", "publish_date": "29 March 2023 20:14:37 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -17095,14 +13958,10 @@ "tile_size": "4x2", "title": "Minecraft Celebrates Asian American Pacific Islander Heritage Month " }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/aapihm", "publish_date": "03 May 2021 14:52:49 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -17116,16 +13975,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--honeycomb", "publish_date": "29 April 2021 14:50:29 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -17140,11 +13993,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Caves and Cliffs", - "Minecraft" - ], + "categories": ["News", "Caves and Cliffs", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-21w17a", "publish_date": "28 April 2021 14:27:41 UTC", "tags": [ @@ -17165,16 +14014,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--swamp", "publish_date": "23 April 2021 14:55:57 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -17188,14 +14031,10 @@ }, "articleLang": "en-us", "primary_category": "Events", - "categories": [ - "Events" - ], + "categories": ["Events"], "article_url": "/zh-hans/article/earth-day", "publish_date": "22 April 2021 13:07:48 UTC", - "tags": [ - "minecraft:stockholm/events" - ] + "tags": ["minecraft:stockholm/events"] }, { "default_tile": { @@ -17209,14 +14048,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/community-team-builds--sustainability", "publish_date": "27 April 2021 18:25:01 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -17231,11 +14066,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w16a", "publish_date": "21 April 2021 17:35:15 UTC", "tags": [ @@ -17257,11 +14088,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-changelog-1-17-0-50", "publish_date": "21 April 2021 15:45:14 UTC", "tags": [ @@ -17283,11 +14110,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w15a", "publish_date": "14 April 2021 15:05:09 UTC", "tags": [ @@ -17317,16 +14140,10 @@ "tile_size": "4x2", "title": "A Caves & Cliffs announcement" }, - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/a-caves---cliffs-announcement", "publish_date": "14 April 2021 14:57:53 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -17340,16 +14157,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Realms Java" - ], + "categories": ["Deep Dives", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-get-rich-quick", "publish_date": "09 April 2021 14:23:32 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -17363,16 +14174,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--chestplate", "publish_date": "08 April 2021 17:09:32 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -17387,11 +14192,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w14a", "publish_date": "07 April 2021 14:49:12 UTC", "tags": [ @@ -17421,16 +14222,10 @@ "tile_size": "2x2", "title": "Realms Plus: April" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-april", "publish_date": "06 April 2021 16:57:17 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -17444,14 +14239,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/introducing-minecraft-plus", "publish_date": "01 April 2021 14:57:27 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -17476,11 +14267,7 @@ "tile_size": "2x2", "title": "Minecraft Snapshot 21w13a" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w13a", "publish_date": "31 March 2021 17:11:31 UTC", "tags": [ @@ -17512,11 +14299,7 @@ "tile_size": "2x2", "title": "Minecraft Changelog 1.16.230.52" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-changelog-1-16-230-52", "publish_date": "31 March 2021 15:45:11 UTC", "tags": [ @@ -17546,14 +14329,10 @@ "tile_size": "2x1", "title": "Spring has sprung a sale" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/spring-has-sprung-sale", "publish_date": "31 March 2021 18:00:00 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -17567,16 +14346,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--desert-lakes", "publish_date": "30 March 2021 14:56:56 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -17590,16 +14363,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--netherite-scrap", "publish_date": "25 March 2021 15:47:51 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -17613,14 +14380,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch" - ], + "categories": ["Merch"], "article_url": "/zh-hans/article/spring-gift-giving-guide", "publish_date": "23 March 2021 16:00:59 UTC", - "tags": [ - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/merch"] }, { "default_tile": { @@ -17645,16 +14408,10 @@ "tile_size": "2x2", "title": "Speeding through Dungeons" }, - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/speeding-through-dungeons", "publish_date": "22 March 2021 15:59:30 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -17669,11 +14426,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-changelog-1-16-220-52", "publish_date": "19 March 2021 16:28:49 UTC", "tags": [ @@ -17703,16 +14456,10 @@ "tile_size": "1x2", "title": "New on Java Realms: Writer\u2019s Block" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-writer-s-block", "publish_date": "19 March 2021 13:30:44 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -17727,11 +14474,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w11a", "publish_date": "17 March 2021 15:53:22 UTC", "tags": [ @@ -17763,11 +14506,7 @@ "tile_size": "2x2", "title": "RTXcellent!" }, - "categories": [ - "Minecraft Builds", - "Minecraft", - "Ray tracing" - ], + "categories": ["Minecraft Builds", "Minecraft", "Ray tracing"], "article_url": "/zh-hans/article/rtxcellent", "publish_date": "26 May 2021 14:46:59 UTC", "tags": [ @@ -17788,16 +14527,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--planks", "publish_date": "11 March 2021 15:50:44 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -17812,16 +14545,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/important-news-regarding-minecraft-android-and-firetv", "publish_date": "12 March 2021 17:27:05 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -17846,11 +14573,7 @@ "tile_size": "2x2", "title": "Minecraft Snapshot 21w10a" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w10a", "publish_date": "11 March 2021 07:54:14 UTC", "tags": [ @@ -17880,14 +14603,10 @@ "tile_size": "2x1", "title": "Minecraft x Uniqlo Collaboration \u2013 Volume 2" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/minecraft-x-uniqlo-collaboration---volume-2", "publish_date": "09 March 2021 17:56:00 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -17901,16 +14620,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/a-briefish-history-nether", "publish_date": "08 March 2021 15:55:17 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -17924,16 +14637,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons-going-arcade", "publish_date": "05 March 2021 16:01:15 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -17947,16 +14654,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/new-mountain-generation-now-bedrock-beta", "publish_date": "04 March 2021 17:04:56 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -17979,16 +14680,10 @@ "tile_size": "2x1", "title": "Realms Plus: March" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-march", "publish_date": "07 July 2021 17:26:14 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -18002,14 +14697,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/the-mountain", "publish_date": "02 March 2021 17:58:30 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -18032,16 +14723,10 @@ "tile_size": "2x2", "title": "Back to the Nether" }, - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/back-nether", "publish_date": "08 March 2021 11:44:41 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -18055,16 +14740,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--bread", "publish_date": "25 February 2021 15:45:21 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18087,16 +14766,10 @@ "tile_size": "2x1", "title": "Flames of the Nether DLC Out Now" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/flames-nether-dlc-out-now", "publish_date": "25 February 2021 11:23:47 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -18111,11 +14784,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w08a", "publish_date": "25 February 2021 14:09:32 UTC", "tags": [ @@ -18137,16 +14806,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--stonecutter", "publish_date": "18 February 2021 17:50:33 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18169,16 +14832,10 @@ "tile_size": "2x1", "title": "Ancient Hunts" }, - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/ancient-hunts", "publish_date": "19 February 2021 09:02:23 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -18193,11 +14850,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w07a", "publish_date": "17 February 2021 18:13:49 UTC", "tags": [ @@ -18227,16 +14880,10 @@ "tile_size": "2x1", "title": "Dungeons Dev Blog - Adjusting the Endgame" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/dungeons-dev-blog---adjusting-endgame", "publish_date": "17 February 2021 17:21:10 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -18259,16 +14906,10 @@ "tile_size": "2x1", "title": "A Realms Plus Refresher" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/a-realms-plus-refresher", "publish_date": "16 February 2021 16:02:22 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -18283,16 +14924,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/sea-legs", "publish_date": "16 February 2021 18:33:23 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18315,14 +14950,10 @@ "tile_size": "2x1", "title": "Valentine\u2019s Day is here" }, - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/valentine-s-day-here", "publish_date": "14 February 2021 16:44:21 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -18345,16 +14976,10 @@ "tile_size": "2x1", "title": "Glow squid swim into Bedrock Beta" }, - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/glow-squid-swim-bedrock-beta", "publish_date": "11 February 2021 16:55:19 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18368,16 +14993,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--birch-forest", "publish_date": "11 February 2021 15:50:06 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18402,11 +15021,7 @@ "tile_size": "2x2", "title": "Minecraft Snapshot 21w06a" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w06a", "publish_date": "10 February 2021 18:17:43 UTC", "tags": [ @@ -18436,16 +15051,10 @@ "tile_size": "4x2", "title": "Ten Million Heroes... and counting!" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/ten-million-heroes-and-counting", "publish_date": "09 February 2021 15:57:22 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -18459,11 +15068,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Marketplace", - "Events" - ], + "categories": ["News", "Marketplace", "Events"], "article_url": "/zh-hans/article/happy-lunar-new-year", "publish_date": "12 February 2021 07:52:08 UTC", "tags": [ @@ -18493,16 +15098,10 @@ "tile_size": "2x1", "title": "Flames of the Nether and free update coming to Minecraft Dungeons" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/flames-nether-and-free-update-coming-minecraft-dungeons", "publish_date": "09 February 2021 19:13:12 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -18525,16 +15124,10 @@ "tile_size": "2x1", "title": "New on Java Realms: The Musical!" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-the-musical-", "publish_date": "05 February 2021 14:23:36 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -18548,16 +15141,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--arrow", "publish_date": "04 February 2021 15:55:13 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18571,16 +15158,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/creeperpunk", "publish_date": "03 February 2021 15:55:02 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18595,11 +15176,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w05a", "publish_date": "04 February 2021 18:03:18 UTC", "tags": [ @@ -18629,16 +15206,10 @@ "tile_size": "2x1", "title": "REALMS PLUS: FEBRUARY" }, - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus-february", "publish_date": "03 February 2021 14:45:24 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -18663,16 +15234,10 @@ "tile_size": "1x2", "title": "Copper and lightning rod now in Bedrock Beta" }, - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/copper-and-lightning-rod-now-bedrock-beta", "publish_date": "28 January 2021 16:58:19 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18687,16 +15252,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--shroomlight", "publish_date": "28 January 2021 17:50:53 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18719,16 +15278,10 @@ "tile_size": "2x2", "title": "Around the Block: Warped Forest" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--warped-forest", "publish_date": "21 January 2021 15:55:21 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18742,16 +15295,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/dripstone-block---sculk-sensor-bedrock-beta", "publish_date": "25 January 2021 08:43:53 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18776,11 +15323,7 @@ "tile_size": "2x2", "title": "Minecraft Snapshot 21w03a" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-21w03a", "publish_date": "20 January 2021 15:29:12 UTC", "tags": [ @@ -18810,16 +15353,10 @@ "tile_size": "2x1", "title": "Divine Dreams" }, - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/divine-dreams", "publish_date": "19 January 2021 16:45:18 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18833,16 +15370,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--music-disc", "publish_date": "14 January 2021 15:45:40 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -18857,11 +15388,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-java-edition-1-16-5", "publish_date": "12 August 2022 14:34:40 UTC", "tags": [ @@ -18883,11 +15410,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-1-16-5-release-candidate-1", "publish_date": "13 January 2021 17:58:37 UTC", "tags": [ @@ -18908,16 +15431,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--january", "publish_date": "19 April 2021 18:52:34 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -18931,16 +15448,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Earth" - ], + "categories": ["News", "Earth"], "article_url": "/zh-hans/article/minecraft-earth-coming-end", "publish_date": "12 August 2022 14:34:51 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/earth" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/earth"] }, { "default_tile": { @@ -18963,11 +15474,7 @@ "tile_size": "2x1", "title": "Community Celebration: Bloom" }, - "categories": [ - "News", - "Marketplace", - "Community Celebration" - ], + "categories": ["News", "Marketplace", "Community Celebration"], "article_url": "/zh-hans/article/community-celebration-bloom", "publish_date": "04 January 2021 18:00:15 UTC", "tags": [ @@ -18988,16 +15495,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--cobweb", "publish_date": "31 December 2020 18:11:41 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -19011,14 +15512,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/community-roundup--december", "publish_date": "30 December 2020 21:33:21 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -19033,16 +15530,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Ray tracing" - ], + "categories": ["Minecraft Builds", "Ray tracing"], "article_url": "/zh-hans/article/the-end-path-", "publish_date": "30 December 2020 01:22:51 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/ray-tracing" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/ray-tracing"] }, { "default_tile": { @@ -19057,16 +15548,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Dungeons" - ], + "categories": ["Minecraft Builds", "Dungeons"], "article_url": "/zh-hans/article/dive-minecraft-dungeons-art-", "publish_date": "28 December 2020 19:58:49 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/dungeons" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/dungeons"] }, { "default_tile": { @@ -19081,14 +15566,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/happycraft", "publish_date": "28 December 2020 18:03:42 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -19111,11 +15592,7 @@ "tile_size": "2x1", "title": "Community Celebration: Terra Swoop Force" }, - "categories": [ - "News", - "Marketplace", - "Community Celebration" - ], + "categories": ["News", "Marketplace", "Community Celebration"], "article_url": "/zh-hans/article/community-celebration-terra-swoop-force", "publish_date": "28 December 2020 17:57:03 UTC", "tags": [ @@ -19136,14 +15613,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/happy-holidays1", "publish_date": "25 December 2020 15:50:03 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -19157,14 +15630,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/around-block--warm-ocean", "publish_date": "24 December 2020 15:55:03 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -19179,16 +15648,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Ray tracing" - ], + "categories": ["Minecraft Builds", "Ray tracing"], "article_url": "/zh-hans/article/community-ray-tracing-roundup", "publish_date": "22 December 2020 22:11:12 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/ray-tracing" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/ray-tracing"] }, { "default_tile": { @@ -19211,14 +15674,10 @@ "tile_size": "2x1", "title": "Minecraft New Year's Sale" }, - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/minecraft-new-year-s-sale", "publish_date": "22 December 2020 17:55:47 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -19233,14 +15692,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/survival-base", "publish_date": "21 December 2020 20:25:11 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -19255,14 +15710,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/classic-character-art", "publish_date": "22 December 2020 00:57:34 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -19285,11 +15736,7 @@ "tile_size": "2x1", "title": "Community Celebration: Farm Life and Striding Hero maps" }, - "categories": [ - "News", - "Marketplace", - "Community Celebration" - ], + "categories": ["News", "Marketplace", "Community Celebration"], "article_url": "/zh-hans/article/community-celebration-farm-life-and-striding-hero-maps", "publish_date": "21 December 2020 18:46:28 UTC", "tags": [ @@ -19319,16 +15766,10 @@ "tile_size": "2x1", "title": "New on Java Realms: It\u2019s Java Realms Day" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/minecraft-new-year-s-sale/new-java-realms--it-s-java-realms-day", "publish_date": "18 December 2020 14:41:40 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -19351,16 +15792,10 @@ "tile_size": "4x2", "title": "Chills and Thrills Seasonal Event is Live" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/chills-and-thrills-seasonal-event-live", "publish_date": "21 December 2020 11:53:30 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -19374,16 +15809,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--rose-bush", "publish_date": "17 December 2020 15:50:49 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -19408,11 +15837,7 @@ "tile_size": "2x2", "title": "Minecraft Snapshot 20w51a" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-20w51a", "publish_date": "16 December 2020 17:03:12 UTC", "tags": [ @@ -19442,16 +15867,10 @@ "tile_size": "2x2", "title": "Dungeons Mixtape Vol.1" }, - "categories": [ - "Guides", - "Dungeons" - ], + "categories": ["Guides", "Dungeons"], "article_url": "/zh-hans/article/dungeons-mixtape-vol-1", "publish_date": "16 December 2020 15:49:23 UTC", - "tags": [ - "minecraft:stockholm/guides", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/guides", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -19465,16 +15884,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Ray tracing" - ], + "categories": ["News", "Ray tracing"], "article_url": "/zh-hans/article/community-ray-tracing-adventure-2", "publish_date": "15 December 2020 18:55:51 UTC", - "tags": [ - "minecraft:redmond/news", - "minecraft:redmond/ray-tracing" - ] + "tags": ["minecraft:redmond/news", "minecraft:redmond/ray-tracing"] }, { "default_tile": { @@ -19489,14 +15902,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/valkyria-laboratory", "publish_date": "14 December 2020 23:03:43 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -19519,11 +15928,7 @@ "tile_size": "2x1", "title": "Community Celebration: Simburbia and Striding Hero" }, - "categories": [ - "News", - "Marketplace", - "Community Celebration" - ], + "categories": ["News", "Marketplace", "Community Celebration"], "article_url": "/zh-hans/article/community-celebration--simburbia-and-striding-hero", "publish_date": "14 December 2020 17:55:39 UTC", "tags": [ @@ -19544,16 +15949,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--december", "publish_date": "11 December 2020 15:55:03 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -19567,16 +15966,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides", - "Ray tracing" - ], + "categories": ["Guides", "Ray tracing"], "article_url": "/zh-hans/article/hitchhiker-s-guide-minecraft-ray-tracing-windows-10", "publish_date": "10 December 2020 17:55:33 UTC", - "tags": [ - "minecraft:stockholm/guides", - "minecraft:stockholm/ray-tracing" - ] + "tags": ["minecraft:stockholm/guides", "minecraft:stockholm/ray-tracing"] }, { "default_tile": { @@ -19590,16 +15983,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--loom", "publish_date": "10 December 2020 15:55:02 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -19622,16 +16009,10 @@ "tile_size": "1x2", "title": "Howling Peaks DLC out today" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/howling-peaks-dlc-out-today", "publish_date": "09 December 2020 15:50:25 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -19646,14 +16027,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/join-our-community-adventure-", "publish_date": "15 December 2020 19:02:15 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -19676,11 +16053,7 @@ "tile_size": "4x2", "title": "It\u2019s time for a Community Celebration!" }, - "categories": [ - "News", - "Community Celebration", - "Marketplace" - ], + "categories": ["News", "Community Celebration", "Marketplace"], "article_url": "/zh-hans/article/it-s-time-community-celebration", "publish_date": "08 December 2020 16:21:01 UTC", "tags": [ @@ -19710,16 +16083,10 @@ "tile_size": "2x1", "title": "Minecraft with ray tracing on Windows 10 launch today" }, - "categories": [ - "News", - "Ray tracing" - ], + "categories": ["News", "Ray tracing"], "article_url": "/zh-hans/article/minecraft-ray-tracing-windows-10-launch-today", "publish_date": "08 December 2020 13:55:07 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/ray-tracing" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/ray-tracing"] }, { "default_tile": { @@ -19734,16 +16101,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Ray tracing" - ], + "categories": ["Minecraft Builds", "Ray tracing"], "article_url": "/zh-hans/article/minecraft-camp", "publish_date": "09 December 2020 18:44:09 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/ray-tracing" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/ray-tracing"] }, { "default_tile": { @@ -19757,16 +16118,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides", - "Realms Java" - ], + "categories": ["Guides", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms--the-most-wonderful-time-year", "publish_date": "07 December 2020 15:55:04 UTC", - "tags": [ - "minecraft:stockholm/guides", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/guides", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -19781,14 +16136,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/caves---cliffs-creative-collection", "publish_date": "04 December 2020 23:02:02 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -19811,16 +16162,10 @@ "tile_size": "2x1", "title": "Around the Block: Jungle" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--jungle", "publish_date": "03 December 2020 15:45:56 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -19845,11 +16190,7 @@ "tile_size": "2x2", "title": "Minecraft Snapshot 20w49a" }, - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-20w49a", "publish_date": "02 December 2020 17:40:59 UTC", "tags": [ @@ -19871,14 +16212,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/winter-asylum", "publish_date": "01 December 2020 23:11:42 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -19892,16 +16229,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides", - "Realms Java" - ], + "categories": ["Guides", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms--worlds-imagination", "publish_date": "27 November 2020 13:31:50 UTC", - "tags": [ - "minecraft:stockholm/guides", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/guides", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -19915,16 +16246,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--anvil", "publish_date": "26 November 2020 16:47:52 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -19939,11 +16264,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Caves and Cliffs" - ], + "categories": ["News", "Minecraft", "Caves and Cliffs"], "article_url": "/zh-hans/article/minecraft-snapshot-20w48a", "publish_date": "25 November 2020 16:38:14 UTC", "tags": [ @@ -19965,14 +16286,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/community-roundup-november", "publish_date": "01 December 2020 18:32:10 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -19986,14 +16303,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/the-block-friday-sale-here", "publish_date": "24 November 2020 17:55:34 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -20008,14 +16321,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/a-wintery-bridge", "publish_date": "23 November 2020 21:13:17 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -20038,16 +16347,10 @@ "tile_size": "1x2", "title": "Howling Peaks DLC and Season Pass Coming to Dungeons" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/howling-peaks-dlc-and-season-pass-coming-dungeons", "publish_date": "23 November 2020 17:45:38 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -20061,16 +16364,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/moderating-minecraft", "publish_date": "19 January 2021 16:56:35 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20084,16 +16381,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons-co-op-co-ord-builds", "publish_date": "23 November 2020 08:45:12 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -20107,16 +16398,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--shulker-box", "publish_date": "19 November 2020 15:59:13 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20130,14 +16415,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/servers-and-realms-are-coming-playstation", "publish_date": "20 November 2020 13:01:34 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -20160,16 +16441,10 @@ "tile_size": "2x1", "title": "How we make How we make Minecraft" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/how-we-make-how-we-make-minecraft", "publish_date": "18 November 2020 16:08:50 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20192,16 +16467,10 @@ "tile_size": "2x1", "title": "Cross-Platform Play Comes to Minecraft Dungeons" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/cross-platform-play-comes-minecraft-dungeons", "publish_date": "17 November 2020 16:15:44 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -20224,16 +16493,10 @@ "tile_size": "2x1", "title": "Star Wars Lands in Minecraft" }, - "categories": [ - "News", - "Marketplace" - ], + "categories": ["News", "Marketplace"], "article_url": "/zh-hans/article/star-wars-lands-minecraft", "publish_date": "17 November 2020 07:19:18 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -20248,14 +16511,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/lush-underground-cave", "publish_date": "16 November 2020 17:34:18 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -20269,14 +16528,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/our-marketplace-picks--october-2020", "publish_date": "13 November 2020 17:18:28 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -20290,14 +16545,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/around-block--end-highlands", "publish_date": "12 November 2020 16:22:27 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -20312,16 +16563,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-20w46a", "publish_date": "11 November 2020 19:49:29 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20335,16 +16580,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/factory-reset", "publish_date": "10 November 2020 15:50:32 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20359,16 +16598,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Earth" - ], + "categories": ["Minecraft Builds", "Earth"], "article_url": "/zh-hans/article/minecraft-earth-witch-hut-challenge", "publish_date": "09 November 2020 22:13:59 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/earth" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/earth"] }, { "default_tile": { @@ -20383,14 +16616,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/survival-tower", "publish_date": "09 November 2020 18:48:30 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -20404,16 +16633,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/taking-inventory--chorus-fruit", "publish_date": "05 November 2020 15:50:53 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -20438,16 +16661,10 @@ "tile_size": "2x1", "title": "Minecraft Snapshot 20w45a" }, - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-20w45a", "publish_date": "05 November 2020 08:56:09 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20470,16 +16687,10 @@ "tile_size": "2x2", "title": "Good manors" }, - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/good-manors", "publish_date": "04 November 2020 15:51:04 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20494,16 +16705,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Earth" - ], + "categories": ["Minecraft Builds", "Earth"], "article_url": "/zh-hans/article/rainbow-challenge", "publish_date": "03 November 2020 19:47:16 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/earth" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/earth"] }, { "default_tile": { @@ -20517,16 +16722,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--november", "publish_date": "03 November 2020 18:30:15 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -20540,14 +16739,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/new-novel--the-shipwreck", "publish_date": "03 November 2020 15:50:34 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -20561,14 +16756,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/graz-town-hall", "publish_date": "03 November 2020 20:01:52 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -20583,11 +16774,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-java-edition-1-16-4", "publish_date": "03 November 2020 05:53:02 UTC", "tags": [ @@ -20609,14 +16796,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/spooktacular-dungeons-fan-art", "publish_date": "03 November 2020 00:40:04 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -20631,14 +16814,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/october-2020-community-roundup", "publish_date": "29 October 2020 16:00:02 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -20652,16 +16831,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--jack-o-lantern", "publish_date": "29 October 2020 15:50:27 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20675,16 +16848,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/oh-my-gourd", "publish_date": "29 October 2020 20:59:10 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20707,16 +16874,10 @@ "tile_size": "1x2", "title": "Goats and powder snow now in Bedrock Beta" }, - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/goats-and-powder-snow-now-bedrock-beta", "publish_date": "28 October 2020 17:08:16 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20739,16 +16900,10 @@ "tile_size": "2x1", "title": "New on Java Realms: Fear Itself" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms--fear-itself", "publish_date": "28 October 2020 13:41:39 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -20763,11 +16918,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-1-16-4-release-candidate-1", "publish_date": "27 October 2020 17:22:47 UTC", "tags": [ @@ -20788,16 +16939,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Events" - ], + "categories": ["Marketplace", "Events"], "article_url": "/zh-hans/article/halloween-comes-minecraft-marketplace", "publish_date": "28 October 2020 13:27:03 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/events" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/events"] }, { "default_tile": { @@ -20820,16 +16965,10 @@ "tile_size": "2x2", "title": "Spooky Fall Event is now live" }, - "categories": [ - "Events", - "Dungeons" - ], + "categories": ["Events", "Dungeons"], "article_url": "/zh-hans/article/spooky-fall-event-now-live", "publish_date": "03 November 2020 00:05:42 UTC", - "tags": [ - "minecraft:stockholm/events", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/events", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -20844,14 +16983,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/warped-victorian-castle", "publish_date": "26 October 2020 15:47:15 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -20866,14 +17001,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/splendid-structures", "publish_date": "23 October 2020 20:06:17 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -20887,16 +17018,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Earth" - ], + "categories": ["News", "Earth"], "article_url": "/zh-hans/article/boo--spooky--season-comes-minecraft-earth", "publish_date": "22 October 2020 16:55:01 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/earth" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/earth"] }, { "default_tile": { @@ -20911,11 +17036,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-1-16-4-pre-release-2", "publish_date": "22 October 2020 16:19:54 UTC", "tags": [ @@ -20936,16 +17057,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--river", "publish_date": "22 October 2020 14:46:22 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20968,16 +17083,10 @@ "tile_size": "2x1", "title": "Java Edition is moving house" }, - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/java-edition-moving-house", "publish_date": "22 October 2020 11:32:00 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -20992,16 +17101,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Earth" - ], + "categories": ["Minecraft Builds", "Earth"], "article_url": "/zh-hans/article/minecraft-earth-challenge--8x8", "publish_date": "21 October 2020 00:35:57 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/earth" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/earth"] }, { "default_tile": { @@ -21016,14 +17119,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/charming-cottage", "publish_date": "19 October 2020 16:25:53 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -21046,16 +17145,10 @@ "tile_size": "2x1", "title": "Dungeons Diaries: Howling Peaks and more" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/dungeons-diaries--howling-peaks-and-more", "publish_date": "19 October 2020 15:09:57 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -21078,13 +17171,7 @@ "tile_size": "4x2", "title": "Spooky Season is Here" }, - "categories": [ - "News", - "Events", - "Marketplace", - "Earth", - "Dungeons" - ], + "categories": ["News", "Events", "Marketplace", "Earth", "Dungeons"], "article_url": "/zh-hans/article/spooky-season-here", "publish_date": "16 October 2020 06:05:51 UTC", "tags": [ @@ -21108,11 +17195,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-1-16-4-pre-release-1", "publish_date": "30 October 2020 16:10:52 UTC", "tags": [ @@ -21134,14 +17217,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/chess-set", "publish_date": "14 October 2020 18:07:34 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -21155,16 +17234,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--pufferfish", "publish_date": "14 October 2020 14:55:25 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -21179,14 +17252,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/community-gardenhouses", "publish_date": "15 October 2020 16:43:07 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -21209,14 +17278,10 @@ "tile_size": "2x1", "title": "Farmer's Market" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/farmer-s-market", "publish_date": "13 October 2020 15:49:23 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -21231,16 +17296,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Earth" - ], + "categories": ["Minecraft Builds", "Earth"], "article_url": "/zh-hans/article/minecraft-earth--plentiful-farm-challenge", "publish_date": "09 October 2020 17:02:40 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/earth" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/earth"] }, { "default_tile": { @@ -21255,16 +17314,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms-life-is-a-competition", "publish_date": "09 October 2020 12:41:15 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -21279,16 +17332,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--dropper", "publish_date": "08 October 2020 14:51:36 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -21303,14 +17350,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft-Live", - "categories": [ - "Minecraft-Live" - ], + "categories": ["Minecraft-Live"], "article_url": "/zh-hans/article/congratulations--glow-squid-", "publish_date": "14 October 2020 15:37:38 UTC", - "tags": [ - "minecraft:redmond/minecraft-live" - ] + "tags": ["minecraft:redmond/minecraft-live"] }, { "default_tile": { @@ -21324,16 +17367,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--october", "publish_date": "06 October 2020 17:46:17 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -21348,14 +17385,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/farming-style", "publish_date": "12 October 2020 07:01:01 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -21378,16 +17411,10 @@ "tile_size": "4x2", "title": "Minecraft Live: The Recap" }, - "categories": [ - "Events", - "Minecraft Live" - ], + "categories": ["Events", "Minecraft Live"], "article_url": "/zh-hans/article/minecraft-live-the-recap", "publish_date": "03 October 2020 17:58:12 UTC", - "tags": [ - "minecraft:stockholm/events", - "minecraft:stockholm/minecraft-live" - ] + "tags": ["minecraft:stockholm/events", "minecraft:stockholm/minecraft-live"] }, { "default_tile": { @@ -21404,14 +17431,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/exploring-virtual-heritage", "publish_date": "02 October 2020 20:43:25 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -21425,16 +17448,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--snowy-tundra", "publish_date": "02 October 2020 16:45:30 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -21449,16 +17466,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Dungeons" - ], + "categories": ["Minecraft Builds", "Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons-fan-art-roundup", "publish_date": "01 October 2020 15:00:02 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/dungeons" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/dungeons"] }, { "default_tile": { @@ -21481,14 +17492,10 @@ "tile_size": "4x2", "title": "Minecraft joins Super Smash Bros. Ultimate" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-joins-super-smash-bros--ultimate", "publish_date": "26 February 2021 08:44:11 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -21502,16 +17509,10 @@ }, "articleLang": "en-us", "primary_category": "Events", - "categories": [ - "Events", - "Minecraft Live" - ], + "categories": ["Events", "Minecraft Live"], "article_url": "/zh-hans/article/minecraft-live-everything-you-need-know", "publish_date": "03 October 2020 14:19:47 UTC", - "tags": [ - "minecraft:stockholm/events", - "minecraft:stockholm/minecraft-live" - ] + "tags": ["minecraft:stockholm/events", "minecraft:stockholm/minecraft-live"] }, { "default_tile": { @@ -21534,14 +17535,10 @@ "tile_size": "1x2", "title": "Magma Mia!" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/magma-mia-", "publish_date": "29 September 2020 16:46:00 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds" - ] + "tags": ["minecraft:stockholm/minecraft-builds"] }, { "default_tile": { @@ -21556,14 +17553,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/the-rhombi", "publish_date": "28 September 2020 16:53:42 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -21577,16 +17570,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft Live" - ], + "categories": ["News", "Minecraft Live"], "article_url": "/zh-hans/article/minecraft-live-vote-for-next-mob", "publish_date": "27 September 2020 19:40:48 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft-live" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft-live"] }, { "default_tile": { @@ -21600,14 +17587,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/interesting-links-september", "publish_date": "25 September 2020 20:21:50 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -21622,16 +17605,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--glass-pane", "publish_date": "24 September 2020 14:55:48 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -21654,16 +17631,10 @@ "tile_size": "2x2", "title": "Dirt House Deluxe" }, - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/dirt-house-deluxe", "publish_date": "23 September 2020 14:50:06 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -21677,16 +17648,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-gets-playstation-vr", "publish_date": "22 September 2020 14:50:54 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -21701,16 +17666,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Earth" - ], + "categories": ["Minecraft Builds", "Earth"], "article_url": "/zh-hans/article/minecraft-earth--custom-adventure-challenge", "publish_date": "21 September 2020 19:15:02 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/earth" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/earth"] }, { "default_tile": { @@ -21725,14 +17684,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/reimagined-phantom", "publish_date": "22 September 2020 22:41:31 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -21746,16 +17701,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--blast-furnace", "publish_date": "10 September 2020 20:50:52 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -21770,11 +17719,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-java-edition-1-16-3", "publish_date": "30 October 2020 16:15:35 UTC", "tags": [ @@ -21795,16 +17740,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--september", "publish_date": "09 September 2020 17:25:07 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -21827,16 +17766,10 @@ "tile_size": "2x2", "title": "Minecraft Dungeons \u2013 September Update" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/dungeons-september-dev-blog", "publish_date": "09 September 2020 14:52:44 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -21850,16 +17783,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/creeping-winter-here", "publish_date": "29 September 2020 22:27:08 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -21874,16 +17801,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-16-3-release-candidate-1", "publish_date": "07 September 2020 13:00:51 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -21898,14 +17819,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/minecraft-community-fan-art-roundup", "publish_date": "04 September 2020 18:35:27 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -21919,16 +17836,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--deep-cold-ocean", "publish_date": "03 September 2020 16:50:07 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -21951,16 +17862,10 @@ "tile_size": "4x2", "title": "Announcing Minecraft Live!" }, - "categories": [ - "News", - "Minecraft Live" - ], + "categories": ["News", "Minecraft Live"], "article_url": "/zh-hans/article/announcing-minecraft-live", "publish_date": "04 September 2020 10:18:28 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft-live" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft-live"] }, { "default_tile": { @@ -21975,14 +17880,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/tower-solitude", "publish_date": "03 September 2020 01:41:54 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -21996,16 +17897,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Ray tracing" - ], + "categories": ["News", "Ray tracing"], "article_url": "/zh-hans/article/new-worlds-rtx-windows-10-beta-", "publish_date": "01 September 2020 16:45:43 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/ray-tracing" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/ray-tracing"] }, { "default_tile": { @@ -22028,16 +17923,10 @@ "tile_size": "2x1", "title": "Best Builds and Fashion Finds: Creeping Winter Edition" }, - "categories": [ - "Guides", - "Dungeons" - ], + "categories": ["Guides", "Dungeons"], "article_url": "/zh-hans/article/best-builds-and-fashion-finds--creeping-winter-edition", "publish_date": "01 September 2020 15:26:39 UTC", - "tags": [ - "minecraft:stockholm/guides", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/guides", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -22052,16 +17941,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Earth" - ], + "categories": ["Minecraft Builds", "Earth"], "article_url": "/zh-hans/article/minecraft-earth--spaceship-challenge", "publish_date": "28 August 2020 02:21:17 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/earth" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/earth"] }, { "default_tile": { @@ -22075,16 +17958,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--kelp", "publish_date": "27 August 2020 16:30:32 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -22099,14 +17976,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/brick-schoolhouse", "publish_date": "26 August 2020 21:32:41 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -22131,16 +18004,10 @@ "tile_size": "2x2", "title": "Minecraft Dungeons: 9 essential artifacts" }, - "categories": [ - "Guides", - "Dungeons" - ], + "categories": ["Guides", "Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons--9-essential-artifacts", "publish_date": "24 August 2020 14:55:15 UTC", - "tags": [ - "minecraft:stockholm/guides", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/guides", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -22165,16 +18032,10 @@ "tile_size": "2x1", "title": "New on Java Realms: Running, Riding, Escaping" }, - "categories": [ - "News", - "Realms Java" - ], + "categories": ["News", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms--running--riding--escaping", "publish_date": "21 August 2020 12:42:51 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-java" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-java"] }, { "default_tile": { @@ -22188,16 +18049,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--lodestone", "publish_date": "20 August 2020 15:01:23 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -22222,14 +18077,10 @@ "tile_size": "2x1", "title": "Big City Build" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/big-city-build", "publish_date": "19 August 2020 23:48:33 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -22243,16 +18094,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Minecraft" - ], + "categories": ["Marketplace", "Minecraft"], "article_url": "/zh-hans/article/minecraft-welcomes-jurassic-world", "publish_date": "20 August 2020 16:45:32 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -22267,16 +18112,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Earth" - ], + "categories": ["Minecraft Builds", "Earth"], "article_url": "/zh-hans/article/minecraft-earth--glass-wonders-challenge", "publish_date": "14 August 2020 19:44:10 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/earth" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/earth"] }, { "default_tile": { @@ -22290,11 +18129,7 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft", - "Nether" - ], + "categories": ["Deep Dives", "Minecraft", "Nether"], "article_url": "/zh-hans/article/around-block--basalt-deltas", "publish_date": "13 August 2020 14:45:03 UTC", "tags": [ @@ -22326,14 +18161,10 @@ "tile_size": "2x1", "title": "City of Light" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/city-light", "publish_date": "13 August 2020 00:07:20 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -22347,16 +18178,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/new-dungeons-dlc-and-more-september-8", "publish_date": "11 August 2020 14:45:57 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -22370,16 +18195,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides", - "Minecraft" - ], + "categories": ["Guides", "Minecraft"], "article_url": "/zh-hans/article/what-s-it-be-minecraft-mob-", "publish_date": "11 August 2020 14:30:19 UTC", - "tags": [ - "minecraft:stockholm/guides", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/guides", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -22394,11 +18213,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-java-edition-1-16-2", "publish_date": "12 August 2020 11:57:25 UTC", "tags": [ @@ -22429,14 +18244,10 @@ "tile_size": "1x2", "title": "Cozy Cabin" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/cozy-cabin", "publish_date": "07 August 2020 21:41:02 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -22451,16 +18262,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Earth" - ], + "categories": ["Minecraft Builds", "Earth"], "article_url": "/zh-hans/article/minecraft-earth--three-little-pigs-challenge", "publish_date": "07 August 2020 20:49:02 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/earth" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/earth"] }, { "default_tile": { @@ -22474,16 +18279,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--rotten-flesh", "publish_date": "03 November 2020 04:33:31 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -22498,11 +18297,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-1-16-2-pre-release-2", "publish_date": "10 August 2020 12:45:04 UTC", "tags": [ @@ -22523,14 +18318,10 @@ }, "articleLang": "en-us", "primary_category": "Realms Plus", - "categories": [ - "Realms Plus" - ], + "categories": ["Realms Plus"], "article_url": "/zh-hans/article/realms-plus--august", "publish_date": "04 August 2020 17:20:04 UTC", - "tags": [ - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -22555,16 +18346,10 @@ "tile_size": "1x2", "title": "Even More Minecraft with RTX" }, - "categories": [ - "Minecraft Builds", - "Ray tracing" - ], + "categories": ["Minecraft Builds", "Ray tracing"], "article_url": "/zh-hans/article/even-more-minecraft-rtx", "publish_date": "24 August 2020 22:12:12 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/ray-tracing" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/ray-tracing"] }, { "default_tile": { @@ -22578,11 +18363,7 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft", - "Nether" - ], + "categories": ["Deep Dives", "Minecraft", "Nether"], "article_url": "/zh-hans/article/block-week--crying-obsidian", "publish_date": "30 July 2020 02:45:02 UTC", "tags": [ @@ -22604,11 +18385,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-1-16-2-pre-release-1", "publish_date": "30 October 2020 16:17:23 UTC", "tags": [ @@ -22629,11 +18406,7 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides", - "Minecraft", - "Nether" - ], + "categories": ["Guides", "Minecraft", "Nether"], "article_url": "/zh-hans/article/let-s-play--way-of-the-nether", "publish_date": "28 July 2020 14:47:18 UTC", "tags": [ @@ -22665,16 +18438,10 @@ "tile_size": "1x2", "title": "Minecraft Earth: Limbo Challenge" }, - "categories": [ - "Minecraft Builds", - "Earth" - ], + "categories": ["Minecraft Builds", "Earth"], "article_url": "/zh-hans/article/minecraft-earth-limbo-challenge", "publish_date": "25 July 2020 00:02:39 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/earth" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/earth"] }, { "default_tile": { @@ -22688,11 +18455,7 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft", - "Nether" - ], + "categories": ["Deep Dives", "Minecraft", "Nether"], "article_url": "/zh-hans/article/around-block--soul-sand-valley", "publish_date": "23 July 2020 14:50:56 UTC", "tags": [ @@ -22714,11 +18477,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-snapshot-20w30a", "publish_date": "22 July 2020 15:38:28 UTC", "tags": [ @@ -22740,14 +18499,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/futuristic-tower", "publish_date": "22 July 2020 16:09:51 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -22770,16 +18525,10 @@ "tile_size": "2x1", "title": "How crawling came to Minecraft" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/how-crawling-came-minecraft", "publish_date": "21 July 2020 14:46:02 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -22802,14 +18551,10 @@ "tile_size": "2x2", "title": "Alien haven" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/the-futuristic-alien-haven", "publish_date": "20 July 2020 14:50:05 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds" - ] + "tags": ["minecraft:stockholm/minecraft-builds"] }, { "default_tile": { @@ -22823,14 +18568,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/how-we-make-minecraft--the-trailer-", "publish_date": "17 July 2020 14:54:48 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -22844,16 +18585,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--honey-bottle", "publish_date": "16 July 2020 14:50:17 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -22868,11 +18603,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-snapshot-20w29a", "publish_date": "15 July 2020 16:32:13 UTC", "tags": [ @@ -22893,16 +18624,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Realms Plus" - ], + "categories": ["Marketplace", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--july", "publish_date": "14 July 2020 17:20:43 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -22925,16 +18650,10 @@ "tile_size": "2x1", "title": "Build With It: Diamond" }, - "categories": [ - "Guides", - "Minecraft Builds" - ], + "categories": ["Guides", "Minecraft Builds"], "article_url": "/zh-hans/article/build-it--diamond-", "publish_date": "10 July 2020 23:04:34 UTC", - "tags": [ - "minecraft:redmond/guides", - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/guides", "minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -22948,11 +18667,7 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft", - "Nether" - ], + "categories": ["Deep Dives", "Minecraft", "Nether"], "article_url": "/zh-hans/article/block-week--basalt", "publish_date": "09 July 2020 15:13:04 UTC", "tags": [ @@ -22974,11 +18689,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-snapshot-20w28a", "publish_date": "08 July 2020 15:55:27 UTC", "tags": [ @@ -22999,14 +18710,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/glitch-runner--endless-parkour", "publish_date": "08 July 2020 14:45:34 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -23029,11 +18736,7 @@ "tile_size": "2x2", "title": "Meet the Strider" }, - "categories": [ - "Deep Dives", - "Minecraft", - "Nether" - ], + "categories": ["Deep Dives", "Minecraft", "Nether"], "article_url": "/zh-hans/article/meet-strider", "publish_date": "07 July 2020 14:45:31 UTC", "tags": [ @@ -23063,11 +18766,7 @@ "tile_size": "2x2", "title": "Rise of the Arch-Illager" }, - "categories": [ - "News", - "Merch", - "Dungeons" - ], + "categories": ["News", "Merch", "Dungeons"], "article_url": "/zh-hans/article/rise-arch-illager", "publish_date": "06 July 2020 14:45:33 UTC", "tags": [ @@ -23088,14 +18787,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/minecraft-marketplace-summer-sale", "publish_date": "03 July 2020 16:48:58 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -23109,11 +18804,7 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft", - "Nether" - ], + "categories": ["Deep Dives", "Minecraft", "Nether"], "article_url": "/zh-hans/article/around-block--crimson-forest", "publish_date": "02 July 2020 14:52:47 UTC", "tags": [ @@ -23135,11 +18826,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Nether", - "Minecraft" - ], + "categories": ["News", "Nether", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-20w27a", "publish_date": "01 July 2020 16:00:10 UTC", "tags": [ @@ -23169,16 +18856,10 @@ "tile_size": "4x2", "title": "Jungle Awakens DLC out today" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/jungle-awakens-dlc-out-today", "publish_date": "01 July 2020 15:11:22 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -23192,16 +18873,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/into-craftiverse", "publish_date": "29 June 2020 15:50:23 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -23215,16 +18890,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons--jungle-awakens", "publish_date": "29 June 2020 11:20:54 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -23238,14 +18907,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/minecraft-earth--wild-west-challenge", "publish_date": "26 June 2020 17:16:13 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -23259,16 +18924,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Ray tracing" - ], + "categories": ["Minecraft Builds", "Ray tracing"], "article_url": "/zh-hans/article/exploring-minecraft-rtx", "publish_date": "26 November 2020 09:20:33 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds", - "minecraft:redmond/ray-tracing" - ] + "tags": ["minecraft:redmond/minecraft-builds", "minecraft:redmond/ray-tracing"] }, { "default_tile": { @@ -23283,11 +18942,7 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft", - "Nether" - ], + "categories": ["Deep Dives", "Minecraft", "Nether"], "article_url": "/zh-hans/article/taking-inventory--lantern", "publish_date": "25 June 2020 16:45:50 UTC", "tags": [ @@ -23308,16 +18963,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Marketplace" - ], + "categories": ["News", "Marketplace"], "article_url": "/zh-hans/article/achievement-rewards-and-emotes-coming-minecraft", "publish_date": "25 June 2020 14:45:55 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -23340,14 +18989,10 @@ "tile_size": "1x2", "title": "River\u2019s Edge Wall" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/river-s-edge-wall", "publish_date": "25 June 2020 19:16:36 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -23362,11 +19007,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Nether", - "Minecraft" - ], + "categories": ["News", "Nether", "Minecraft"], "article_url": "/zh-hans/article/minecraft-java-edition-1-16-1", "publish_date": "24 June 2020 12:02:26 UTC", "tags": [ @@ -23396,11 +19037,7 @@ "tile_size": "2x2", "title": "The Nether Update is here" }, - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/the-nether-update-here", "publish_date": "23 June 2020 14:58:59 UTC", "tags": [ @@ -23432,11 +19069,7 @@ "tile_size": "2x2", "title": "Nether Update out today on Java" }, - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/nether-update-java", "publish_date": "10 July 2020 07:39:33 UTC", "tags": [ @@ -23457,14 +19090,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/moving-house", "publish_date": "20 June 2020 14:45:08 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -23478,14 +19107,10 @@ }, "articleLang": "en-us", "primary_category": "Guides", - "categories": [ - "Guides" - ], + "categories": ["Guides"], "article_url": "/zh-hans/article/pixel-pools", "publish_date": "19 June 2020 20:05:04 UTC", - "tags": [ - "minecraft:redmond/guides" - ] + "tags": ["minecraft:redmond/guides"] }, { "default_tile": { @@ -23499,14 +19124,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/supporting-black-community", "publish_date": "19 June 2020 09:23:33 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -23520,11 +19141,7 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft", - "Nether" - ], + "categories": ["Deep Dives", "Minecraft", "Nether"], "article_url": "/zh-hans/article/block-week--target", "publish_date": "18 June 2020 15:25:22 UTC", "tags": [ @@ -23546,11 +19163,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Nether", - "Minecraft" - ], + "categories": ["News", "Nether", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-16-release-candidate", "publish_date": "18 June 2020 13:44:17 UTC", "tags": [ @@ -23571,11 +19184,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Realms Java" - ], + "categories": ["News", "Minecraft", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms--realms-midsummer-celebration-", "publish_date": "18 June 2020 09:47:07 UTC", "tags": [ @@ -23605,14 +19214,10 @@ "tile_size": "1x2", "title": "Mysterious Pyramid of Atum" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/mysterious-pyramid-atum", "publish_date": "18 June 2020 18:36:53 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -23635,11 +19240,7 @@ "tile_size": "4x2", "title": "The Nether Update has a date!" }, - "categories": [ - "News", - "Nether", - "Minecraft" - ], + "categories": ["News", "Nether", "Minecraft"], "article_url": "/zh-hans/article/the-nether-update-has-date-", "publish_date": "17 June 2020 16:45:20 UTC", "tags": [ @@ -23669,11 +19270,7 @@ "tile_size": "1x2", "title": "Meet the Piglins" }, - "categories": [ - "Deep Dives", - "Minecraft", - "Nether" - ], + "categories": ["Deep Dives", "Minecraft", "Nether"], "article_url": "/zh-hans/article/meet-piglins", "publish_date": "22 June 2020 18:40:06 UTC", "tags": [ @@ -23694,16 +19291,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Events" - ], + "categories": ["News", "Events"], "article_url": "/zh-hans/article/celebrate-who-you-are-every-day", "publish_date": "16 June 2020 19:25:53 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/events" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/events"] }, { "default_tile": { @@ -23717,11 +19308,7 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Nether", - "Minecraft" - ], + "categories": ["Deep Dives", "Nether", "Minecraft"], "article_url": "/zh-hans/article/the-nether-and-i", "publish_date": "15 June 2020 15:06:21 UTC", "tags": [ @@ -23743,11 +19330,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Nether", - "Minecraft" - ], + "categories": ["News", "Nether", "Minecraft"], "article_url": "/zh-hans/article/minecraft-1-16-pre-release-6", "publish_date": "17 June 2020 15:49:28 UTC", "tags": [ @@ -23768,14 +19351,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/minecraft-earth--block-tastic-challenge", "publish_date": "12 June 2020 19:23:42 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -23798,16 +19377,10 @@ "tile_size": "2x1", "title": "Around the Block: Plains" }, - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/around-block--plains", "publish_date": "11 June 2020 15:00:52 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -23830,14 +19403,10 @@ "tile_size": "1x2", "title": "Storybook Bridge" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/storybook-bridge", "publish_date": "11 June 2020 23:03:05 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -23851,16 +19420,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--june", "publish_date": "10 June 2020 17:15:50 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -23875,11 +19438,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-1-16-pre-release-3", "publish_date": "12 June 2020 14:47:56 UTC", "tags": [ @@ -23900,11 +19459,7 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft", - "Nether" - ], + "categories": ["Deep Dives", "Minecraft", "Nether"], "article_url": "/zh-hans/article/nightmares-nether", "publish_date": "10 June 2020 19:34:08 UTC", "tags": [ @@ -23926,11 +19481,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Nether" - ], + "categories": ["News", "Minecraft", "Nether"], "article_url": "/zh-hans/article/minecraft-1-16-pre-release-1", "publish_date": "11 June 2020 07:46:45 UTC", "tags": [ @@ -23960,16 +19511,10 @@ "tile_size": "4x2", "title": "Minecraft Dungeons: On the horizon" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons--on-horizon", "publish_date": "29 May 2020 14:48:25 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -23984,16 +19529,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-20w22a", "publish_date": "29 May 2020 12:27:38 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -24007,14 +19546,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-with-it--emerald-", "publish_date": "29 May 2020 19:27:23 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -24028,16 +19563,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--netherite-ingot", "publish_date": "28 May 2020 16:55:17 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -24060,14 +19589,10 @@ "tile_size": "1x2", "title": "Marvelous Medical Complex" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/marvelous-medical-complex", "publish_date": "28 May 2020 21:38:12 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -24081,16 +19606,10 @@ }, "articleLang": "en-us", "primary_category": "Merch", - "categories": [ - "Merch", - "Dungeons" - ], + "categories": ["Merch", "Dungeons"], "article_url": "/zh-hans/article/guide-minecraft-dungeons-out-now", "publish_date": "29 June 2020 11:31:11 UTC", - "tags": [ - "minecraft:stockholm/merch", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/merch", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -24104,16 +19623,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons-limited-edition-collection-cloak", "publish_date": "27 May 2020 14:45:16 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -24136,16 +19649,10 @@ "tile_size": "4x2", "title": "Minecraft Dungeons is here!" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons-here-", "publish_date": "26 May 2020 09:58:49 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -24168,16 +19675,10 @@ "tile_size": "2x1", "title": "Dressed for success" }, - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/dressed-success", "publish_date": "25 May 2020 17:53:06 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -24191,14 +19692,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/happy-40th-birthday--pac-man-", "publish_date": "22 May 2020 16:45:29 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -24212,14 +19709,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/minecraft-earth-s-wildlife-challenge", "publish_date": "23 May 2020 00:16:20 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -24233,16 +19726,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/block-week--honey", "publish_date": "21 May 2020 14:55:10 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -24265,14 +19752,10 @@ "tile_size": "1x2", "title": "Taking Flight" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/taking-flight", "publish_date": "21 May 2020 15:50:27 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -24287,16 +19770,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-20w21a", "publish_date": "20 May 2020 13:01:39 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -24319,14 +19796,10 @@ "tile_size": "4x2", "title": "Meet Mojang Studios" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/meet-mojang-studios", "publish_date": "18 May 2020 11:42:19 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -24349,16 +19822,10 @@ "tile_size": "4x2", "title": "The road to Dungeons" }, - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/the-road-dungeons", "publish_date": "15 May 2020 14:45:24 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -24372,16 +19839,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace", - "Minecraft" - ], + "categories": ["Marketplace", "Minecraft"], "article_url": "/zh-hans/article/new-maps-available-minecraft-rtx-windows-10-beta", "publish_date": "21 September 2020 09:47:46 UTC", - "tags": [ - "minecraft:stockholm/marketplace", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/marketplace", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -24395,14 +19856,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/taking-inventory--string", "publish_date": "14 May 2020 16:45:03 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -24425,14 +19882,10 @@ "tile_size": "1x2", "title": "Cozy Corner Village" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/cozy-corner-village", "publish_date": "14 May 2020 18:55:07 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -24446,14 +19899,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/our-marketplace-picks--march-april-2020", "publish_date": "14 May 2020 18:02:38 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -24468,16 +19917,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft" - ], + "categories": ["News", "Minecraft"], "article_url": "/zh-hans/article/minecraft-snapshot-20w20a", "publish_date": "14 May 2020 09:46:58 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -24491,16 +19934,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds", - "Minecraft" - ], + "categories": ["Minecraft Builds", "Minecraft"], "article_url": "/zh-hans/article/best-community-skins--april", "publish_date": "12 May 2020 14:45:41 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/minecraft-builds", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -24515,14 +19952,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-it--brick-", "publish_date": "08 May 2020 19:21:49 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -24536,11 +19969,7 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Minecraft", - "Realms Java" - ], + "categories": ["News", "Minecraft", "Realms Java"], "article_url": "/zh-hans/article/new-java-realms--rafting-and-crafting", "publish_date": "08 May 2020 14:19:05 UTC", "tags": [ @@ -24561,16 +19990,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Minecraft" - ], + "categories": ["Deep Dives", "Minecraft"], "article_url": "/zh-hans/article/taking-inventory--redstone-comparator", "publish_date": "07 May 2020 14:46:11 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/minecraft" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/minecraft"] }, { "default_tile": { @@ -24593,14 +20016,10 @@ "tile_size": "1x2", "title": "Elegant Interiors" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/elegant-interiors", "publish_date": "07 May 2020 18:26:12 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -24615,14 +20034,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-20w19a", "publish_date": "06 May 2020 18:10:58 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -24645,16 +20060,10 @@ "tile_size": "2x2", "title": "New novel: The Voyage" }, - "categories": [ - "News", - "Merch" - ], + "categories": ["News", "Merch"], "article_url": "/zh-hans/article/new-novel--the-voyage", "publish_date": "05 May 2020 16:51:29 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/merch" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/merch"] }, { "default_tile": { @@ -24668,16 +20077,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--may", "publish_date": "08 March 2022 09:49:34 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -24691,14 +20094,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/minecraft-earth-s-underground-challenge", "publish_date": "01 May 2020 19:37:42 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -24712,14 +20111,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/taking-inventory--conduit", "publish_date": "30 April 2020 14:45:04 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -24742,14 +20137,10 @@ "tile_size": "1x2", "title": "National Palace" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/national-palace", "publish_date": "30 April 2020 18:02:30 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -24764,14 +20155,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-20w18a", "publish_date": "29 April 2020 16:34:32 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -24794,14 +20181,10 @@ "tile_size": "2x1", "title": "World of Wonders" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/world-wonders", "publish_date": "28 April 2020 16:50:37 UTC", - "tags": [ - "minecraft:stockholm/minecraft-builds" - ] + "tags": ["minecraft:stockholm/minecraft-builds"] }, { "default_tile": { @@ -24824,16 +20207,10 @@ "tile_size": "2x2", "title": "Let\u2019s play: Blockdown Simulator" }, - "categories": [ - "News", - "Guides" - ], + "categories": ["News", "Guides"], "article_url": "/zh-hans/article/let-s-play--blockdown-simulator", "publish_date": "24 April 2020 16:45:11 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/guides" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/guides"] }, { "default_tile": { @@ -24847,14 +20224,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/magnificent-menagerie", "publish_date": "24 April 2020 18:54:53 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -24868,14 +20241,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/taking-inventory--carrot", "publish_date": "23 April 2020 14:45:46 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -24898,14 +20267,10 @@ "tile_size": "1x2", "title": "Dive into Grandeur" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/dive-grandeur", "publish_date": "23 April 2020 18:57:55 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -24919,14 +20284,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], - "article_url": "/zh-hans/article/it-s-earth-day-again-", - "publish_date": "22 April 2020 15:46:47 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "categories": ["News"], + "article_url": "/zh-hans/article/it-s-earth-day-again-", + "publish_date": "22 April 2020 15:46:47 UTC", + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -24941,16 +20302,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Nether" - ], + "categories": ["News", "Nether"], "article_url": "/zh-hans/article/minecraft-snapshot-20w17a", "publish_date": "19 May 2020 21:36:58 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/nether" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/nether"] }, { "default_tile": { @@ -24973,14 +20328,10 @@ "tile_size": "2x2", "title": "Help #BlockCovid19" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/blockcovid19", "publish_date": "21 April 2020 14:58:22 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -24994,14 +20345,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/commercial-usage-guidelines-updated", "publish_date": "17 April 2020 19:12:43 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -25015,14 +20362,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-it--lapis-", "publish_date": "15 May 2020 18:47:54 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -25036,14 +20379,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/block-week--scaffolding", "publish_date": "16 April 2020 16:45:25 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -25066,14 +20405,10 @@ "tile_size": "1x2", "title": "A Precious Mine" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/a-precious-mine", "publish_date": "16 April 2020 18:49:03 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -25096,16 +20431,10 @@ "tile_size": "2x1", "title": "Minecraft with RTX for Windows 10 Now in Beta" }, - "categories": [ - "News", - "Ray tracing" - ], + "categories": ["News", "Ray tracing"], "article_url": "/zh-hans/article/minecraft-rtx-windows-10-now-beta", "publish_date": "26 November 2020 09:17:18 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/ray-tracing" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/ray-tracing"] }, { "default_tile": { @@ -25130,14 +20459,10 @@ "tile_size": "4x2", "title": "Minecraft Snapshot 20w16a" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-20w16a", "publish_date": "15 April 2020 15:10:11 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -25151,14 +20476,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/new-java-realms--magic-havoc-and-zoom-boom", "publish_date": "14 April 2020 14:45:51 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -25172,16 +20493,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Marketplace" - ], + "categories": ["News", "Marketplace"], "article_url": "/zh-hans/article/free-character-creator-item", "publish_date": "10 April 2020 17:45:04 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -25195,14 +20510,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/temporary-changes-coming-minecraft-earth", "publish_date": "10 April 2020 14:45:03 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -25216,14 +20527,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/minecraft-community-art-gallery", "publish_date": "10 April 2020 17:52:51 UTC", - "tags": [ - "minecraft:redmond/deep-dives" - ] + "tags": ["minecraft:redmond/deep-dives"] }, { "default_tile": { @@ -25246,16 +20553,10 @@ "tile_size": "2x1", "title": "Free Map: Spring-a-Majig" }, - "categories": [ - "News", - "Marketplace" - ], + "categories": ["News", "Marketplace"], "article_url": "/zh-hans/article/free-map", "publish_date": "09 April 2020 18:21:48 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -25278,14 +20579,10 @@ "tile_size": "1x2", "title": "Danish Domicile" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/danish-domicile", "publish_date": "09 April 2020 18:03:40 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -25308,11 +20605,7 @@ "tile_size": "2x1", "title": "The Sound of Scary" }, - "categories": [ - "Deep Dives", - "Minecraft", - "Nether" - ], + "categories": ["Deep Dives", "Minecraft", "Nether"], "article_url": "/zh-hans/article/the-sound-scary", "publish_date": "16 June 2020 13:26:37 UTC", "tags": [ @@ -25333,16 +20626,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Marketplace" - ], + "categories": ["News", "Marketplace"], "article_url": "/zh-hans/article/minecraft-marketplace-spring-sale0", "publish_date": "08 April 2020 17:45:41 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -25356,14 +20643,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/taking-inventory--sapling", "publish_date": "08 April 2020 14:45:04 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -25388,14 +20671,10 @@ "tile_size": "2x2", "title": "Minecraft Snapshot 20w15a" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-20w15a", "publish_date": "08 April 2020 13:43:01 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -25409,16 +20688,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--april", "publish_date": "29 April 2020 21:03:52 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -25432,14 +20705,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/the-mayor-minecraft", "publish_date": "06 April 2020 16:45:35 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -25453,14 +20722,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/enjoy-saving-your-playstation-game-", "publish_date": "14 April 2020 07:49:57 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -25475,14 +20740,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/minecraft-earth-s-sheer-bliss", "publish_date": "03 April 2020 18:40:41 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -25496,14 +20757,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/taking-inventory--stick", "publish_date": "02 April 2020 14:45:59 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -25528,14 +20785,10 @@ "tile_size": "1x2", "title": "A Lifelike City" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/a-lifelike-city", "publish_date": "03 April 2020 20:46:24 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -25550,16 +20803,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Nether" - ], + "categories": ["News", "Nether"], "article_url": "/zh-hans/article/minecraft-snapshot-20w14a", "publish_date": "19 May 2020 21:33:04 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/nether" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/nether"] }, { "default_tile": { @@ -25582,14 +20829,10 @@ "tile_size": "2x1", "title": "Every update imaginable coming to Minecraft" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/every-update-imaginable-coming-minecraft", "publish_date": "16 March 2023 09:54:26 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -25612,16 +20855,10 @@ "tile_size": "4x2", "title": "Minecraft Dungeons launching May 26" }, - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/minecraft-dungeons-launching-may-26", "publish_date": "20 April 2020 23:00:43 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -25635,14 +20872,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/keeping-singleplayer-fresh", "publish_date": "30 March 2020 14:50:53 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -25656,14 +20889,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/new-updates-coming-minecraft-earth", "publish_date": "04 May 2020 15:44:05 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -25677,14 +20906,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives" - ], + "categories": ["Deep Dives"], "article_url": "/zh-hans/article/taking-inventory--bucket-fish", "publish_date": "26 March 2020 15:56:00 UTC", - "tags": [ - "minecraft:stockholm/deep-dives" - ] + "tags": ["minecraft:stockholm/deep-dives"] }, { "default_tile": { @@ -25707,14 +20932,10 @@ "tile_size": "1x2", "title": "A Kingdom of Lore and Wonder" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/a-kingdom-lore-and-wonder", "publish_date": "26 March 2020 21:58:42 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -25739,14 +20960,10 @@ "tile_size": "4x2", "title": "Minecraft Snapshot 20w13b" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-20w13a", "publish_date": "26 March 2020 13:59:45 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -25760,14 +20977,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/search-arch-illager--part-2", "publish_date": "24 March 2020 16:05:19 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -25781,14 +20994,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/free-educational-content-minecraft-marketplace-", "publish_date": "24 March 2020 18:07:16 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -25802,14 +21011,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/search-arch-illager--part-1", "publish_date": "23 March 2020 15:45:49 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -25826,14 +21031,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/2020-minecraft-education-challenge", "publish_date": "23 March 2020 17:57:51 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -25847,14 +21048,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-with-it--coral-", "publish_date": "20 March 2020 20:11:42 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -25868,14 +21065,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/taking-inventory--campfire", "publish_date": "19 March 2020 15:45:04 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -25898,14 +21091,10 @@ "tile_size": "1x2", "title": "A Place of Adventure" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/a-place-adventure", "publish_date": "19 March 2020 19:23:36 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -25919,16 +21108,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Dungeons" - ], + "categories": ["News", "Dungeons"], "article_url": "/zh-hans/article/dungeons-diaries--lore", "publish_date": "20 April 2020 23:04:20 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -25942,14 +21125,10 @@ }, "articleLang": "en-us", "primary_category": "Marketplace", - "categories": [ - "Marketplace" - ], + "categories": ["Marketplace"], "article_url": "/zh-hans/article/our-marketplace-picks--february", "publish_date": "18 March 2020 17:45:22 UTC", - "tags": [ - "minecraft:stockholm/marketplace" - ] + "tags": ["minecraft:stockholm/marketplace"] }, { "default_tile": { @@ -25964,14 +21143,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-20w12a", "publish_date": "18 March 2020 17:41:06 UTC", - "tags": [ - "minecraft:stockholm/news" - ] + "tags": ["minecraft:stockholm/news"] }, { "default_tile": { @@ -25987,14 +21162,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/elementary-school-students-craft-their-own-graduation-ceremony", "publish_date": "18 March 2020 22:51:33 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -26010,14 +21181,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/extended-access-minecraft--education-edition", "publish_date": "19 March 2020 00:25:30 UTC", - "tags": [ - "minecraft:redmond/news" - ] + "tags": ["minecraft:redmond/news"] }, { "default_tile": { @@ -26031,16 +21198,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Earth" - ], + "categories": ["News", "Earth"], "article_url": "/zh-hans/article/introducing--minecraft-earth-boost-minis", "publish_date": "30 March 2020 20:48:36 UTC", - "tags": [ - "minecraft:stockholm/news", - "minecraft:stockholm/earth" - ] + "tags": ["minecraft:stockholm/news", "minecraft:stockholm/earth"] }, { "default_tile": { @@ -26063,16 +21224,10 @@ "tile_size": "4x2", "title": "The Bedrock Nether Update beta is here!" }, - "categories": [ - "News", - "Nether" - ], + "categories": ["News", "Nether"], "article_url": "/zh-hans/article/the-bedrock-nether-update-beta-here-", "publish_date": "19 May 2020 21:38:05 UTC", - "tags": [ - "minecraft:article/news", - "minecraft:stockholm/nether" - ] + "tags": ["minecraft:article/news", "minecraft:stockholm/nether"] }, { "default_tile": { @@ -26095,14 +21250,10 @@ "tile_size": "2x1", "title": "New on Realms: Game shows and battles with pros" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/new-realms--game-shows-and-battles-pros", "publish_date": "13 March 2020 12:00:06 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26116,14 +21267,10 @@ }, "articleLang": "en-us", "primary_category": "Culture", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/winter-wonders", "publish_date": "13 March 2020 22:32:44 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -26137,14 +21284,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/taking-inventory--lily-pad", "publish_date": "12 March 2020 16:17:01 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -26167,14 +21310,10 @@ "tile_size": "1x2", "title": "A Grand Gallery" }, - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/a-grand-gallery", "publish_date": "12 March 2020 18:06:51 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -26189,14 +21328,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-20w11a", "publish_date": "11 March 2020 16:59:50 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26210,14 +21345,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/let-s-cheat-death", "publish_date": "10 March 2020 15:50:45 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -26231,14 +21362,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/taking-inventory--bell", "publish_date": "06 March 2020 17:55:48 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -26252,14 +21379,10 @@ }, "articleLang": "en-us", "primary_category": "Culture", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/build-it--stained-glass-", "publish_date": "06 March 2020 21:51:29 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -26273,14 +21396,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-festival-postponed", "publish_date": "27 January 2022 21:37:52 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26305,14 +21424,10 @@ "tile_size": "1x2", "title": "A Forest Getaway" }, - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/a-forest-getaway", "publish_date": "06 March 2020 00:06:35 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -26327,14 +21442,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-20w10a", "publish_date": "04 March 2020 18:06:41 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26348,16 +21459,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--march", "publish_date": "29 April 2020 21:03:52 UTC", - "tags": [ - "minecraft:article/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:article/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -26371,14 +21476,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-x-uniqlo-collaboration-celebration", "publish_date": "03 March 2020 00:07:19 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26392,14 +21493,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/new-java-realms--resorts--rematches--and-rumbling-raids", "publish_date": "28 February 2020 12:59:08 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26413,14 +21510,10 @@ }, "articleLang": "en-us", "primary_category": "Culture", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/fabulous-fountains", "publish_date": "28 February 2020 22:28:27 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -26443,14 +21536,10 @@ "tile_size": "1x2", "title": "Creating History in Minecraft" }, - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/creating-history-minecraft", "publish_date": "27 February 2020 20:04:10 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -26473,14 +21562,10 @@ "tile_size": "4x2", "title": "Welcome to Minecraft Festival" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/welcome-minecraft-festival", "publish_date": "31 August 2021 11:21:16 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26495,14 +21580,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-20w09a", "publish_date": "26 February 2020 17:21:21 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26516,14 +21597,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/taking-inventory--saddle", "publish_date": "26 February 2020 15:48:54 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -26537,14 +21614,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/mass-effect-mash-up-pack", "publish_date": "03 March 2020 10:35:36 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26558,14 +21631,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/taking-inventory--helmet", "publish_date": "20 February 2020 15:43:39 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -26579,16 +21648,10 @@ }, "articleLang": "en-us", "primary_category": "Deep Dives", - "categories": [ - "Deep Dives", - "Dungeons" - ], + "categories": ["Deep Dives", "Dungeons"], "article_url": "/zh-hans/article/dungeons-diaries--environments", "publish_date": "29 June 2020 11:39:14 UTC", - "tags": [ - "minecraft:stockholm/deep-dives", - "minecraft:stockholm/dungeons" - ] + "tags": ["minecraft:stockholm/deep-dives", "minecraft:stockholm/dungeons"] }, { "default_tile": { @@ -26603,14 +21666,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-20w08a", "publish_date": "19 February 2020 20:40:15 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26624,14 +21683,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/useless-machines", "publish_date": "24 February 2020 12:23:30 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -26654,14 +21709,10 @@ "tile_size": "2x2", "title": "How to express your love in Minecraft" }, - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/how-express-your-love-minecraft", "publish_date": "14 February 2020 15:45:15 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -26686,14 +21737,10 @@ "tile_size": "2x1", "title": "Minecraft Snapshot 20w07a" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-snapshot-20w07a", "publish_date": "14 February 2020 14:41:23 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26707,14 +21754,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/taking-inventory--porkchop", "publish_date": "13 February 2020 15:45:04 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -26737,14 +21780,10 @@ "tile_size": "1x2", "title": "A Curious Friendship" }, - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/a-curious-friendship", "publish_date": "18 March 2020 22:55:09 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -26767,14 +21806,10 @@ "tile_size": "1x2", "title": "Illegal Architecture" }, - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/illegal-architecture", "publish_date": "12 February 2020 15:45:14 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -26788,14 +21823,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/10-things-you-didn-t-know-about-the-end", "publish_date": "07 February 2020 15:45:02 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -26809,14 +21840,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/new-java-realms--maps-exhibition", "publish_date": "10 February 2020 08:54:06 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26831,14 +21858,10 @@ }, "articleLang": "en-us", "primary_category": "Culture", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/build-it--purpur", "publish_date": "08 February 2020 00:03:20 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -26852,14 +21875,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/taking-inventory--axe", "publish_date": "06 February 2020 15:45:11 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -26882,14 +21901,10 @@ "tile_size": "2x1", "title": "Our Marketplace Picks: January 2020" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/our-marketplace-picks--january-2020", "publish_date": "07 February 2020 14:15:35 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -26914,16 +21929,10 @@ "tile_size": "4x2", "title": "Minecraft Snapshot 20w06a" }, - "categories": [ - "News", - "Nether" - ], + "categories": ["News", "Nether"], "article_url": "/zh-hans/article/minecraft-snapshot-20w06a", "publish_date": "19 May 2020 21:30:14 UTC", - "tags": [ - "minecraft:article/news", - "minecraft:stockholm/nether" - ] + "tags": ["minecraft:article/news", "minecraft:stockholm/nether"] }, { "default_tile": { @@ -26937,16 +21946,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/realms-plus--february", "publish_date": "29 April 2020 21:03:52 UTC", - "tags": [ - "minecraft:article/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:article/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -26960,14 +21963,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/taking-inventory--trident", "publish_date": "30 January 2020 15:50:04 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -26990,14 +21989,10 @@ "tile_size": "2x1", "title": "Crafty Comforts" }, - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/crafty-comforts", "publish_date": "27 January 2020 08:42:54 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -27011,14 +22006,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/new-year--new-builds--new-writer-", "publish_date": "24 January 2020 18:00:27 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -27041,14 +22032,10 @@ "tile_size": "2x2", "title": "Dungeons Diaries: Sound" }, - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/dungeons-diaries--sounds", "publish_date": "24 January 2020 15:40:04 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -27063,14 +22050,10 @@ }, "articleLang": "en-us", "primary_category": "Culture", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/build-with-it--gold-", "publish_date": "24 April 2020 20:55:10 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -27084,14 +22067,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/taking-inventory--melon-slice", "publish_date": "24 January 2020 09:26:30 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -27114,14 +22093,10 @@ "tile_size": "1x2", "title": "Reach for the Stars" }, - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/reach-stars", "publish_date": "06 February 2020 18:40:58 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -27135,14 +22110,10 @@ }, "articleLang": "en-us", "primary_category": "Culture", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/your-new-year-s-resolutions", "publish_date": "21 January 2020 19:37:12 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -27156,14 +22127,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-java-edition-1-15-2", "publish_date": "21 January 2020 14:53:25 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -27177,14 +22144,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/ancient-java-players--you-attention-please-", "publish_date": "29 January 2020 18:36:37 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -27198,14 +22161,10 @@ }, "articleLang": "en-us", "primary_category": "Culture", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/praise-builds-", "publish_date": "18 January 2020 15:31:26 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -27220,14 +22179,10 @@ }, "articleLang": "en-us", "primary_category": "Minecraft Builds", - "categories": [ - "Minecraft Builds" - ], + "categories": ["Minecraft Builds"], "article_url": "/zh-hans/article/build-with-it--prismarine-", "publish_date": "24 April 2020 21:18:49 UTC", - "tags": [ - "minecraft:redmond/minecraft-builds" - ] + "tags": ["minecraft:redmond/minecraft-builds"] }, { "default_tile": { @@ -27241,14 +22196,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/taking-inventory--lilac", "publish_date": "16 January 2020 15:25:21 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -27273,14 +22224,10 @@ "tile_size": "1x2", "title": "A residence fit for royalty" }, - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/a-residence-fit-royalty", "publish_date": "16 January 2020 22:40:03 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -27294,14 +22241,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/experimental-java-edition-combat-snapshot-v5", "publish_date": "20 May 2020 15:30:49 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -27315,14 +22258,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/subscribe-our-youtube-channel", "publish_date": "14 January 2020 14:02:06 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -27345,14 +22284,10 @@ "tile_size": "2x2", "title": "Minecraft 1.15.2 Pre-Release 2" }, - "categories": [ - "News" - ], + "categories": ["News"], "article_url": "/zh-hans/article/minecraft-1-15-2-pre-release-1", "publish_date": "29 January 2020 18:34:08 UTC", - "tags": [ - "minecraft:article/news" - ] + "tags": ["minecraft:article/news"] }, { "default_tile": { @@ -27367,14 +22302,10 @@ }, "articleLang": "en-us", "primary_category": "Culture", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/build-with-it--cobblestone-", "publish_date": "10 January 2020 19:23:33 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -27399,14 +22330,10 @@ "tile_size": "2x2", "title": "Meet the Ice Princess!" }, - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/meet-ice-princess-", "publish_date": "09 January 2020 19:09:17 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -27420,14 +22347,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/taking-inventory--sign", "publish_date": "30 April 2020 21:34:07 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -27441,14 +22364,10 @@ }, "articleLang": "en-us", "primary_category": "Insider", - "categories": [ - "Insider" - ], + "categories": ["Insider"], "article_url": "/zh-hans/article/new-years-resolutions", "publish_date": "07 January 2020 14:50:17 UTC", - "tags": [ - "minecraft:article/insider" - ] + "tags": ["minecraft:article/insider"] }, { "default_tile": { @@ -27462,16 +22381,10 @@ }, "articleLang": "en-us", "primary_category": "News", - "categories": [ - "News", - "Realms Plus" - ], + "categories": ["News", "Realms Plus"], "article_url": "/zh-hans/article/january-maps-realms-plus", "publish_date": "30 April 2020 19:56:31 UTC", - "tags": [ - "minecraft:article/news", - "minecraft:stockholm/realms-plus" - ] + "tags": ["minecraft:article/news", "minecraft:stockholm/realms-plus"] }, { "default_tile": { @@ -27485,14 +22398,10 @@ }, "articleLang": "en-us", "primary_category": "Culture", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/build-it--diorite-", "publish_date": "04 January 2020 00:40:31 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] }, { "default_tile": { @@ -27506,15 +22415,11 @@ }, "articleLang": "en-us", "primary_category": "Culture", - "categories": [ - "Culture" - ], + "categories": ["Culture"], "article_url": "/zh-hans/article/display-your-bountiful-buffets-", "publish_date": "02 January 2020 22:07:13 UTC", - "tags": [ - "minecraft:article/culture" - ] + "tags": ["minecraft:article/culture"] } ], "article_count": 1061 -} \ No newline at end of file +} diff --git a/src-tauri/capabilities/main.json b/src-tauri/capabilities/main.json index a74e173..c0fb65d 100644 --- a/src-tauri/capabilities/main.json +++ b/src-tauri/capabilities/main.json @@ -1,22 +1,20 @@ { - "$schema": "../gen/schemas/desktop-schema.json", - "identifier": "default", - "description": "Capability for the main window", - "windows": [ - "main" - ], - "permissions": [ - "core:window:default", - "shell:allow-open", - "core:window:allow-start-dragging", - "core:window:allow-minimize", - "core:window:allow-maximize", - "core:window:allow-close", - "http:default", - "core:event:default", - "core:event:allow-emit", - "core:webview:allow-create-webview", - "core:webview:allow-webview-size", - "core:webview:default" - ] + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "default", + "description": "Capability for the main window", + "windows": ["main"], + "permissions": [ + "core:window:default", + "shell:allow-open", + "core:window:allow-start-dragging", + "core:window:allow-minimize", + "core:window:allow-maximize", + "core:window:allow-close", + "http:default", + "core:event:default", + "core:event:allow-emit", + "core:webview:allow-create-webview", + "core:webview:allow-webview-size", + "core:webview:default" + ] } diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 9681c8f..97cb929 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,38 +1,38 @@ { - "productName": "amethyst-launcher", - "version": "0.0.0", - "identifier": "top.btlcraft.launcher", - "build": { - "beforeDevCommand": "yarn dev", - "devUrl": "http://localhost:5173", - "beforeBuildCommand": "yarn build", - "frontendDist": "../dist" - }, - "app": { - "windows": [ - { - "title": "Amethyst Launcher", - "minWidth": 1080, - "minHeight": 640, - "focus": true, - "transparent": true, - "decorations": false, - "fullscreen": false - } - ], - "security": { - "csp": null + "productName": "amethyst-launcher", + "version": "0.0.0", + "identifier": "top.btlcraft.launcher", + "build": { + "beforeDevCommand": "yarn dev", + "devUrl": "http://localhost:5173", + "beforeBuildCommand": "yarn build", + "frontendDist": "../dist" + }, + "app": { + "windows": [ + { + "title": "Amethyst Launcher", + "minWidth": 1080, + "minHeight": 640, + "focus": true, + "transparent": true, + "decorations": false, + "fullscreen": false + } + ], + "security": { + "csp": null + } + }, + "bundle": { + "active": true, + "targets": "all", + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ] } - }, - "bundle": { - "active": true, - "targets": "all", - "icon": [ - "icons/32x32.png", - "icons/128x128.png", - "icons/128x128@2x.png", - "icons/icon.icns", - "icons/icon.ico" - ] - } } diff --git a/src/Main.vue b/src/Main.vue index 7664326..fa615b5 100644 --- a/src/Main.vue +++ b/src/Main.vue @@ -5,8 +5,7 @@ + placeholder="在 Amethyst 中搜索,或输入命令">
@@ -19,30 +18,23 @@ + @click="changePage($event, 'wareHouse')"> + @click="changePage($event, 'community')"> + style="margin-top: auto">
- +
@@ -50,84 +42,83 @@ TODO: line --> - +2 diff --git a/app-icon.png b/src/assets/images/app-icon.png similarity index 100% rename from app-icon.png rename to src/assets/images/app-icon.png diff --git a/src/bootstrap.ts b/src/bootstrap.ts index fe256ee..c1ebbcd 100644 --- a/src/bootstrap.ts +++ b/src/bootstrap.ts @@ -1,6 +1,6 @@ -import { createApp } from "vue"; +import { createApp } from "vue" // import { createPinia } from 'pinia' -import App from "./Main.vue"; +import App from "./Main.vue" // import $ from "jquery"; // $("#window").attr( @@ -8,11 +8,11 @@ import App from "./Main.vue"; // "transform: scale(1); opacity: 1; transition: all 250ms cubic-bezier(0.04, 0.47, 0.47, 0.98)" // ); -const app = createApp(App); +const app = createApp(App) // app.use(createPinia()) -app.mount("#window"); +app.mount("#window") // // window.getCurrent().setAlwaysOnTop(true) // // window.getCurrent().setResizable(false) @@ -28,10 +28,10 @@ app.mount("#window"); // x: (await window.getCurrent().innerPosition()).x, // y: (await window.getCurrent().innerPosition()).y // },); -import { event } from "@tauri-apps/api"; +import { event } from "@tauri-apps/api" globalThis.onload = () => { - console.log(` + console.log(` █████╗ ███╗ ███╗███████╗████████╗██╗ ██╗██╗ ██╗███████╗████████╗ ██╔══██╗████╗ ████║██╔════╝╚══██╔══╝██║ ██║╚██╗ ██╔╝██╔════╝╚══██╔══╝ ███████║██╔████╔██║█████╗ ██║ ███████║ ╚████╔╝ ███████╗ ██║ @@ -46,6 +46,6 @@ globalThis.onload = () => { ███████╗██║ ██║╚██████╔╝██║ ╚████║╚██████╗██║ ██║███████╗██║ ██║ ╚══════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ╚═════╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ -`); - event.emit("fontend-loaded"); -}; +`) + event.emit("fontend-loaded") +} diff --git a/src/components/AccountManager.vue b/src/components/AccountManager.vue index ac640a4..a0dedce 100644 --- a/src/components/AccountManager.vue +++ b/src/components/AccountManager.vue @@ -1,23 +1,34 @@ diff --git a/src/components/AssetsManager.vue b/src/components/AssetsManager.vue index 0c0ea14..4c09b3a 100644 --- a/src/components/AssetsManager.vue +++ b/src/components/AssetsManager.vue @@ -1,25 +1,67 @@ diff --git a/src/components/CardButton.vue b/src/components/CardButton.vue index 4bba098..8ccaf04 100644 --- a/src/components/CardButton.vue +++ b/src/components/CardButton.vue @@ -7,31 +7,42 @@

{{ description }}

-
+
+ +
- + - + \ No newline at end of file + diff --git a/src/components/Dialog.vue b/src/components/Dialog.vue index 98b0ae4..d9c5391 100644 --- a/src/components/Dialog.vue +++ b/src/components/Dialog.vue @@ -11,17 +11,17 @@ \ No newline at end of file + font-family: "fa-pro"; + font-style: normal; + font-size: calc(16px - var(--)); + display: flex; + justify-content: center; + align-items: center; +} + diff --git a/src/components/Expander.vue b/src/components/Expander.vue index a9da4ba..a39e62c 100644 --- a/src/components/Expander.vue +++ b/src/components/Expander.vue @@ -1,10 +1,17 @@ \ No newline at end of file + diff --git a/src/components/InstanceInfo.vue b/src/components/InstanceInfo.vue index 35bb520..f0d69e4 100644 --- a/src/components/InstanceInfo.vue +++ b/src/components/InstanceInfo.vue @@ -12,8 +12,7 @@ rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.882) ); - " - > + ">
Minecraft @@ -31,17 +30,10 @@
@@ -50,53 +42,53 @@ \ No newline at end of file + diff --git a/src/components/SettingItem.vue b/src/components/SettingItem.vue index f5411a6..c1cb0e3 100644 --- a/src/components/SettingItem.vue +++ b/src/components/SettingItem.vue @@ -14,25 +14,28 @@ \ No newline at end of file + diff --git a/src/components/SidebarItem.vue b/src/components/SidebarItem.vue index e4d8d60..598a20f 100644 --- a/src/components/SidebarItem.vue +++ b/src/components/SidebarItem.vue @@ -8,9 +8,9 @@ +// } + diff --git a/src/components/Tag.vue b/src/components/Tag.vue index 5d430d3..4cff252 100644 --- a/src/components/Tag.vue +++ b/src/components/Tag.vue @@ -1,5 +1,7 @@ \ No newline at end of file + diff --git a/src/components/controllers/Button.vue b/src/components/controllers/Button.vue index b3d9f42..d4f95c6 100644 --- a/src/components/controllers/Button.vue +++ b/src/components/controllers/Button.vue @@ -1,5 +1,10 @@ \ No newline at end of file + diff --git a/src/components/controllers/SliderBar.vue b/src/components/controllers/SliderBar.vue index e422085..6dd8124 100644 --- a/src/components/controllers/SliderBar.vue +++ b/src/components/controllers/SliderBar.vue @@ -1,13 +1,26 @@ \ No newline at end of file + diff --git a/src/pages/Community.vue b/src/pages/Community.vue index 8c7a0fd..f2794af 100644 --- a/src/pages/Community.vue +++ b/src/pages/Community.vue @@ -1,10 +1,9 @@ - \ No newline at end of file + diff --git a/src/pages/Game.vue b/src/pages/Game.vue index 759e76e..0ff5262 100644 --- a/src/pages/Game.vue +++ b/src/pages/Game.vue @@ -4,8 +4,7 @@
+ :instance-name="currentInstance.config.name"> + :error-type="errorType"> + style="margin-top: 20px">
@@ -111,118 +83,118 @@ - \ No newline at end of file diff --git a/src/pages/dialogs/Worlds.vue b/src/pages/dialogs/Worlds.vue index 0ed074a..8e2e31a 100644 --- a/src/pages/dialogs/Worlds.vue +++ b/src/pages/dialogs/Worlds.vue @@ -1,7 +1,8 @@ diff --git a/src/pages/dialogs/instance/Create.vue b/src/pages/dialogs/instance/Create.vue index eb3dedf..fb911e1 100644 --- a/src/pages/dialogs/instance/Create.vue +++ b/src/pages/dialogs/instance/Create.vue @@ -13,8 +13,7 @@ style="width: 300px; margin-left: 10px" name="实例名称" :placeholder="instanceNameDefault" - v-model="instanceNameValue" - > + v-model="instanceNameValue"> + style="margin-left: 10px">
+ @click="create"> - - - - - - - - + + + + + + +
diff --git a/src/pages/settings/Extend.vue b/src/pages/settings/Extend.vue index 50d81ed..e1d854c 100644 --- a/src/pages/settings/Extend.vue +++ b/src/pages/settings/Extend.vue @@ -10,7 +10,6 @@ // import { ref } from 'vue' // import Expander from '@/components/Expander.vue'; // import ToggleSwitchBar from '@/components/ToggleSwitchBar.vue'; - - \ No newline at end of file + diff --git a/src/pages/settings/Game.vue b/src/pages/settings/Game.vue index d623ff1..d641ea2 100644 --- a/src/pages/settings/Game.vue +++ b/src/pages/settings/Game.vue @@ -1,16 +1,35 @@ - - \ No newline at end of file + + diff --git a/src/storage/configs.ts b/src/storage/configs.ts index 845ae3f..e0932cf 100644 --- a/src/storage/configs.ts +++ b/src/storage/configs.ts @@ -1,5 +1,5 @@ -import { invoke } from "@tauri-apps/api/core"; -import { defineStore } from "pinia"; +import { invoke } from "@tauri-apps/api/core" +import { defineStore } from "pinia" enum GarbageCollector { G1 = "G1", @@ -77,37 +77,36 @@ const defaultConfig = { extend: { enableAll: false, }, -}; +} // alert(defaultConfig.advance.game.garbageCollector) -const userConfig = JSON.parse(await invoke("get_user_config")) as object; +const userConfig = JSON.parse(await invoke("get_user_config")) as object export const useConfigStore = defineStore("configs", { state: () => { return { ...defaultConfig, ...userConfig, - }; + } }, actions: { get(key: string) { - const keys = key.split("."); - let result; + const keys = key.split(".") + let result for (let index = 0; index < keys.length; index++) { - const key = keys[index]; + const key = keys[index] if (index === 0) { - result = this.$state as any; - continue; + result = this.$state as any + continue } - result = result[key]; + result = result[key] if (typeof result === "undefined") { - break; + break } } - return result; - }, - set() { + return result }, + set() {}, }, -}); +}) diff --git a/tsconfig.app.json b/tsconfig.app.json index 0d8dce5..1de02d4 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -1,13 +1,13 @@ { - "extends": "@vue/tsconfig/tsconfig.web.json", - "include": ["env.d.ts", "src/**/*", "src/**/*.vue"], - "exclude": ["src/**/__tests__/*"], - "compilerOptions": { - "ignoreDeprecations": "5.0", - "composite": true, - "baseUrl": ".", - "paths": { - "@/*": ["./src/*"] + "extends": "@vue/tsconfig/tsconfig.web.json", + "include": ["env.d.ts", "src/**/*", "src/**/*.vue"], + "exclude": ["src/**/__tests__/*"], + "compilerOptions": { + "ignoreDeprecations": "5.0", + "composite": true, + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } } - } } diff --git a/tsconfig.json b/tsconfig.json index 4b3bcb6..5b0355f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,17 +1,17 @@ { - "files": [], - "references": [ - { - "path": "./tsconfig.node.json" - }, - { - "path": "./tsconfig.app.json" - }, - { - "path": "./tsconfig.vitest.json" + "files": [], + "references": [ + { + "path": "./tsconfig.node.json" + }, + { + "path": "./tsconfig.app.json" + }, + { + "path": "./tsconfig.vitest.json" + } + ], + "compilerOptions": { + "types": ["jquery"] } - ], - "compilerOptions": { - "types": ["jquery"] - } } diff --git a/tsconfig.node.json b/tsconfig.node.json index 3204160..64e6b35 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -1,9 +1,9 @@ { - "extends": "@vue/tsconfig/tsconfig.node.json", - "include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"], - "compilerOptions": { - "ignoreDeprecations": "5.0", - "composite": true, - "types": ["node", "jquery"] - } + "extends": "@vue/tsconfig/tsconfig.node.json", + "include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"], + "compilerOptions": { + "ignoreDeprecations": "5.0", + "composite": true, + "types": ["node", "jquery"] + } } diff --git a/tsconfig.vitest.json b/tsconfig.vitest.json index d080d61..d41e7e3 100644 --- a/tsconfig.vitest.json +++ b/tsconfig.vitest.json @@ -1,9 +1,9 @@ { - "extends": "./tsconfig.app.json", - "exclude": [], - "compilerOptions": { - "composite": true, - "lib": [], - "types": ["node", "jsdom"] - } + "extends": "./tsconfig.app.json", + "exclude": [], + "compilerOptions": { + "composite": true, + "lib": [], + "types": ["node", "jsdom"] + } } diff --git a/vite.config.ts b/vite.config.ts index d9015e1..379e779 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,19 +1,19 @@ -import { fileURLToPath, URL } from 'node:url' +import { fileURLToPath, URL } from "node:url" -import { defineConfig } from 'vite' -import vue from '@vitejs/plugin-vue' -import vueJsx from '@vitejs/plugin-vue-jsx' +import { defineConfig } from "vite" +import vue from "@vitejs/plugin-vue" +import vueJsx from "@vitejs/plugin-vue-jsx" // https://vitejs.dev/config/ export default defineConfig({ - plugins: [vue(), vueJsx()], - resolve: { - alias: { - '@': fileURLToPath(new URL('./src', import.meta.url)) - } - }, - build: { - minify: 'esbuild', - target: 'chrome89', - } + plugins: [vue(), vueJsx()], + resolve: { + alias: { + "@": fileURLToPath(new URL("./src", import.meta.url)), + }, + }, + build: { + minify: "esbuild", + target: "chrome89", + }, }) diff --git a/vitest.config.ts b/vitest.config.ts index a2f57a5..459817b 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -1,15 +1,15 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig } from 'vite' -import { configDefaults, defineConfig } from 'vitest/config' -import viteConfig from './vite.config' +import { fileURLToPath } from "node:url" +import { mergeConfig } from "vite" +import { configDefaults, defineConfig } from "vitest/config" +import viteConfig from "./vite.config" export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) + viteConfig, + defineConfig({ + test: { + environment: "jsdom", + exclude: [...configDefaults.exclude, "e2e/*"], + root: fileURLToPath(new URL("./", import.meta.url)), + }, + }), ) diff --git a/yarn.lock b/yarn.lock index 8d60a69..caa43a4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3122,6 +3122,11 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== +prettier@^3.3.3: + version "3.3.3" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105" + integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== + pretty-format@^27.5.1: version "27.5.1" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e"