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:
Sonoida
2022-12-17 20:10:28 +01:00
parent 8015267f11
commit 4ca6d4d368
7 changed files with 171 additions and 157 deletions
+15 -15
View File
@@ -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)
// ----------