Files
CHOMPStation2/code/datums/locations/sol.dm
Neerti 87c54986da Adds the groundwork to define many, many places in the lore in-game. This could have several applications and help bring the fluff in-game.
Places added:
Sol, needs lots of love.
Tau Ceti, needs more love.
Tajara, Skrell, and Unathi home systems.  Taj needs to be finished.
Nyx, and Vir.
2015-11-26 10:41:19 -05:00

42 lines
771 B
Plaintext

//Sol
/datum/locations/sol
name = "Sol"
desc = "The home system of humanity."
/datum/locations/sol/New(var/creator)
contents.Add(
new /datum/locations/mercury(src),
new /datum/locations/venus(src),
new /datum/locations/earth(src),
new /datum/locations/mars(src),
new /datum/locations/jupiter(src),
new /datum/locations/saturn(src),
new /datum/locations/uranus(src),
new /datum/locations/neptune(src)
)
..(creator)
/datum/locations/mercury
name = "Mercury"
/datum/locations/venus
name = "Venus"
/datum/locations/earth
name = "Earth"
/datum/locations/mars
name = "Mars"
/datum/locations/jupiter
name = "Jupiter"
/datum/locations/saturn
name = "Saturn"
/datum/locations/uranus
name = "Uranus"
/datum/locations/neptune
name = "Neptune"