mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-17 10:58:19 +01:00
finished cookie synth for all robots + further map updates
- added cookie synthesizer that's compatible with all robots - added cookie synth to robotic dep in current station maps - fixed feeding tube's sprites to make them transparent - fixed satdorms in Omega a bit more
This commit is contained in:
@@ -206,23 +206,23 @@
|
||||
|
||||
// ----------------------- GS13
|
||||
|
||||
// /obj/item/borg/upgrade/cookiesynth
|
||||
// name = "cyborg cookie synthesizer"
|
||||
// desc = "An extra module that allows cyborgs to dispense cookies."
|
||||
// icon_state = "cyborg_upgrade3"
|
||||
/obj/item/borg/upgrade/cookiesynth
|
||||
name = "cyborg cookie synthesizer"
|
||||
desc = "An extra module that allows cyborgs to dispense cookies."
|
||||
icon_state = "cyborg_upgrade3"
|
||||
|
||||
// /obj/item/borg/upgrade/defib/action(mob/living/silicon/robot/R, user = usr)
|
||||
// . = ..()
|
||||
// if(.)
|
||||
// var/obj/item/twohanded/shockpaddles/cyborg/S = new(R.module)
|
||||
// R.module.basic_modules += S
|
||||
// R.module.add_module(S, FALSE, TRUE)
|
||||
/obj/item/borg/upgrade/cookiesynth/action(mob/living/silicon/robot/R, user = usr)
|
||||
. = ..()
|
||||
if(.)
|
||||
var/obj/item/cookiesynth/S = new(R.module)
|
||||
R.module.basic_modules += S
|
||||
R.module.add_module(S, FALSE, TRUE)
|
||||
|
||||
// /obj/item/borg/upgrade/defib/deactivate(mob/living/silicon/robot/R, user = usr)
|
||||
// . = ..()
|
||||
// if (.)
|
||||
// var/obj/item/twohanded/shockpaddles/cyborg/S = locate() in R.module
|
||||
// R.module.remove_module(S, TRUE)
|
||||
/obj/item/borg/upgrade/cookiesynth/deactivate(mob/living/silicon/robot/R, user = usr)
|
||||
. = ..()
|
||||
if (.)
|
||||
var/obj/item/cookiesynth/S = locate() in R.module
|
||||
R.module.remove_module(S, TRUE)
|
||||
|
||||
// ----------
|
||||
|
||||
|
||||
Reference in New Issue
Block a user