Ports Models for Cybernetic Limb Manufacturers + More Monitor-head Wallpapers (#1775)
* Ports Models for Cybernetic Limb Manufacturers + More Monitor-head Wallpapers As requested! * Modified as requested. * Different Names
@@ -425,7 +425,6 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O
|
||||
|
||||
switch(new_state)
|
||||
if("Normal")
|
||||
|
||||
if(limb == BP_TORSO)
|
||||
for(var/other_limb in BP_ALL - BP_TORSO)
|
||||
pref.organ_data[other_limb] = null
|
||||
@@ -450,6 +449,8 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O
|
||||
var/list/usable_manufacturers = list()
|
||||
for(var/company in chargen_robolimbs)
|
||||
var/datum/robolimb/M = chargen_robolimbs[company]
|
||||
if(!(limb in M.parts))
|
||||
continue
|
||||
if(tmp_species in M.species_cannot_use)
|
||||
continue
|
||||
usable_manufacturers[company] = M
|
||||
|
||||
@@ -9,28 +9,10 @@
|
||||
|
||||
icon = 'icons/mob/monitor_icons.dmi'
|
||||
icon_override = 'icons/mob/monitor_icons.dmi'
|
||||
icon_state = "ipc_blank"
|
||||
item_state = null
|
||||
icon_state = "monitor"
|
||||
|
||||
var/monitor_state_index = "blank"
|
||||
var/global/list/monitor_states = list(
|
||||
"blank" = "ipc_blank",
|
||||
"pink" = "ipc_pink",
|
||||
"red" = "ipc_red",
|
||||
"green" = "ipc_green",
|
||||
"blue" = "ipc_blue",
|
||||
"breakout" = "ipc_breakout",
|
||||
"eight" = "ipc_eight",
|
||||
"goggles" = "ipc_goggles",
|
||||
"heart" = "ipc_heart",
|
||||
"monoeye" = "ipc_monoeye",
|
||||
"nature" = "ipc_nature",
|
||||
"orange" = "ipc_orange",
|
||||
"purple" = "ipc_purple",
|
||||
"shower" = "ipc_shower",
|
||||
"static" = "ipc_static",
|
||||
"yellow" = "ipc_yellow"
|
||||
)
|
||||
var/global/list/monitor_states = list()
|
||||
|
||||
/obj/item/clothing/mask/monitor/set_dir()
|
||||
dir = SOUTH
|
||||
@@ -40,8 +22,13 @@
|
||||
..()
|
||||
var/mob/living/carbon/human/H = loc
|
||||
if(istype(H) && H.wear_mask == src)
|
||||
var/obj/item/organ/external/E = H.organs_by_name[BP_HEAD]
|
||||
var/datum/robolimb/robohead = all_robolimbs[E.model]
|
||||
canremove = 0
|
||||
H << "<span class='notice'>\The [src] connects to your display output.</span>"
|
||||
if(robohead.monitor_styles)
|
||||
monitor_states = params2list(robohead.monitor_styles)
|
||||
icon_state = monitor_states[monitor_state_index]
|
||||
H << "<span class='notice'>\The [src] connects to your display output.</span>"
|
||||
|
||||
/obj/item/clothing/mask/monitor/dropped()
|
||||
canremove = 1
|
||||
@@ -52,9 +39,10 @@
|
||||
return 0
|
||||
if(istype(user))
|
||||
var/obj/item/organ/external/E = user.organs_by_name[BP_HEAD]
|
||||
if(istype(E) && (E.robotic >= ORGAN_ROBOT))
|
||||
var/datum/robolimb/robohead = all_robolimbs[E.model]
|
||||
if(istype(E) && (E.robotic >= ORGAN_ROBOT) && robohead.monitor_styles)
|
||||
return 1
|
||||
user << "<span class='warning'>You must have a robotic head to install this upgrade.</span>"
|
||||
user << "<span class='warning'>You must have a compatible robotic head to install this upgrade.</span>"
|
||||
return 0
|
||||
|
||||
/obj/item/clothing/mask/monitor/verb/set_monitor_state()
|
||||
|
||||
@@ -1,6 +1,27 @@
|
||||
var/list/all_robolimbs = list()
|
||||
var/list/robolimb_data = list()
|
||||
var/list/chargen_robolimbs = list()
|
||||
var/datum/robolimb/basic_robolimb
|
||||
var/const/standard_monitor_styles = "blank=ipc_blank;\
|
||||
pink=ipc_pink;\
|
||||
green=ipc_green,\
|
||||
red=ipc_red;\
|
||||
blue=ipc_blue;\
|
||||
shower=ipc_shower;\
|
||||
orange=ipc_orange;\
|
||||
nature=ipc_nature;\
|
||||
eight=ipc_eight;\
|
||||
goggles=ipc_goggles;\
|
||||
heart=ipc_heart;\
|
||||
monoeye=ipc_monoeye;\
|
||||
breakout=ipc_breakout;\
|
||||
yellow=ipc_yellow;\
|
||||
static=ipc_static;\
|
||||
purple=ipc_purple;\
|
||||
scroll=ipc_scroll;\
|
||||
console=ipc_console;\
|
||||
glider=ipc_gol_glider;\
|
||||
rainbow=ipc_rainbow"
|
||||
|
||||
/proc/populate_robolimb_list()
|
||||
basic_robolimb = new()
|
||||
@@ -8,7 +29,7 @@ var/datum/robolimb/basic_robolimb
|
||||
var/datum/robolimb/R = new limb_type()
|
||||
all_robolimbs[R.company] = R
|
||||
if(!R.unavailable_at_chargen)
|
||||
chargen_robolimbs[R.company] = R
|
||||
chargen_robolimbs[R.company] = R //List only main brands and solo parts.
|
||||
|
||||
/datum/robolimb
|
||||
var/company = "Unbranded" // Shown when selecting the limb.
|
||||
@@ -16,38 +37,107 @@ var/datum/robolimb/basic_robolimb
|
||||
var/icon = 'icons/mob/human_races/robotic.dmi' // Icon base to draw from.
|
||||
var/unavailable_at_chargen // If set, not available at chargen.
|
||||
var/list/species_cannot_use = list("Teshari")
|
||||
var/list/monitor_styles //If empty, the model of limbs offers a head compatible with monitors.
|
||||
var/parts = BP_ALL //Defines what parts said brand can replace on a body.
|
||||
|
||||
/datum/robolimb/bishop
|
||||
company = "Bishop"
|
||||
desc = "This limb has a white polymer casing with blue holo-displays."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/bishop.dmi'
|
||||
icon = 'icons/mob/human_races/cyberlimbs/bishop/bishop_main.dmi'
|
||||
|
||||
/datum/robolimb/hesphaistos
|
||||
/datum/robolimb/bishop_alt1
|
||||
company = "Bishop - Glyph"
|
||||
desc = "This limb has a white polymer casing with blue holo-displays."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/bishop/bishop_alt1.dmi'
|
||||
parts = list(BP_HEAD)
|
||||
|
||||
/datum/robolimb/bishop_monitor
|
||||
company = "Bishop Monitor"
|
||||
desc = "Bishop Cybernetics' unique spin on a popular prosthetic head model. The themes conflict in an intriguing way."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/bishop/bishop_monitor.dmi'
|
||||
parts = list(BP_HEAD)
|
||||
monitor_styles = standard_monitor_styles
|
||||
|
||||
/datum/robolimb/hesphiastos
|
||||
company = "Hesphiastos"
|
||||
desc = "This limb has a militaristic black and green casing with gold stripes."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/hesphaistos.dmi'
|
||||
icon = 'icons/mob/human_races/cyberlimbs/hesphiastos/hesphiastos_main.dmi'
|
||||
|
||||
/datum/robolimb/zenghu
|
||||
company = "Zeng-Hu"
|
||||
desc = "This limb has a rubbery fleshtone covering with visible seams."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/zenghu.dmi'
|
||||
/datum/robolimb/hesphiastos_alt1
|
||||
company = "Hesphiastos - Frontier"
|
||||
desc = "A rugged prosthetic head featuring the standard Hesphiastos theme, a visor and an external display."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/hesphiastos/hesphiastos_alt1.dmi'
|
||||
parts = list(BP_HEAD)
|
||||
monitor_styles = "blank=hesphiastos_alt_off;\
|
||||
pink=hesphiastos_alt_pink;\
|
||||
orange=hesphiastos_alt_orange;\
|
||||
goggles=hesphiastos_alt_goggles;\
|
||||
scroll=hesphiastos_alt_scroll;\
|
||||
rgb=hesphiastos_alt_rgb;\
|
||||
rainbow=hesphiastos_alt_rainbow"
|
||||
|
||||
/datum/robolimb/xion
|
||||
company = "Xion"
|
||||
desc = "This limb has a minimalist black and red casing."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/xion.dmi'
|
||||
/datum/robolimb/hesphiastos_monitor
|
||||
company = "Hesphiastos Monitor"
|
||||
desc = "Hesphiastos' unique spin on a popular prosthetic head model. It looks rugged and sturdy."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/hesphiastos/hesphiastos_monitor.dmi'
|
||||
parts = list(BP_HEAD)
|
||||
monitor_styles = standard_monitor_styles
|
||||
|
||||
/datum/robolimb/ipc
|
||||
/datum/robolimb/morpheus
|
||||
company = "Morpheus"
|
||||
desc = "This limb is simple and functional; no effort has been made to make it look human."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/ipc.dmi'
|
||||
icon = 'icons/mob/human_races/cyberlimbs/morpheus/morpheus_main.dmi'
|
||||
monitor_styles = standard_monitor_styles
|
||||
|
||||
/datum/robolimb/wardtakahashi
|
||||
company = "Ward-Takahashi"
|
||||
desc = "This limb features sleek black and white polymers."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/wardtakahashi.dmi'
|
||||
/datum/robolimb/morpheus_alt1
|
||||
company = "Morpheus - Zenith"
|
||||
desc = "This limb is simple and functional; no effort has been made to make it look human."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/morpheus/morpheus_alt1.dmi'
|
||||
parts = list(BP_HEAD)
|
||||
unavailable_at_chargen = null
|
||||
|
||||
/datum/robolimb/veymed
|
||||
company = "Vey-Med"
|
||||
desc = "This high quality limb is nearly indistinguishable from an organic one."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/veymed.dmi'
|
||||
icon = 'icons/mob/human_races/cyberlimbs/veymed/veymed_main.dmi'
|
||||
|
||||
/datum/robolimb/wardtakahashi
|
||||
company = "Ward-Takahashi"
|
||||
desc = "This limb features sleek black and white polymers."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/wardtakahashi/wardtakahashi_main.dmi'
|
||||
|
||||
/datum/robolimb/wardtakahashi_alt1
|
||||
company = "Ward-Takahashi - Shroud"
|
||||
desc = "This limb features sleek black and white polymers. This one looks more like a helmet of some sort."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/wardtakahashi/wardtakahashi_alt1.dmi'
|
||||
parts = list(BP_HEAD)
|
||||
|
||||
/datum/robolimb/wardtakahashi_monitor
|
||||
company = "Ward-Takahashi Monitor"
|
||||
desc = "Ward-Takahashi's unique spin on a popular prosthetic head model. It looks sleek and modern."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/wardtakahashi/wardtakahashi_monitor.dmi'
|
||||
parts = list(BP_HEAD)
|
||||
monitor_styles = standard_monitor_styles
|
||||
|
||||
/datum/robolimb/xion
|
||||
company = "Xion"
|
||||
desc = "This limb has a minimalist black and red casing."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/xion/xion_main.dmi'
|
||||
|
||||
/datum/robolimb/xion_alt1
|
||||
company = "Xion Mfg. - Breach"
|
||||
desc = "This limb has a minimalist black and red casing. Looks a bit menacing."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/xion/xion_alt1.dmi'
|
||||
parts = list(BP_HEAD)
|
||||
|
||||
/datum/robolimb/xion_monitor
|
||||
company = "Xion Mfg. Monitor"
|
||||
desc = "Xion Mfg.'s unique spin on a popular prosthetic head model. It looks and minimalist and utilitarian."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/xion/xion_monitor.dmi'
|
||||
parts = list(BP_HEAD)
|
||||
monitor_styles = standard_monitor_styles
|
||||
|
||||
/datum/robolimb/zenghu
|
||||
company = "Zeng-Hu"
|
||||
desc = "This limb has a rubbery fleshtone covering with visible seams."
|
||||
icon = 'icons/mob/human_races/cyberlimbs/zenghu/zenghu_main.dmi'
|
||||
|
||||
BIN
icons/mob/human_races/cyberlimbs/bishop/bishop_alt1.dmi
Normal file
|
After Width: | Height: | Size: 784 B |
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
BIN
icons/mob/human_races/cyberlimbs/bishop/bishop_monitor.dmi
Normal file
|
After Width: | Height: | Size: 627 B |
|
After Width: | Height: | Size: 599 B |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.0 KiB |
|
After Width: | Height: | Size: 577 B |
BIN
icons/mob/human_races/cyberlimbs/morpheus/morpheus_alt1.dmi
Normal file
|
After Width: | Height: | Size: 657 B |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
|
After Width: | Height: | Size: 621 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 633 B |
BIN
icons/mob/human_races/cyberlimbs/xion/xion_alt1.dmi
Normal file
|
After Width: | Height: | Size: 593 B |
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
BIN
icons/mob/human_races/cyberlimbs/xion/xion_monitor.dmi
Normal file
|
After Width: | Height: | Size: 598 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 4.7 KiB |