mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
191 lines
5.6 KiB
Lua
191 lines
5.6 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 = "break_kitchenspoon"
|
||
RECIPE.name = "Parçala: Mutfak Kaşığı"
|
||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın.+"
|
||
RECIPE.model = "models/willardnetworks/skills/kitchenspoon.mdl"
|
||
RECIPE.category = "Parçalama"
|
||
RECIPE.subcategory = "Aletler"
|
||
RECIPE.tool = "tool_wrench"
|
||
RECIPE.ingredients = {["tool_spoon"] = 1}
|
||
RECIPE.result = {["comp_plastic"] = 1}
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "crafting"
|
||
RECIPE.level = 0
|
||
RECIPE.experience = {
|
||
{level = 0, exp = 40}, -- full xp
|
||
{level = 10, exp = 20}, -- half xp
|
||
{level = 15, exp = 0} -- no xp
|
||
}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "break_suitcase"
|
||
RECIPE.name = "Parçala: Bavul"
|
||
RECIPE.description = "Bavulu temel bileşenlerine ayırın."
|
||
RECIPE.model = "models/weapons/w_suitcase_passenger.mdl"
|
||
RECIPE.category = "Parçalama"
|
||
RECIPE.subcategory = "Aletler"
|
||
RECIPE.tool = "tool_scissors"
|
||
RECIPE.ingredients = {["suitcase"] = 1}
|
||
RECIPE.result = {["comp_cloth"] = 1}
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "crafting"
|
||
RECIPE.level = 0
|
||
RECIPE.experience = {
|
||
{level = 0, exp = 40}, -- full xp
|
||
{level = 10, exp = 20}, -- half xp
|
||
{level = 15, exp = 0} -- no xp
|
||
}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "break_fryingpan"
|
||
RECIPE.name = "Parçala: Kızartma Tavası"
|
||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||
RECIPE.model = "models/props_c17/metalPot002a.mdl"
|
||
RECIPE.category = "Parçalama"
|
||
RECIPE.subcategory = "Aletler"
|
||
RECIPE.tool = "tool_wrench"
|
||
RECIPE.ingredients = {["tool_fryingpan"] = 1}
|
||
RECIPE.result = {["comp_scrap"] = 1}
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "crafting"
|
||
RECIPE.level = 0
|
||
RECIPE.experience = {
|
||
{level = 0, exp = 40}, -- full xp
|
||
{level = 10, exp = 20}, -- half xp
|
||
{level = 20, exp = 0} -- no xp
|
||
}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "break_kitchenknife"
|
||
RECIPE.name = "Parçala: Mutfak Bıçağı"
|
||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||
RECIPE.model = "models/willardnetworks/skills/kitchenknife.mdl"
|
||
RECIPE.category = "Parçalama"
|
||
RECIPE.subcategory = "Aletler"
|
||
RECIPE.tool = "tool_wrench"
|
||
RECIPE.ingredients = {["tool_knife"] = 1}
|
||
RECIPE.result = {["comp_scrap"] = 1}
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "crafting"
|
||
RECIPE.level = 0
|
||
RECIPE.experience = {
|
||
{level = 0, exp = 40}, -- full xp
|
||
{level = 10, exp = 20}, -- half xp
|
||
{level = 15, exp = 0} -- no xp
|
||
}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "break_flashlight"
|
||
RECIPE.name = "Parçala: Fener"
|
||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||
RECIPE.model = "models/willardnetworks/skills/flashlight.mdl"
|
||
RECIPE.category = "Parçalama"
|
||
RECIPE.subcategory = "Aletler"
|
||
RECIPE.tool = "tool_wrench"
|
||
RECIPE.ingredients = {["flashlight"] = 1}
|
||
RECIPE.result = {["comp_electronics"] = 1}
|
||
RECIPE.hidden = true
|
||
RECIPE.skill = "crafting"
|
||
RECIPE.level = 0
|
||
RECIPE.experience = {
|
||
{level = 0, exp = 40}, -- full xp
|
||
{level = 10, exp = 20}, -- half xp
|
||
{level = 20, exp = 0} -- no xp
|
||
}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "break_requestdevice"
|
||
RECIPE.name = "Parçala: Talep Cihazı"
|
||
RECIPE.description = "Elektronik aksamı için Combine talep cihazını parçalayın."
|
||
RECIPE.model = "models/gibs/shield_scanner_gib1.mdl"
|
||
RECIPE.category = "Parçalama"
|
||
RECIPE.subcategory = "Aletler"
|
||
RECIPE.tool = "tool_wrench"
|
||
RECIPE.ingredients = {["request_device"] = 1}
|
||
RECIPE.result = {["comp_electronics"] = 1}
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "crafting"
|
||
RECIPE.level = 0
|
||
RECIPE.experience = {
|
||
{level = 0, exp = 40}, -- full xp
|
||
{level = 10, exp = 20}, -- half xp
|
||
{level = 20, exp = 0} -- no xp
|
||
}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "break_scissors"
|
||
RECIPE.name = "Parçala: Makas"
|
||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||
RECIPE.model = "models/willardnetworks/skills/scissors.mdl"
|
||
RECIPE.category = "Parçalama"
|
||
RECIPE.subcategory = "Aletler"
|
||
RECIPE.tool = "tool_wrench"
|
||
RECIPE.ingredients = {["tool_scissors"] = 1}
|
||
RECIPE.result = {["comp_plastic"] = 1}
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "crafting"
|
||
RECIPE.level = 0
|
||
RECIPE.experience = {
|
||
{level = 0, exp = 40}, -- full xp
|
||
{level = 10, exp = 20}, -- half xp
|
||
{level = 20, exp = 0} -- no xp
|
||
}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "break_cookingpot"
|
||
RECIPE.name = "Parçala: Pişirme Tenceresi"
|
||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||
RECIPE.model = "models/props_c17/metalPot001a.mdl"
|
||
RECIPE.category = "Parçalama"
|
||
RECIPE.subcategory = "Aletler"
|
||
RECIPE.tool = "tool_wrench"
|
||
RECIPE.ingredients = {["tool_cookingpot"] = 1}
|
||
RECIPE.result = {["comp_scrap"] = 1}
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "crafting"
|
||
RECIPE.level = 0
|
||
RECIPE.experience = {
|
||
{level = 0, exp = 40}, -- full xp
|
||
{level = 10, exp = 20}, -- half xp
|
||
{level = 20, exp = 0} -- no xp
|
||
}
|
||
RECIPE:Register()
|
||
|
||
local RECIPE = ix.recipe:New()
|
||
RECIPE.uniqueID = "break_kettle"
|
||
RECIPE.name = "Parçala: Su Isıtıcısı"
|
||
RECIPE.description = "Bu aracı temel bileşenlerine ayırın."
|
||
RECIPE.model = "models/props_interiors/pot01a.mdl"
|
||
RECIPE.category = "Parçalama"
|
||
RECIPE.subcategory = "Aletler"
|
||
RECIPE.tool = "tool_wrench"
|
||
RECIPE.ingredients = {["tool_kettle"] = 1}
|
||
RECIPE.result = {["comp_scrap"] = 1}
|
||
RECIPE.hidden = false
|
||
RECIPE.skill = "crafting"
|
||
RECIPE.level = 0
|
||
RECIPE.experience = {
|
||
{level = 0, exp = 40}, -- full xp
|
||
{level = 10, exp = 20}, -- half xp
|
||
{level = 20, exp = 0} -- no xp
|
||
}
|
||
RECIPE:Register()
|
||
|