Skip to content

Commit 92a3617

Browse files
Update tile_types.py
1 parent 94d5b54 commit 92a3617

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tile_types.py

+6
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,9 @@ def new_tile(
4848
dark=(ord(" "), (255, 255, 255), (0, 0, 100)),
4949
light=(ord(" "), (255, 255, 255), (130, 110, 50)),
5050
)
51+
down_stairs = new_tile(
52+
walkable=True,
53+
transparent=True,
54+
dark=(ord(">"), (0, 0, 100), (50, 50, 150)),
55+
light=(ord(">"), (255, 255, 255), (200, 180, 50)),
56+
)

0 commit comments

Comments
 (0)