mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-11 18:22:14 +00:00
## About The Pull Request Puts Northstar's shuttles and docks back into the code. This allows for Northstar to be loaded by admins. ## Why It's Good For The Game Per Maurukas, shuttles should stay in the code.   ## Changelog Nothing player facing.
71 lines
1.6 KiB
Plaintext
71 lines
1.6 KiB
Plaintext
// LABOUR SHUTTLES
|
|
/datum/map_template/shuttle/labour
|
|
port_id = "labour"
|
|
who_can_purchase = null
|
|
|
|
/datum/map_template/shuttle/labour/box
|
|
suffix = "box"
|
|
name = "labour shuttle (Box)"
|
|
|
|
/datum/map_template/shuttle/labour/generic
|
|
suffix = "generic"
|
|
name = "labour shuttle (Generic)"
|
|
|
|
/datum/map_template/shuttle/labour/delta
|
|
suffix = "delta"
|
|
name = "labour shuttle (Delta)"
|
|
|
|
/datum/map_template/shuttle/labour/kilo
|
|
suffix = "kilo"
|
|
name = "labour shuttle (Kilo)"
|
|
|
|
/datum/map_template/shuttle/labour/nebula
|
|
suffix = "nebula"
|
|
name = "labour shuttle (Nebula)"
|
|
|
|
// MINING SHUTTLES
|
|
/datum/map_template/shuttle/mining
|
|
port_id = "mining"
|
|
who_can_purchase = null
|
|
|
|
/datum/map_template/shuttle/mining/box
|
|
suffix = "box"
|
|
name = "mining shuttle (Box)"
|
|
|
|
/datum/map_template/shuttle/mining/delta
|
|
suffix = "delta"
|
|
name = "mining shuttle (Delta)"
|
|
|
|
/datum/map_template/shuttle/mining/kilo
|
|
suffix = "kilo"
|
|
name = "mining shuttle (Kilo)"
|
|
|
|
/datum/map_template/shuttle/mining/large
|
|
suffix = "large"
|
|
name = "mining shuttle (Large)"
|
|
|
|
/datum/map_template/shuttle/mining/northstar
|
|
suffix = "northstar"
|
|
name = "mining shuttle (North Star)"
|
|
|
|
/datum/map_template/shuttle/mining/nebula
|
|
suffix = "nebula"
|
|
name = "mining shuttle (Nebula)"
|
|
|
|
// MINING COMMON SHUTTLES
|
|
/datum/map_template/shuttle/mining_common
|
|
port_id = "mining_common"
|
|
who_can_purchase = null
|
|
|
|
/datum/map_template/shuttle/mining_common/meta
|
|
suffix = "meta"
|
|
name = "lavaland shuttle (Meta)"
|
|
|
|
/datum/map_template/shuttle/mining_common/kilo
|
|
suffix = "kilo"
|
|
name = "lavaland shuttle (Kilo)"
|
|
|
|
/datum/map_template/shuttle/mining_common/northstar
|
|
suffix = "northstar"
|
|
name = "lavaland shuttle (North Star)"
|