mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +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
|
opacity = 1
|
||||||
density = 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
|
/turf/unsimulated/wall/other
|
||||||
icon_state = "r_wall"
|
icon_state = "r_wall"
|
||||||
|
|
||||||
|
|||||||
@@ -4,60 +4,61 @@
|
|||||||
tag = text("landmark*[]", name)
|
tag = text("landmark*[]", name)
|
||||||
invisibility = 101
|
invisibility = 101
|
||||||
|
|
||||||
if (name == "shuttle")
|
switch(name) //some of these are probably obsolete
|
||||||
|
if("shuttle")
|
||||||
shuttle_z = z
|
shuttle_z = z
|
||||||
del(src)
|
del(src)
|
||||||
|
|
||||||
if (name == "airtunnel_stop")
|
if("airtunnel_stop")
|
||||||
airtunnel_stop = x
|
airtunnel_stop = x
|
||||||
|
|
||||||
if (name == "airtunnel_start")
|
if("airtunnel_start")
|
||||||
airtunnel_start = x
|
airtunnel_start = x
|
||||||
|
|
||||||
if (name == "airtunnel_bottom")
|
if("airtunnel_bottom")
|
||||||
airtunnel_bottom = y
|
airtunnel_bottom = y
|
||||||
|
|
||||||
if (name == "monkey")
|
if("monkey")
|
||||||
monkeystart += loc
|
monkeystart += loc
|
||||||
del(src)
|
del(src)
|
||||||
if (name == "start")
|
if("start")
|
||||||
newplayer_start += loc
|
newplayer_start += loc
|
||||||
del(src)
|
del(src)
|
||||||
|
|
||||||
if (name == "wizard")
|
if("wizard")
|
||||||
wizardstart += loc
|
wizardstart += loc
|
||||||
del(src)
|
del(src)
|
||||||
|
|
||||||
if (name == "JoinLate")
|
if("JoinLate")
|
||||||
latejoin += loc
|
latejoin += loc
|
||||||
del(src)
|
del(src)
|
||||||
|
|
||||||
//prisoners
|
//prisoners
|
||||||
if (name == "prisonwarp")
|
if("prisonwarp")
|
||||||
prisonwarp += loc
|
prisonwarp += loc
|
||||||
del(src)
|
del(src)
|
||||||
// if (name == "mazewarp")
|
// if("mazewarp")
|
||||||
// mazewarp += loc
|
// mazewarp += loc
|
||||||
if (name == "Holding Facility")
|
if("Holding Facility")
|
||||||
holdingfacility += loc
|
holdingfacility += loc
|
||||||
if (name == "tdome1")
|
if("tdome1")
|
||||||
tdome1 += loc
|
tdome1 += loc
|
||||||
if (name == "tdome2")
|
if("tdome2")
|
||||||
tdome2 += loc
|
tdome2 += loc
|
||||||
if (name == "tdomeadmin")
|
if("tdomeadmin")
|
||||||
tdomeadmin += loc
|
tdomeadmin += loc
|
||||||
if (name == "tdomeobserve")
|
if("tdomeobserve")
|
||||||
tdomeobserve += loc
|
tdomeobserve += loc
|
||||||
//not prisoners
|
//not prisoners
|
||||||
if (name == "prisonsecuritywarp")
|
if("prisonsecuritywarp")
|
||||||
prisonsecuritywarp += loc
|
prisonsecuritywarp += loc
|
||||||
del(src)
|
del(src)
|
||||||
|
|
||||||
if (name == "blobstart")
|
if("blobstart")
|
||||||
blobstart += loc
|
blobstart += loc
|
||||||
del(src)
|
del(src)
|
||||||
|
|
||||||
if(name == "xeno_spawn")
|
if("xeno_spawn")
|
||||||
xeno_spawn += loc
|
xeno_spawn += loc
|
||||||
del(src)
|
del(src)
|
||||||
|
|
||||||
|
|||||||
@@ -85,6 +85,15 @@
|
|||||||
density = 0
|
density = 0
|
||||||
circuit = null
|
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
|
/obj/machinery/computer/security/wooden_tv
|
||||||
name = "Security Cameras"
|
name = "Security Cameras"
|
||||||
|
|||||||
@@ -291,6 +291,8 @@
|
|||||||
close()
|
close()
|
||||||
return
|
return
|
||||||
|
|
||||||
|
/obj/machinery/door/morgue
|
||||||
|
icon = 'icons/obj/doors/doormorgue.dmi'
|
||||||
|
|
||||||
/*
|
/*
|
||||||
/obj/machinery/door/airlock/proc/ion_act()
|
/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