1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
section Sprites
{
section Ship
{
frame1 = Gfx/ship1.png (type=surface);
frame2 = Gfx/ship2.png (type=surface);
frame3 = Gfx/ship3.png (type=surface);
}
section Wormhole1
{
frame1 = Gfx/wormhole1.tga (type=surface);
}
section Wormhole2
{
frame1 = Gfx/wormhole2.tga (type=surface);
}
}
section Backgrounds
{
nebula1 = Gfx/nebula.jpg (type=surface);
}
section Titles
{
mainmenu = Gfx/title_mainmenu.tga (type=surface);
options = Gfx/title_options.tga (type=surface);
lobby = Gfx/title_lobby.tga (type=surface);
}
section Intro
{
font = Gfx/green_font.tga(
type=font,
trans_limit=0.00,
subtract_width=5,
spacelen=10,
letters="aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ0123456789.,:;|!""@#$%&/\{}[]()<>=+-_?'`~^*"
);
background = Gfx/intro.jpg (type=surface);
section Sounds
{
write = Sound/write.wav(type=sample);
background = Sound/space.wav(type=sample);
}
}
section Button
{
font = Gfx/small_font.tga(
type=font,
trans_limit=0.05,
subtract_width=0,
spacelen=6,
letters="aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ0123456789.,:;|!""@#$%&/\{}[]()<>=+-_?'`~^*"
);
up_left = Gfx/buttonup_left.tga (type = surface);
up_center = Gfx/buttonup_center.tga (type = surface);
up_right = Gfx/buttonup_right.tga (type = surface);
down_left = Gfx/buttondown_left.tga (type = surface);
down_center = Gfx/buttondown_center.tga (type = surface);
down_right = Gfx/buttondown_right.tga (type = surface);
}
section CheckBox
{
font = Gfx/small_font.tga(
type=font,
trans_limit=0.05,
subtract_width=0,
spacelen=6,
letters="aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ0123456789.,:;|!""@#$%&/\{}[]()<>=+-_?'`~^*"
);
left = Gfx/buttonup_left.tga (type = surface);
right = Gfx/buttonup_right.tga (type = surface);
ticker = Gfx/button_ticker.tga (type = surface);
}
section Label
{
font = Gfx/small_font.tga(
type=font,
trans_limit=0.05,
subtract_width=0,
spacelen=6,
letters="aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ0123456789.,:;|!""@#$%&/\{}[]()<>=+-_?'`~^*"
);
}
section InputBox
{
font = Gfx/small_font.tga(
type=font,
trans_limit=0.05,
subtract_width=0,
spacelen=6,
letters="aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ0123456789.,:;|!""@#$%&/\{}[]()<>=+-_?'`~^*"
);
left = Gfx/input_left.tga (type = surface);
center = Gfx/input_center.tga (type = surface);
right = Gfx/input_right.tga (type = surface);
}
section ListBox
{
font = Gfx/small_font.tga(
type=font,
trans_limit=0.05,
subtract_width=0,
spacelen=6,
letters="aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ0123456789.,:;|!""@#$%&/\{}[]()<>=+-_?'`~^*"
);
}
|