DasTetris/configs/blocks_ADD_000.json
2025-10-26 17:46:25 +02:00

49 lines
1.2 KiB
JSON

{
"ADDITIONAL_BLOCKS": {
"__type__": "EnumClass",
"name": "BlockType",
"members": {
"U": {
"name": "U-Shape",
"color": [135, 135, 135],
"min_score": 4500,
"shapes": [
[[1, 0, 1], [1, 1, 1]],
[[1, 1], [1, 0], [1, 1]],
[[1, 1, 1], [1, 0, 1]],
[[1, 1], [0, 1], [1, 1]]
]
},
"T1": {
"name": "T-Shape+",
"color": [0, 200, 255],
"min_score": 10000,
"shapes": [
[[1, 1, 1], [0, 1, 0], [0, 1, 0]],
[[0, 0, 1], [1, 1, 1], [0, 0, 1]],
[[0, 1, 0], [0, 1, 0], [1, 1, 1]],
[[1, 0, 0], [1, 1, 1], [1, 0, 0]]
]
},
"U1": {
"name": "U-Shape+",
"color": [255, 150, 0],
"min_score": 10000,
"shapes": [
[[1, 1, 1], [1, 0, 1], [1, 0, 1]],
[[1, 1, 1], [1, 0, 0], [1, 1, 1]],
[[1, 0, 1], [1, 0, 1], [1, 1, 1]],
[[1, 1, 1], [0, 0, 1], [1, 1, 1]]
]
},
"X": {
"name": "X-Shape",
"color": [50, 150, 100],
"min_score": 15000,
"shapes": [
[[0, 1, 0], [1, 1, 1], [0, 1, 0]]
]
}
}
}
}