mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-15 12:11:45 +00:00
## About The Pull Request Title. This WILL break shit. Probably. Help me sweet Jesus. ## Why It's Good For The Game House of Leaves is less confusing than our file structure. ## Proof Of Testing ## Changelog 🆑 fix: MASSIVE File Structure clean-up. /🆑 --------- Co-authored-by: Waterpig <49160555+Majkl-J@users.noreply.github.com>
44 lines
1.6 KiB
Plaintext
44 lines
1.6 KiB
Plaintext
/datum/design/glock9mm_ammo_rubber
|
|
name = "C-CK Magazine (9x25mm Rubber-Tipped) (Less-Than-Lethal)"
|
|
desc = "A magazine for the C-CK 9x25mm Pistol. Contains less-than-lethal rubber-tipped ammo."
|
|
id = "glock9mm_ammo_rubber"
|
|
build_type = PROTOLATHE | AWAY_LATHE
|
|
materials = list(/datum/material/iron = SHEET_MATERIAL_AMOUNT * 3)
|
|
build_path = /obj/item/ammo_box/magazine/m9mm/rubber
|
|
category = list(
|
|
RND_CATEGORY_WEAPONS + RND_SUBCATEGORY_WEAPONS_AMMO
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_SECURITY
|
|
|
|
/datum/design/glock9mm_ammo_flat
|
|
name = "C-CK Magazine (9x25mm FlatHead) (Lethal)"
|
|
desc = "A magazine for the C-CK 9x25mm Pistol. Contains lethal surplus-tier flathead ammo."
|
|
id = "glock9mm_ammo_flathead"
|
|
build_type = PROTOLATHE | AWAY_LATHE
|
|
materials = list(/datum/material/iron = SHEET_MATERIAL_AMOUNT * 4)
|
|
build_path = /obj/item/ammo_box/magazine/m9mm/flathead
|
|
category = list(
|
|
RND_CATEGORY_WEAPONS + RND_SUBCATEGORY_WEAPONS_AMMO
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_SECURITY
|
|
|
|
/datum/design/glock9mm_ammo
|
|
name = "C-CK Magazine (9x25mm Regular) (Lethal)"
|
|
desc = "A magazine for the C-CK 9x25mm Pistol. Contains lethal regular ammo."
|
|
id = "glock9mm_ammo_normal"
|
|
build_type = PROTOLATHE | AWAY_LATHE
|
|
materials = list(/datum/material/iron = SHEET_MATERIAL_AMOUNT * 5)
|
|
build_path = /obj/item/ammo_box/magazine/m9mm
|
|
category = list(
|
|
RND_CATEGORY_WEAPONS + RND_SUBCATEGORY_WEAPONS_AMMO
|
|
)
|
|
departmental_flags = DEPARTMENT_BITFLAG_SECURITY
|
|
|
|
/datum/techweb_node/weaponry/New()
|
|
design_ids += "glock9mm_ammo_rubber"
|
|
design_ids += "glock9mm_ammo_flathead"
|
|
. = ..()
|
|
|
|
/datum/techweb_node/adv_weaponry/New()
|
|
design_ids += "glock9mm_ammo_normal"
|
|
. = ..() |