mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-19 06:33:47 +03:00
124 lines
3.7 KiB
Lua
124 lines
3.7 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_ammo_357"
|
|
RECIPE.name = "Pociski kalibru .357"
|
|
RECIPE.description = "Pociski .357 używane w rewolwerach."
|
|
RECIPE.model = "models/items/357ammo.mdl"
|
|
RECIPE.category = "Amunicja"
|
|
RECIPE.station = "tool_metalbench"
|
|
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["comp_alcohol"] = 2}
|
|
RECIPE.result = {["bullets_357"] = 18}
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.level = 15
|
|
RECIPE.experience = {
|
|
{level = 15, exp = 150}, -- full xp
|
|
{level = 20, exp = 75}, -- half xp
|
|
{level = 25, exp = 0} -- no xp
|
|
}
|
|
RECIPE:Register()
|
|
|
|
RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "rec_ammo_sniper"
|
|
RECIPE.name = "Amunicja snajperska"
|
|
RECIPE.description = "Naboje do broni snajperskiej."
|
|
RECIPE.model = "models/items/sniper_round_box.mdl"
|
|
RECIPE.category = "Amunicja"
|
|
RECIPE.station = "tool_metalbench"
|
|
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["comp_alcohol"] = 2, ["comp_explosive"] = 1}
|
|
RECIPE.result = {["bullets_sniper"] = 15}
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.level = 40
|
|
RECIPE.experience = {
|
|
{level = 40, exp = 200}, -- full xp
|
|
{level = 45, exp = 100}, -- half xp
|
|
{level = 50, exp = 0} -- no xp
|
|
}
|
|
RECIPE:Register()
|
|
|
|
RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "rec_ammo_smg"
|
|
RECIPE.name = "Amunicja PM"
|
|
RECIPE.description = "Naboje do pistoletu maszynowego."
|
|
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
|
RECIPE.category = "Amunicja"
|
|
RECIPE.station = "tool_metalbench"
|
|
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["comp_alcohol"] = 2}
|
|
RECIPE.result = {["bullets_smg1"] = 60}
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.level = 25
|
|
RECIPE.experience = {
|
|
{level = 25, exp = 150}, -- full xp
|
|
{level = 30, exp = 75}, -- half xp
|
|
{level = 35, exp = 0} -- no xp
|
|
}
|
|
RECIPE:Register()
|
|
|
|
RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "rec_ammo_arifle"
|
|
RECIPE.name = "Amunicja Karabinowa"
|
|
RECIPE.description = "Naboje do Karabinu"
|
|
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
|
RECIPE.category = "Amunicja"
|
|
RECIPE.station = "tool_metalbench"
|
|
RECIPE.ingredients = {["comp_chemcomp"] = 2, ["comp_alcohol"] = 3,}
|
|
RECIPE.result = {["bullets_assaultrifle"] = 60}
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.level = 30
|
|
RECIPE.experience = {
|
|
{level = 30, exp = 100}, -- full xp
|
|
{level = 35, exp = 50}, -- half xp
|
|
{level = 40, exp = 0} -- no xp
|
|
}
|
|
RECIPE:Register()
|
|
|
|
RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "rec_ammo_pistol"
|
|
RECIPE.name = "Amunicja kalibru 9mm"
|
|
RECIPE.description = "Naboje do pistoletu."
|
|
RECIPE.model = "models/items/boxsrounds.mdl"
|
|
RECIPE.category = "Amunicja"
|
|
RECIPE.station = "tool_metalbench"
|
|
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["comp_alcohol"] = 1}
|
|
RECIPE.result = {["bullets_pistol"] = 60}
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.level = 10
|
|
RECIPE.experience = {
|
|
{level = 10, exp = 100}, -- full xp
|
|
{level = 15, exp = 50}, -- half xp
|
|
{level = 20, exp = 0} -- no xp
|
|
}
|
|
RECIPE:Register()
|
|
|
|
RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "rec_ammo_buckshot"
|
|
RECIPE.name = "Amunicja śrutowa do strzelb"
|
|
RECIPE.description = "Pociski z śrutem zapakowane w pudełko."
|
|
RECIPE.model = "models/Items/BoxBuckshot.mdl"
|
|
RECIPE.category = "Amunicja"
|
|
RECIPE.station = "tool_metalbench"
|
|
RECIPE.ingredients = {["comp_chemcomp"] = 1, ["comp_alcohol"] = 2, ["comp_explosive"] = 1}
|
|
RECIPE.result = {["bullets_buckshot"] = 24}
|
|
RECIPE.hidden = false
|
|
RECIPE.skill = "crafting"
|
|
RECIPE.level = 30
|
|
RECIPE.experience = {
|
|
{level = 30, exp = 100}, -- full xp
|
|
{level = 35, exp = 50}, -- half xp
|
|
{level = 40, exp = 0} -- no xp
|
|
}
|
|
RECIPE:Register() |