Skip to content

Commit 63f6856

Browse files
authored
materials... Sols... Sols... (#30550)
1 parent 1bff8f5 commit 63f6856

File tree

2 files changed

+21
-4
lines changed

2 files changed

+21
-4
lines changed

code/datums/outfits/outfit_debug.dm

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,11 @@
302302
new /obj/item/stack/sheet/plasmarglass/fifty(src)
303303
new /obj/item/stack/sheet/titaniumglass/fifty(src)
304304
new /obj/item/stack/sheet/plastitaniumglass/fifty(src)
305+
new /obj/item/stack/sheet/wood/fifty(src)
306+
new /obj/item/stack/sheet/bamboo/fifty(src)
307+
new /obj/item/stack/sheet/cloth/fifty(src)
308+
new /obj/item/stack/sheet/durathread/fifty(src)
309+
new /obj/item/stack/sheet/cardboard/fifty(src)
305310
new /obj/item/stack/sheet/mineral/sandstone/fifty(src)
306311
new /obj/item/stack/sheet/mineral/diamond/fifty(src)
307312
new /obj/item/stack/sheet/mineral/uranium/fifty(src)

code/game/objects/items/stacks/sheets/sheet_types.dm

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,10 +236,6 @@ GLOBAL_LIST_INIT(plasteel_recipes, list(
236236
. = ..()
237237
recipes = GLOB.plasteel_recipes
238238

239-
/obj/item/stack/sheet/wood/cyborg
240-
energy_type = /datum/robot_storage/energy/wood
241-
is_cyborg = TRUE
242-
243239
//////////////////////////////
244240
// MARK: WOOD
245241
//////////////////////////////
@@ -306,6 +302,13 @@ GLOBAL_LIST_INIT(wood_recipes, list(
306302
. = ..()
307303
recipes = GLOB.wood_recipes
308304

305+
/obj/item/stack/sheet/wood/fifty
306+
amount = 50
307+
308+
/obj/item/stack/sheet/wood/cyborg
309+
energy_type = /datum/robot_storage/energy/wood
310+
is_cyborg = TRUE
311+
309312
//////////////////////////////
310313
// MARK: BAMBOO
311314
//////////////////////////////
@@ -412,6 +415,9 @@ GLOBAL_LIST_INIT(cloth_recipes, list (
412415
/obj/item/stack/sheet/cloth/ten
413416
amount = 10
414417

418+
/obj/item/stack/sheet/cloth/fifty
419+
amount = 50
420+
415421
//////////////////////////////
416422
// MARK: DURATHREAD
417423
//////////////////////////////
@@ -441,6 +447,9 @@ GLOBAL_LIST_INIT(durathread_recipes, list (
441447
recipes = GLOB.durathread_recipes
442448
return ..()
443449

450+
/obj/item/stack/sheet/durathread/fifty
451+
amount = 50
452+
444453
/obj/item/stack/sheet/cotton
445454
name = "raw cotton bundle"
446455
desc = "A bundle of raw cotton ready to be spun on the loom."
@@ -522,6 +531,9 @@ GLOBAL_LIST_INIT(cardboard_recipes, list (
522531
. = ..()
523532
recipes = GLOB.cardboard_recipes
524533

534+
/obj/item/stack/sheet/cardboard/fifty
535+
amount = 50
536+
525537
//////////////////////////////
526538
// MARK: SOIL
527539
//////////////////////////////

0 commit comments

Comments
 (0)