Gunpowder Blocks
GUNPOWDER BLOCKS
| Effect | blocks will shoot out bullets when destroyed |
| 名前 | カヤクブロック |
| 説明 | ハコを こわすと うえに タマが でる |
In the game
Gunpowder Blocks (カヤクブロック) is an upgrade. Blocks will shoot out bullets when destroyed.
Stats
From the breakable-block code (obj_box_n):
- Each destroyed block fires a single bullet straight up dealing 20 damage. The damage is flat: it does not scale with area, depth, or anything else (and only one copy of the upgrade can be obtained).
- The bullet is a reused Drone bullet (
bulletDrone) with its damage overridden from the Drone's 4 up to 20, five times stronger than the Drone's own shots. - The upgrade also chains: when a block breaks, the four orthogonally adjacent blocks are set to break 5 frames later, each releasing its own 20-damage bullet, so destruction cascades through connected clusters. The in-game description does not mention this.
- Internally the upgrade flag is called
pugChainReaction, after the cascade rather than the bullets; the name Gunpowder Blocks appears only in the display strings.