mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 04:27:35 +01:00
MAP ROTATION PART 2 (#12345)
* MAP ROTATION * Tweaks + New additions * Apply suggestions from code review Co-authored-by: dearmochi <shenesis@gmail.com> * Fixes improper naming * Fixes map vote Co-authored-by: dearmochi <shenesis@gmail.com>
This commit is contained in:
co-authored by
dearmochi
parent
122f09585e
commit
663eff7b5e
@@ -0,0 +1,14 @@
|
||||
/**
|
||||
* Map Datum
|
||||
*
|
||||
* Datum which holds all of the information for maps ingame
|
||||
* This is used for showing map information, as well as map loading
|
||||
*
|
||||
**/
|
||||
/datum/map
|
||||
/// Name of the map to be shown in the statpanel
|
||||
var/fluff_name
|
||||
/// Name to be used when using the map from a technical standpoint. Used in TGUI Nanomaps among other things.
|
||||
var/technical_name
|
||||
/// Path to the map file
|
||||
var/map_path
|
||||
@@ -0,0 +1,4 @@
|
||||
/datum/map/cyberiad
|
||||
fluff_name = "NSS Cyberiad"
|
||||
technical_name = "Cyberiad"
|
||||
map_path = "_maps/map_files/cyberiad/cyberiad.dmm"
|
||||
@@ -0,0 +1,4 @@
|
||||
/datum/map/delta
|
||||
fluff_name = "NSS Kerberos"
|
||||
technical_name = "Delta"
|
||||
map_path = "_maps/map_files/Delta/delta.dmm"
|
||||
@@ -0,0 +1,4 @@
|
||||
/datum/map/metastation
|
||||
fluff_name = "NSS Cerebron"
|
||||
technical_name = "MetaStation"
|
||||
map_path = "_maps/map_files/MetaStation/MetaStation.dmm"
|
||||
Reference in New Issue
Block a user