mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 03:02:54 +00:00
Removes most references to NSS Exodus.
This commit is contained in:
@@ -38,7 +38,7 @@ var/global/defer_powernet_rebuild = 0 // True if net rebuild will be called
|
|||||||
#define NETWORK_ENGINEERING "Engineering"
|
#define NETWORK_ENGINEERING "Engineering"
|
||||||
#define NETWORK_ENGINEERING_OUTPOST "Engineering Outpost"
|
#define NETWORK_ENGINEERING_OUTPOST "Engineering Outpost"
|
||||||
#define NETWORK_ERT "ZeEmergencyResponseTeam"
|
#define NETWORK_ERT "ZeEmergencyResponseTeam"
|
||||||
#define NETWORK_EXODUS "Exodus"
|
#define NETWORK_EXODUS "Northern Star"
|
||||||
#define NETWORK_MEDICAL "Medical"
|
#define NETWORK_MEDICAL "Medical"
|
||||||
#define NETWORK_MERCENARY "MercurialNet"
|
#define NETWORK_MERCENARY "MercurialNet"
|
||||||
#define NETWORK_MINE "MINE"
|
#define NETWORK_MINE "MINE"
|
||||||
|
|||||||
@@ -264,7 +264,7 @@ var/global/datum/shuttle_controller/shuttle_controller
|
|||||||
var/datum/shuttle/ferry/multidock/specops/ERT = new()
|
var/datum/shuttle/ferry/multidock/specops/ERT = new()
|
||||||
ERT.location = 0
|
ERT.location = 0
|
||||||
ERT.warmup_time = 10
|
ERT.warmup_time = 10
|
||||||
ERT.area_offsite = locate(/area/shuttle/specops/station) //centcom is the home station, the Exodus is offsite
|
ERT.area_offsite = locate(/area/shuttle/specops/station) //centcom is the home station, the Northern Star is offsite
|
||||||
ERT.area_station = locate(/area/shuttle/specops/centcom)
|
ERT.area_station = locate(/area/shuttle/specops/centcom)
|
||||||
ERT.docking_controller_tag = "specops_shuttle_port"
|
ERT.docking_controller_tag = "specops_shuttle_port"
|
||||||
ERT.docking_controller_tag_station = "specops_shuttle_port"
|
ERT.docking_controller_tag_station = "specops_shuttle_port"
|
||||||
|
|||||||
@@ -80,7 +80,7 @@
|
|||||||
if(isscrewdriver(W))
|
if(isscrewdriver(W))
|
||||||
playsound(src.loc, 'sound/items/Screwdriver.ogg', 50, 1)
|
playsound(src.loc, 'sound/items/Screwdriver.ogg', 50, 1)
|
||||||
|
|
||||||
var/input = sanitize(input(usr, "Which networks would you like to connect this camera to? Separate networks with a comma. No Spaces!\nFor example: Exodus,Security,Secret ", "Set Network", camera_network ? camera_network : NETWORK_EXODUS))
|
var/input = sanitize(input(usr, "Which networks would you like to connect this camera to? Separate networks with a comma. No Spaces!\nFor example: Northern Star,Security,Secret ", "Set Network", camera_network ? camera_network : NETWORK_EXODUS))
|
||||||
if(!input)
|
if(!input)
|
||||||
usr << "No input found please hang up and try your call again."
|
usr << "No input found please hang up and try your call again."
|
||||||
return
|
return
|
||||||
|
|||||||
@@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
/obj/item/clothing/suit/space
|
/obj/item/clothing/suit/space
|
||||||
name = "Space suit"
|
name = "Space suit"
|
||||||
desc = "A suit that protects against low pressure environments. \"NSS EXODUS\" is written in large block letters on the back."
|
desc = "A suit that protects against low pressure environments. \"NORTHERN STAR\" is written in large block letters on the back."
|
||||||
icon_state = "space"
|
icon_state = "space"
|
||||||
item_state = "s_suit"
|
item_state = "s_suit"
|
||||||
w_class = 4//bulky item
|
w_class = 4//bulky item
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ var/list/weighted_mundaneevent_locations = list()
|
|||||||
var/distance = 0
|
var/distance = 0
|
||||||
var/list/willing_to_buy = list()
|
var/list/willing_to_buy = list()
|
||||||
var/list/willing_to_sell = list()
|
var/list/willing_to_sell = list()
|
||||||
var/can_shuttle_here = 0 //one day crew from the exodus will be able to travel to this destination
|
var/can_shuttle_here = 0 //one day crew from the Northern Star will be able to travel to this destination
|
||||||
var/list/viable_random_events = list()
|
var/list/viable_random_events = list()
|
||||||
var/list/temp_price_change[BIOMEDICAL]
|
var/list/temp_price_change[BIOMEDICAL]
|
||||||
var/list/viable_mundane_events = list()
|
var/list/viable_mundane_events = list()
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ var/list/ai_verbs_default = list(
|
|||||||
density = 1
|
density = 1
|
||||||
status_flags = CANSTUN|CANPARALYSE|CANPUSH
|
status_flags = CANSTUN|CANPARALYSE|CANPUSH
|
||||||
shouldnt_see = list(/obj/effect/rune)
|
shouldnt_see = list(/obj/effect/rune)
|
||||||
var/list/network = list("Exodus")
|
var/list/network = list("Northern Star")
|
||||||
var/obj/machinery/camera/camera = null
|
var/obj/machinery/camera/camera = null
|
||||||
var/list/connected_robots = list()
|
var/list/connected_robots = list()
|
||||||
var/aiRestorePowerRoutine = 0
|
var/aiRestorePowerRoutine = 0
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
idle_power_usage = 20
|
idle_power_usage = 20
|
||||||
active_power_usage = 5000
|
active_power_usage = 5000
|
||||||
|
|
||||||
var/fabricator_tag = "Exodus"
|
var/fabricator_tag = "Northern Star Upper Level"
|
||||||
var/drone_progress = 0
|
var/drone_progress = 0
|
||||||
var/produce_drones = 1
|
var/produce_drones = 1
|
||||||
var/time_last_drone = 500
|
var/time_last_drone = 500
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
/obj/machinery/drone_fabricator/derelict
|
/obj/machinery/drone_fabricator/derelict
|
||||||
name = "construction drone fabricator"
|
name = "construction drone fabricator"
|
||||||
fabricator_tag = "Derelict"
|
fabricator_tag = "Northern Star Depths"
|
||||||
drone_type = /mob/living/silicon/robot/drone/construction
|
drone_type = /mob/living/silicon/robot/drone/construction
|
||||||
|
|
||||||
/obj/machinery/drone_fabricator/New()
|
/obj/machinery/drone_fabricator/New()
|
||||||
|
|||||||
Reference in New Issue
Block a user