Framework for new shuttle

Sprites and floor tiles and whatnot.
This commit is contained in:
Arokha Sieyes
2017-02-11 21:55:37 -05:00
parent 497bda4df6
commit f77239909d
4 changed files with 39 additions and 1 deletions
+16 -1
View File
@@ -397,5 +397,20 @@ var/global/datum/shuttle_controller/shuttle_controller
AM.move_time = 60
AM.warmup_time = 8
shuttles["AwayMission"] = AM
//VOREStation Add End - Away-mission shuttle
///////////////////////////////////////////////
//VOREStation Add - Belter Shuttle
shuttle = new/datum/shuttle/ferry()
shuttle.location = 0
shuttle.warmup_time = 6
shuttle.area_station = locate(/area/shuttle/belter/station)
shuttle.area_offsite = locate(/area/shuttle/belter/belt)
shuttle.area_transition = locate(/area/shuttle/belter/transit)
shuttle.docking_controller_tag = "belter_docking"
shuttle.dock_target_station = "belter_nodocking" //Fake tags to prevent the shuttle from opening doors.
shuttle.dock_target_offsite = "belter_nodocking"
shuttle.transit_direction = EAST
shuttle.move_time = 20 + rand(10,30)
process_shuttles += shuttle
shuttles["Belter"] = shuttle
//VOREStation Add End - Belter Shuttle