feat: Rename Bomberman to BombExpert
This commit is contained in:
10
README.md
10
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
|
||||
```
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user