53 lines
1.8 KiB
Plaintext
53 lines
1.8 KiB
Plaintext
Blocks :
|
|
[-1.0, 0.0, -1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 255, 255, 255]
|
|
[-5.0, 0.0, -1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 255, 255, 255]
|
|
[-1.0, 0.0, -5.0, 2.0, 1.0, 2.0, 0.0, 0.0, 255, 255, 255]
|
|
[3.0, 0.0, -1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 255, 255, 255]
|
|
[-1.0, 0.0, 3.0, 2.0, 1.0, 2.0, 0.0, 0.0, 255, 255, 255]
|
|
|
|
Teleporters :
|
|
[-1.0, 0.0, -9.0, 2.0, 1.0, 2.0, 0.0, 0.0, 255, 0, 0; -1, 0]
|
|
[-9.0, 0.0, -1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 255, 255, 0; 0, -1]
|
|
[-1.0, 0.0, 7.0, 2.0, 1.0, 2.0, 0.0, 0.0, 0, 255, 0; 1, 0]
|
|
[7.0, 0.0, -1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 0, 0, 255; 0, 1]
|
|
|
|
Entities :
|
|
[1.0, 3.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 193, 192, 0, 1, 0, 0]
|
|
[1.0, 4.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 193, 192, 0, 1, 0, 0]
|
|
[1.0, 5.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 193, 192, 0, 1, 0, 0]
|
|
[0.0, 6.0, 1.0, 0.5, 0.5, 0.5, 0.0, 0.0, 193, 192, 0, 1, 0, 0]
|
|
[0.0, 7.0, 1.0, 0.5, 0.5, 0.5, 0.0, 0.0, 193, 192, 0, 1, 0, 0]
|
|
[0.0, 8.0, 1.0, 0.5, 0.5, 0.5, 0.0, 0.0, 193, 192, 0, 1, 0, 0]
|
|
[0.0, 9.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 193, 192, 0, 1, 0, 0]
|
|
[0.0, 10.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 193, 192, 0, 1, 0, 0]
|
|
|
|
Weight :
|
|
50
|
|
|
|
$
|
|
entities:
|
|
[x, y, z, w, h, d, rhz, rvt, red, green, blue, hp, damage, entityType ..]
|
|
|
|
if entityType = 4 (moving platform)
|
|
[.. amplitude_x, amplitude_y, amplitude_z, mult, divd, phase] with
|
|
amplitude_{x,y,z} = double[>= 0.0]
|
|
{mult,divd} = int
|
|
{phase} = int[0, 360]
|
|
|
|
else if entityType = 5 (linear moving platform)
|
|
[.. amplitude_x, amplitude_y, amplitude_z, speed_x, speed_y, speed_z] with
|
|
amplitude_{x,y,z} = double[>= 0.0]
|
|
speed_{x,y,z} = double
|
|
|
|
else if entityType = 6 (text box)
|
|
[.. text] with
|
|
text = {char*}
|
|
|
|
// NOT IMPLEMENTED YET //
|
|
else if entityType = 7 (warp text box)
|
|
[.. text, r, g, b] with
|
|
text = {char*} (length <= 50)
|
|
{r,g,b} = int[0-256]
|
|
|
|
else
|
|
[..] |