diff --git a/.gitignore b/.gitignore index 35e15c1..c3e636e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ luac.out img/* img up-editor.love +screens/* # luarocks build files *.src.rock diff --git a/force_img/secret.png b/force_img/secret.png new file mode 100644 index 0000000..80af0bc Binary files /dev/null and b/force_img/secret.png differ diff --git a/tiles.lua b/tiles.lua index a718a99..06a8dcf 100644 --- a/tiles.lua +++ b/tiles.lua @@ -6,9 +6,10 @@ tiles = { love.graphics.newImage(img_path.."elevator1.png"), love.graphics.newImage(img_path.."glue.png"), love.graphics.newImage(img_path.."ice.png"), + love.graphics.newImage(img_path.."secret.png"), love.graphics.newImage(img_path.."coin.png"), love.graphics.newImage(img_path.."jitem.png"), } -tiles_char = { '0', 'v', '^', '#', '~', 'c', 'j' } +tiles_char = { '0', 'v', '^', '#', '~', 's', 'c', 'j' } selected_tile = 1