diff --git a/code/game/objects/structures/props/prop.dm b/code/game/objects/structures/props/prop.dm index 7f0242ecae..929df2624b 100644 --- a/code/game/objects/structures/props/prop.dm +++ b/code/game/objects/structures/props/prop.dm @@ -52,6 +52,13 @@ icon_state = "ship_memorial" bound_width = 64 +/obj/structure/prop/big_skeleton + name = "large skeleton" + desc = "Whatever it is, it doesn't look too healthy." + icon = 'icons/obj/props/decor96x96.dmi' + icon_state = "big_skeleton" + density = 0 + /** * Notes on change_state diff --git a/code/game/objects/structures/props/rocks.dm b/code/game/objects/structures/props/rocks.dm index b76c477367..220bc83215 100644 --- a/code/game/objects/structures/props/rocks.dm +++ b/code/game/objects/structures/props/rocks.dm @@ -59,4 +59,24 @@ /obj/structure/prop/rock/crystal_dust name = "crystal dust" icon = 'icons/obj/props/decor.dmi' - icon_state = "bsc_dust" \ No newline at end of file + icon_state = "bsc_dust" + +/obj/structure/prop/rock/ice + icon_state = "ice2" + +/obj/structure/prop/rock/ice/spike + icon_state = "ice1" + +/obj/structure/prop/rock/ice/flat + icon_state = "ice3" + +/obj/structure/prop/rock/ice/round + icon_state = "ice4" + +/obj/structure/prop/rock/ice/small + name = "small rocks" + icon_state = "icesmall1" + density = FALSE + +/obj/structure/prop/rock/ice/small/alt + icon_state = "icesmall2" diff --git a/code/game/turfs/simulated/outdoors/snow.dm b/code/game/turfs/simulated/outdoors/snow.dm index a617c12200..94bb48bf59 100644 --- a/code/game/turfs/simulated/outdoors/snow.dm +++ b/code/game/turfs/simulated/outdoors/snow.dm @@ -80,3 +80,17 @@ desc = "Looks slippery." movement_cost = 4 edge_blending_priority = 0 + +// Extra cold variants + +/turf/simulated/floor/outdoors/snow/v5 + temperature = 150 + oxygen = 8 + nitrogen = 17 + carbon_dioxide = 75 + +/turf/simulated/floor/outdoors/ice/v5 + temperature = 150 + oxygen = 8 + nitrogen = 17 + carbon_dioxide = 75 diff --git a/code/modules/mining/mine_turfs.dm b/code/modules/mining/mine_turfs.dm index 29677dad5d..b2845c4f04 100644 --- a/code/modules/mining/mine_turfs.dm +++ b/code/modules/mining/mine_turfs.dm @@ -743,3 +743,26 @@ var/list/mining_overlay_cache = list() mineral = GLOB.ore_data[mineral_name] UpdateMineral() update_icon() + +// V5 turfs + +/turf/simulated/mineral/icey/v5 + temperature = 202 + oxygen = 8 + nitrogen = 17 + carbon_dioxide = 75 + ignore_cavegen = TRUE + +/turf/simulated/mineral/crystal/v5 + temperature = 202 + oxygen = 8 + nitrogen = 17 + carbon_dioxide = 75 + ignore_cavegen = TRUE + +/turf/simulated/mineral/crystal_shiny/v5 + temperature = 202 + oxygen = 8 + nitrogen = 17 + carbon_dioxide = 75 + ignore_cavegen = TRUE diff --git a/icons/obj/flora/rocks.dmi b/icons/obj/flora/rocks.dmi index 1b5e67e3f7..6b5d942473 100644 Binary files a/icons/obj/flora/rocks.dmi and b/icons/obj/flora/rocks.dmi differ diff --git a/icons/obj/overmap_vr.dmi b/icons/obj/overmap_vr.dmi index dae175f214..6d756663ae 100644 Binary files a/icons/obj/overmap_vr.dmi and b/icons/obj/overmap_vr.dmi differ diff --git a/icons/obj/props/decor96x96.dmi b/icons/obj/props/decor96x96.dmi index 9aabbf68d2..31130c4220 100644 Binary files a/icons/obj/props/decor96x96.dmi and b/icons/obj/props/decor96x96.dmi differ diff --git a/icons/skybox/virgo5.dmi b/icons/skybox/virgo5.dmi new file mode 100644 index 0000000000..94e275dd15 Binary files /dev/null and b/icons/skybox/virgo5.dmi differ diff --git a/icons/turf/walls.dmi b/icons/turf/walls.dmi index 86243a853f..b979f1a00e 100644 Binary files a/icons/turf/walls.dmi and b/icons/turf/walls.dmi differ