mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
What I've got of the mapfix so far:
Fixes morgue-type doors (confession booth, private study, coffin storage) Fixes Entertainment telescreens fixes Splashscreen for new-players Fixes clown-planet HONK git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4566 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -308,6 +308,12 @@
|
||||
opacity = 1
|
||||
density = 1
|
||||
|
||||
turf/unsimulated/wall/splashscreen
|
||||
name = "Space Station 13"
|
||||
icon = 'icons/misc/fullscreen.dmi'
|
||||
icon_state = "title"
|
||||
layer = FLY_LAYER
|
||||
|
||||
/turf/unsimulated/wall/other
|
||||
icon_state = "r_wall"
|
||||
|
||||
|
||||
@@ -4,62 +4,63 @@
|
||||
tag = text("landmark*[]", name)
|
||||
invisibility = 101
|
||||
|
||||
if (name == "shuttle")
|
||||
shuttle_z = z
|
||||
del(src)
|
||||
switch(name) //some of these are probably obsolete
|
||||
if("shuttle")
|
||||
shuttle_z = z
|
||||
del(src)
|
||||
|
||||
if (name == "airtunnel_stop")
|
||||
airtunnel_stop = x
|
||||
if("airtunnel_stop")
|
||||
airtunnel_stop = x
|
||||
|
||||
if (name == "airtunnel_start")
|
||||
airtunnel_start = x
|
||||
if("airtunnel_start")
|
||||
airtunnel_start = x
|
||||
|
||||
if (name == "airtunnel_bottom")
|
||||
airtunnel_bottom = y
|
||||
if("airtunnel_bottom")
|
||||
airtunnel_bottom = y
|
||||
|
||||
if (name == "monkey")
|
||||
monkeystart += loc
|
||||
del(src)
|
||||
if (name == "start")
|
||||
newplayer_start += loc
|
||||
del(src)
|
||||
if("monkey")
|
||||
monkeystart += loc
|
||||
del(src)
|
||||
if("start")
|
||||
newplayer_start += loc
|
||||
del(src)
|
||||
|
||||
if (name == "wizard")
|
||||
wizardstart += loc
|
||||
del(src)
|
||||
if("wizard")
|
||||
wizardstart += loc
|
||||
del(src)
|
||||
|
||||
if (name == "JoinLate")
|
||||
latejoin += loc
|
||||
del(src)
|
||||
if("JoinLate")
|
||||
latejoin += loc
|
||||
del(src)
|
||||
|
||||
//prisoners
|
||||
if (name == "prisonwarp")
|
||||
prisonwarp += loc
|
||||
del(src)
|
||||
// if (name == "mazewarp")
|
||||
// mazewarp += loc
|
||||
if (name == "Holding Facility")
|
||||
holdingfacility += loc
|
||||
if (name == "tdome1")
|
||||
tdome1 += loc
|
||||
if (name == "tdome2")
|
||||
tdome2 += loc
|
||||
if (name == "tdomeadmin")
|
||||
tdomeadmin += loc
|
||||
if (name == "tdomeobserve")
|
||||
tdomeobserve += loc
|
||||
//not prisoners
|
||||
if (name == "prisonsecuritywarp")
|
||||
prisonsecuritywarp += loc
|
||||
del(src)
|
||||
//prisoners
|
||||
if("prisonwarp")
|
||||
prisonwarp += loc
|
||||
del(src)
|
||||
// if("mazewarp")
|
||||
// mazewarp += loc
|
||||
if("Holding Facility")
|
||||
holdingfacility += loc
|
||||
if("tdome1")
|
||||
tdome1 += loc
|
||||
if("tdome2")
|
||||
tdome2 += loc
|
||||
if("tdomeadmin")
|
||||
tdomeadmin += loc
|
||||
if("tdomeobserve")
|
||||
tdomeobserve += loc
|
||||
//not prisoners
|
||||
if("prisonsecuritywarp")
|
||||
prisonsecuritywarp += loc
|
||||
del(src)
|
||||
|
||||
if (name == "blobstart")
|
||||
blobstart += loc
|
||||
del(src)
|
||||
if("blobstart")
|
||||
blobstart += loc
|
||||
del(src)
|
||||
|
||||
if(name == "xeno_spawn")
|
||||
xeno_spawn += loc
|
||||
del(src)
|
||||
if("xeno_spawn")
|
||||
xeno_spawn += loc
|
||||
del(src)
|
||||
|
||||
return 1
|
||||
|
||||
|
||||
@@ -85,6 +85,15 @@
|
||||
density = 0
|
||||
circuit = null
|
||||
|
||||
/obj/machinery/computer/security/telescreen/entertainment
|
||||
name = "entertainment monitor"
|
||||
desc = "Damn, they better have /tg/thechannel on these things."
|
||||
icon = 'icons/obj/status_display.dmi'
|
||||
icon_state = "entertainment"
|
||||
network = "thunder"
|
||||
density = 0
|
||||
circuit = null
|
||||
|
||||
|
||||
/obj/machinery/computer/security/wooden_tv
|
||||
name = "Security Cameras"
|
||||
|
||||
@@ -291,6 +291,8 @@
|
||||
close()
|
||||
return
|
||||
|
||||
/obj/machinery/door/morgue
|
||||
icon = 'icons/obj/doors/doormorgue.dmi'
|
||||
|
||||
/*
|
||||
/obj/machinery/door/airlock/proc/ion_act()
|
||||
|
||||
15221
maps/tgstation.2.0.9.dmm
15221
maps/tgstation.2.0.9.dmm
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user