diff options
author | Stijn Buys <ingar@osirion.org> | 2008-03-08 13:13:10 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-03-08 13:13:10 +0000 |
commit | 83a17233202fdea8af1053a410c65b4afafcf7a4 (patch) | |
tree | 802301ddf11f8d67db975743e629cccfc778d984 /base/ini | |
parent | 27d0d7e6b5a42088381762efdf5c6d4d0a78d248 (diff) |
working world.ini
Diffstat (limited to 'base/ini')
-rw-r--r-- | base/ini/world.ini | 89 |
1 files changed, 75 insertions, 14 deletions
diff --git a/base/ini/world.ini b/base/ini/world.ini index 099ed41..dce0ad0 100644 --- a/base/ini/world.ini +++ b/base/ini/world.ini @@ -1,14 +1,75 @@ -[world] -; general world description -label=magellan -name=Magellan - -[sector] -; The Oberon system -label=oberon -name=Oberon System - -[sector] -; The Abyss -label=abyss -name=The Abyss +; world.ini +; describes the entities in the game world +; +; 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 + +[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 + +[entity] +name=ship: Canasta +model=ships/canasta +location=16 20 0 +color=0.5 0.5 1 +direction=-90 + +[entity] +name=ship: Canasta +model=ships/canasta +location=16.5 20.5 0 +color=0.7 0.7 1 +direction=90 + +[entity] +name=ship: Micron Vector +model=ships/vector +location=17 21 0 +color=1 0.5 0.5 +direction=-90 + +[entity] +name=ship: Micron Vector +model=ships/vector +location=17.5 21.5 0 +color=1 0.7 0.7 +direction=90 + +[entity] +name=ship: Orion +model=ships/orion +location=18 22 0 +color=0.5 0.5 1 +direction=-90 + +[entity] +name=ship: Orion +model=ships/orion +location=18.5 22.5 0 +color=1 0.4 0.7 +direction=90 + +[entity] +name=ship: Sharkan +model=ships/sharkan +location=18 18 0 +color=0.0 1 0.2 +direction=-90 + +[entity] +name=ship: Sharkan +model=ships/sharkan +location=18.5 18.5 0 +color=0.0 0.7 0.2 +direction=90 |