DasTetris/configs/blocks_000.json
2025-11-16 09:20:27 +02:00

84 lines
1.8 KiB
JSON

{
"ALL_BLOCKS": {
"__type__": "EnumClass",
"name": "BlockType",
"members": {
"O": {
"name": "Square",
"color": [255, 255, 0],
"min_score": 0,
"shapes": [
[[1,1],[1,1]]
]
},
"I": {
"name": "Line",
"color": [0, 255, 255],
"min_score": 0,
"shapes": [
[[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": {
"name": "L-Shape",
"color": [255, 0, 255],
"min_score": 0,
"shapes": [
[[1, 0], [1, 0], [1, 1]],
[[1, 1, 1], [1, 0, 0]],
[[1, 1], [0, 1], [0, 1]],
[[0, 0, 1], [1, 1, 1]]
]
},
"J": {
"name": "J-Shape",
"color": [0, 0, 255],
"min_score": 900,
"shapes": [
[[0, 1], [0, 1], [1, 1]],
[[1, 0, 0], [1, 1, 1]],
[[1, 1], [1, 0], [1, 0]],
[[1, 1, 1], [0, 0, 1]]
]
},
"S": {
"name": "S-Shape",
"color": [0, 255, 0],
"min_score": 1000,
"shapes": [
[[0, 1, 1], [1, 1, 0]],
[[1, 0], [1, 1], [0, 1]]
]
},
"Z": {
"name": "Z-Shape",
"color": [255, 0, 0],
"min_score": 2500,
"shapes": [
[[1, 1, 0], [0, 1, 1]],
[[0, 1], [1, 1], [1, 0]]
]
},
"T": {
"name": "T-Shape",
"color": [255, 255, 255],
"min_score": 2500,
"shapes": [
[[1, 1, 1], [0, 1, 0]],
[[1, 0], [1, 1], [1, 0]],
[[0, 1, 0], [1, 1, 1]],
[[0, 1], [1, 1], [0, 1]]
]
}
}
}
}