Skip to content

Commit

Permalink
Adds SG-62 ammo bins to reqtorio (#16290)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ldip999 authored Jul 15, 2024
1 parent 3ad3028 commit 9890cee
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 @@ -340,6 +340,15 @@ GLOBAL_LIST_INIT(IFF_ammo, list(
. = ..()
recipe = GLOB.IFF_ammo

/obj/item/factory_part/smartgunner_targetrifle_ammobin
name = "\improper IFF bins box"
desc = "A box with unfinished smart-rounds inside and empty boxes inside."
result = /obj/item/ammo_magazine/packet/smart_targetrifle

/obj/item/factory_part/smartgunner_targetrifle_ammobin/Initialize(mapload)
. = ..()
recipe = GLOB.IFF_ammo

/obj/item/factory_part/auto_sniper_magazine
name = "\improper IFF high caliber bullet box"
desc = "A box with unfinished high caliber smart-rounds inside."
Expand Down
6 changes: 6 additions & 0 deletions code/modules/factory/unboxer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,12 @@
refill_type = /obj/item/factory_part/smartgunner_targetrifle_magazine
refill_amount = 20

/obj/item/factory_refill/smartgunner_targetrifle_ammobin_refill
name = "box of rounded metal plates"
desc = "A box with round metal plates inside. Used to refill Unboxers."
refill_type = /obj/item/factory_part/smartgunner_targetrifle_ammobin
refill_amount = 10

/obj/item/factory_refill/auto_sniper_magazine_refill
name = "box of rounded metal plates (SR-81)"
desc = "A box with round metal plates inside. Used to refill Unboxers. These become produce SR-81 magazines, once finished."
Expand Down
5 changes: 5 additions & 0 deletions code/modules/reqs/supplypacks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2268,6 +2268,11 @@ FACTORY
contains = list(/obj/item/factory_refill/smartgunner_targetrifle_magazine_refill)
cost = 250

/datum/supply_packs/factory/smartgun_targetrifle_ammobin_refill
name = "SG-62 ammo bin parts refill"
contains = list(/obj/item/factory_refill/smartgunner_targetrifle_ammobin_refill)
cost = 250

/datum/supply_packs/factory/autosniper_magazine_refill
name = "SR-81 IFF Auto Sniper magazine assembly refill"
contains = list(/obj/item/factory_refill/auto_sniper_magazine_refill)
Expand Down

0 comments on commit 9890cee

Please sign in to comment.