From 6a20ab31ef4d9f6bb0e008b9f1b8d3fbeb6bd956 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Sat, 2 Sep 2023 15:32:03 +0200 Subject: Updated 13 files and added 2 files (automated) --- src/blocks.py | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'src/blocks.py') 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 -- cgit