Added new base block

This commit is contained in:
Anry Das 2025-11-16 09:20:27 +02:00
parent b050fd9029
commit 53b8db31bc
2 changed files with 18 additions and 0 deletions

View File

@ -19,6 +19,15 @@
[[1,1,1,1]],[[1],[1],[1],[1]] [[1,1,1,1]],[[1],[1],[1],[1]]
] ]
}, },
"I3": {
"name": "Line3",
"color": [55,180,210],
"min_score": 0,
"shapes": [
[[1,1,1]],
[[1],[1],[1]]
]
},
"L": { "L": {
"name": "L-Shape", "name": "L-Shape",
"color": [255, 0, 255], "color": [255, 0, 255],

View File

@ -45,6 +45,15 @@ class BlockType(Enum):
[[1], [1], [1], [1]] [[1], [1], [1], [1]]
] ]
} }
I3 = {
'name': 'Line3',
'color': (55, 180, 210),
'min_score': 0,
'shapes': [
[[1, 1, 1]],
[[1], [1], [1]]
]
}
L = { L = {
'name': 'L-Shape', 'name': 'L-Shape',
'color': (255, 0, 255), # Magenta 'color': (255, 0, 255), # Magenta