mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 03:57:48 +01:00
Exosuit Modular Internals, The Squeakening
This commit is contained in:
@@ -33,6 +33,12 @@
|
||||
path =/obj/item/ammo_casing/a12g/stunshell
|
||||
hidden = 1
|
||||
|
||||
/datum/category_item/autolathe/arms/flechetteshell
|
||||
name = "ammunition (flechette cartridge, shotgun)"
|
||||
path =/obj/item/ammo_casing/a12g/flechette
|
||||
hidden = 1
|
||||
man_rating = 2
|
||||
|
||||
//////////////////
|
||||
/*Ammo magazines*/
|
||||
//////////////////
|
||||
@@ -64,6 +70,18 @@
|
||||
name = "pistol magazine (.45 flash)"
|
||||
path =/obj/item/ammo_magazine/m45/flash
|
||||
|
||||
/datum/category_item/autolathe/arms/pistol_45ap
|
||||
name = "pistol magazine (.45 armor piercing)"
|
||||
path =/obj/item/ammo_magazine/m45/ap
|
||||
hidden = 1
|
||||
resources = list(DEFAULT_WALL_MATERIAL = 500, MAT_PLASTEEL = 300)
|
||||
|
||||
/datum/category_item/autolathe/arms/pistol_45hp
|
||||
name = "pistol magazine (.45 hollowpoint)"
|
||||
path =/obj/item/ammo_magazine/m45/hp
|
||||
hidden = 1
|
||||
resources = list(DEFAULT_WALL_MATERIAL = 500, MAT_PLASTIC = 200)
|
||||
|
||||
/datum/category_item/autolathe/arms/pistol_45uzi
|
||||
name = "uzi magazine (.45)"
|
||||
path =/obj/item/ammo_magazine/m45uzi
|
||||
@@ -138,6 +156,12 @@
|
||||
name = "top-mounted SMG magazine (9mm flash)"
|
||||
path =/obj/item/ammo_magazine/m9mmt/flash
|
||||
|
||||
/datum/category_item/autolathe/arms/smg_9mmap
|
||||
name = "top-mounted SMG magazine (9mm armor piercing)"
|
||||
path =/obj/item/ammo_magazine/m9mmt/ap
|
||||
hidden = 1
|
||||
man_rating = 2
|
||||
|
||||
/////// 10mm
|
||||
/datum/category_item/autolathe/arms/smg_10mm
|
||||
name = "SMG magazine (10mm)"
|
||||
|
||||
@@ -71,6 +71,7 @@ var/datum/category_collection/autolathe/autolathe_recipes
|
||||
var/is_stack // Creates multiple of an item if applied to non-stack items
|
||||
var/max_stack
|
||||
var/no_scale
|
||||
var/man_rating = 0
|
||||
|
||||
/datum/category_item/autolathe/dd_SortValue()
|
||||
return name
|
||||
@@ -98,6 +98,18 @@
|
||||
is_stack = TRUE
|
||||
no_scale = TRUE //prevents material duplication exploits
|
||||
|
||||
/datum/category_item/autolathe/general/plasteel
|
||||
name = "plasteel sheets"
|
||||
path =/obj/item/stack/material/plasteel
|
||||
is_stack = TRUE
|
||||
no_scale = TRUE //prevents material duplication exploits
|
||||
|
||||
/datum/category_item/autolathe/general/plastic
|
||||
name = "plastic sheets"
|
||||
path =/obj/item/stack/material/plastic
|
||||
is_stack = TRUE
|
||||
no_scale = TRUE //prevents material duplication exploits
|
||||
|
||||
//TFF 24/12/19 - Let people print more spray bottles if needed.
|
||||
/datum/category_item/autolathe/general/spraybottle
|
||||
name = "spray bottle"
|
||||
@@ -133,6 +145,19 @@
|
||||
name = "maglight"
|
||||
path =/obj/item/device/flashlight/maglight
|
||||
|
||||
<<<<<<< HEAD
|
||||
=======
|
||||
/datum/category_item/autolathe/general/ecigcartridge
|
||||
name = "ecigarette cartridge"
|
||||
path = /obj/item/weapon/reagent_containers/ecig_cartridge/blank
|
||||
|
||||
/datum/category_item/autolathe/general/idcard
|
||||
name = "ID Card"
|
||||
path = /obj/item/weapon/card/id
|
||||
resources = list(DEFAULT_WALL_MATERIAL = 100, MAT_GLASS = 100, MAT_PLASTIC = 300)
|
||||
man_rating = 2
|
||||
|
||||
>>>>>>> 282b42d... Exosuit Modular Internals, The Squeakening (#7329)
|
||||
/datum/category_item/autolathe/general/handcuffs
|
||||
name = "handcuffs"
|
||||
path =/obj/item/weapon/handcuffs
|
||||
|
||||
Reference in New Issue
Block a user