PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / tetris / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/tetris/block.json

112 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "apiVersion": 3,
3 "$schema": "https://schemas.wp.org/trunk/block.json",
4 "name": "blockenberg/tetris",
5 "title": "Tetris Game",
6 "category": "bkbg-interactive",
7 "icon": "grid-view",
8 "description": "A fully playable Tetris game block. Supports keyboard and on-screen controls, levels, score, and rich style customization.",
9 "keywords": [
10 "tetris",
11 "game",
12 "puzzle",
13 "blocks",
14 "falling",
15 "arcade"
16 ],
17 "textdomain": "blockenberg",
18 "editorScript": "bkbg-tetris-editor",
19 "style": "bkbg-tetris-style",
20 "viewScript": "bkbg-tetris-frontend",
21 "supports": {
22 "html": false,
23 "anchor": true,
24 "className": true,
25 "align": [
26 "wide",
27 "full"
28 ]
29 },
30 "attributes": {
31 "title": {
32 "type": "string",
33 "default": "Tetris"
34 },
35 "subtitle": {
36 "type": "string",
37 "default": "Clear lines to score points!"
38 },
39 "titleTypo": {
40 "type": "object",
41 "default": {}
42 },
43 "subtitleTypo": {
44 "type": "object",
45 "default": {}
46 },
47 "boardWidth": {
48 "type": "number",
49 "default": 10
50 },
51 "boardHeight": {
52 "type": "number",
53 "default": 20
54 },
55 "cellSize": {
56 "type": "number",
57 "default": 30
58 },
59 "startLevel": {
60 "type": "number",
61 "default": 1
62 },
63 "showGhost": {
64 "type": "boolean",
65 "default": true
66 },
67 "showNext": {
68 "type": "boolean",
69 "default": true
70 },
71 "showScore": {
72 "type": "boolean",
73 "default": true
74 },
75 "showLevel": {
76 "type": "boolean",
77 "default": true
78 },
79 "showLines": {
80 "type": "boolean",
81 "default": true
82 },
83 "bgColor": {
84 "type": "string",
85 "default": "#0f0e17"
86 },
87 "boardBg": {
88 "type": "string",
89 "default": "#1a1a2e"
90 },
91 "gridColor": {
92 "type": "string",
93 "default": "#16213e"
94 },
95 "ghostColor": {
96 "type": "string",
97 "default": "rgba(255,255,255,0.12)"
98 },
99 "sectionBg": {
100 "type": "string",
101 "default": "#0f0e17"
102 },
103 "titleColor": {
104 "type": "string",
105 "default": "#fffffe"
106 },
107 "accentColor": {
108 "type": "string",
109 "default": "#ff8906"
110 }
111 }
112 }