mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Moved some organ code around, added icons and limbs for IPC, added IPC limb manufacturer. Reimplementing checks in place of IS_SYNTHETIC. Rebalancing EMP a bit for IPC.
45 lines
1.7 KiB
Plaintext
45 lines
1.7 KiB
Plaintext
var/global/list/all_robolimbs = list()
|
|
var/global/list/chargen_robolimbs = list()
|
|
var/global/datum/robolimb/basic_robolimb
|
|
|
|
/proc/populate_robolimb_list()
|
|
basic_robolimb = new()
|
|
for(var/limb_type in typesof(/datum/robolimb))
|
|
var/datum/robolimb/R = new limb_type()
|
|
all_robolimbs[R.company] = R
|
|
world << "Adding [R.company] as [R], [R.type]"
|
|
if(!R.unavailable_at_chargen)
|
|
chargen_robolimbs[R.company] = R
|
|
|
|
/datum/robolimb
|
|
var/company = "Unbranded" // Shown when selecting the limb.
|
|
var/desc = "A generic unbranded robotic prosthesis." // Seen when examining a limb.
|
|
var/icon = 'icons/mob/human_races/robotic.dmi' // Icon base to draw from.
|
|
var/unavailable_at_chargen // If set, not available at chargen.
|
|
|
|
/datum/robolimb/bishop
|
|
company = "Bishop Cybernetics"
|
|
desc = "This limb has a white polymer casing with blue holo-displays."
|
|
icon = 'icons/mob/human_races/cyberlimbs/bishop.dmi'
|
|
|
|
/datum/robolimb/hesphaistos
|
|
company = "Hesphiastos Industries"
|
|
desc = "This limb has a militaristic black and green casing with gold stripes."
|
|
icon = 'icons/mob/human_races/cyberlimbs/hesphaistos.dmi'
|
|
|
|
/datum/robolimb/zenghu
|
|
company = "Zeng-Hu Pharmaceuticals"
|
|
desc = "This limb has a rubbery fleshtone covering with visible seams."
|
|
icon = 'icons/mob/human_races/cyberlimbs/zenghu.dmi'
|
|
|
|
/datum/robolimb/xion
|
|
company = "Xion Manufacturing Group"
|
|
desc = "This limb has a minimalist black and red casing."
|
|
icon = 'icons/mob/human_races/cyberlimbs/xion.dmi'
|
|
|
|
/datum/robolimb/ipc
|
|
company = "Morpheus Cyberkinetics"
|
|
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'
|
|
unavailable_at_chargen = 1
|