mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-05-19 21:28:37 +01:00
6f1d6c524d
* first adjustements * few more * construct * next * next set * next * next * next * next * next * . * last non modular set * make it compile * . * . * change that * synx * teamush * override fix * TEAMUSH * adds organ sell element * adds pick color * get rid of these chompcomments * removes chomp comments * Update gaslamp_vr.dm * zipgun * zip and synx * fixes synx * Update topic.dm * move the trash verbs * . * . * . * port * Update rakshasa_trap.dm * Update slug.dm --------- Co-authored-by: C.L. <killer65311@gmail.com> Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
81 lines
2.5 KiB
Plaintext
81 lines
2.5 KiB
Plaintext
/datum/crafting_recipe/stunprod
|
|
name = "Stunprod"
|
|
result = /obj/item/melee/baton/cattleprod
|
|
reqs = list(list(/obj/item/handcuffs/cable = 1),
|
|
list(/obj/item/stack/rods = 1),
|
|
list(/obj/item/tool/wirecutters = 1))
|
|
time = 40
|
|
category = CAT_WEAPONRY
|
|
subcategory = CAT_WEAPON
|
|
|
|
/datum/crafting_recipe/spear
|
|
name = "Spear"
|
|
result = /obj/item/material/twohanded/spear
|
|
reqs = list(list(/obj/item/handcuffs/cable = 1),
|
|
list(/obj/item/stack/rods = 1),
|
|
list(/obj/item/material/shard = 1,
|
|
/obj/item/material/butterflyblade = 1)
|
|
)
|
|
parts = list(/obj/item/material/shard = 1,
|
|
/obj/item/material/butterflyblade = 1)
|
|
time = 40
|
|
category = CAT_WEAPONRY
|
|
subcategory = CAT_WEAPON
|
|
|
|
/datum/crafting_recipe/shortbow
|
|
name = "Shortbow"
|
|
result = /obj/item/gun/launcher/crossbow/bow
|
|
reqs = list(list(/obj/item/stack/material/wood = 10),
|
|
list(/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/arrow/standard
|
|
reqs = list(list(/obj/item/stack/material/wood = 2),
|
|
list(/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/arrow/standard
|
|
reqs = list(list(/obj/item/stack/material/wood = 2),
|
|
list(/obj/item/stack/material/marble = 2))
|
|
time = 40
|
|
category = CAT_WEAPONRY
|
|
subcategory = CAT_AMMO
|
|
|
|
/datum/crafting_recipe/primitive_shield
|
|
name = "Primitive Shield"
|
|
result = /obj/item/shield/primitive
|
|
reqs = list(list(/obj/item/stack/material/wood = 2), list(/obj/item/reagent_containers/glass/bucket/wood =1), list(/obj/item/stack/material/cloth = 5))
|
|
time = 120
|
|
category = CAT_WEAPONRY
|
|
subcategory = CAT_WEAPON
|
|
|
|
/datum/crafting_recipe/scopedrifle
|
|
name = "Bolt scope to bolt-action (cannot be removed)"
|
|
result = /obj/item/gun/projectile/shotgun/pump/rifle/scoped
|
|
reqs = list(list(/obj/item/binoculars/scope = 1),
|
|
list(/obj/item/gun/projectile/shotgun/pump/rifle = 1))
|
|
time = 180
|
|
category = CAT_WEAPONRY
|
|
subcategory = CAT_WEAPON
|
|
|
|
/datum/crafting_recipe/ziplaser
|
|
name = "Ziplaser"
|
|
result = /obj/item/gun/energy/zip/craftable
|
|
reqs = list(list(/obj/item/cell/high = 1),
|
|
list(/obj/item/stack/rods = 2),
|
|
list(/obj/item/stack/material/steel = 8),
|
|
list(/obj/item/stack/material/plastic = 5),
|
|
list(/obj/item/cell/device = 2)
|
|
)
|
|
time = 120
|
|
category = CAT_WEAPONRY
|
|
subcategory = CAT_WEAPON
|