I like Tetris, so I thought of a puzzle similar to it.
There is a given 'field' partially filled with some blocks.
There are also some Tetris blocks(or some others) in a queue(like Modulo).
The objective of this puzzle is to clear the field using all Tetris blocks.
But there is a restriction: You should decide where and in which direction to drop each block, and a block which already started to fall cannot move horizontally nor rotate further.
The answer has two numbers(horizontal position and rotation) for each block.
For example, if the field is given as
and the blocks are
then the answer would be 1081 or (1,0),(8,1), assuming horizontal position starting from the left as zero and clockwise rotation.
This puzzle scales really fast with the number of blocks, at most x36 if the horizontal size is fixed to 10 (Think of L-tromino).
The generation of levels should not be so hard, since it can be done by (optionally) adding full line(s) and cropping suitable blocks from it.