Bake maxxing

This commit is contained in:
LunarFleet
2023-01-23 03:54:38 -05:00
parent 356dd7a8cd
commit 0bf3a67cee
4 changed files with 28 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
@echo off
call "%~dp0\tools\build\build.bat" %*
pause
rem pause
rem pausing is just annoying, don't

View File

@@ -79,3 +79,15 @@
source = /datum/robot_energy_storage/wrapping_paper
/// End Cargo Borg Items ///
/obj/item/gripper/service
name = "service gripper"
desc = "A simple grasping tool for interacting with food and condiments."
can_hold = list(
/obj/item/reagent_containers/glass,
/obj/item/reagent_containers/food,
/obj/item/kitchen,
/obj/item/storage/bag/tray
)

View File

@@ -42,13 +42,14 @@
laws.associate(src)
update_icons()
/datum/component/personal_crafting/borg
icon = 'icons/mob/screen_midnight.dmi'
screen_loc = "CENTER+5:5,SOUTH+1:5"
/mob/living/silicon/robot/Initialize(mapload)
.=..()
AddComponent(/datum/component/personal_crafting)
//var/datum/component/personal_crafting/C = locate() in datum_components
//C.icon = 'icons/mob/screen_midnight.dmi'
//C.screen_loc = "CENTER+5:5,SOUTH+1:5"
mob/living/silicon/robot/pick_module()
.=..()
var/datum/hud/R = src.hud_used
var/atom/movable/screen/craft/C = locate() in R.static_inventory
C.icon = 'icons/mob/screen_midnight.dmi'
C.screen_loc = "CENTER+5:5,SOUTH+1:5"

View File

@@ -265,7 +265,13 @@
var/list/extra = list(
/obj/item/dogborg/jaws/small,
/obj/item/analyzer/nose,
/obj/item/soap/tongue/scrubpup
/obj/item/soap/tongue/scrubpup,
/obj/item/gripper/service,
/obj/item/kitchen/rollingpin,
/obj/item/kitchen/unrollingpin,
/obj/item/kitchen/knife/butcher,
/obj/item/kitchen/efink,
/obj/item/kitchen/knife
)
LAZYADD(basic_modules, extra)
. = ..()