# blockenberg/2.0.11/blocks/2048-game/block.json

Blockenberg — 600+ Advanced Gutenberg Blocks &amp; AI Agent for WordPress Block Editor, version 2.0.11. 106 lines.

- Page: https://pluginprobe.com/plugins/blockenberg/2.0.11/code/blocks/2048-game/block.json
- Raw: https://pluginprobe.com/plugins/blockenberg/2.0.11/raw/blocks/2048-game/block.json
- Modified: 2026-07-22T02:13:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/blockenberg/2.0.11/code/blocks/2048-game/block.json#L10-L20`.

```json
{
    "apiVersion": 3,
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "name": "blockenberg/game-2048",
    "title": "2048 Game",
    "category": "bkbg-interactive",
    "icon": "games",
    "description": "The classic sliding-tile 2048 puzzle. Swipe or use arrow keys to merge tiles and reach the 2048 tile.",
    "keywords": [
        "2048",
        "game",
        "puzzle",
        "tiles",
        "merge",
        "sliding",
        "numbers"
    ],
    "textdomain": "blockenberg",
    "editorScript": "bkbg-2048-game-editor",
    "style": "bkbg-2048-game-style",
    "viewScript": "bkbg-2048-game-frontend",
    "supports": {
        "html": false,
        "anchor": true,
        "className": true,
        "align": [
            "wide",
            "full"
        ]
    },
    "attributes": {
        "title": {
            "type": "string",
            "default": "2048"
        },
        "subtitle": {
            "type": "string",
            "default": "Combine tiles to reach 2048!"
        },
        "fontSize": {
            "type": "number",
            "default": 36
        },
        "subtitleSize": {
            "type": "number",
            "default": 15
        },
        "titleTypo": {
            "type": "object",
            "default": {}
        },
        "subtitleTypo": {
            "type": "object",
            "default": {}
        },
        "boardSize": {
            "type": "number",
            "default": 380
        },
        "tileRadius": {
            "type": "number",
            "default": 8
        },
        "gridGap": {
            "type": "number",
            "default": 10
        },
        "showScore": {
            "type": "boolean",
            "default": true
        },
        "showBestScore": {
            "type": "boolean",
            "default": true
        },
        "animateTiles": {
            "type": "boolean",
            "default": true
        },
        "gridBg": {
            "type": "string",
            "default": "#bbada0"
        },
        "tileBg": {
            "type": "string",
            "default": "#cdc1b4"
        },
        "sectionBg": {
            "type": "string",
            "default": "#fef9ee"
        },
        "titleColor": {
            "type": "string",
            "default": "#776e65"
        },
        "scoreHeaderBg": {
            "type": "string",
            "default": "#bbada0"
        },
        "newGameBg": {
            "type": "string",
            "default": "#8f7a66"
        }
    }
}

```
