Bluespace Sprite Update (#9122)

This commit is contained in:
Geeves
2020-06-16 19:09:45 +02:00
committed by GitHub
parent 5ec0004476
commit 18d8874bfe
4 changed files with 17 additions and 3 deletions

View File

@@ -4,7 +4,7 @@
desc = "THE END IS right now actually."
icon = 'icons/turf/space.dmi'
icon_state = "bluespace"
icon_state = "bluespace-n"
layer = EFFECTS_ABOVE_LIGHTING_LAYER
light_color = COLOR_CYAN_BLUE
@@ -18,7 +18,6 @@
/turf/unsimulated/wall/supermatter/Initialize()
. = ..()
START_PROCESSING(SScalamity, src)
icon_state = "bluespace[pick("1","2","3")]-[pick("1","2","3","4")]"
/turf/unsimulated/wall/supermatter/process()
if (!(SScalamity.times_fired % 2))

View File

@@ -2,6 +2,7 @@
name = "bluespace"
desc = "The blue beyond, a breach into an unknown dimension. Don't lick it."
desc_info = "Bluespace is a very strange form of pocket dimension, that is largely unpredictable and completely unexplored. While there is speculation about the possibility of celestial bodies existing in Bluespace, it is highly unlikely. Travelling in the Bluespace dimension without a proper gate or Bluespace drive has thus far been proven to be incredibly dangerous, with probes either appearing in unintended locations or never returning at all."
icon_state = "bluespace-n"
plane = 0
use_space_appearance = FALSE
use_starlight = FALSE
@@ -11,7 +12,6 @@
/turf/space/transit/Initialize()
. = ..()
icon_state = "bluespace[pick("1","2","3")]-[pick("1","2","3","4")]"
update_light()
/turf/space/transit/ChangeTurf(var/turf/N, var/tell_universe=1, var/force_lighting_update = 0, var/allow = 0, var/keep_air = FALSE)
@@ -20,3 +20,12 @@
//Overwrite because we dont want people building rods in space.
/turf/space/transit/attackby(obj/O, mob/user)
return FALSE
/turf/space/transit/east
icon_state = "bluespace-e"
/turf/space/transit/south
icon_state = "bluespace-s"
/turf/space/transit/west
icon_state = "bluespace-w"