Lavaland Edges and Weather Fix

This commit is contained in:
Captain277
2022-03-07 21:38:25 -08:00
parent 766e6b2df1
commit 77f628f41b
8 changed files with 42 additions and 41 deletions

View File

@@ -7,7 +7,7 @@ var/datum/planet/lavaland/planet_lavaland = null
name = "Lava Land"
desc = "The fabled."
current_time = new /datum/time/lavaland()
expected_z_levels = list(21) // Debug testing.
expected_z_levels = list(21, 22) // Debug testing.
/datum/planet/lavaland/New()
..()
@@ -157,11 +157,11 @@ var/datum/planet/lavaland/planet_lavaland = null
wind_low = 3
flight_failure_modifier = 50
sky_visible = FALSE
timer_low_bound = 1 // How long this weather must run before it tries to change, in minutes
timer_high_bound = 1 // How long this weather can run before it tries to change, in minutes
timer_low_bound = 2 // How long this weather must run before it tries to change, in minutes
timer_high_bound = 10 // How long this weather can run before it tries to change, in minutes
transition_chances = list(
WEATHER_ASH_STORM = 5,
WEATHER_CLEAR = 95
WEATHER_ASH_STORM = 15,
WEATHER_CLEAR = 85
)
observed_message = "All that can be seen is black smoldering ash."
transition_messages = list(

View File

@@ -89,6 +89,7 @@
AM.forceMove(T)
// Lava Land turfs
/turf/simulated/floor/outdoors/lavaland
name = "ash sand"
desc = "Soft and ominous."
@@ -96,9 +97,9 @@
icon_state = "asteroid"
outdoors = 1
flags = TURF_HAS_EDGES
edge_blending_priority = 2
edge_blending_priority = 3
base_icon_state = "asteroid"
turf_layers = list(/turf/simulated/floor/outdoors/rocks)
turf_layers = list(/turf/simulated/mineral/floor/lavaland)
initial_flooring = /decl/flooring/outdoors/lavaland
// This is a special subtype of the thing that generates ores on a map