Skip to content

Commit

Permalink
Update tile colors for dungeon tiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julioevm committed Feb 2, 2024
1 parent 67f9163 commit 7ce6078
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tile_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,37 +39,37 @@ def new_tile(
floor = new_tile(
walkable=True,
transparent=True,
dark=(ord(" "), (255, 255, 255), (40, 40, 80)),
dark=(ord(" "), (255, 255, 255), (22, 24, 43)),
light=(ord(" "), (255, 255, 255), (50, 50, 100)),
)
wall = new_tile(
walkable=False,
transparent=False,
dark=(ord(" "), (255, 255, 255), (50, 50, 80)),
dark=(ord(" "), (255, 255, 255), (31, 32, 45)),
light=(ord(" "), (255, 255, 255), (70, 70, 100)),
)
closed_door = new_tile(
walkable=False,
transparent=False,
dark=(ord("+"), (255, 255, 255), (50, 50, 80)),
dark=(ord("+"), (255, 255, 255), (31, 32, 45)),
light=(ord("+"), (255, 255, 255), (70, 70, 100)),
)
open_door = new_tile(
walkable=True,
transparent=True,
dark=(ord("-"), (255, 255, 255), (40, 40, 80)),
dark=(ord("-"), (255, 255, 255), (22, 24, 43)),
light=(ord("-"), (255, 255, 255), (50, 50, 100)),
)
down_stairs = new_tile(
walkable=True,
transparent=True,
dark=(ord(">"), (0, 0, 100), (40, 40, 80)),
dark=(ord(">"), (0, 0, 100), (22, 24, 43)),
light=(ord(">"), (255, 255, 255), (50, 50, 100)),
)
up_stairs = new_tile(
walkable=True,
transparent=True,
dark=(ord("<"), (0, 0, 100), (40, 40, 80)),
dark=(ord("<"), (0, 0, 100), (22, 24, 43)),
light=(ord("<"), (255, 255, 255), (50, 50, 100)),
)
dirt_floor = new_tile(
Expand Down

0 comments on commit 7ce6078

Please sign in to comment.