Files
VOREStation/code/modules/client/preference_setup/loadout/loadout_cyberware.dm
Cameron Lennox edb68a5640 Loadout Tweaks and Additions (#17203)
* Makes my robes free use

- Twas a different time, all those years back.
I've never been opposed to other people having the robes, but just never got around to adding it to the loadout proper even though it's REALLY simple. So while I'm fiddling with loadout stuff, I may as well.

* More fluff stuff

lowers cost of suit clothing fluff
Brings some loadout items to normal prices (increased is reserved for ones that give armor)
Fixes neural implant always having 2 cost due to implant/language existing and taking priority.
Removes language/implant path and juust makes the eal/skrellian implants their own thing
Adds pirate coat and pirate hat to loadout. Yarr!
2025-03-03 19:16:59 -05:00

44 lines
1.4 KiB
Plaintext

/datum/gear/utility/implant
display_name = "implant, neural assistance web"
description = "A complex web implanted into the subject, medically in order to compensate for neurological disease."
path = /obj/item/implant/neural
slot = "implant"
exploitable = 1
sort_category = "Cyberware"
cost = 1
/datum/gear/utility/implant/tracking
display_name = "implant, tracking"
path = /obj/item/implant/tracking/weak
cost = 0
/datum/gear/utility/implant/generic
display_name = "implant, generic, primary"
description = "An implant with no obvious purpose."
path = /obj/item/implant
cost = 1
/datum/gear/utility/implant/generic/second
display_name = "implant, generic, secondary"
/datum/gear/utility/implant/generic/third
display_name = "implant, generic, tertiary"
/datum/gear/utility/implant/generic/New()
..()
gear_tweaks += global.gear_tweak_implant_location
/datum/gear/utility/implant/eal
display_name = "vocal synthesizer, EAL"
description = "A surgically implanted vocal synthesizer which allows the owner to speak EAL, if they know it."
path = /obj/item/implant/language/eal
cost = 2
exploitable = 0
/datum/gear/utility/implant/skrellian
display_name = "vocal synthesizer, Skrellian"
description = "A surgically implanted vocal synthesizer which allows the owner to speak Common Skrellian, if they know it."
path = /obj/item/implant/language/skrellian
cost = 2
exploitable = 0