Skip to content

Commit

Permalink
Change the cave tiles colors for dark instead of blueish.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julioevm committed Feb 2, 2024
1 parent 3367cd1 commit 71b2c4f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tile_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,25 +75,25 @@ def new_tile(
dirt_floor = new_tile(
walkable=True,
transparent=True,
dark=(ord(" "), (255, 255, 255), (50, 50, 150)),
dark=(ord(" "), (255, 255, 255), (93, 82, 32)),
light=(ord(" "), (255, 255, 255), (200, 180, 50)),
)
cave_wall = new_tile(
walkable=False,
transparent=False,
dark=(ord(" "), (255, 255, 255), (0, 0, 100)),
dark=(ord(" "), (255, 255, 255), (58, 49, 26)),
light=(ord(" "), (255, 255, 255), (130, 110, 50)),
)
cave_down_stairs = new_tile(
walkable=True,
transparent=True,
dark=(ord(">"), (0, 0, 100), (50, 50, 150)),
dark=(ord(">"), (0, 0, 100), (93, 82, 32)),
light=(ord(">"), (255, 255, 255), (200, 180, 50)),
)
cave_up_stairs = new_tile(
walkable=True,
transparent=True,
dark=(ord("<"), (0, 0, 100), (50, 50, 150)),
dark=(ord("<"), (0, 0, 100), (93, 82, 32)),
light=(ord("<"), (255, 255, 255), (200, 180, 50)),
)

Expand Down

0 comments on commit 71b2c4f

Please sign in to comment.