From 83a17233202fdea8af1053a410c65b4afafcf7a4 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 8 Mar 2008 13:13:10 +0000 Subject: working world.ini --- base/ini/world.ini | 89 +++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 75 insertions(+), 14 deletions(-) (limited to 'base/ini') 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 -- cgit v1.2.3