summaryrefslogtreecommitdiff
path: root/src/blocks.py
blob: b534e6b68617209a4ed6b455e9fe0a1b588e7172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
blocks = {
    "air": {
        "texture": 4,
        "sounds": ("stone", "stone"),
        "placeable": False,
        "name": "Air"
    },
    "grass_block": {
        "texture": 1,
        "sounds": ("grass", "grass"),
        "placeable": True,
        "name": "Grass Block"
    },
    "stone": {
        "texture": 3,
        "sounds": ("stone", "stone"),
        "placeable": True,
        "name": "Stone"
    },
    "bedrock": {
        "texture": 7,
        "sounds": ("stone", "stone"),
        "placeable": False,
        "name": "Bedrock"
    }
}