mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-22 21:37:10 +01:00
- repaths things to /entity and /tiled - basic ticked physics movement system - basic cross/uncross/etc system for tiled --------- Co-authored-by: silicons <no@you.cat>
64 lines
2.0 KiB
Plaintext
64 lines
2.0 KiB
Plaintext
|
|
// Map template for spawning the shuttle
|
|
/datum/map_template/shuttle/overmap/generic/curabiturmedical
|
|
name = "OM Ship - Curabitur Rescue Shuttle (new Z)"
|
|
desc = "A small corporate rescue shuttle."
|
|
suffix = "curashuttle.dmm"
|
|
annihilate = TRUE
|
|
|
|
// The shuttle's area(s)
|
|
/area/shuttle/curabitur/curashuttle/eng
|
|
name = "\improper Curabitur Rescue - Engineering"
|
|
icon_state = "shuttle2"
|
|
requires_power = 1
|
|
|
|
/area/shuttle/curabitur/curashuttle/med
|
|
name = "\improper Curabitur Rescue - Medbay"
|
|
icon_state = "shuttle2"
|
|
requires_power = 1
|
|
|
|
/area/shuttle/curabitur/curashuttle/hangar
|
|
name = "\improper Curabitur Rescue - Hangar"
|
|
icon_state = "shuttle2"
|
|
requires_power = 1
|
|
|
|
/area/shuttle/curabitur/curashuttle/cockpit
|
|
name = "\improper Curabitur Rescue - Cockpit"
|
|
icon_state = "shuttle2"
|
|
requires_power = 1
|
|
|
|
// The shuttle's 'shuttle' computer
|
|
/obj/machinery/computer/shuttle_control/explore/curashuttle
|
|
name = "short jump console"
|
|
shuttle_tag = "Cura"
|
|
req_one_access = list()
|
|
|
|
// The 'shuttle'
|
|
/datum/shuttle/autodock/overmap/curashuttle
|
|
name = "Cura"
|
|
current_location = "omship_spawn_curashuttle"
|
|
docking_controller_tag = "curadocking"
|
|
shuttle_area = list(/area/shuttle/curabitur/curashuttle/eng, /area/shuttle/curabitur/curashuttle/med, /area/shuttle/curabitur/curashuttle/hangar, /area/shuttle/curabitur/curashuttle/cockpit)
|
|
defer_initialisation = TRUE //We're not loaded until an admin does it
|
|
fuel_consumption = 3
|
|
|
|
// A shuttle lateloader landmark
|
|
/obj/effect/shuttle_landmark/shuttle_initializer/curashuttle
|
|
name = "CRV Rescue"
|
|
base_area = /area/space
|
|
base_turf = /turf/space
|
|
landmark_tag = "omship_spawn_curashuttle"
|
|
shuttle_type = /datum/shuttle/autodock/overmap/curashuttle
|
|
|
|
// The 'ship'
|
|
/obj/overmap/entity/visitable/ship/landable/curashuttle
|
|
scanner_name = "CRV Doom Delay"
|
|
scanner_desc = @{"[i]Registration[/i]: Curabitur Scimed
|
|
[i]Class[/i]: Small Shuttle
|
|
[i]Transponder[/i]: Transmitting (CIV), non-hostile
|
|
[b]Notice[/b]: Small private vessel"}
|
|
color = "#01A9DB"
|
|
vessel_mass = 2000
|
|
vessel_size = SHIP_SIZE_TINY
|
|
shuttle = "Cura"
|