mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-30 12:13:02 +00:00
203 lines
7.1 KiB
Plaintext
203 lines
7.1 KiB
Plaintext
/datum/table_recipe
|
|
var/name = "" //in-game display name
|
|
var/reqs[] = list() //type paths of items consumed associated with how many are needed
|
|
var/result //type path of item resulting from this craft
|
|
var/tools[] = list() //type paths of items needed but not consumed
|
|
var/time = 30 //time in deciseconds
|
|
var/parts[] = list() //type paths of items that will be placed in the result
|
|
var/chem_catalists[] = list() //like tools but for reagents
|
|
var/fruit[] = list() //grown products required by the recipe
|
|
|
|
/datum/table_recipe/proc/AdjustChems(var/obj/resultobj as obj)
|
|
//This proc is to replace the make_food proc of recipes from microwaves and such that are being converted to table crafting recipes.
|
|
//Use it to handle the removal of reagents after the food has been created (like removing toxins from a salad made with ambrosia)
|
|
//If a recipe does not require it's chems adjusted, don't bother declaring this for the recipe, as it will call this placeholder
|
|
return
|
|
|
|
/datum/table_recipe/IED
|
|
name = "IED"
|
|
result = /obj/item/weapon/grenade/iedcasing/filled
|
|
reqs = list(/datum/reagent/fuel = 50,
|
|
/obj/item/stack/cable_coil = 1,
|
|
/obj/item/device/assembly/igniter = 1,
|
|
/obj/item/weapon/reagent_containers/food/drinks/cans = 1)
|
|
parts = list(/obj/item/weapon/reagent_containers/food/drinks/cans = 1)
|
|
time = 80
|
|
|
|
/datum/table_recipe/stunprod
|
|
name = "Stunprod"
|
|
result = /obj/item/weapon/melee/baton/cattleprod
|
|
reqs = list(/obj/item/weapon/restraints/handcuffs/cable = 1,
|
|
/obj/item/stack/rods = 1,
|
|
/obj/item/weapon/wirecutters = 1,
|
|
/obj/item/weapon/stock_parts/cell = 1)
|
|
time = 80
|
|
parts = list(/obj/item/weapon/stock_parts/cell = 1)
|
|
|
|
/datum/table_recipe/ed209
|
|
name = "ED209"
|
|
result = /mob/living/simple_animal/bot/ed209
|
|
reqs = list(/obj/item/robot_parts/robot_suit = 1,
|
|
/obj/item/clothing/head/helmet = 1,
|
|
/obj/item/clothing/suit/armor/vest = 1,
|
|
/obj/item/robot_parts/l_leg = 1,
|
|
/obj/item/robot_parts/r_leg = 1,
|
|
/obj/item/stack/sheet/metal = 5,
|
|
/obj/item/stack/cable_coil = 5,
|
|
/obj/item/weapon/gun/energy/advtaser = 1,
|
|
/obj/item/weapon/stock_parts/cell = 1,
|
|
/obj/item/device/assembly/prox_sensor = 1,
|
|
/obj/item/robot_parts/r_arm = 1)
|
|
tools = list(/obj/item/weapon/weldingtool, /obj/item/weapon/screwdriver)
|
|
time = 120
|
|
|
|
/datum/table_recipe/secbot
|
|
name = "Secbot"
|
|
result = /mob/living/simple_animal/bot/secbot
|
|
reqs = list(/obj/item/device/assembly/signaler = 1,
|
|
/obj/item/clothing/head/helmet = 1,
|
|
/obj/item/weapon/melee/baton = 1,
|
|
/obj/item/device/assembly/prox_sensor = 1,
|
|
/obj/item/robot_parts/r_arm = 1)
|
|
tools = list(/obj/item/weapon/weldingtool)
|
|
time = 120
|
|
|
|
/datum/table_recipe/cleanbot
|
|
name = "Cleanbot"
|
|
result = /mob/living/simple_animal/bot/cleanbot
|
|
reqs = list(/obj/item/weapon/reagent_containers/glass/bucket = 1,
|
|
/obj/item/device/assembly/prox_sensor = 1,
|
|
/obj/item/robot_parts/r_arm = 1)
|
|
time = 80
|
|
|
|
/datum/table_recipe/floorbot
|
|
name = "Floorbot"
|
|
result = /mob/living/simple_animal/bot/floorbot
|
|
reqs = list(/obj/item/weapon/storage/toolbox/mechanical = 1,
|
|
/obj/item/stack/tile/plasteel = 1,
|
|
/obj/item/device/assembly/prox_sensor = 1,
|
|
/obj/item/robot_parts/r_arm = 1)
|
|
time = 80
|
|
|
|
/datum/table_recipe/medbot
|
|
name = "Medbot"
|
|
result = /mob/living/simple_animal/bot/medbot
|
|
reqs = list(/obj/item/device/healthanalyzer = 1,
|
|
/obj/item/weapon/storage/firstaid = 1,
|
|
/obj/item/device/assembly/prox_sensor = 1,
|
|
/obj/item/robot_parts/r_arm = 1)
|
|
time = 80
|
|
|
|
/datum/table_recipe/flamethrower
|
|
name = "Flamethrower"
|
|
result = /obj/item/weapon/flamethrower
|
|
reqs = list(/obj/item/weapon/weldingtool = 1,
|
|
/obj/item/device/assembly/igniter = 1,
|
|
/obj/item/stack/rods = 2)
|
|
tools = list(/obj/item/weapon/screwdriver)
|
|
time = 20
|
|
|
|
/datum/table_recipe/meteorshot
|
|
name = "Meteorshot Shell"
|
|
result = /obj/item/ammo_casing/shotgun/meteorshot
|
|
reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1,
|
|
/obj/item/weapon/rcd_ammo = 1,
|
|
/obj/item/weapon/stock_parts/manipulator = 2)
|
|
tools = list(/obj/item/weapon/screwdriver)
|
|
time = 5
|
|
|
|
/datum/table_recipe/pulseslug
|
|
name = "Pulse Slug Shell"
|
|
result = /obj/item/ammo_casing/shotgun/pulseslug
|
|
reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1,
|
|
/obj/item/weapon/stock_parts/capacitor/adv = 2,
|
|
/obj/item/weapon/stock_parts/micro_laser/ultra = 1)
|
|
tools = list(/obj/item/weapon/screwdriver)
|
|
time = 5
|
|
|
|
/datum/table_recipe/dragonsbreath
|
|
name = "Dragonsbreath Shell"
|
|
result = /obj/item/ammo_casing/shotgun/incendiary/dragonsbreath
|
|
reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1,
|
|
/datum/reagent/phosphorus = 5,)
|
|
tools = list(/obj/item/weapon/screwdriver)
|
|
time = 5
|
|
|
|
/datum/table_recipe/frag12
|
|
name = "FRAG-12 Shell"
|
|
result = /obj/item/ammo_casing/shotgun/frag12
|
|
reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1,
|
|
/datum/reagent/glycerol = 5,
|
|
/datum/reagent/sacid = 5,
|
|
/datum/reagent/facid = 5,)
|
|
tools = list(/obj/item/weapon/screwdriver)
|
|
time = 5
|
|
|
|
/datum/table_recipe/ionslug
|
|
name = "Ion Scatter Shell"
|
|
result = /obj/item/ammo_casing/shotgun/ion
|
|
reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1,
|
|
/obj/item/weapon/stock_parts/micro_laser/ultra = 1,
|
|
/obj/item/weapon/stock_parts/subspace/crystal = 1)
|
|
tools = list(/obj/item/weapon/screwdriver)
|
|
time = 5
|
|
|
|
/datum/table_recipe/improvisedslug
|
|
name = "Improvised Shotgun Shell"
|
|
result = /obj/item/ammo_casing/shotgun/improvised
|
|
reqs = list(/obj/item/weapon/grenade/chem_grenade = 1,
|
|
/obj/item/stack/sheet/metal = 1,
|
|
/obj/item/stack/cable_coil = 1,
|
|
/datum/reagent/fuel = 10)
|
|
tools = list(/obj/item/weapon/screwdriver)
|
|
time = 5
|
|
|
|
/datum/table_recipe/improvisedslugoverload
|
|
name = "Overload Improvised Shell"
|
|
result = /obj/item/ammo_casing/shotgun/improvised/overload
|
|
reqs = list(/obj/item/ammo_casing/shotgun/improvised = 1,
|
|
/datum/reagent/blackpowder = 5)
|
|
tools = list(/obj/item/weapon/screwdriver)
|
|
time = 5
|
|
|
|
/datum/table_recipe/laserslug
|
|
name = "Laser Slug Shell"
|
|
result = /obj/item/ammo_casing/shotgun/laserslug
|
|
reqs = list(/obj/item/ammo_casing/shotgun/techshell = 1,
|
|
/obj/item/weapon/stock_parts/capacitor/adv = 1,
|
|
/obj/item/weapon/stock_parts/micro_laser/high = 1)
|
|
tools = list(/obj/item/weapon/screwdriver)
|
|
time = 5
|
|
|
|
/datum/table_recipe/ishotgun
|
|
name = "Improvised Shotgun"
|
|
result = /obj/item/weapon/gun/projectile/revolver/doublebarrel/improvised
|
|
reqs = list(/obj/item/weaponcrafting/receiver = 1,
|
|
/obj/item/pipe = 1,
|
|
/obj/item/weaponcrafting/stock = 1,
|
|
/obj/item/stack/packageWrap = 5,)
|
|
tools = list(/obj/item/weapon/screwdriver)
|
|
time = 200
|
|
|
|
/datum/table_recipe/spooky_camera
|
|
name = "Camera Obscura"
|
|
result = /obj/item/device/camera/spooky
|
|
time = 15
|
|
reqs = list(/obj/item/device/camera = 1,
|
|
/datum/reagent/holywater = 10)
|
|
parts = list(/obj/item/device/camera = 1)
|
|
|
|
/datum/table_recipe/notreallysoap
|
|
name = "Homemade Soap"
|
|
result = /obj/item/weapon/soap/ducttape
|
|
time = 100
|
|
reqs = list(/obj/item/stack/tape_roll = 1,
|
|
/datum/reagent/liquidgibs = 10)
|
|
|
|
/datum/table_recipe/garrote
|
|
name = "Makeshift Garrote"
|
|
result = /obj/item/weapon/twohanded/garrote/improvised
|
|
time = 15
|
|
reqs = list(/obj/item/stack/sheet/wood = 1,
|
|
/obj/item/stack/cable_coil = 5)
|
|
tools = list(/obj/item/weapon/kitchen/knife) // Gotta carve the wood into handles |