summaryrefslogtreecommitdiff
path: root/src/blocks.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/blocks.py')
-rw-r--r--src/blocks.py18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/blocks.py b/src/blocks.py
index 769418b..b534e6b 100644
--- a/src/blocks.py
+++ b/src/blocks.py
@@ -1,14 +1,26 @@
blocks = {
"air": {
"texture": 4,
- "sounds": ("stone", "stone")
+ "sounds": ("stone", "stone"),
+ "placeable": False,
+ "name": "Air"
},
"grass_block": {
"texture": 1,
- "sounds": ("grass", "grass")
+ "sounds": ("grass", "grass"),
+ "placeable": True,
+ "name": "Grass Block"
},
"stone": {
"texture": 3,
- "sounds": ("stone", "stone")
+ "sounds": ("stone", "stone"),
+ "placeable": True,
+ "name": "Stone"
+ },
+ "bedrock": {
+ "texture": 7,
+ "sounds": ("stone", "stone"),
+ "placeable": False,
+ "name": "Bedrock"
}
} \ No newline at end of file