mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 13:53:45 +03:00
29 lines
1.0 KiB
Lua
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() |