mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 02:34:00 +00:00
[MIRROR] Archives old map files [MDB Ignore] (#9852)
Co-authored-by: Cameron Lennox <killer65311@gmail.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
f19a517d0f
commit
42c1f36339
1384
archive/maps/example/example-1.dmm
Normal file
1384
archive/maps/example/example-1.dmm
Normal file
File diff suppressed because it is too large
Load Diff
1315
archive/maps/example/example-2.dmm
Normal file
1315
archive/maps/example/example-2.dmm
Normal file
File diff suppressed because it is too large
Load Diff
19
archive/maps/example/example.dm
Normal file
19
archive/maps/example/example.dm
Normal file
@@ -0,0 +1,19 @@
|
||||
#if !defined(USING_MAP_DATUM)
|
||||
|
||||
#include "example-1.dmm"
|
||||
#include "example-2.dmm"
|
||||
|
||||
#include "example_defines.dm"
|
||||
#include "example_elevator.dm"
|
||||
#include "example_areas.dm"
|
||||
|
||||
|
||||
#define USING_MAP_DATUM /datum/map/example
|
||||
|
||||
#warn Please uncheck example before committing
|
||||
|
||||
#elif !defined(MAP_OVERRIDE)
|
||||
|
||||
#warn A map has already been included, ignoring Northern Star
|
||||
|
||||
#endif
|
||||
15
archive/maps/example/example_areas.dm
Normal file
15
archive/maps/example/example_areas.dm
Normal file
@@ -0,0 +1,15 @@
|
||||
// Elevator areas.
|
||||
/area/turbolift/example_top
|
||||
name = "lift (top floor)"
|
||||
lift_floor_label = "Floor 2"
|
||||
lift_floor_name = "Top Floor"
|
||||
lift_announce_str = "Arriving at Top Floor."
|
||||
ambience = AMBIENCE_AESTHETIC
|
||||
|
||||
/area/turbolift/example_ground
|
||||
name = "lift (ground floor)"
|
||||
lift_floor_label = "Floor 1"
|
||||
lift_floor_name = "First Floor"
|
||||
lift_announce_str = "Arriving at First Floor."
|
||||
base_turf = /turf/simulated/floor
|
||||
ambience = AMBIENCE_AESTHETIC
|
||||
43
archive/maps/example/example_defines.dm
Normal file
43
archive/maps/example/example_defines.dm
Normal file
@@ -0,0 +1,43 @@
|
||||
#define Z_LEVEL_FIRST_EXAMPLE 1
|
||||
#define Z_LEVEL_SECOND_EXAMPLE 2
|
||||
|
||||
/datum/map/example
|
||||
name = "Test Map"
|
||||
full_name = "The Test Map"
|
||||
path = "example"
|
||||
|
||||
lobby_icon = 'icons/misc/title_ch.dmi' //CHOMPStation Edit TFF 24/12/19 - _ch.dmi
|
||||
lobby_screens = list("mockingjay00")
|
||||
|
||||
zlevel_datum_type = /datum/map_z_level/example
|
||||
|
||||
station_name = "The Funhouse"
|
||||
station_short = "Funhouse"
|
||||
dock_name = "the Maximum Fun Chamber"
|
||||
boss_name = "Mister Fun"
|
||||
boss_short = "Mr. Fun"
|
||||
company_name = "Fun Inc."
|
||||
company_short = "FI"
|
||||
starsys_name = "Vir"
|
||||
|
||||
shuttle_docked_message = "The scheduled shuttle to the %dock_name% has docked with the station at docks one and two. It will depart in approximately %ETD%."
|
||||
shuttle_leaving_dock = "The Crew Transfer Shuttle has left the station. Estimate %ETA% until the shuttle docks at %dock_name%."
|
||||
shuttle_called_message = "A crew transfer to %Dock_name% has been scheduled. The shuttle has been called. Those leaving should proceed to docks one and two in approximately %ETA%."
|
||||
shuttle_recall_message = "The scheduled crew transfer has been cancelled."
|
||||
emergency_shuttle_docked_message = "The Emergency Shuttle has docked with the station at docks one and two. You have approximately %ETD% to board the Emergency Shuttle."
|
||||
emergency_shuttle_leaving_dock = "The Emergency Shuttle has left the station. Estimate %ETA% until the shuttle docks at %dock_name%."
|
||||
emergency_shuttle_called_message = "An emergency evacuation shuttle has been called. It will arrive at docks one and two in approximately %ETA%."
|
||||
emergency_shuttle_recall_message = "The emergency shuttle has been recalled."
|
||||
|
||||
/datum/map_z_level/example/first
|
||||
z = Z_LEVEL_FIRST_EXAMPLE
|
||||
name = "First Floor"
|
||||
flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER
|
||||
transit_chance = 50
|
||||
|
||||
/datum/map_z_level/example/second
|
||||
z = Z_LEVEL_SECOND_EXAMPLE
|
||||
name = "Second Floor"
|
||||
flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER
|
||||
transit_chance = 50
|
||||
base_turf = /turf/simulated/open
|
||||
11
archive/maps/example/example_elevator.dm
Normal file
11
archive/maps/example/example_elevator.dm
Normal file
@@ -0,0 +1,11 @@
|
||||
/obj/turbolift_map_holder/example
|
||||
name = "Example turbolift map placeholder"
|
||||
depth = 2
|
||||
lift_size_x = 4
|
||||
lift_size_y = 4
|
||||
icon = 'icons/obj/turbolift_preview_5x5.dmi'
|
||||
|
||||
areas_to_use = list(
|
||||
/area/turbolift/example_ground,
|
||||
/area/turbolift/example_top
|
||||
)
|
||||
Reference in New Issue
Block a user