mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-22 05:17:38 +01:00
7b865b9f2e
Adds a Xanu region for Xanu Prime to spawn in. Ice/barren asteroids as possible spawns for mining operations. Adds Xanu Prime as a visitable planet, with 2 regions: the arid grasslands of Naya-Khyber; the tundra of Himavatia. Only basic, super generic planet ruins included. Random ground survey data available for scientific investigations. The following assets that **have not** been created by myself are included in this PR: | Path | Original Author | License | | --- | --- | --- | | /html/images/scans/exoplanets/xanu_prime.png | Kyres1 (Sourced from our own wiki) | CC BY-SA 4.0 | | /sound/music/regional/xanu/xanu_rock_1.ogg | Swara Sutra (https://swarasutra.bandcamp.com/album/indulgence) | CC BY-NC-SA 3.0 | | /sound/music/regional/xanu/xanu_rock_2.ogg | Swara Sutra (https://swarasutra.bandcamp.com/album/indulgence) | CC BY-NC-SA 3.0 |
106 lines
2.8 KiB
Plaintext
106 lines
2.8 KiB
Plaintext
/datum/exoplanet_theme/snow
|
|
name = "Boreal Forest"
|
|
surface_turfs = list(
|
|
/turf/simulated/mineral/planet
|
|
)
|
|
possible_biomes = list(
|
|
BIOME_POLAR = list(
|
|
BIOME_ARID = /singleton/biome/water/ice,
|
|
BIOME_SEMIARID = /singleton/biome/snow
|
|
),
|
|
BIOME_COOL = list(
|
|
BIOME_ARID = /singleton/biome/snow,
|
|
BIOME_SEMIARID = /singleton/biome/snow/forest
|
|
)
|
|
)
|
|
|
|
heat_levels = list(
|
|
BIOME_POLAR = 0.3,
|
|
BIOME_COOL = 1.0,
|
|
)
|
|
|
|
humidity_levels = list(
|
|
BIOME_ARID = 0.7,
|
|
BIOME_SEMIARID = 1.0
|
|
)
|
|
|
|
/datum/exoplanet_theme/snow/tundra
|
|
name = "Frozen Tundra"
|
|
heat_levels = list(
|
|
BIOME_POLAR = 0.7,
|
|
BIOME_COOL = 1.0
|
|
)
|
|
mountain_threshold = 0.6
|
|
|
|
/datum/exoplanet_theme/snow/adhomai
|
|
name = "Adhomai"
|
|
surface_turfs = list(
|
|
/turf/simulated/mineral/adhomai
|
|
)
|
|
mountain_threshold = 0.6
|
|
mountain_biome = /singleton/biome/mountain/adhomai
|
|
possible_biomes = list(
|
|
BIOME_POLAR = list(
|
|
BIOME_ARID = /singleton/biome/water/ice,
|
|
BIOME_SEMIARID = /singleton/biome/snow/adhomai
|
|
),
|
|
BIOME_COOL = list(
|
|
BIOME_ARID = /singleton/biome/snow/adhomai,
|
|
BIOME_SEMIARID = /singleton/biome/snow/forest/adhomai
|
|
)
|
|
)
|
|
|
|
/// Special biome when Raskara blocks the Suns. We will have hostile animals spawn more often
|
|
/datum/exoplanet_theme/snow/adhomai/darkest_eclipse
|
|
possible_biomes = list(
|
|
BIOME_POLAR = list(
|
|
BIOME_ARID = /singleton/biome/water/ice,
|
|
BIOME_SEMIARID = /singleton/biome/snow/adhomai/eclipse
|
|
),
|
|
BIOME_COOL = list(
|
|
BIOME_ARID = /singleton/biome/snow/adhomai/eclipse,
|
|
BIOME_SEMIARID = /singleton/biome/snow/forest/adhomai/eclipse
|
|
)
|
|
)
|
|
|
|
/datum/exoplanet_theme/snow/tundra/adhomai
|
|
name = "Adhomai North Pole"
|
|
mountain_biome = /singleton/biome/mountain/adhomai
|
|
possible_biomes = list(
|
|
BIOME_POLAR = list(
|
|
BIOME_ARID = /singleton/biome/water/ice/polar,
|
|
BIOME_SEMIARID = /singleton/biome/snow/adhomai/polar
|
|
),
|
|
BIOME_COOL = list(
|
|
BIOME_ARID = /singleton/biome/snow/adhomai/polar,
|
|
BIOME_SEMIARID = /singleton/biome/snow/adhomai/polar
|
|
)
|
|
)
|
|
|
|
/// Special biome when Raskara blocks the Suns. We will have hostile animals spawn more often
|
|
/datum/exoplanet_theme/snow/tundra/adhomai/darkest_eclipse
|
|
possible_biomes = list(
|
|
BIOME_POLAR = list(
|
|
BIOME_ARID = /singleton/biome/water/ice/polar,
|
|
BIOME_SEMIARID = /singleton/biome/snow/adhomai/polar/eclipse
|
|
),
|
|
BIOME_COOL = list(
|
|
BIOME_ARID = /singleton/biome/snow/adhomai/polar/eclipse,
|
|
BIOME_SEMIARID = /singleton/biome/snow/adhomai/polar/eclipse
|
|
)
|
|
)
|
|
|
|
/datum/exoplanet_theme/snow/tundra/xanu_himavatia
|
|
name = "Himavatian Tundra"
|
|
|
|
possible_biomes = list(
|
|
BIOME_POLAR = list(
|
|
BIOME_ARID = /singleton/biome/water/ice,
|
|
BIOME_SEMIARID = /singleton/biome/snow/xanu
|
|
),
|
|
BIOME_COOL = list(
|
|
BIOME_ARID = /singleton/biome/snow/xanu,
|
|
BIOME_SEMIARID = /singleton/biome/snow/forest/xanu
|
|
)
|
|
)
|