Skip to content

Commit

Permalink
500 cigarettes (#16172)
Browse files Browse the repository at this point in the history
  • Loading branch information
Naaanii authored Jun 29, 2024
1 parent fe96118 commit dbae25d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
9 changes: 9 additions & 0 deletions code/modules/factory/parts.dm
Original file line number Diff line number Diff line change
Expand Up @@ -912,3 +912,12 @@ GLOBAL_LIST_INIT(ac_recipe, list(
/obj/item/factory_part/ac_flak/Initialize(mapload)
. = ..()
recipe = GLOB.ac_recipe

/obj/item/factory_part/cigarette
name = "\improper Cigarette pack"
desc = "An incomplete pack of cigarettes."
result = /obj/item/clothing/mask/cigarette

/obj/item/factory_part/cigarette/Initialize(mapload)
. = ..()
recipe = GLOB.equipment_recipe
6 changes: 6 additions & 0 deletions code/modules/factory/unboxer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -593,3 +593,9 @@
desc = "A box with round metal plates inside. Used to refill Unboxers."
refill_type = /obj/item/factory_part/deployable_camera
refill_amount = 30

/obj/item/factory_refill/cigarette_refill
name = "box of rounded metal plates"
desc = "A box with unfinished cigarettes inside. Used to refill Unboxers."
refill_type = /obj/item/factory_part/cigarette
refill_amount = 500
5 changes: 5 additions & 0 deletions code/modules/reqs/supplypacks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2541,3 +2541,8 @@ FACTORY
name = "Deplyable security camera refill"
contains = list(/obj/item/factory_refill/deployable_camera_refill)
cost = 100

/datum/supply_packs/factory/cigarette_refill
name = "500 Cigarettes refill"
contains = list(/obj/item/factory_refill/cigarette_refill)
cost = 500

0 comments on commit dbae25d

Please sign in to comment.