diff --git a/README.md b/README.md index 11e999f..b2fc4a4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Bomberman Clone +# BombExpert -A classic Bomberman clone for [TIC-80](https://tic80.com/) fantasy console. +A classic BombExpert for [TIC-80](https://tic80.com/) fantasy console. ## Features @@ -48,12 +48,12 @@ A classic Bomberman clone for [TIC-80](https://tic80.com/) fantasy console. ### In TIC-80 ```bash -load bomberman.lua +load bombexpert.lua run ``` ### In Browser -Use the HTML export in the `bomberman/` folder with the included server: +Use the HTML export in the `bombexpert/` folder with the included server: ```bash python serve.py ``` @@ -68,7 +68,7 @@ Then open http://localhost:3333 in your browser. ``` bomberman/ -├── bomberman.lua # Main game source code +├── bombexpert.lua # Main game source code ├── serve.py # Simple HTTP server for browser testing └── README.md # This file ``` diff --git a/bomberman.lua b/bombexpert.lua similarity index 99% rename from bomberman.lua rename to bombexpert.lua index 34084c1..952585c 100644 --- a/bomberman.lua +++ b/bombexpert.lua @@ -1,6 +1,6 @@ --- title: Bomberman Clone +-- title: BombExpert -- author: Zsolt Tasnadi --- desc: Simple Bomberman clone for TIC-80 +-- desc: Simple BombExpert for TIC-80 -- site: http://teletype.hu -- license: MIT License -- version: 0.2 @@ -565,7 +565,7 @@ function Splash.update() cls(COLOR_BLACK) - UI.print_shadow("Bomberman", 85, 50, COLOR_BLUE, false, 2) + UI.print_shadow("BombExpert", 85, 50, COLOR_BLUE, false, 2) UI.print_shadow("Clone", 100, 70, COLOR_BLUE, false, 2) State.splash_timer = State.splash_timer - 1 @@ -626,7 +626,7 @@ end function Menu.update() cls(COLOR_BLACK) - UI.print_shadow("Bomberman", 85, 20, COLOR_BLUE, false, 2) + UI.print_shadow("BombExpert", 85, 20, COLOR_BLUE, false, 2) UI.print_shadow("Clone", 100, 40, COLOR_BLUE, false, 2) local cursor_y = 60 + (State.menu_selection - 1) * 14 diff --git a/serve.py b/serve.py index f1072f4..8f0c56f 100755 --- a/serve.py +++ b/serve.py @@ -7,7 +7,7 @@ import os import webbrowser PORT = 3333 -DIRECTORY = "bomberman" +DIRECTORY = "bombexpert" os.chdir(os.path.join(os.path.dirname(os.path.abspath(__file__)), DIRECTORY))