PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.11
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.11
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 / memory-game / block.json

block.json in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.11, at blocks/memory-game/block.json

126 lines 3.0 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/memory-game",
5 "title": "Memory Game",
6 "category": "bkbg-interactive",
7 "icon": "grid-view",
8 "description": "Interactive card-flip memory matching game with emoji themes, difficulty levels, move counter, timer, and best score tracking.",
9 "keywords": [
10 "memory",
11 "game",
12 "cards",
13 "match",
14 "flip",
15 "concentration",
16 "puzzle"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-memory-game-editor",
20 "style": "bkbg-memory-game-style",
21 "viewScript": "bkbg-memory-game-frontend",
22 "supports": {
23 "html": false,
24 "anchor": true,
25 "className": true,
26 "align": [
27 "wide",
28 "full"
29 ]
30 },
31 "attributes": {
32 "title": {
33 "type": "string",
34 "default": "Memory Game"
35 },
36 "subtitle": {
37 "type": "string",
38 "default": "Flip the cards and find all matching pairs!"
39 },
40 "showTitle": {
41 "type": "boolean",
42 "default": true
43 },
44 "showSubtitle": {
45 "type": "boolean",
46 "default": true
47 },
48 "showTimer": {
49 "type": "boolean",
50 "default": true
51 },
52 "showMoves": {
53 "type": "boolean",
54 "default": true
55 },
56 "showBestScore": {
57 "type": "boolean",
58 "default": true
59 },
60 "defaultDifficulty": {
61 "type": "string",
62 "default": "medium"
63 },
64 "defaultTheme": {
65 "type": "string",
66 "default": "animals"
67 },
68 "flipDelay": {
69 "type": "number",
70 "default": 900
71 },
72 "accentColor": {
73 "type": "string",
74 "default": "#8b5cf6"
75 },
76 "cardBack": {
77 "type": "string",
78 "default": "#8b5cf6"
79 },
80 "cardFront": {
81 "type": "string",
82 "default": "#ffffff"
83 },
84 "cardMatched": {
85 "type": "string",
86 "default": "#22c55e"
87 },
88 "sectionBg": {
89 "type": "string",
90 "default": "#f5f3ff"
91 },
92 "cardBg": {
93 "type": "string",
94 "default": "#ffffff"
95 },
96 "titleColor": {
97 "type": "string",
98 "default": "#4c1d95"
99 },
100 "subtitleColor": {
101 "type": "string",
102 "default": "#6b7280"
103 },
104 "labelColor": {
105 "type": "string",
106 "default": "#374151"
107 },
108 "titleFontSize": {
109 "type": "number",
110 "default": 28
111 },
112 "contentMaxWidth": {
113 "type": "number",
114 "default": 620
115 },
116 "titleTypo": {
117 "type": "object",
118 "default": {}
119 },
120 "subtitleTypo": {
121 "type": "object",
122 "default": {}
123 }
124 }
125 }
126