Files
CHOMPStation2/code/datums/components/crafting/recipes/weapons.dm
2021-07-15 22:13:21 +00:00

43 lines
1.1 KiB
Plaintext

/datum/crafting_recipe/stunprod
name = "Stunprod"
result = /obj/item/weapon/melee/baton/cattleprod
reqs = list(/obj/item/weapon/handcuffs/cable = 1,
/obj/item/stack/rods = 1,
/obj/item/weapon/tool/wirecutters = 1)
time = 40
category = CAT_WEAPONRY
subcategory = CAT_WEAPON
/datum/crafting_recipe/shortbow
name = "Shortbow"
result = /obj/item/weapon/gun/launcher/crossbow/bow
reqs = list(
/obj/item/stack/material/wood = 10,
/obj/item/stack/material/cloth = 5
)
time = 120
category = CAT_WEAPONRY
subcategory = CAT_WEAPON
/datum/crafting_recipe/arrow_sandstone
name = "Wood arrow (sandstone tip)"
result = /obj/item/weapon/arrow/standard
reqs = list(
/obj/item/stack/material/wood = 2,
/obj/item/stack/material/sandstone = 2
)
time = 40
category = CAT_WEAPONRY
subcategory = CAT_AMMO
/datum/crafting_recipe/arrow_marble
name = "Wood arrow (marble tip)"
result = /obj/item/weapon/arrow/standard
reqs = list(
/obj/item/stack/material/wood = 2,
/obj/item/stack/material/marble = 2
)
time = 40
category = CAT_WEAPONRY
subcategory = CAT_AMMO