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
@@ -62,3 +62,16 @@
/area/shuttle/awaymission/oldengbase
name = "Old Construction Site (AM)"
icon_state = "shuttle2"
/area/shuttle/belter/station
name = "Belter Shuttle Landed"
icon_state = "shuttle2"
base_turf = /turf/simulated/floor/tiled/asteroid_steel/airless
/area/shuttle/belter/belt
name = "Belter Shuttle Holding Position"
icon_state = "shuttle2"
/area/shuttle/belter/transit
name = "Belter Shuttle Warp"
icon_state = "shuttle"
+10
View File
@@ -0,0 +1,10 @@
//Airless versions of shuttle floor tiles.
/turf/simulated/shuttle/floor/airless
oxygen = 0
nitrogen = 0
temperature = TCMB
/turf/simulated/shuttle/plating/airless
oxygen = 0
nitrogen = 0
temperature = TCMB
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB