BusStation: Ready for Public Testing (#10108)

* Mapperbus

* Changelog

* Step X? More like pun goes here!

* Updates!
This commit is contained in:
Kurfursten
2016-05-22 14:39:49 -05:00
committed by clusterfack
parent 4ad7c6f639
commit b03af7dee9
4 changed files with 9049 additions and 1 deletions

View File

@@ -461,7 +461,7 @@
return 0
battery.charge = max(0, battery.charge - 3)
/obj/effect/landmark/spacepod/random
/obj/effect/landmark/spacepod/random //One of these will be chosen from across all Z levels to receive a pod in gameticker.dm
name = "spacepod spawner"
invisibility = 101
icon = 'icons/mob/screen1.dmi'
@@ -471,5 +471,17 @@
/obj/effect/landmark/spacepod/random/New()
..()
/obj/effect/landmark/spacepod/guaranteed //We're not messing around: we want a guaranteed pod!
name = "guaranteed spacepod spawner"
invisibility = 101
anchored = 1
icon = 'icons/mob/screen1.dmi'
icon_state = "x"
/obj/effect/landmark/spacepod/guaranteed/New()
sleep(10)
new /obj/spacepod/random(get_turf(src))
qdel(src)
#undef DAMAGE
#undef FIRE

View File

@@ -0,0 +1,4 @@
author: Kurfurst
delete-after: True
changes:
- rscadd: Added BusStation

36
maps/busstation.dm Normal file
View File

@@ -0,0 +1,36 @@
//**************************************************************
// Map Datum -- Busstation
//**************************************************************
/datum/map/active
nameShort = "bus"
nameLong = "Bus Station"
map_dir = "busstation"
tDomeX = 127
tDomeY = 67
tDomeZ = 2
zAsteroid = 6
zDeepSpace = 5
zLevels = list(
/datum/zLevel/station,
/datum/zLevel/centcomm,
/datum/zLevel/space{
name = "spaceOldSat" ;
},
/datum/zLevel/space{
name = "derelict" ;
},
/datum/zLevel/space{
name = "spacePirateShip" ;
},
/datum/zLevel/mining,
)
/datum/map/active/New()
.=..()
research_shuttle.name = "Asteroid Shuttle" //There is only one shuttle on taxi - the asteroid shuttle
research_shuttle.req_access = list() //It's shared by miners and researchers, so remove access requirements
////////////////////////////////////////////////////////////////
#include "busstation.dmm"

8996
maps/busstation.dmm Normal file

File diff suppressed because it is too large Load Diff