mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 02:16:05 +00:00
BusStation: Ready for Public Testing (#10108)
* Mapperbus * Changelog * Step X? More like pun goes here! * Updates!
This commit is contained in:
@@ -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
|
||||
|
||||
4
html/changelogs/Kurfurst.yml
Normal file
4
html/changelogs/Kurfurst.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
author: Kurfurst
|
||||
delete-after: True
|
||||
changes:
|
||||
- rscadd: Added BusStation
|
||||
36
maps/busstation.dm
Normal file
36
maps/busstation.dm
Normal 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
8996
maps/busstation.dmm
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user