global.kbasic_module

unit_type
planet_type
building_type
nation_type
goods_type
relation_type


Enum unit_type
  people
  pilot
  scientist
  soldier
End Enum
   
   
Enum planet_type
  earth
  mars
  venus
  mercury
  saturn
  neptune
  jupiter
  moon
End Enum
   
   
Enum building_type
  church
  communication
  education
  energy
  entertainment
  farming
  health
  living
  market
  oxygen
  plazma
  rocketlauncher
  science
  settle
  shield
  spaceport
  wall
  water  
End Enum
   
Enum nation_type
  china
  usa
  eu
End Enum
   
Enum goods_type
  crystal
  energy
  entertainment
  food
  gold
  hightech
  iron
  luxury
  oxygen
  slave
  water
End Enum
     
Enum relation_type
  friend
  enemy
  neutral
End Enum