This represents a Star power-up item. When a player touches a star, two colorful bars appear above and below the bird, and touching either bar awards a random gem:

Spawnable Object data #
{
"key": "s",
"gridY": <GridY>,
}
Data Fields #
gridY #
The GridY position to spawn this object (see Coordinate System)
Example Level JSON #
{
"items": [
{
"type": "chunk",
"data": {
"0": [
{ "key": "s", "gridY": 50 }
]
}
}
]
}