Topic: Sunshine Paradise - extra bricks
I spent some time recently enhancing the Sunshine Paradise level that comes with Open Surge. There is no new image needed, just add these few bricks:
brick 2
{
// Same as #848 but passable. It covers most other
// bricks that makes creating secret passages easier.
type PASSABLE
behavior DEFAULT
angle 0
zindex 0.9
sprite
{
source_file "images/levels/1/brickset.png"
source_rect 0 848 64 64
frame_size 64 64
animation
{
repeat TRUE
fps 8
data 0
}
}
}
brick 3
{
// A grass tile that acts as a platform that
// one can jump up from beneath.
type CLOUD
behavior DEFAULT
angle 0
sprite
{
source_file "images/levels/1/brickset.png"
source_rect 16 48 16 16
frame_size 16 16
animation
{
repeat TRUE
fps 8
data 0
}
}
}

