View Page Source

Revision (current)
Last Updated by PoochyEXE on 1/24/2017 1:36 PM
Back to Page

%%TOC%%

Magical Tetris Challenge is a rather obscure Tetris game made by Capcom in 1998. Like a lot of Tetris games, the objective is to clear multiple lines at once and/or clear lines with consecutive pieces to send attacks to your opponent, and whoever fills their field to the top first loses. But unlike most Tetris games, attacks don't come in the form of rising rows of garbage blocks. Instead, sending attacks fills up your opponent's queue with unusual, harder to use "magical" pieces which they then have to place.

The magical pieces start out as pentominoes. However, if you clear a line while you have magical pieces in your queue, you can counter some of your magical pieces, which turn into square blocks and are sent back to your opponent, showing up as "?"s in their queue. These are 2x2 square blocks after the first counter, but they can be countered right back, and they grow with every volley up to a maximum size of 5x5 after 4 counters.

If you let your queue fill to capacity, any overflow turns existing pieces in your queue into "!". A "!" piece can't be countered, and they're massive pieces you really do NOT want to get, such as pyramids and diamonds.

One other unique feature is a meter in the bottom corner. Single-line clears that don't counter anything fill up the meter. When it reaches the maximum, after the next piece you drop, your entire playing field will collapse down to the bottom, your lowest column gets removed entirely, and then everything above meter's height is erased and the meter grows longer for next time. Doing an All Clear is the only way to shrink the meter back down. 

!! Tetris Parameters

* ARE: 31 frames
* Line clear delay: (16 + # of lines cleared) frames, skips ARE
* DAS: (Likely not useful for TAS purposes)
** Delay: 9 frames (first auto-shift occurs on frame 10)
** Repeat rate: 1G (1 block/frame)
** Does not charge during ARE.
** Reversing direction without a frame of empty input preserves the charge.
* Lock delay: 30 frames, no resets
* Soft drop speed: 1G (1 block/frame)

!! Luck Manipulation

The game appears to always start with the same seed for the first round after boot, much like Sega's 1988 arcade Tetris and its famous "power-on pattern".

However, there are ways to advance the seed in mid-game without dropping a piece, meaning the piece sequence will not always be entirely the same throughout the match. Sending magical pieces advances the seed; each pentomino sent increments the seed when it gets added to the queue, while "!" and "?" pieces need to be verified. Clearing a line also advances the seed.

Since both players share the second-to-next piece in the middle when neither player has any magical pieces queued, it's possible to manipulate luck by simply stalling and waiting for the opponent to drop a piece.

Additionally, when the meter does its thing, the next several pieces in the sequence are guaranteed to be I's. Presumably this was programmed to help the player who just triggered their meter, since it tends to leave a flat playing field with one deep canyon in it, where an I would be extremely useful and anything else would be of minimal use. But with some luck manipulation and/or good timing, this can be exploited to get an All Clear.

!! Scoring

! Line Clears

The base values are as follows, with the ''n''th hit in a combo multiplied by 2^''n'':

||Lines||Name||Points||
|1|Single|100|
|2|Double|250|
|3|Triple|750|
|4|Tetris|3000|
|5|Pentris|5000|

! End of Stage Bonus
* Time bonus: The faster the more points, the exact formula has yet to be determined.
* 1,000 points for each countered magical piece
* 100,000 points for each All Clear

! Bonus Multiplier
The multiplier is based purely on the highest combo achieved in the stage.
||Max Combo||Multiplier||
|0|x2|
|1|x1|
|2|x2|
|3|x5|
|4|x10|
|5|x20|
|6|x40|
|7|x100|
|8|x200|
|9|x400|
|10|x800|
|11|x1000|
|12|x1200|
|13|x1400|
|14|x1600|
|15|x1800|
|16|x2000|
|17|x3000|
|18|x4000|
|19|x5000|
|20|x10000|

! Miscellaneous

In Endless Mode, you also gain 1 point after each stage, added during the stage transition.

!! Magic Meter

The meter starts at level 2. Each time it triggers, it increases by one level (up to the max of 5), and each All Clear decreases it by one level. Levels map to heights (in blocks) as follows:

||Meter stage||Normal||Handicapped||
|1|2|6|
|2|4|8|
|3|5|10|
|4|6|12|
|5 (max)|7|?|

On Easy, the AI gets a handicapped meter. On Expert, the player gets a handicapped meter. Otherwise, the normal heights apply.

Only singles can generate "charges" that fill the meter. It takes 8 charges to fill one block of the meter. However, if you have pieces in your queue that can be countered, charges will go towards countering instead of the meter. After 30 seconds have passed in the match, the intensity level goes to LV-2 and singles start generating 2 charges each plus 1 attack.

There's a delay between the line clear and the charge actually being added to the meter, as illustrated by the attack object flying up to the top of the playfield and then moving back down to the meter. This appears to vary based on how much of the meter is already filled and whether or not the player has any magical pieces in their queue.

When it's full, the playfield collapses, dropping all blocks down as far as possible, then the lowest column is removed entirely and everything above the top of the meter is removed.

The playfield collapse triggered by the meter takes an additional 4 frames per hole (i.e. any empty cell with one or more blocks above it) and 1 frame per block in the lowest column (post-collapse).

!! AI

Easy and Normal mode appear to use the same AI, except in Normal mode the AI plays a bit faster. Expert uses a different AI, which will stall and wait for just the right piece to come up in the shared piece preview.

!! Attack Table

The number of magical pieces sent or countered in an attack depends on the number of lines cleared, whether or not it was part of a combo, and most notably the intensity level in the top center of the screen.

||Clear||LV-1||LV-2||LV-3||LV-4||
|Single|0+1|1+2|1+2|2+2|
|Double|3|3|4|4|
|Triple|4|4|5|6|
|Tetris|6|6|7|8|
|Pentris|?|10|10|10|

Note on singles: Singles are special because they can contribute to your Magic Meter instead of sending garbage, but the charge will go towards countering instead if possible. In other words, a value of X+Y is processed as follows:

# Send X magical pieces, countering if possible.
# Counter up to Y pieces.
# Any of the Y charges not used to counter in step 2 go towards filling up the Magic Meter.

Combos add +1 to each clear from the 2nd hit onwards. For a single+combo, the combo's +1 counters first.


!! Miscellaneous
R to skip cutscenes and menu transitions.

Hard drop + rotate on the same frame: The game processes the drop, then the rotation, and ''then'' sets remaining lock delay to 0 -- similar to the behavior that allows Synchro moves in Tetris: The Grand Master.