Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Low tier factories #2506

Merged
merged 3 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions ModularTegustation/tegu_items/rcorp_factory/items.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/obj/item/storage/First_aid_l1
name = "First Aid Kit L1"
desc = "You wear this on your pocket and put items into it."
icon_state = "medpack"
inhand_icon_state = "medpack"
slot_flags = ITEM_SLOT_POCKETS
resistance_flags = NONE
max_integrity = 300

/obj/item/storage/First_aid_l1/ComponentInitialize()
. = ..()
var/datum/component/storage/STR = GetComponent(/datum/component/storage)
STR.max_combined_w_class = 21
STR.max_w_class = WEIGHT_CLASS_SMALL
STR.max_items = 3
STR.set_holdable(list(/obj/item/reagent_containers/hypospray/medipen))

/obj/item/storage/First_aid_l1/PopulateContents()
new /obj/item/reagent_containers/hypospray/medipen(src)
new /obj/item/reagent_containers/hypospray/medipen/dual(src)
new /obj/item/reagent_containers/hypospray/medipen/dual(src)

/obj/item/reagent_containers/hypospray/medipen/dual
name = "Double Healing Pen"
list_reagents = list(/datum/reagent/medicine/mental_stabilizator = 15, /datum/reagent/medicine/sal_acid = 15)
38 changes: 36 additions & 2 deletions ModularTegustation/tegu_items/rcorp_factory/lowfactories.dm
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,46 @@
itemnumber = 6
item = /obj/item/flashlight/flare

/obj/structure/lowfactory/PCorp_Bread
/obj/structure/lowfactory/pcorp_Bread
name = "P-Corp Bread"
desc = "A machine used to create bread."
desc = "A machine used to bake food."
productiontime = 0.5 SECONDS
gcost = 1
rcost = 1
itemnumber = 10
item = /obj/item/food/canned/pcorp

/obj/structure/lowfactory/conveyor_belt
name = "Conveyor Factory"
desc = "A machine used to craft items."
gcost = 2
item = /obj/item/stack/conveyor/thirty

/obj/structure/lowfactory/emplacement_gun
name = "Emplacement factory"
desc = "A machine used to craft items."
productiontime = 5 SECONDS
gcost = 1
rcost = 1
item = /obj/machinery/manned_turret/rcorp

/obj/structure/lowfactory/sandbag
name = "Sandbag factory"
desc = "A machine used to craft items."
gcost = 2
itemnumber = 2
item = /obj/item/stack/sheet/mineral/sandbags/ten

/obj/structure/lowfactory/flashlight
name = "Flashlight factory"
desc = "A machine used to craft items."
gcost = 2
item = /obj/item/flashlight/seclite

/obj/structure/lowfactory/First_aid_l1
name = "First Aid factory"
desc = "A machine used to craft items."
gcost = 1
rcost = 1
itemnumber = 2
item = /obj/item/storage/First_aid_l1
Loading