Updates wire datum proper_name vars (#52679)

* New wire proper_names

* Update comment.
This commit is contained in:
Timberpoes
2020-08-03 23:57:43 -04:00
committed by GitHub
parent 6ff08e1c69
commit eaa98e87d1
10 changed files with 11 additions and 4 deletions
+1 -1
View File
@@ -26,7 +26,7 @@
var/holder_type = null
/// Key that enables wire assignments to be common across different holders. If null, will use the holder_type as a key.
var/dictionary_key = null
/// The display name for the wire set shown in station blueprints. Not used if randomize is true or it's an item NT wouldn't know about (Explosives/Nuke)
/// The display name for the wire set shown in station blueprints. Not shown in blueprints if randomize is TRUE or it's an item NT wouldn't know about (Explosives/Nuke). Also used in the hacking interface.
var/proper_name = "Unknown"
/// List of all wires.
+1
View File
@@ -3,6 +3,7 @@
proper_name = "Generic Airlock"
/datum/wires/airlock/secure
proper_name = "High Security Airlock"
randomize = TRUE
/datum/wires/airlock/maint
+1 -1
View File
@@ -1,6 +1,6 @@
/datum/wires/conveyor
holder_type = /obj/machinery/conveyor_switch
proper_name = "conveyor"
proper_name = "Conveyor"
/// var holder that logs who put the assembly inside and gets transfered to the switch on pulse
var/mob/fingerman
+1
View File
@@ -1,6 +1,7 @@
/datum/wires/emitter
holder_type = /obj/machinery/power/emitter
proper_name = "Emitter"
/datum/wires/emitter/New(atom/holder)
wires = list(WIRE_ZAP,WIRE_HACK)
+1
View File
@@ -1,5 +1,6 @@
/datum/wires/explosive
var/duds_number = 2 // All "dud" wires cause an explosion when cut or pulsed
proper_name = "Explosive Device"
randomize = TRUE // Prevents wires from showing up on blueprints
/datum/wires/explosive/New(atom/holder)
+1
View File
@@ -1,5 +1,6 @@
/datum/wires/mulebot
holder_type = /mob/living/simple_animal/bot/mulebot
proper_name = "Mulebot"
randomize = TRUE
/datum/wires/mulebot/New(atom/holder)
+1
View File
@@ -1,5 +1,6 @@
/datum/wires/rnd
holder_type = /obj/machinery/rnd
proper_name = "R&D Machinery"
randomize = TRUE
/datum/wires/rnd/New(atom/holder)
+1
View File
@@ -1,5 +1,6 @@
/datum/wires/robot
holder_type = /mob/living/silicon/robot
proper_name = "Cyborg"
randomize = TRUE
/datum/wires/robot/New(atom/holder)
+1
View File
@@ -1,5 +1,6 @@
/datum/wires/syndicatebomb
holder_type = /obj/machinery/syndicatebomb
proper_name = "Syndicate Explosive Device"
randomize = TRUE
/datum/wires/syndicatebomb/New(atom/holder)
+2 -2
View File
@@ -1,6 +1,6 @@
/datum/wires/tesla_coil
randomize = 1 //Only one wire don't need blueprints
proper_name = "Tesla Coil"
randomize = TRUE //Only one wire don't need blueprints
holder_type = /obj/machinery/power/tesla_coil
/datum/wires/tesla_coil/New(atom/holder)