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 / word-scramble / block.json

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

110 lines 2.7 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/word-scramble",
5 "title": "Word Scramble",
6 "category": "bkbg-interactive",
7 "icon": "editor-spellcheck",
8 "description": "Interactive word unscramble game with categories, hints, scoring, and timer. Multiple difficulty levels.",
9 "keywords": [
10 "word",
11 "scramble",
12 "game",
13 "unscramble",
14 "puzzle",
15 "quiz",
16 "spelling"
17 ],
18 "textdomain": "blockenberg",
19 "editorScript": "bkbg-word-scramble-editor",
20 "style": "bkbg-word-scramble-style",
21 "viewScript": "bkbg-word-scramble-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": "Word Scramble"
35 },
36 "subtitle": {
37 "type": "string",
38 "default": "Unscramble the letters to find the hidden word!"
39 },
40 "defaultCategory": {
41 "type": "string",
42 "default": "animals"
43 },
44 "defaultDifficulty": {
45 "type": "string",
46 "default": "medium"
47 },
48 "hintsAllowed": {
49 "type": "number",
50 "default": 3
51 },
52 "showTimer": {
53 "type": "boolean",
54 "default": true
55 },
56 "showScore": {
57 "type": "boolean",
58 "default": true
59 },
60 "showStreak": {
61 "type": "boolean",
62 "default": true
63 },
64 "timeLimit": {
65 "type": "number",
66 "default": 60
67 },
68 "accentColor": {
69 "type": "string",
70 "default": "#f59e0b"
71 },
72 "correctColor": {
73 "type": "string",
74 "default": "#22c55e"
75 },
76 "wrongColor": {
77 "type": "string",
78 "default": "#ef4444"
79 },
80 "sectionBg": {
81 "type": "string",
82 "default": "#fffbeb"
83 },
84 "cardBg": {
85 "type": "string",
86 "default": "#ffffff"
87 },
88 "titleColor": {
89 "type": "string",
90 "default": "#92400e"
91 },
92 "fontSize": {
93 "type": "number",
94 "default": 28
95 },
96 "subtitleSize": {
97 "type": "number",
98 "default": 14
99 },
100 "titleTypo": {
101 "type": "object",
102 "default": {}
103 },
104 "subtitleTypo": {
105 "type": "object",
106 "default": {}
107 }
108 }
109 }
110