diff options
author | Stijn Buys <ingar@osirion.org> | 2008-03-09 11:05:23 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-03-09 11:05:23 +0000 |
commit | f1eef748e3f1ba63f851731ef37ce287d13509c1 (patch) | |
tree | f4cffcc9ca708abd98e87c58a85b4232283e147f /base | |
parent | 987c4e123c23d25318ba2db56d6881d2c821cf1b (diff) |
added basic shaped entities
Diffstat (limited to 'base')
-rw-r--r-- | base/ini/world.ini | 58 |
1 files changed, 50 insertions, 8 deletions
diff --git a/base/ini/world.ini b/base/ini/world.ini index aaa9213..28945be 100644 --- a/base/ini/world.ini +++ b/base/ini/world.ini @@ -4,32 +4,66 @@ ; Note: the .ini parser isn't very robust [star] -; name of the entity name=star: Sabishi Hoshi location=256 -256 0 -; RGB color, values in the 0-1 range -color=1 1 1 +; RGB color, values in the 0-255 range +color=255 255 255 + +; +; ALEXANDRIA STATION +; [entity] -; name of the entity name=station: Alexandria -; name of the model, without .map suffix model=stations/alexandria -; location, z should be 0 for now location=0 -64 0 -color=.9 .75 .55 +;color=.9 .75 .55 +color=222 192 145 + +[entity] +name=cube: Borg Cube Green +shape=cube +radius=1 +location=24 24 0 +color=0 255 0 + +[entity] +name=cube: Borg Cube Red +shape=cube +radius=1 +location=16 16 0 +color=255 0 0 + +[entity] +name=sphere: The Yellow Sphere +shape=sphere +radius=1 +location=0 32 0 +color=0.8 0.8 0 + +[entity] +name=axis: Galactic Origin +shape=axis +radius=1 +location=0 0 0 +color=1 1 0 + +; +; SHIPYARD +; [entity] name=ship: Canasta model=ships/canasta location=16 20 0 -color=0.5 0.5 1 +color=127 127 1 direction=-90 [entity] name=ship: Canasta model=ships/canasta location=16.5 20.5 0 +; RGB color, values in the 0-1 range color=0.7 0.7 1 direction=90 @@ -74,3 +108,11 @@ model=ships/sharkan location=18.5 18.5 0 color=0.0 0.7 0.2 direction=90 + +;[entity] +;name=Spam +;model=spam +;location=-32 0 0 +;color=0.7 0.0 0.0 +;direction=90 + |