Add StairsUp and StairsDown tile types

This commit is contained in:
Eryn Wells 2023-02-09 20:57:51 -08:00
parent ac5efa7518
commit d9aa8097c5

View file

@ -42,6 +42,14 @@ Floor = tile(
walkable=True, transparent=True,
dark=(ord('·'), (80, 80, 100), (50, 50, 50)),
light=(ord('·'), (100, 100, 120), (80, 80, 100)))
StairsUp = tile(
walkable=True, transparent=True,
dark=(ord('<'), (80, 80, 100), (50, 50, 50)),
light=(ord('<'), (100, 100, 120), (80, 80, 100)))
StairsDown = tile(
walkable=True, transparent=True,
dark=(ord('>'), (80, 80, 100), (50, 50, 50)),
light=(ord('>'), (100, 100, 120), (80, 80, 100)))
Wall = tile(
walkable=False, transparent=False,
dark=(ord(' '), (255, 255, 255), (0, 0, 150)),