Online Bomberman Game
Play a Bomberman-style maze run with difficulty modes, assist lanes, local best scores, event logs, score timelines, and JSON exports.Run status
| Metric | Value | Detail | Copy |
|---|---|---|---|
| {{ row.label }} | {{ row.value }} | {{ row.detail }} |
| Time | Event | Detail | Score | Copy |
|---|---|---|---|---|
| {{ row.time }} | {{ row.event }} | {{ row.detail }} | {{ row.score }} |
Introduction:
A good maze-bomb run is less about dropping the first bomb than about knowing where the blast will leave you a few seconds later. The player, enemies, soft blocks, hard walls, powerups, and exit all share a square grid, so every move changes both attack options and escape space. A safe-looking corridor can become dangerous when a bomb closes one end and an enemy enters from the other.
Classic Bomberman-style games use a simple rule with a lot of tactical depth: bombs explode outward in the four cardinal directions. They do not fill a circle. A wall, block, or open lane changes the reachable squares, and that is why grid awareness matters more than reflex alone. The player is usually trying to clear enough soft blocks to open paths and reveal useful items while keeping at least one escape path out of each blast lane.
- Hard walls are permanent barriers. They stop movement and stop fire immediately.
- Soft blocks are breakable barriers. They can hide items or the exit, but they also stop a blast from traveling farther in that direction.
- Blast lanes are the row and column squares reached by a bomb. Longer firepower makes attacks stronger and escape planning stricter.
- Chain reactions happen when one explosion touches another bomb. They can clear space fast, but they can also remove the fuse time the player expected to use.
Most mistakes come from treating a bomb as an instant attack instead of a timed area hazard. A corner trap, a dead-end block, or a chain reaction can punish a move that looked productive at the moment it was made. Stronger bomb capacity and wider firepower increase scoring chances, but they also make it easier to remove the player's own safe squares.
The genre has both single-player stage-clearing roots and competitive battle variants. In a solo maze run, the important finish condition is usually survival plus clearance: defeat the enemies, reveal or reach the exit, and step onto it before a blast or enemy contact ends the attempt.
How to Use This Tool:
Set the match pressure before starting, then use the result tabs after the run to judge whether the clear was controlled or only high-scoring.
- Choose
Easy,Normal, orHardon the start overlay. Easy starts with5lives,3enemies, a longer fuse, and fewer soft blocks. Hard keeps3lives, raises the enemy count to5, shortens the fuse, and increases soft-block density. - Select
Classic,Blast Chain, orPracticefromMode. Classic is the baseline. Blast Chain raises score gains and item odds. Practice lowers score gains while making upgrades more common. - Press
Start Match, or press Enter or Space while the game area has focus. The HUD should showScore,Best,Lives,Bombs,Fire,Enemies, andTime. - Move with the arrow keys or
W,A,S, andD. Space places a bomb. On touch devices, use the directional buttons and theBombbutton that appear below the arena. - Use
Assistwhen learning the lanes. It marks predicted danger cells from active bombs and blasts.Gridkeeps tile boundaries visible, andSoundtoggles the game tones. - Break soft blocks, collect revealed
B,F, andSpowerups, defeat all enemies, and step onto the open gate. A complete clear is recorded asResult=Escaped. - If keyboard controls do not respond, click or tap the arena once and try again. If the score chart stays unavailable after a very short run, start another match and let it capture more than one timeline point.
After the run, review Run Summary first, then use Event Ledger and Score Timeline to find the moment where points, lives, or enemy clearance changed.
Interpreting Results:
Result is the clearest success field. Escaped means the enemies were cleared and the player reached the open gate. A failed run can still have a strong Final score from blocks, powerups, enemies, and chain reactions, so score alone should not be treated as a stage clear.
Compare scores only when Difficulty and Mode match. Blast Chain multiplies the same actions more generously than Classic, while Practice lowers scoring even though it can reveal more upgrades. A local Best score is useful for personal comparison in the same browser profile, not as a shared leaderboard.
| Result field | What it means | Before you compare |
|---|---|---|
Final score |
Total points after mode scaling and rounding. | Keep difficulty and mode the same. |
Best score |
Highest saved score in the current browser profile. | Private browsing, cleared data, or another device can change it. |
Enemies defeated |
Enemy clear progress against the arena total. | The run still needs the gate step to count as escaped. |
Bombs placed |
How often bombs were used during the run. | Many bombs with few defeated enemies can signal unsafe placement. |
Best combo |
Highest quick enemy-defeat chain within the combo window. | A combo burst can raise score without proving full-stage control. |
Score Timeline |
Score, blocks, enemies, and lives over run time. | Use it to spot one risky burst versus steady progress. |
The main false-confidence case is a run with a high score, a big combo, and no escape. Check Result, Enemies defeated, Lives, and the late Event Ledger rows before calling the run controlled.
Advanced Tips:
Better runs come from planning the square after the bomb, not only the square where the bomb lands. Use the same settings for several attempts, then read the event and timeline rows to see whether mistakes are happening during block clearing, enemy chases, or the final gate run.
- Drop early bombs from intersections when possible. A perpendicular escape lane gives more room than a dead end, especially after a soft block breaks and opens enemy movement.
- Turn on
AssistandGridwhile learning firepower changes. They make blast lanes easier to read without changing movement, scoring, enemy contact, or life-loss rules. - Treat
BandFpowerups as risk multipliers as well as upgrades. More bombs and longer fire help chains, but they also cover more of the player's own route. - Use
Practiceto learn item pacing and gate routes, then switch back toClassicorBlast Chainbefore comparing scores. Mode score scales make mixed-mode comparisons misleading. - If
Event Ledgershows repeatedLife lostrows after a score burst, slow the next attempt down. The score timeline should rise without an immediate lives drop if the chain was controlled.
Technical Details:
The arena uses a 13 by 11 grid. The outer border and fixed even-coordinate interior posts are hard blocks, which means many corridors form around permanent square barriers. Soft blocks are placed randomly according to the selected difficulty, with the starting corner and the far exit area kept open enough to prevent an immediate trap.
Blast behavior is deterministic once a bomb is placed. The bomb's center tile and each cardinal direction are evaluated one tile at a time up to the player's current firepower. Hard blocks stop the line without being included. Soft blocks are destroyed and included as the last affected tile in that direction. Active bombs touched by an explosion have their timer shortened, creating chain reactions.
Enemy pressure comes from simple path choices rather than hidden information. Enemies move between walkable neighboring tiles, avoid current blast cells, and often pick the available step that reduces Manhattan distance to the player. Touching an enemy or standing in a blast costs a life, then the player receives a short invulnerable respawn window.
Formula Core
Scoring is action-based. Each block, powerup, enemy defeat, and chain reaction produces a gain, then that gain is multiplied by the selected mode scale and rounded to a whole point value.
| Symbol | Meaning | Value or rule |
|---|---|---|
k |
Mode score scale. | 1.00 Classic, 1.20 Blast Chain, 0.85 Practice. |
q |
Current enemy combo count. | Increases when the next enemy is defeated within 4.2 seconds; otherwise resets to 1. |
n |
Bombs triggered early by one explosion. | Used for chain-reaction scoring. |
For example, two cleared soft blocks and one collected powerup in Classic are worth 80 + 80 + 300 = 460 points. The same actions in Blast Chain use the 1.20 scale, so the gains round to 96 + 96 + 360 = 552. Two enemies defeated inside the combo window in Blast Chain are worth 600 for the first enemy and 780 for the second because the second defeat adds the combo bonus before scaling.
Rule Core
| Rule | Mechanic | Why it matters |
|---|---|---|
| Blast shape | Center tile plus straight lines up, down, left, and right. | Diagonal squares are safe unless another blast reaches them. |
| Hard block stop | Permanent walls stop the blast before the wall square is affected. | Hard walls can create safe corners. |
| Soft block stop | A soft block is destroyed and stops further travel in that direction. | One block can shield everything behind it until it breaks. |
| Life loss | Blast contact or enemy contact costs one life when invulnerability is not active. | Own bombs and enemy movement matter equally for survival. |
| Gate clear | The gate opens after all enemies are defeated, then the player must step onto it. | Enemy clearance alone does not finish the run. |
| Difficulty | Lives | Enemies | Fuse | Soft-block chance | Pressure change |
|---|---|---|---|---|---|
| Easy | 5 | 3 | 2.55 s | 58% | More recovery time and fewer obstacles. |
| Normal | 3 | 4 | 2.35 s | 68% | Balanced enemy count, fuse time, and block density. |
| Hard | 3 | 5 | 2.15 s | 76% | Higher density, faster enemy turns, and less escape time. |
| Powerup | Effect | Limit | Tradeoff |
|---|---|---|---|
B |
Raises active player bomb capacity by one. | Up to 4. |
More bombs allow chains, but they also create more self-trap patterns. |
F |
Raises blast range by one tile. | Up to 5. |
Longer fire reaches enemies farther away and covers more escape squares. |
S |
Shortens player movement delay. | Up to 3. |
Speed helps recovery, but it does not protect a player already in a blast lane. |
Limitations and Browser Notes:
This is a compact browser arcade game inspired by Bomberman-style maze-bomb play. It is not an official Konami Bomberman release, multiplayer battle service, ranked competition, or wagering product, and scores have no monetary value.
- Soft-block placement, item placement, and enemy choices include randomness, so two runs with the same settings can develop differently.
Best scoreand recent run history are stored in the current browser profile. Clearing site data, using private browsing, or switching devices can reset or hide them.- Run summaries, events, and JSON are generated from the local match state. The score timeline may load an external charting script so it can render and export the chart.
- Browser audio often requires a click or key press before tones can play. The animation and music pause when the tab is hidden.
Worked Examples:
Controlled Easy Classic opener
Start with Easy and Classic, clear two nearby soft blocks, and collect one revealed powerup before fighting enemies. Final score can show 460 from two block gains and one powerup gain, while Lives should still be high enough to recover from a mistake. This is a useful opening only if the Event Ledger does not show an early Life lost.
Blast Chain burst with a combo
In Blast Chain, defeating two enemies within the 4.2 second combo window produces a larger score burst than two isolated defeats. The first enemy adds 600 points, the second adds 780, and one early bomb trigger adds 144 through Chain reactions. The Score Timeline should show a steep jump at that moment.
Gate race after enemy clearance
On Normal, a run can reach Enemies defeated = 4/4 before the player reaches the gate. The HUD changes to an exit cue, but Result remains unfinished until the player steps onto the open gate. If a self-blast happens first, the late Event Ledger rows explain why the run did not end as Escaped.
Troubleshooting repeated own-blast losses
If Event Ledger repeatedly shows Life lost with Blast hit, turn on Assist and Grid, then place bombs from intersections instead of dead ends. The practical check is simple: after each bomb, the player should have at least one walkable square outside the predicted blast lane.
FAQ:
How do I clear a match?
Defeat every enemy, reveal or reach the gate path, and step onto the open gate. The run is marked cleared only when Result is Escaped.
Why did my own bomb hurt me?
Player bombs use the same blast rules as every other explosion. If the player is on a reached row or column square and no hard or soft block stops the fire first, the blast costs a life.
What do the B, F, and S items do?
B raises bomb capacity, F raises firepower, and S raises movement speed. Each has a cap, so later copies may stop changing the stat.
Why can I place fewer bombs than the Bombs chip suggests?
The Bombs chip shows available bomb slots over current capacity. A slot returns only after one of the player's active bombs explodes and leaves the board.
Does Assist change the rules?
No. Assist marks predicted danger cells and nearby safer options, but movement, scoring, enemy behavior, and collision rules stay the same.
Is the best score shared across devices?
No. Best score and recent run history are stored in the current browser profile. Another browser, another device, or cleared site data can show different values.
Glossary:
- Blast lane
- The row or column path reached by a bomb explosion.
- Chain reaction
- An explosion that triggers another bomb before its normal fuse ends.
- Combo window
- The short time span in which another enemy defeat increases the enemy combo count.
- Firepower
- The number of tiles a bomb can reach in each direction before a wall or block stops it.
- Hard wall
- A permanent tile that blocks movement and explosions.
- Soft block
- A breakable tile that may hide a powerup or the exit.
References:
- SUPER BOMBERMAN R 2 Official Website, Konami Digital Entertainment.
- SUPER BOMBERMAN COLLECTION Official Website, Konami Digital Entertainment.
- Super Bomberman Gameplay, StrategyWiki.
- Bomberman Gameplay, StrategyWiki.