From 841994be9bd70dd965d1b2e7be8573bf05c20f30 Mon Sep 17 00:00:00 2001 From: David Vierra Date: Wed, 9 Mar 2011 15:34:14 -1000 Subject: [PATCH] added different slab types --- materials.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/materials.py b/materials.py index 1d98856..ec03ad8 100644 --- a/materials.py +++ b/materials.py @@ -822,11 +822,42 @@ am.DoubleStoneSlab = am.Block(43, texture=((0x50,0x00), (0x50,0x00), (0x60,0x00), (0x60,0x00), (0x50,0x00), (0x50,0x00)), ) +am.DoubleSandstoneSlab = am.Block(43, blockData=1, + name="Double Sandstone Slab", + texture=((0x00,0xC0), (0x00,0xC0), (0x00,0xB0), (0x00,0xD0), (0x00,0xC0), (0x00,0xC0)), + ) + +am.DoubleWoodenSlab = am.Block(43, blockData=2, + name="Double Wooden Slab", + texture=(0x40,0x00), + ) + +am.DoubleCobblestoneSlab = am.Block(43, blockData=3, + name="Double Cobblestone Slab", + texture=(0x00,0x10), + ) + am.StoneSlab = am.Block(44, name="Stone Slab", texture=((0x50,0x00), (0x50,0x00), (0x60,0x00), (0x60,0x00), (0x50,0x00), (0x50,0x00)), ) +am.SandstoneSlab = am.Block(44, blockData=1, + name="Sandstone Slab", + texture=((0x00,0xC0), (0x00,0xC0), (0x00,0xB0), (0x00,0xD0), (0x00,0xC0), (0x00,0xC0)), + ) + +am.WoodenSlab = am.Block(44, blockData=2, + name="Wooden Slab", + texture=(0x40,0x00), + ) + +am.CobblestoneSlab = am.Block(44, blockData=3, + name="Cobblestone Slab", + texture=(0x00,0x10), + ) + + am.Brick = am.Block(45, name="Brick", texture=(0x70,0x00),