Files
wnsrc/gamemodes/darkrp/plugins/willardskills/recipes/crafting/sh_rec_dummy.lua
lifestorm 73479cff9e Upload
2024-08-04 22:55:00 +03:00

29 lines
1.0 KiB
Lua

--[[
| This file was obtained through the combined efforts
| of Madbluntz & Plymouth Antiquarian Society.
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
| Maloy, DrPepper10 @ RIP, Atle!
|
| Visit for more: https://plymouth.thetwilightzone.ru/
--]]
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_dummy_emp"
RECIPE.name = "Dispositif de Bombe IEM"
RECIPE.description = "A small one-time use EMP device used to disable electronics. It can now also be used on Combine tech- capable of disabling forcefields for 5 minutes, turrets for 10 minutes and disable scanners for good."
RECIPE.model = "models/Items/car_battery01.mdl"
RECIPE.category = "RP Items"
RECIPE.tool = "tool_toolkit"
RECIPE.ingredients = {["comp_refined_metal"] = 3, ["comp_nails_screws"] = 2, ["comp_refined_plastic"] = 2, ["comp_electronics"] = 6}
RECIPE.result = {["dummy_emp"] = 1}
RECIPE.hidden = false
RECIPE.skill = "crafting"
RECIPE.level = 40
RECIPE.experience = {
{level = 40, exp = 150}, -- full xp
{level = 45, exp = 75}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()