Files
wnsrc/gamemodes/darkrp/plugins/willardskills/recipes/crafting/sh_rec_ammo.lua
lifestorm 6a58f406b1 Upload
2024-08-04 23:54:45 +03:00

124 lines
3.8 KiB
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--[[
| 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 = "357 Mermi"
RECIPE.description = "Altıpatlar için 357 mermi."
RECIPE.model = "models/items/357ammo.mdl"
RECIPE.category = "Mermi"
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 = "Keskin Nişancı Mermileri"
RECIPE.description = "Bir keskin nişancı için gevşek keskin nişancı mermileri."
RECIPE.model = "models/items/sniper_round_box.mdl"
RECIPE.category = "Mermi"
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 = 35
RECIPE.experience = {
{level = 35, exp = 200}, -- full xp
{level = 40, exp = 100}, -- half xp
{level = 50, exp = 0} -- no xp
}
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_ammo_smg"
RECIPE.name = "SMG Mermileri"
RECIPE.description = "Hafif makineli tüfekler için gevşek mermiler."
RECIPE.model = "models/Items/BoxSRounds.mdl"
RECIPE.category = "Mermi"
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 = 20
RECIPE.experience = {
{level = 20, exp = 150}, -- full xp
{level = 25, exp = 75}, -- half xp
{level = 35, exp = 0} -- no xp
}
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_ammo_arifle"
RECIPE.name = "Taaruz Tüfeği Mermisi"
RECIPE.description = "Loose Tüfek Mermisi"
RECIPE.model = "models/Items/BoxSRounds.mdl"
RECIPE.category = "Mermi"
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 = 25
RECIPE.experience = {
{level = 25, exp = 100}, -- full xp
{level = 30, exp = 50}, -- half xp
{level = 40, exp = 0} -- no xp
}
RECIPE:Register()
RECIPE = ix.recipe:New()
RECIPE.uniqueID = "rec_ammo_pistol"
RECIPE.name = "9mm Tabanca Mermileri"
RECIPE.description = "Tabanca mermileri."
RECIPE.model = "models/items/boxsrounds.mdl"
RECIPE.category = "Mermi"
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 = "Saçma Mermisi"
RECIPE.description = "Hurda bir karton kutu içinde bir yığın av tüfeği fişeği."
RECIPE.model = "models/Items/BoxBuckshot.mdl"
RECIPE.category = "Mermi"
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 = 25
RECIPE.experience = {
{level = 25, exp = 100}, -- full xp
{level = 30, exp = 50}, -- half xp
{level = 40, exp = 0} -- no xp
}
RECIPE:Register()