Adds Mockingjay00's title screen.

Adds a system to randomly pick a title screen for the round.
This commit is contained in:
Neerti
2015-11-26 11:33:16 -05:00
parent 85aa2184b4
commit dd05d385c5
3 changed files with 13 additions and 1 deletions
+13 -1
View File
@@ -1,5 +1,17 @@
///var/atom/movable/lobby_image = new /atom/movable{icon = 'icons/misc/title.dmi'; icon_state = lobby_image_state; screen_loc = "1,1"; name = "Polaris"}
/var/atom/movable/lobby_image = new /atom/movable{icon = 'icons/misc/title.dmi'; icon_state = "title"; screen_loc = "1,1"; name = "Polaris"}
var/obj/effect/lobby_image = new /obj/effect/lobby_image
/obj/effect/lobby_image
name = "Polaris"
desc = "How are you reading this?"
icon = 'icons/misc/title.dmi'
icon_state = null //determined randomly later on.
screen_loc = "1,1"
var/list/lobby_images = list("mockingjay00")
/obj/effect/lobby_image/New()
icon_state = pick(lobby_images)
/mob/new_player
var/client/my_client // Need to keep track of this ourselves, since by the time Logout() is called the client has already been nulled