mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-18 06:03:47 +03:00
Upload
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
for _, v in pairs(ix.item.list) do
|
||||
if v.category == "Clothing - Citizen" or v.category == "Clothing - Citizen Trousers" then
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_"..v.uniqueID
|
||||
RECIPE.name = "Tear "..v.name
|
||||
RECIPE.description = "Tears the "..v.name.." to shreds to obtain some cloth scraps."
|
||||
RECIPE.model = v.model
|
||||
RECIPE.category = "Breakdown"
|
||||
RECIPE.subcategory = "Clothes"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {[v.uniqueID] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
end
|
||||
end
|
||||
@@ -0,0 +1,960 @@
|
||||
--[[
|
||||
| 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_junk_tv"
|
||||
RECIPE.name = "Écran de TV détruit"
|
||||
RECIPE.description = "Vous donne : 2 verres - 2 électroniques - 2 plastiques - 2 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_tv"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 2, ["comp_electronics"] = 2, ["comp_plastic"] = 2, ["comp_metal"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 55}, -- full xp
|
||||
{level = 20, exp = 27}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_toy"
|
||||
RECIPE.name = "Jouet détruit"
|
||||
RECIPE.description = "Vous donne : 1 bois - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_toy"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 1, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_tire"
|
||||
RECIPE.name = "Pneu détruit"
|
||||
RECIPE.description = "Vous donne : 4 plastiques"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["junk_tire"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_tincan"
|
||||
RECIPE.name = "Vieille boîte de conserve"
|
||||
RECIPE.description = "Vous donne : 1 féraille"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_tincan"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_takeaway"
|
||||
RECIPE.name = "Vieille boîte de nouilles"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_takeaway"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_sm_cardboard"
|
||||
RECIPE.name = "Boîte en carton"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_sm_cardboard"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_shoe"
|
||||
RECIPE.name = "Chaussure détruite"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_shoe"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 25}, -- full xp
|
||||
{level = 10, exp = 12}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_receiver"
|
||||
RECIPE.name = "Récepteur"
|
||||
RECIPE.description = "Vous donne : 1 tas de vis - 2 électroniques - 2 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_receiver"] = 1}
|
||||
RECIPE.result = {["comp_nails_screws"] = 1, ["comp_electronics"] = 2, ["comp_metal"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_plastic_bucket"
|
||||
RECIPE.name = "Seau en plastique"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_plastic_bucket"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_plasticcrate"
|
||||
RECIPE.name = "Caisse en plastique"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_plasticcrate"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_plantpot"
|
||||
RECIPE.name = "Pot de fleurs"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_plantpot"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 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 = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_pipe"
|
||||
RECIPE.name = "Tuyau en métal fragile"
|
||||
RECIPE.description = "Vous donne : 4 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_pipe"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_tattered_drawer"
|
||||
RECIPE.name = "Tirroir"
|
||||
RECIPE.description = "Vous donne : 2 bois"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_tattered_drawer"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_paintcan"
|
||||
RECIPE.name = "Pot de peinture"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_paintcan"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_mug"
|
||||
RECIPE.name = "Tasse"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_mug"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_pc_monitor"
|
||||
RECIPE.name = "Moniteur de PC"
|
||||
RECIPE.description = "Vous donne : 3 plastiques - 3 verres - 3 électroniques - 2 férailles - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_pc_monitor"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 3, ["comp_glass"] = 3, ["comp_electronics"] = 3, ["comp_metal"] = 2, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_lamp"
|
||||
RECIPE.name = "Lampe grillée"
|
||||
RECIPE.description = "Vous donne : 2 plastiques - 1 tas de vis - 2 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_lamp"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 2, ["comp_nails_screws"] = 1, ["comp_metal"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 40}, -- full xp
|
||||
{level = 10, exp = 20}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_keyboard"
|
||||
RECIPE.name = "Clavier"
|
||||
RECIPE.description = "Vous donne : 2 électroniques - 2 plastiques - 2 férailles - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_keyboard"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 2, ["comp_plastic"] = 2, ["comp_metal"] = 2, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_jug"
|
||||
RECIPE.name = "Bidon en plastique"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_jug"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_jar"
|
||||
RECIPE.name = "Pot vide"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_jar"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_green_bottle"
|
||||
RECIPE.name = "Bouteille en verre"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_green_bottle"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_vodka"
|
||||
RECIPE.name = "Bouteille de vodka vide"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_vodka"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_beer"
|
||||
RECIPE.name = "Bière vide"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_beer"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_bourbon"
|
||||
RECIPE.name = "Bouteille de bourbon vide"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_bourbon"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_fruitjuice"
|
||||
RECIPE.name = "Bouteille en carton"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_fruitjuice"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_emptyvial"
|
||||
RECIPE.name = "Fiole de soins"
|
||||
RECIPE.description = "Vous donne : 1 verre."
|
||||
RECIPE.model = "models/willardnetworks/syringeemptyy.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_emptyvial"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_whiskey"
|
||||
RECIPE.name = "Bouteille de whisky vide"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_whiskey"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_wine"
|
||||
RECIPE.name = "Bouteille de vin vide"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_empty_wine"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_gear"
|
||||
RECIPE.name = "Engrenage"
|
||||
RECIPE.description = "Vous donne : 3 fers"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_gear"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 40}, -- full xp
|
||||
{level = 20, exp = 20}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_gascan"
|
||||
RECIPE.name = "Bidon d'essence"
|
||||
RECIPE.description = "Vous donne : 3 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_gascan"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_fridge_door"
|
||||
RECIPE.name = "Porte de réfrigérateur"
|
||||
RECIPE.description = "Vous donne : 4 férailles - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_fridgedoor"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 4, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_frame"
|
||||
RECIPE.name = "Cadre"
|
||||
RECIPE.description = "Vous donne : 1 bois - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_frame"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 1, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_biolock"
|
||||
RECIPE.name = "Bio-lock brisé"
|
||||
RECIPE.description = "Vous donne : 4 morceaux de feraille - 2 circuits electronique - 1 tas de vis "
|
||||
RECIPE.model = "models/willardnetworks/props_combine/wn_combine_lock.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["trash_biolock"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 4, ["comp_electronics"] = 2, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_doll"
|
||||
RECIPE.name = "Poupée"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_doll"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_coffeecup"
|
||||
RECIPE.name = "Tasse à café vide"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_coffeecup"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_computerparts"
|
||||
RECIPE.name = "Pièces d'ordinateur "
|
||||
RECIPE.description = "Vous donne : 2 électroniques"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_computerparts"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 70}, -- full xp
|
||||
{level = 10, exp = 35}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_computer_tower"
|
||||
RECIPE.name = "Tour d'ordinateur cassée"
|
||||
RECIPE.description = "Vous donne : 3 électroniques - 3 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_computer_tower"] = 1}
|
||||
RECIPE.result = {["comp_electronics"] = 3, ["comp_metal"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_clock"
|
||||
RECIPE.name = "Horloge"
|
||||
RECIPE.description = "Vous donne : 1 bois - 2 électronique - 1 tas de vis"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_clock"] = 1}
|
||||
RECIPE.result = {["comp_wood"] = 1, ["comp_electronics"] = 2, ["comp_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 20, exp = 25}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_carton"
|
||||
RECIPE.name = "Carton de lait vide"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_carton"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 25}, -- full xp
|
||||
{level = 10, exp = 12}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_cardboard"
|
||||
RECIPE.name = "Carton vide"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_cardboard"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 30}, -- full xp
|
||||
{level = 10, exp = 15}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_bucket"
|
||||
RECIPE.name = "Seau"
|
||||
RECIPE.description = "Vous donne : 2 férailles"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_bucket"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 25}, -- full xp
|
||||
{level = 10, exp = 12}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_brown_bottle"
|
||||
RECIPE.name = "Bouteille marron"
|
||||
RECIPE.description = "Vous donne : 1 verre"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_brown_bottle"] = 1}
|
||||
RECIPE.result = {["comp_glass"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_junk_empty_water"
|
||||
RECIPE.name = "Canette d'eau vide"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["crafting_water"] = 1}
|
||||
RECIPE.result = {["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_cigarettepack"
|
||||
RECIPE.name = "Paquet de cigarette vide"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["ciggie_pack"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_plushie"
|
||||
RECIPE.name = "Un doudou en forme de tortue"
|
||||
RECIPE.description = "Vous donne : 1 tissu sale"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.ingredients = {["junk_turtle"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 20}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_junk_battery"
|
||||
RECIPE.name = "Batterie de voiture"
|
||||
RECIPE.description = "Vous donne : 2 férailles - 1 produit chimique brut"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Déchets"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["junk_battery"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 2, ["comp_unrefinedchemical"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 120}, -- full xp
|
||||
{level = 30, exp = 60}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,190 @@
|
||||
--[[
|
||||
| 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 = "Cuillère à soupe"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
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 = "Valise"
|
||||
RECIPE.description = "Vous donne : 1 tissu"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
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 = "Poêle à frire"
|
||||
RECIPE.description = "Vous donne : 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_fryingpan"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 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 = "Couteau de cuisine"
|
||||
RECIPE.description = "Vous donne : 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_knife"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 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 = "Lampe de poche"
|
||||
RECIPE.description = "Vous donne : 1 électronique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
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 = "Dispositif de demande d'aide"
|
||||
RECIPE.description = "Vous donne : 1 électronique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
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 = "Ciseaux"
|
||||
RECIPE.description = "Vous donne : 1 plastique"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
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 = "Casserole"
|
||||
RECIPE.description = "Vous donne : 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_cookingpot"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 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 = "Bouilloire"
|
||||
RECIPE.description = "Vous donne : 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_wrench"
|
||||
RECIPE.ingredients = {["tool_kettle"] = 1}
|
||||
RECIPE.result = {["comp_metal"] = 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()
|
||||
|
||||
@@ -0,0 +1,107 @@
|
||||
--[[
|
||||
| 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 = "Munitions de 357"
|
||||
RECIPE.description = "Des balles de calibre 357 pour un revolver."
|
||||
RECIPE.model = "models/items/357ammo.mdl"
|
||||
RECIPE.category = "Munitions"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 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 = "Munitions de Sniper"
|
||||
RECIPE.description = "Quelques balles à tête pointue pour un sniper."
|
||||
RECIPE.model = "models/items/sniper_round_box.mdl"
|
||||
RECIPE.category = "Munitions"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 2, ["comp_alcohol"] = 2, ["comp_explosive"] = 2}
|
||||
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 = "Munitions de SMG"
|
||||
RECIPE.description = "Quelques balles de SMG dans une boite en métal."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Munitions"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 2, ["comp_alcohol"] = 2}
|
||||
RECIPE.result = {["bullets_smg1"] = 30}
|
||||
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 = "Munitions de Fusil d'Assaut"
|
||||
RECIPE.description = "Quelques balles de Fusil d'Assaut dans une boite métallique."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Munitions"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1, ["comp_alcohol"] = 1, ["comp_explosive"] = 1}
|
||||
RECIPE.result = {["bullets_assaultrifle"] = 30}
|
||||
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 = "Munitions de .9mm"
|
||||
RECIPE.description = "Cartouches de pistolet en vrac, destinées aux petits calibres."
|
||||
RECIPE.model = "models/items/boxsrounds.mdl"
|
||||
RECIPE.category = "Munitions"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refinedchemical"] = 1, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["bullets_pistol"] = 30}
|
||||
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()
|
||||
@@ -0,0 +1,76 @@
|
||||
--[[
|
||||
| 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_armor_blue_kevlar"
|
||||
RECIPE.name = "Uniforme - Kevlar Bleu"
|
||||
RECIPE.description = "Un haut bleu avec du kevlar, offrant une armure décente."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_torso_2.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Armure"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["torso_blue_rebel_uniform"] = 1, ["comp_strong_adhesive"] = 1, ["comp_refined_metal"] = 2, ["comp_improved_nails_screws"] = 2, ["comp_fabric"] = 1}
|
||||
RECIPE.result = {["torso_blue_kevlar"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_armor_green_kevlar"
|
||||
RECIPE.name = "Uniforme - Kevlar Vert"
|
||||
RECIPE.description = "Un haut vert avec du kevlar, offrant une armure décente. Souvent porté par des figures de la résistance."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_torso_1.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Armure"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["torso_green_rebel_uniform"] = 1, ["comp_strong_adhesive"] = 1, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.result = {["torso_green_kevlar"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_armor_medical_kevlar"
|
||||
RECIPE.name = "Uniforme - Kevlar Médical"
|
||||
RECIPE.description = "Un haut médical avec un kevlar, offrant une armure décente. Souvent porté par les médecins de la résistance."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel_medic.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Armure"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["torso_medical_rebel_uniform"] = 1, ["comp_strong_adhesive"] = 1, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.result = {["torso_medical_kevlar"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 200}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,58 @@
|
||||
--[[
|
||||
| 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_cigarette"
|
||||
RECIPE.name = "Étiquette de paquet de cigarettes"
|
||||
RECIPE.description = "Et si on enlevait le logo de l'Union de ce paquet..."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/cigarette_pack_1.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Cigarettes"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["ciggie_pack"] = 1, ["comp_cloth"] = 1}
|
||||
RECIPE.result = {["ciggie_pack"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 15}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
function RECIPE:PlayerCraftRecipe(client)
|
||||
local character = client:GetCharacter()
|
||||
local inventory = character:GetInventory()
|
||||
|
||||
-- Take all the ingredients
|
||||
for ingredient, amount in pairs(self.ingredients) do
|
||||
for _ = 1, amount do
|
||||
local item = inventory:HasItem(ingredient)
|
||||
|
||||
if (item) then
|
||||
if (item.uniqueID == "ciggie_pack") then
|
||||
item:SetData("relabeled", true)
|
||||
else
|
||||
item:Remove()
|
||||
end
|
||||
else
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Set the player's next crafting time
|
||||
client.ixNextCraftTime = CurTime() + 2
|
||||
netstream.Start("CraftTime", client.ixNextCraftTime)
|
||||
|
||||
character:DoAction("recipe_" .. self.uniqueID)
|
||||
end
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,351 @@
|
||||
--[[
|
||||
| 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_legs_padded_blue"
|
||||
RECIPE.name = "Pantalon Rembourré - Bleu"
|
||||
RECIPE.description = "Un pantalon rembourré bleu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel2.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Pantalons"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["legs_blue_pants"] = 1, ["comp_adhesive"] = 1, ["comp_stitched_cloth"] = 2}
|
||||
RECIPE.result = {["legs_blue_padded_pants"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 140}, -- full xp
|
||||
{level = 20, exp = 70}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_legs_padded_black"
|
||||
RECIPE.name = "Pantalon Rembourré - Noir"
|
||||
RECIPE.description = "Un pantalon rembourré bleu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel3.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Pantalons"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["legs_civilian_black"] = 1, ["comp_adhesive"] = 1, ["comp_stitched_cloth"] = 2}
|
||||
RECIPE.result = {["legs_black_padded_pants"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 140}, -- full xp
|
||||
{level = 20, exp = 70}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_legs_padded_green"
|
||||
RECIPE.name = "Pantalon Rembourré - Vert"
|
||||
RECIPE.description = "Un pantalon rembourré bleu."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/legs_rebel1.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Pantalons"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["legs_civilian_green"] = 1, ["comp_adhesive"] = 1, ["comp_stitched_cloth"] = 2}
|
||||
RECIPE.result = {["legs_green_padded_pants"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 140}, -- full xp
|
||||
{level = 20, exp = 70}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_torso_uniform_green"
|
||||
RECIPE.name = "Uniforme - Vert"
|
||||
RECIPE.description = "Un haut vert avec des bretelles. Possède également une plaque de bras, parfaite pour les insignes. Fournit une petite quantité d'armure."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel02.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Uniforme"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["denim_green"] = 1, ["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_reshaped_metal"] = 1}
|
||||
RECIPE.result = {["torso_green_rebel_uniform"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 120}, -- full xp
|
||||
{level = 30, exp = 60}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_torso_uniform_blue"
|
||||
RECIPE.name = "Uniforme - Bleu"
|
||||
RECIPE.description = "Un top bleu à bretelles. Dispose également d'une plaque de bras, parfaite pour les insignes. Fournit une petite quantité d'armure."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebel01.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Uniforme"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["denim_blue"] = 1, ["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_reshaped_metal"] = 1}
|
||||
RECIPE.result = {["torso_blue_rebel_uniform"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 120}, -- full xp
|
||||
{level = 30, exp = 60}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_torso_uniform_medic"
|
||||
RECIPE.name = "Uniforme - Médecin"
|
||||
RECIPE.description = "Un top médical à bretelles. Dispose également d'une plaque de bras, parfaite pour les insignes. Fournit une petite quantité d'armure."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_rebelmedic.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Uniforme"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["torso_medic_shirt"] = 1, ["comp_adhesive"] = 2, ["comp_reshaped_metal"] = 1}
|
||||
RECIPE.result = {["torso_medical_rebel_uniform"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 120}, -- full xp
|
||||
{level = 30, exp = 60}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_medichelmet"
|
||||
RECIPE.name = "Casque - Médecin"
|
||||
RECIPE.description = "Un casque de médecin en métal. Il protège votre tête des chutes d'objets et des éclats d'obus."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_helmet_med.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Casque"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.result = {["helmet_medic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_helmet"
|
||||
RECIPE.name = "Casque - Militaire"
|
||||
RECIPE.description = "Un casque militaire en métal. Il protège votre tête des chutes d'objets et des éclats d'obus."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_helmet.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Casque"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.result = {["helmet"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_blue"
|
||||
RECIPE.name = "Bonnet - Bleu"
|
||||
RECIPE.description = "Un bonnet bleu. Garde la tête au chaud par temps froid."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Bonnets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["head_blue_beanie"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_green"
|
||||
RECIPE.name = "Bonnet - Vert"
|
||||
RECIPE.description = "Un bonnet vert. Garde la tête au chaud dans le froid."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Bonnets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["head_green_beanie"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_red"
|
||||
RECIPE.name = "Bonnet - Rouge"
|
||||
RECIPE.description = "Un bonnet rouge. Garde la tête au chaud par temps froid"
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Bonnets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["beanie_red"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_brown"
|
||||
RECIPE.name = "Bonnet - Marron"
|
||||
RECIPE.description = "Un bonnet marron. Garde la tête au chaud par temps froid."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Bonnets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["beanie_brown"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_grey"
|
||||
RECIPE.name = "Bonnet - Gris"
|
||||
RECIPE.description = "Un bonnet gris. Garde la tête au chaud par temps froid."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_beanie_update.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Bonnets"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["beanie_grey"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_head_beanie_bandana"
|
||||
RECIPE.name = "Bandana"
|
||||
RECIPE.description = "Un bandana rouge qui s'enroule autour de la moitié inférieure de la tête. Offre une légère protection contre les spores."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_facewrap.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Masque"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["face_bandana"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_hands_tipless"
|
||||
RECIPE.name = "Mitaines"
|
||||
RECIPE.description = "Une paire de gants noirs sans le bout des doigts. Garde vos doigts libres."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/hands_glove_fingerless.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Gants"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["hands_gloves"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["hands_tipless_gloves"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 60}, -- full XP
|
||||
{level = 10, exp = 30}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_torso_trenchcoat"
|
||||
RECIPE.name = "Trench Marron"
|
||||
RECIPE.description = "Un trench marron usé. Protège de la pluie, un peu..."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_refugee_coat.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Uniforme"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["buttoned_white"] = 1, ["comp_fabric"] = 2, ["comp_strong_adhesive"] = 1, ["comp_reshaped_metal"] = 2}
|
||||
RECIPE.result = {["overcoat_trench"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full xp
|
||||
{level = 40, exp = 100}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_torso_medic"
|
||||
RECIPE.name = "Chemise - Médecin"
|
||||
RECIPE.description = "Un haut boutonné blanc avec une bande de croix rouge cousue."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_citizen_medic.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Uniforme"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["buttoned_white"] = 1, ["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["torso_medic_shirt"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 80}, -- full xp
|
||||
{level = 10, exp = 40}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
@@ -0,0 +1,303 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
-- Métal --
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_reshaped_metal"
|
||||
RECIPE.name = "Fer"
|
||||
RECIPE.description = "Fer fabriqué à partir de métal recyclé. Il est plus solide et plus lourd qu'avant."
|
||||
RECIPE.model = "models/willardnetworks/props/reshaped_metal.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Métaux"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 4, ["comp_nails_screws"] = 1}
|
||||
RECIPE.result = {["comp_reshaped_metal"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full XP
|
||||
{level = 30, exp = 40}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_refined_metal"
|
||||
RECIPE.name = "Acier"
|
||||
RECIPE.description = "Acier trempé fabriqué par un excellent raffineur. Extrêmement solide et bien fait."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Métaux"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 4, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_refined_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full xp
|
||||
{level = 40, exp = 50}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Plastique --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_refined_plastic"
|
||||
RECIPE.name = "Feuilles de plastique"
|
||||
RECIPE.description = "Feuilles de plastique. Fabriqué à partir de déchets plastiques."
|
||||
RECIPE.model = "models/willardnetworks/food/snack01.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Plastique"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full XP
|
||||
{level = 30, exp = 50}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Vis --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_nails_screws"
|
||||
RECIPE.name = "Tas de vis"
|
||||
RECIPE.description = "Une boîte contenant des vis. Ils ont l'air un peu rouillés."
|
||||
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Vis & Boulons"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_nails_screws"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full XP
|
||||
{level = 20, exp = 50}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_improved_nails_screws"
|
||||
RECIPE.name = "Boîte de boulons"
|
||||
RECIPE.description = "Une boîte de boulons robustes, utile pour les artisans expérimentés."
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Vis & Boulons"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_nails_screws"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full XP
|
||||
{level = 30, exp = 40}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Tissus --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_stitched_cloth"
|
||||
RECIPE.name = "Tissu cousu"
|
||||
RECIPE.description = "Un morceau de tissu cousu. C'est plus solide qu'avant."
|
||||
RECIPE.model = "models/willardnetworks/skills/stitched_cloth.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Tissus"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_stitched_cloth"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_fabric"
|
||||
RECIPE.name = "Tissu travaillé"
|
||||
RECIPE.description = "Un morceau de tissu bien travaillé. C'est assez doux."
|
||||
RECIPE.model = "models/willardnetworks/skills/fabric.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Tissus"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 4, ["comp_adhesive"] = 2}
|
||||
RECIPE.result = {["comp_fabric"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 30, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Bois --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_comp_craftwork_wood"
|
||||
RECIPE.name = "Planche de bois"
|
||||
RECIPE.description = "Planche de bois bien travaillé et lisse."
|
||||
RECIPE.model = "models/props_debris/wood_board06a.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Bois"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_wood"] = 4, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_craftwork_wood"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 80}, -- full XP
|
||||
{level = 30, exp = 40}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Armes --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_explosive_material"
|
||||
RECIPE.name = "Composé explosif"
|
||||
RECIPE.description = "Un composé explosif doux. Ne jouez pas avec des explosifs maintenant."
|
||||
RECIPE.model = "models/willardnetworks/skills/explosive_material.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Armes"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_redcompound"] = 1, ["comp_yellowcompound"] = 1, ["comp_bluecompound"] = 1, ["comp_greencompound"] = 1}
|
||||
RECIPE.result = {["comp_explosive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full xp
|
||||
{level = 40, exp = 75}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_weapon_parts"
|
||||
RECIPE.name = "Pièces d'armes"
|
||||
RECIPE.description = "Pièces en métal pour une arme."
|
||||
RECIPE.model = "models/willardnetworks/skills/weaponparts.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Armes"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2, ["comp_strong_adhesive"] = 2, ["comp_improved_nails_screws"] = 2, ["comp_craftwork_wood"] = 2, ["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["comp_weapon_parts"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, 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_comp_grenadecase"
|
||||
RECIPE.name = "Étui à grenades vide"
|
||||
RECIPE.description = "Une caisse de grenade vide."
|
||||
RECIPE.model = "models/weapons/tfa_mmod/w_grenade_thrown.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Armes"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 1, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_grenadecase"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full xp
|
||||
{level = 40, exp = 50}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_comp_heavy_weapon_parts"
|
||||
RECIPE.name = "Pièces d'armes lourdes"
|
||||
RECIPE.description = "Une pièce d'arme lourde. On dirait qu'il pourrait être fait pour fabriquer des carabines, des fusils de chasse et autres"
|
||||
RECIPE.model = "models/willardnetworks/skills/weaponparts.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Armes"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 5, ["comp_improved_nails_screws"] = 3, ["comp_craftwork_wood"] = 2, ["comp_refined_plastic"] = 2}
|
||||
RECIPE.result = {["comp_heavy_weapon_parts"] = 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()
|
||||
|
||||
-- Charbon --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_charcoal"
|
||||
RECIPE.name = "Bloc de charbon de bois"
|
||||
RECIPE.description = "Bloc de charbon de bois en utilisé dans plusieurs buts."
|
||||
RECIPE.model = "models/willardnetworks/props/charcoal.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Charbon"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = {"tool_oven", "tool_oven_rusty"}
|
||||
RECIPE.ingredients = {["comp_wood"] = 1, ["comp_refinedchemical"] = 1}
|
||||
RECIPE.result = {["comp_charcoal"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 40}, -- full XP
|
||||
{level = 30, exp = 20}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
-- Adhésif --
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_adhesive"
|
||||
RECIPE.name = "Adhésif fait main"
|
||||
RECIPE.description = "Un adhésif pour coller des objets ensemble, utilisé dans l'artisanat."
|
||||
RECIPE.model = "models/willardnetworks/props/glue.mdl"
|
||||
RECIPE.category = "Matériaux"
|
||||
RECIPE.subcategory = "Adhésif"
|
||||
RECIPE.ingredients = {["ing_flour"] = 1, ["ing_vinegar"] = 1}
|
||||
RECIPE.result = {["comp_adhesive"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 120}, -- full xp
|
||||
{level = 10, exp = 60}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,29 @@
|
||||
--[[
|
||||
| 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()
|
||||
@@ -0,0 +1,128 @@
|
||||
--[[
|
||||
| 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_elec_computer"
|
||||
RECIPE.name = "Ordinateur"
|
||||
RECIPE.description = "Un ordinateur restauré avec accès aux notes, utilisant un système d'exploitation douteux. Outil utile pour les magasins."
|
||||
RECIPE.model = "models/willardnetworks/props/willard_computer.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Électronique"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 2, ["comp_electronics"] = 4, ["comp_nails_screws"] = 2}
|
||||
RECIPE.result = {["cit_computer"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 400}, -- full xp
|
||||
{level = 40, exp = 200}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_cmb_tuner"
|
||||
RECIPE.name = "Syntoniseur radio approuvé le cartel"
|
||||
RECIPE.description = "Un syntoniseur radio qui peut être utilisé pour modifier les fréquences qu'une radio peut capter."
|
||||
RECIPE.model = "models/willardnetworks/skills/circuit.mdl"
|
||||
RECIPE.category = "Électronique"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_electronics"] = 10, ["comp_nails_screws"] = 2, ["comp_glass"] = 2, ["comp_adhesive"] = 2}
|
||||
RECIPE.result = {["tuner_cmb"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 400}, -- full xp
|
||||
{level = 40, exp = 200}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_reb_tuner"
|
||||
RECIPE.name = "Syntoniseur radio de la Résistance"
|
||||
RECIPE.description = "Un syntoniseur radio capable de modifier les fréquences qu'une radio peut capter. Il s'agit d'un syntoniseur de gamme supérieure capable d'atteindre des fréquences de diffusion lointaines."
|
||||
RECIPE.model = "models/willardnetworks/skills/circuit.mdl"
|
||||
RECIPE.category = "Électronique"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 1, ["comp_electronics"] = 12, ["comp_improved_nails_screws"] = 1, ["comp_glass"] = 2, ["comp_strong_adhesive"] = 1, ["comp_military_electronics"] = 1}
|
||||
RECIPE.result = {["tuner_reb"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 500}, -- full xp
|
||||
{level = 46, exp = 250}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_handheld"
|
||||
RECIPE.name = "Radio"
|
||||
RECIPE.description = "Une radio portable correctement conçue prenant en charge les fréquences analogiques et numériques."
|
||||
RECIPE.model = "models/willardnetworks/skills/handheld_radio.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Électronique"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 1, ["comp_electronics"] = 2, ["comp_improved_nails_screws"] = 1, ["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["handheld_radio"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full xp
|
||||
{level = 40, exp = 75}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_elec_old_handheld"
|
||||
RECIPE.name = "Ancienne radio portable"
|
||||
RECIPE.description = "Radio de fortune qui ne prend en charge que les fréquences analogiques."
|
||||
RECIPE.model = "models/willardnetworks/skills/handheld_radio.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Électronique"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 1, ["comp_electronics"] = 1, ["comp_nails_screws"] = 2, ["comp_glass"] = 1, ["comp_plastic"] = 2}
|
||||
RECIPE.result = {["old_radio"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200}, -- full xp
|
||||
{level = 30, exp = 100}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "craft_writing_crackedprinter"
|
||||
RECIPE.name = "Imprimante crackée"
|
||||
RECIPE.description = "Une imprimante fissurée ne nécessitant plus de permis valide. Nécessite du papier et de l'encre noire."
|
||||
RECIPE.model = "models/willardnetworks/plotter.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Électronique"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["newspaper_printer"] = 1, ["comp_electronics"] = 4, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["newspaper_printer_cracked"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full xp
|
||||
{level = 40, exp = 50}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,114 @@
|
||||
--[[
|
||||
| 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_water_bucket_water"
|
||||
RECIPE.name = "Watering Can (Full)"
|
||||
RECIPE.description = "Fills your Watering Can with some water."
|
||||
RECIPE.model = "models/props/de_inferno/hr_i/inferno_gardening_tools/inferno_watering_can.mdl"
|
||||
RECIPE.category = "Farming"
|
||||
RECIPE.ingredients = {["water_bucket"] = 1, ["crafting_water"] = 1}
|
||||
RECIPE.result = {["water_bucket"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 15}, -- full xp
|
||||
{level = 10, exp = 10}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
function RECIPE:PlayerCraftRecipe(client)
|
||||
local character = client:GetCharacter()
|
||||
local inventory = character:GetInventory()
|
||||
|
||||
-- Take all the ingredients
|
||||
for ingredient, amount in pairs(self.ingredients) do
|
||||
for _ = 1, amount do
|
||||
local item = inventory:HasItem(ingredient)
|
||||
|
||||
if (item) then
|
||||
if (item.uniqueID == "water_bucket") then
|
||||
item:SetData("water", 100)
|
||||
else
|
||||
item:Remove()
|
||||
end
|
||||
else
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
-- Set the player's next crafting time
|
||||
client.ixNextCraftTime = CurTime() + 2
|
||||
netstream.Start("CraftTime", client.ixNextCraftTime)
|
||||
|
||||
character:DoAction("recipe_" .. self.uniqueID)
|
||||
end
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_water_bucket"
|
||||
RECIPE.name = "Watering Can"
|
||||
RECIPE.description = "A Watering Can, useful in farming."
|
||||
RECIPE.model = "models/props/de_inferno/hr_i/inferno_gardening_tools/inferno_watering_can.mdl"
|
||||
RECIPE.category = "Farming"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 3}
|
||||
RECIPE.result = {["water_bucket"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 105}, -- full xp
|
||||
{level = 15, exp = 50}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_fertilizer"
|
||||
RECIPE.name = "Fertilizer"
|
||||
RECIPE.description = "A sack filled with grounded bones, useful in gardening to Fertilize the plants"
|
||||
RECIPE.model = "models/props/de_dust/hr_dust/dust_flour_sack/dust_flour_sack.mdl"
|
||||
RECIPE.category = "Farming"
|
||||
RECIPE.ingredients = {["ing_bone"] = 3}
|
||||
RECIPE.result = {["fertilizer"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 15}, -- full xp
|
||||
{level = 10, exp = 5}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_planter"
|
||||
RECIPE.name = "Planter"
|
||||
RECIPE.description = "A small and portable planter that's used to plant... plants! It's quite small and can even be placed indoors (if you have a proper light), go wild, farmer!"
|
||||
RECIPE.model = "models/wn7new/advcrates/n7_planter_wood.mdl"
|
||||
RECIPE.category = "New Frontiers"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 2, ["comp_plastic"] = 3, ["comp_adhesive"] = 3, ["comp_craftwork_wood"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["planter_placer"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full XP
|
||||
{level = 15, exp = 40}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,129 @@
|
||||
--[[
|
||||
| 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_clothing_gasmask"
|
||||
RECIPE.name = "Masque à gaz"
|
||||
RECIPE.description = "Fournit une légère protection contre les vapeurs nocives, les gaz et certaines odeurs nauséabondes."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_gasmask.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Masque à gaz"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_reshaped_metal"] = 1, ["comp_plastic"] = 2, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["head_gasmask"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 30, exp = 125}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_clothing_gasmask2"
|
||||
RECIPE.name = "Masque à gaz M40"
|
||||
RECIPE.description = "Fournit une protection adéquate contre les vapeurs nocives, les gaz et certaines odeurs nauséabondes."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/m40_item.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Masque à gaz"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_reshaped_metal"] = 1, ["comp_plastic"] = 2, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["head_gasmask2"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full xp
|
||||
{level = 30, exp = 125}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_charcoal_refill"
|
||||
RECIPE.name = "Recharge de filtre à charbon"
|
||||
RECIPE.description = "Enveloppe un charbon de bois dans une cartouche filtrante."
|
||||
RECIPE.model = "models/gibs/shield_scanner_gib1.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Masque à gaz"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_charcoal"] = 1, ["comp_stitched_cloth"] = 1, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_charcoal_refill"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 40}, -- full XP
|
||||
{level = 30, exp = 20}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_makeshift_filter"
|
||||
RECIPE.name = "Filtre de fortune"
|
||||
RECIPE.description = "Un filtre de masque à gaz fait maison, que vous pouvez ouvrir pour remplir."
|
||||
RECIPE.model = "models/willardnetworks/props/sovietfilter.mdl"
|
||||
RECIPE.category = "Anti-Citoyen"
|
||||
RECIPE.subcategory = "Masque à gaz"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_charcoal_refill"] = 1, ["comp_reshaped_metal"] = 2, ["comp_strong_adhesive"] = 1, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.result = {["makeshift_filter"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 250}, -- full XP
|
||||
{level = 30, exp = 125}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_makeshift_filter"
|
||||
RECIPE.name = "Filtre de fortune"
|
||||
RECIPE.description = "Vous donne : 1 tissu - 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["makeshift_filter"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1, ["comp_metal"] = 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 = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "break_highquality_filter"
|
||||
RECIPE.name = "Filtre de ventilation de haute qualité"
|
||||
RECIPE.description = "Vous donne : 1 tissu - 1 métal"
|
||||
RECIPE.model = "models/props_lab/box01a.mdl"
|
||||
RECIPE.category = "Recyclage"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["highquality_filter"] = 1}
|
||||
RECIPE.result = {["comp_cloth"] = 1, ["comp_metal"] = 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 = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,89 @@
|
||||
--[[
|
||||
| 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_wep_frag"
|
||||
RECIPE.name = "Grenade à fragmentation"
|
||||
RECIPE.description = "Un projectile explosif conçu pour infliger des dégâts considérables dans un rayon restreint."
|
||||
RECIPE.model = "models/weapons/tfa_mmod/w_grenade_thrown.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Grenades"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_grenadecase"] = 1, ["comp_explosive"] = 1, ["comp_greencompound"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["frag_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100},
|
||||
{level = 40, exp = 50},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_flash"
|
||||
RECIPE.name = "Grenade flash"
|
||||
RECIPE.description = "Un dispositif explosif conçu pour désorienter temporairement les ennemis avec une puissante explosion de lumière et de bruit. "
|
||||
RECIPE.model = "models/weapons/tfa_csgo/w_flash.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Grenades"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_grenadecase"] = 1, ["comp_yellowcompound"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["flash_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 80},
|
||||
{level = 40, exp = 40},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_smoke"
|
||||
RECIPE.name = "Grenade fumigène"
|
||||
RECIPE.description = "Un dispositif pyrotechnique qui produit une épaisse fumée lorsqu'il est activé."
|
||||
RECIPE.model = "models/weapons/tfa_csgo/w_smoke.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Grenades"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_grenadecase"] = 1, ["comp_bluecompound"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["smoke_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 80},
|
||||
{level = 40, exp = 40},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_incendiary"
|
||||
RECIPE.name = "Grenade incendiaire"
|
||||
RECIPE.description = "Une arme explosive qui libère une intense chaleur et des flammes dévastatrices lorsqu'elle explose."
|
||||
RECIPE.model = "models/weapons/tfa_csgo/wm/w_incend.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Grenades"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_grenadecase"] = 1, ["comp_explosive"] = 1, ["comp_redcompound"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["incendiary_grenade"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100},
|
||||
{level = 40, exp = 50},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,489 @@
|
||||
--[[
|
||||
| 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_mag_sniper"
|
||||
RECIPE.name = "Chargeur de sniper 5RND"
|
||||
RECIPE.description = "Un chargeur de sniper pouvant contenir 5 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_sniper"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_usp"
|
||||
RECIPE.name = "Chargeur d'USP 17RND"
|
||||
RECIPE.description = "Un chargeur d'USP pouvant contenir 17 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_usp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_glock"
|
||||
RECIPE.name = "Chargeur de Glock 20RND"
|
||||
RECIPE.description = "Un chargeur de Glock pouvant contenir 20 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_glock"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_akm"
|
||||
RECIPE.name = "Chargeur d'AKM 30RND"
|
||||
RECIPE.description = "Un chargeur d'AKM pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_akm"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_jnk"
|
||||
RECIPE.name = "Chargeur d'armes artisanales 30RND"
|
||||
RECIPE.description = "Un chargeur pour armes artisanales pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_junk30"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_m16"
|
||||
RECIPE.name = "Chargeur de M16A2 30RND"
|
||||
RECIPE.description = "Un chargeur de M16A2 pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_m16"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_30_mp"
|
||||
RECIPE.name = "Chargeur de MP 30RND"
|
||||
RECIPE.description = "Un chargeur de MP pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_mp"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_popper"
|
||||
RECIPE.name = "Chargeur de Revolver 6RND"
|
||||
RECIPE.description = "Un chargeur de Revolver pouvant contenir 6 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_revolver"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_vsv"
|
||||
RECIPE.name = "Chargeur de VSK 20RND"
|
||||
RECIPE.description = "Un chargeur de VSK pouvant contenir 20 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_vsv"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_1911"
|
||||
RECIPE.name = "Chargeur de M1911 12RND"
|
||||
RECIPE.description = "Un chargeur de M1911 pouvant contenir 12 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_1911"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_shotgun8"
|
||||
RECIPE.name = "Chargeur de Fusil-à-pompe 8RND"
|
||||
RECIPE.description = "Un chargeur de Fusil-à-pompe pouvant contenir 8 cartouches."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_shotgun"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_shotgun5"
|
||||
RECIPE.name = "Chargeur de Fusil-à-pompe 5RND"
|
||||
RECIPE.description = "Un chargeur de Fusil-à-pompe pouvant contenir 5 cartouches."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_shotgun5"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_15_tikhar"
|
||||
RECIPE.name = "Chargeur Tikhar"
|
||||
RECIPE.description = "Un chargeur pour le fusil Tikhar"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_makeshift_15rnd"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_8_helsing"
|
||||
RECIPE.name = "Chargeur Helsing"
|
||||
RECIPE.description = "Un chargeur pour le fusil Helsing"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_helsing"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_aksu"
|
||||
RECIPE.name = "Chargeur d'AKSU 30RND"
|
||||
RECIPE.description = "Un chargeur d'AKSU pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_aksu"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_g3"
|
||||
RECIPE.name = "Chargeur de G3 20RND"
|
||||
RECIPE.description = "Un chargeur de G3 pouvant contenir 20 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_g3"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_dmr"
|
||||
RECIPE.name = "Chargeur de DMR 20RND"
|
||||
RECIPE.description = "Un chargeur de DMR pouvant contenir 20 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_mini14"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_p90"
|
||||
RECIPE.name = "Chargeur de P90 50RND"
|
||||
RECIPE.description = "Un chargeur de P90 pouvant contenir 50 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_p90"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_ppsh"
|
||||
RECIPE.name = "Chargeur de PPSH 35RND"
|
||||
RECIPE.description = "Un chargeur de PPSH pouvant contenir 35 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_ppsh"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_tac"
|
||||
RECIPE.name = "Chargeur de TAC 60RND"
|
||||
RECIPE.description = "Un chargeur de TAC pouvant contenir 60 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_tac60"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_uzi"
|
||||
RECIPE.name = "Chargeur d'UZI 30RND"
|
||||
RECIPE.description = "Un chargeur d'UZI pouvant contenir 30 balles."
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["magazine_uzi"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_20_azbats"
|
||||
RECIPE.name = "Chargeur Azbats"
|
||||
RECIPE.description = "Un chargeur pour le fusil Azbats"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2}
|
||||
RECIPE.result = {["magazine_azbats_20rnd"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_2_duplet"
|
||||
RECIPE.name = "Chargeur Duplet"
|
||||
RECIPE.description = "Un chargeur pour le fusil Tikhar"
|
||||
RECIPE.model = "models/Items/BoxSRounds.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2}
|
||||
RECIPE.result = {["magazine_duplet_2rnd"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_mag_30_bastard"
|
||||
RECIPE.name = "Chargeur bâtard"
|
||||
RECIPE.description = "Un chargeur pour la mitrailleuse bâtarde"
|
||||
RECIPE.model = "models/metro2033/bastardgunclip.mdl"
|
||||
RECIPE.category = "Chargeurs"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2}
|
||||
RECIPE.result = {["magazine_bastard_30rnd"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,27 @@
|
||||
--[[
|
||||
| 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_makeshift"
|
||||
RECIPE.name = "Rouleau de bandage de fortune"
|
||||
RECIPE.description = "Un rouleau de bandage en tissu en lambeaux. Arrête le saignement mais pas grand-chose d'autre..."
|
||||
RECIPE.model = "models/stuff/bandages_dirty.mdl"
|
||||
RECIPE.category = "Médicale"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 2}
|
||||
RECIPE.result = {["makeshift_bandage"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 20, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,154 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_ref_reshaped_metal"
|
||||
RECIPE.name = "Ferraille"
|
||||
RECIPE.description = "Ferraille créée à partir de métal recyclé. Elle est plus lourde et résistante qu'avant."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_metal"] = 6, ["comp_nails_screws"] = 2}
|
||||
RECIPE.result = {["comp_reshaped_metal"] = 2}
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 100},
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ref_refined_metal"
|
||||
RECIPE.name = "Feuille de métal"
|
||||
RECIPE.description = "Feuille de métal créée à partir de ferraille recyclée. Elle est bien plus résistante qu'avant."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 6, ["comp_strong_adhesive"] = 2}
|
||||
RECIPE.result = {["comp_refined_metal"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 50
|
||||
RECIPE.experience = {
|
||||
{level = 50, exp = 100}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ref_weapon_parts"
|
||||
RECIPE.name = "Composants d'armes"
|
||||
RECIPE.description = "Composants métalliques utilisés dans les armes à feu."
|
||||
RECIPE.model = "models/willardnetworks/skills/weaponparts.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2, ["comp_strong_adhesive"] = 2, ["comp_improved_nails_screws"] = 2, ["comp_craftwork_wood"] = 2, ["comp_refined_plastic"] = 1}
|
||||
RECIPE.result = {["comp_weapon_parts"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 250},
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ref_explosive_material"
|
||||
RECIPE.name = "Composants explosifs"
|
||||
RECIPE.description = "Du composant pouvant résulter en une explosion. Ne jouez pas avec ça."
|
||||
RECIPE.model = "models/willardnetworks/skills/explosive_material.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.ingredients = {["comp_redcompound"] = 2, ["comp_yellowcompound"] = 1, ["comp_bluecompound"] = 1, ["comp_greencompound"] = 2}
|
||||
RECIPE.result = {["comp_explosive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 150}, -- full xp
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_ref_grenadecase"
|
||||
RECIPE.name = "Grenade vide"
|
||||
RECIPE.description = "Un objet métallique en forme de grenade, vide."
|
||||
RECIPE.model = "models/weapons/tfa_mmod/w_grenade_thrown.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 2, ["comp_strong_adhesive"] = 2}
|
||||
RECIPE.result = {["comp_grenadecase"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 100}, -- full xp
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_ref_nails_screws"
|
||||
RECIPE.name = "Boîte de clous"
|
||||
RECIPE.description = "Une boîte contenant des clous légèrement rouillés."
|
||||
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_metal"] = 2, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_nails_screws"] = 3}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full XP
|
||||
{level = 40, exp = 50}, -- half XP
|
||||
{level = 50, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_ref_improved_nails_screws"
|
||||
RECIPE.name = "Boîte de vis"
|
||||
RECIPE.description = "Une boîte contenant des vis, pouvant être utilisés par des artisans compétents."
|
||||
RECIPE.model = "models/willardnetworks/skills/screws.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.ingredients = {["comp_nails_screws"] = 6, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["comp_improved_nails_screws"] = 2}
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 80}, -- full XP
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_ref_refined_plastic"
|
||||
RECIPE.name = "Feuilles de plastique"
|
||||
RECIPE.description = "Des feuilles de plastique créées à partir de détritus en plastique."
|
||||
RECIPE.model = "models/props_junk/garbage_bag001a.mdl"
|
||||
RECIPE.category = "Raffiné"
|
||||
RECIPE.station = "tool_refinery"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 6, ["comp_adhesive"] = 2}
|
||||
RECIPE.result = {["comp_refined_plastic"] = 2}
|
||||
RECIPE.level = 40
|
||||
RECIPE.experience = {
|
||||
{level = 40, exp = 100}, -- full XP
|
||||
{level = 50, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,218 @@
|
||||
--[[
|
||||
| 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_craft_suitcase"
|
||||
RECIPE.name = "Valise"
|
||||
RECIPE.description = "Une petite valise, parfaite pour transporter des petites choses."
|
||||
RECIPE.model = "models/weapons/w_suitcase_passenger.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 3, ["comp_plastic"] = 2, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["suitcase"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 80}, -- full XP
|
||||
{level = 15, exp = 40}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_small_bag"
|
||||
RECIPE.name = "Petite sacoche"
|
||||
RECIPE.description = "Une petite sacoche qui repose sur votre hanche."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/satchel.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 3, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["smallbag"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 80}, -- full XP
|
||||
{level = 15, exp = 40}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_large_bag"
|
||||
RECIPE.name = "Grand sac"
|
||||
RECIPE.description = "Un sac à dos avec l'insigne de l'Union dessus."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/backpack.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 2, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["largebag"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full XP
|
||||
{level = 25, exp = 50}, -- half XP
|
||||
{level = 30, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_tool_lock"
|
||||
RECIPE.name = "Cadenas"
|
||||
RECIPE.description = "Définit un mot de passe sur un conteneur lorsqu'il est utilisé. Peut être cassé mais seulement si le propriétaire est en ligne."
|
||||
RECIPE.model = "models/props_wasteland/prison_padlock001a.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_adhesive"] = 2, ["comp_plastic"] = 2}
|
||||
RECIPE.result = {["cont_lock_t1"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_small"
|
||||
RECIPE.name = "Petite armoire"
|
||||
RECIPE.description = "Armoire de taille 3x3. Contactez un administrateur pour configurer cette armoire lorsque vous aurez fabriqué cet objet. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_refined_plastic"] = 2, ["comp_strong_adhesive"] = 1, ["comp_improved_nails_screws"] = 3}
|
||||
RECIPE.result = {["container_small_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 25, exp = 50}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_medium"
|
||||
RECIPE.name = "Armoire Moyenne"
|
||||
RECIPE.description = "Armoire de taille 6x3. Contactez un administrateur pour configurer cette armoire lorsque vous aurez fabriqué cet objet. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_lab/filecabinet02.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["container_small_dummy"] = 2, ["comp_improved_nails_screws"] = 2}
|
||||
RECIPE.result = {["container_medium_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 125}, -- full xp
|
||||
{level = 35, exp = 60}, -- half xp
|
||||
{level = 40, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_large"
|
||||
RECIPE.name = "Grande Armoire"
|
||||
RECIPE.description = "Nécessite un groupe de 5 membres et plus - Armoire de taille 8x5. Contactez un administrateur pour configurer cette armoire lorsque vous aurez fabriqué cet objet. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_wasteland/controlroom_storagecloset001a.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["container_medium_dummy"] = 2, ["comp_improved_nails_screws"] = 2}
|
||||
RECIPE.result = {["container_large_dummy"] = 1}
|
||||
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()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_scrate"
|
||||
RECIPE.name = "Caisse standard"
|
||||
RECIPE.description = "Caisse de taille 6x6. Contactez un administrateur pour configurer cette caisse lorsque vous aurez fabriqué cet objet. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_junk/wood_crate001a.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["container_medium_dummy"] = 1, ["comp_craftwork_wood"] = 2}
|
||||
RECIPE.result = {["container_scrate_dummy"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full xp
|
||||
{level = 25, exp = 50}, -- half xp
|
||||
{level = 30, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_container_lcrate"
|
||||
RECIPE.name = "Grande Caisse"
|
||||
RECIPE.description = "Nécessite un groupe de 5 membres et plus - Caisse de taille 9x9. Contactez un administrateur pour configurer cette caisse. Nécessite un cadenas pour définir un mot de passe."
|
||||
RECIPE.model = "models/props_junk/wood_crate002a.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["container_large_dummy"] = 1, ["comp_craftwork_wood"] = 3}
|
||||
RECIPE.result = {["container_lcrate_dummy"] = 1}
|
||||
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()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_safe"
|
||||
RECIPE.name = "Coffre"
|
||||
RECIPE.description = "Un coffre-fort incassable pour garder vos objets. (Vous pouvez avoir 2 coffres-forts en plus de la limite du conteneur.)"
|
||||
RECIPE.model = "models/willardnetworks/safe.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 4, ["comp_refined_plastic"] = 3, ["comp_electronics"] = 1, ["comp_improved_nails_screws"] = 2}
|
||||
RECIPE.result = {["container_safe"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 50
|
||||
RECIPE.experience = {
|
||||
{level = 50, exp = 0}, -- full xp
|
||||
{level = 50, exp = 0},
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_tool_grouplock"
|
||||
RECIPE.name = "Verrouillage de groupe"
|
||||
RECIPE.description = "Un appareil métallique appliqué aux portes. Nécessite un groupe pour fonctionner."
|
||||
RECIPE.model = "models/willardnetworks/props_combine/wn_combine_lock.mdl"
|
||||
RECIPE.category = "Stockage"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["trash_biolock"] = 1, ["comp_electronics"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["grouplock"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full xp
|
||||
{level = 15, exp = 25}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,462 @@
|
||||
--[[
|
||||
| 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_craft_waterbottle"
|
||||
RECIPE.name = "Bouteille d'eau"
|
||||
RECIPE.description = "Une bouteille en plastique rechargeable. Vous pouvez le remplir d'eau."
|
||||
RECIPE.model = "models/props/cs_office/water_bottle.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 4}
|
||||
RECIPE.result = {["waterbottle"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_watervalve"
|
||||
RECIPE.name = "Valve d'eau"
|
||||
RECIPE.description = "Utilisé pour capter l'eau des tuyaux."
|
||||
RECIPE.model = "models/props/de_nuke/hr_nuke/metal_pipe_001/metal_pipe_001_gauge_valve_low.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_metal"] = 2, ["comp_plastic"] = 2}
|
||||
RECIPE.result = {["watervalve"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_tool_flashlight"
|
||||
RECIPE.name = "Lampe de poche artisanale"
|
||||
RECIPE.description = "Lampe de poche artisanale, incroyablement utile pour explorer l'obscurité inconnue."
|
||||
RECIPE.model = "models/willardnetworks/skills/flashlight.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 3, ["comp_electronics"] = 2, ["comp_glass"] = 3}
|
||||
RECIPE.result = {["flashlight"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_syringe"
|
||||
RECIPE.name = "Seringue"
|
||||
RECIPE.description = "Une seringue capable de contenir des substances de type liquide, utiles à des fins médicinales."
|
||||
RECIPE.model = "models/willardnetworks/skills/syringeammo.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.ingredients = {["comp_metal"] = 2, ["comp_glass"] = 1}
|
||||
RECIPE.result = {["comp_syringe"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_lighter"
|
||||
RECIPE.name = "Briquet en plastique"
|
||||
RECIPE.description = "Un briquet en plastique bon marché conçu pour allumer les cigarettes."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/lighter.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 2, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["lighter"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_scissors"
|
||||
RECIPE.name = "Ciseaux"
|
||||
RECIPE.description = "Coupez, coupez, coupez !"
|
||||
RECIPE.model = "models/willardnetworks/skills/scissors.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_plastic"] = 1}
|
||||
RECIPE.result = {["tool_scissors"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_cooking_pot"
|
||||
RECIPE.name = "Marmite"
|
||||
RECIPE.description = "Une marmite noire en fer. Mettez-la sur une cuisinière !"
|
||||
RECIPE.model = "models/props_c17/metalPot001a.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 2, ["comp_plastic"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_cookingpot"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_razor"
|
||||
RECIPE.name = "Outil de coiffeur"
|
||||
RECIPE.description = "Un outil pour les âmes créatives dans un paysage autrement déprimant."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_adhesive"] = 1, ["comp_plastic"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["beard_razor"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_kitchen_spoon"
|
||||
RECIPE.name = "Cuillère à soupe"
|
||||
RECIPE.description = "Utile pour faire des ragoûts."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenspoon.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_plastic"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_spoon"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_tool_kitchen_knife"
|
||||
RECIPE.name = "Couteau de cuisine"
|
||||
RECIPE.description = "Un couteau épais et semi-émoussé. Utilisé pour couper les aliments sur une planche à découper ou une surface."
|
||||
RECIPE.model = "models/willardnetworks/skills/kitchenknife.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_wood"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_knife"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_frying_pan"
|
||||
RECIPE.name = "Poêle à frire"
|
||||
RECIPE.description = "Une poêle à frire noire en fer. Bon pour la cuisson des aliments."
|
||||
RECIPE.model = "models/props_c17/metalPot002a.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_nails_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_fryingpan"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_kettle"
|
||||
RECIPE.name = "Bouilloire"
|
||||
RECIPE.description = "Une bouilloire pour...bouillir."
|
||||
RECIPE.model = "models/props_interiors/pot01a.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_nails_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_kettle"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_toolkit"
|
||||
RECIPE.name = "Boîte à outils"
|
||||
RECIPE.description = "Une petite caisse en métal contenant divers outils de construction pour assembler des objets."
|
||||
RECIPE.model = "models/willardnetworks/skills/toolkit.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_metal"] = 6, ["comp_adhesive"] = 3, ["comp_plastic"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["tool_toolkit"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full XP
|
||||
{level = 20, exp = 50}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_tool_tinderbox"
|
||||
RECIPE.name = "Poudrière"
|
||||
RECIPE.description = "Une poudrière pour allumer un feu de camp."
|
||||
RECIPE.model = "models/willardnetworks/props/tinderbox.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_cloth"] = 3, ["comp_adhesive"] = 1, ["comp_unrefinedchemical"] = 1}
|
||||
RECIPE.result = {["tinderbox"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full xp
|
||||
{level = 20, exp = 50}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_mixer"
|
||||
RECIPE.name = "Mixeur"
|
||||
RECIPE.description = "Cela semble être utile pour mélanger des liquides ou des produits chimiques ensemble. Son étiquette d'avertissement se lit comme suit : Ne pas ouvrir pendant le fonctionnement"
|
||||
RECIPE.model = "models/willardnetworks/skills/chem_mixer.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.subcategory = "Machines"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 6, ["comp_nails_screws"] = 4, ["comp_strong_adhesive"] = 2}
|
||||
RECIPE.result = {["tool_mixer"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 200}, -- full xp
|
||||
{level = 20, exp = 100}, -- half xp
|
||||
{level = 25, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_wrench"
|
||||
RECIPE.name = "Clé Anglaise"
|
||||
RECIPE.description = "Une vieille clé. Pourrait être utilisée pour la mise en caisse."
|
||||
RECIPE.model = "models/props_c17/tools_wrench01a.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 1, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.result = {["tool_wrench"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 70}, -- full xp
|
||||
{level = 30, exp = 35}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_chembench"
|
||||
RECIPE.name = "Kit d'établi de chimie"
|
||||
RECIPE.description = "Cet établi est spécialement conçu pour le mélange réussi des composants chimiques."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/chemistrystation02.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Machines"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 3, ["comp_craftwork_wood"] = 4, ["comp_strong_adhesive"] = 2, ["comp_glass"] = 3}
|
||||
RECIPE.result = {["tool_chembench_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 300}, -- full xp
|
||||
{level = 30, exp = 150}, -- half xp
|
||||
{level = 45, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_oven_rusty"
|
||||
RECIPE.name = "Kit d'assemblage de four rouillé"
|
||||
RECIPE.description = "Il a l'air terrible, c'est terrible, mais il vous satisfera dans tous les besoins de cuisson pendant un certain temps."
|
||||
RECIPE.model = "models/willardnetworks/skills/oven_shit.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Machines"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 3, ["comp_plastic"] = 5, ["comp_nails_screws"] = 5, ["comp_electronics"] = 3, ["comp_strong_adhesive"] = 3}
|
||||
RECIPE.result = {["tool_oven_rusty_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 150}, -- full xp
|
||||
{level = 30, exp = 75}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_craftingbench"
|
||||
RECIPE.name = "Kit d'artisanat"
|
||||
RECIPE.description = "Cet établi est spécialement conçu pour la fabrication réussie d'objets."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/weaponworkbench02.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Machines"
|
||||
RECIPE.ingredients = {["comp_craftwork_wood"] = 3, ["comp_reshaped_metal"] = 1, ["comp_refined_plastic"] = 2, ["comp_improved_nails_screws"] = 3}
|
||||
RECIPE.result = {["tool_craftingbench_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 180}, -- full xp
|
||||
{level = 30, exp = 90}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_metalbench"
|
||||
RECIPE.name = "Ensemble d'établi en métal"
|
||||
RECIPE.description = "Cet établi est spécialement conçu pour la fabrication réussie d'armes ou de quelque chose de similaire."
|
||||
RECIPE.model = "models/mosi/fallout4/furniture/workstations/weaponworkbench01.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Machines"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 4, ["comp_craftwork_wood"] = 2, ["comp_refined_plastic"] = 4, ["tool_craftingbench_assembly"] = 1}
|
||||
RECIPE.result = {["tool_metalbench_assembly"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 600}, -- full xp
|
||||
{level = 40, exp = 300}, -- half xp
|
||||
{level = 50, exp = 0} -- no xp
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_repair"
|
||||
RECIPE.name = "Placage de réparation"
|
||||
RECIPE.description = "Plaque de réparation artisanale, utilisée pour réparer les armures endommagées sur divers surfaces."
|
||||
RECIPE.model = "models/gibs/scanner_gib02.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 1, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.result = {["tool_repair"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 100}, -- full XP
|
||||
{level = 40, exp = 50}, -- half XP
|
||||
{level = 45, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_craft_breacher"
|
||||
RECIPE.name = "Dispositif de déstruction de bio-lock"
|
||||
RECIPE.description = "Un dispositif artisanal qui est placé sur des serrures du Cartel pour les briser."
|
||||
RECIPE.model = "models/transmissions_element120/charger_attachment.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.station = "tool_metalbench"
|
||||
RECIPE.ingredients = {["comp_refined_metal"] = 1, ["comp_refined_plastic"] = 1, ["comp_strong_adhesive"] = 1, ["comp_electronics"] = 2}
|
||||
RECIPE.result = {["lockbreacher"] = 1}
|
||||
RECIPE.level = 50
|
||||
RECIPE.experience = {
|
||||
{level = 50, exp = 0}, -- full XP
|
||||
{level = 50, exp = 0}, -- half XP
|
||||
{level = 55, exp = 0} -- 0 XP
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_tool_refill_zippo_lighter"
|
||||
RECIPE.name = "Recharge Briquet Zippo"
|
||||
RECIPE.description = "Un briquet en métal de qualité conçu pour allumer les cigarettes."
|
||||
RECIPE.model = "models/willardnetworks/cigarettes/zippo.mdl"
|
||||
RECIPE.category = "Utilitaires"
|
||||
RECIPE.subcategory = "Outils"
|
||||
RECIPE.ingredients = {["zippolighter"] = 1, ["comp_alcohol"] = 1}
|
||||
RECIPE.result = {["zippolighter"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,295 @@
|
||||
--[[
|
||||
| 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_craft_vort_meat01"
|
||||
RECIPE.name = "Ceinture de soutien"
|
||||
RECIPE.description = "Une collection de peaux de crabe de tête délicieuses et appétissantes, rassemblées de tous les coins."
|
||||
RECIPE.model = "models/n7/vorti_outfit/meat01.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["headcrab_skewer"] = 3, ["comp_improved_nails_screws"] = 1, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_meat01"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 200}, -- full XP
|
||||
{level = 10, exp = 100}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_meat02"
|
||||
RECIPE.name = "Ceinture à viande des Terres Lointaines"
|
||||
RECIPE.description = "Une denrée difficile à trouver sous le voile du Cartel, et d'une délicatesse chaque fois qu'elle est trouvée."
|
||||
RECIPE.model = "models/n7/vorti_outfit/meat02.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["antlion_skewer"] = 3, ["comp_improved_nails_screws"] = 1, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_meat02"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 300}, -- full XP
|
||||
{level = 10, exp = 150}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_bandanna"
|
||||
RECIPE.name = "Bandana vortigaunt"
|
||||
RECIPE.description = "La discrétion est de la plus haute importance. Je ne voudrais pas que quiconque sache qu'un Vortigaunt était ici."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_bandana"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_helmet"
|
||||
RECIPE.name = "Casque vortigaunt"
|
||||
RECIPE.description = "La protection avant l'aspect pratique. Avec un peu de chance, l'ennemi peut essayer de viser un peu plus haut."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 3, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_head_helmet"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 100}, -- full XP
|
||||
{level = 30, exp = 50}, -- half XP
|
||||
{level = 35, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_kevlar"
|
||||
RECIPE.name = "Kevlar vortigaunt"
|
||||
RECIPE.description = "Il n'y a pas de peur pour l'intervalle d'obscurité, mais il n'y a pas non plus de hâte à l'embrasser. Un ensemble standard de kevlar humain, à peu près adapté pour une utilisation vortigaunt."
|
||||
RECIPE.model = "models/props_junk/cardboard_box004a.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_strong_adhesive"] = 1, ["comp_refined_metal"] = 3, ["comp_improved_nails_screws"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_vest"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 150}, -- full XP
|
||||
{level = 40, exp = 75}, -- half XP
|
||||
{level = 45, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_labcoat2"
|
||||
RECIPE.name = "Blouse Vortigaunt"
|
||||
RECIPE.description = "Un uniforme scientifique pour les vortigaunts à la recherche d'un style de vie plus scientifique."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_labcoat.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_doc2"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_labcoat"
|
||||
RECIPE.name = "Blouse de laboratoire Vortigaunt (Avec Badge)"
|
||||
RECIPE.description = "Un uniforme scientifique pour les vortigaunts à la recherche d'un style de vie plus scientifique. Cette variante est livrée avec un badge."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_labcoat.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_fabric"] = 1, ["comp_adhesive"] = 2, ["comp_metal"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_doc"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 100}, -- full XP
|
||||
{level = 10, exp = 50}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_chef_hat"
|
||||
RECIPE.name = "Chapeau de chef Vortigaunt"
|
||||
RECIPE.description = "Les Vortigaunts sont bien connus pour leurs capacités dans les arts culinaires en raison de leur lien avec la Vortessence. La seule étape restante pour qu'un Vortigaunt agisse temporairement comme un chef expert est de porter l'un de ces chapeaux idiots"
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/head_chefhat.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_head_chefhat"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_hoodie"
|
||||
RECIPE.name = "Sweat à capuche Vortigaunt"
|
||||
RECIPE.description = "Un sweat à capuche allongé pour un cou plus long. Parfait pour garder un vortigaunt au chaud même dans les conditions les plus difficiles."
|
||||
RECIPE.model = "models/n7/vorti_outfit/hoodie.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 3, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_hoodie"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 70}, -- full XP
|
||||
{level = 20, exp = 35}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_trench_coat"
|
||||
RECIPE.name = "Manteau marron Vortigaunt"
|
||||
RECIPE.description = "Un manteau remis à neuf. Assure que le corps est chaud et un peu sec. Ça ne fait pas de mal de se fondre non plus."
|
||||
RECIPE.model = "models/willardnetworks/clothingitems/torso_refugee_coat.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 4, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_light3_tc"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100}, -- full XP
|
||||
{level = 20, exp = 50}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_poncho"
|
||||
RECIPE.name = "Poncho Vortigaunt raffiné"
|
||||
RECIPE.description = "Un revêtement fiable et solide. Sa composition est dérivée de vêtements humains typiques. La conception ample et les découpes pratiques permettent le confort et la liberté de mouvement."
|
||||
RECIPE.model = "models/n7/vorti_outfit/light01.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 2, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_light"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 50}, -- full XP
|
||||
{level = 20, exp = 25}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_covering"
|
||||
RECIPE.name = "Couverture improvisée de Vortigaunt"
|
||||
RECIPE.description = "Un revêtement simple et uni. Bon pour vous garder bien au chaud par une nuit fraîche, et pas grand-chose d'autre."
|
||||
RECIPE.model = "models/n7/vorti_outfit/light02.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["comp_stitched_cloth"] = 2, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_light2"] = 1}
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full XP
|
||||
{level = 10, exp = 25}, -- half XP
|
||||
{level = 15, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_craft_vort_armour"
|
||||
RECIPE.name = "Plaque de garde de fourmilion"
|
||||
RECIPE.description = "Fabriquée à partir des peaux blindées épaisses des gardes Antlion tombés au combat, cette armure n'est pas seulement robuste, mais la marque d'un guerrier chevronné."
|
||||
RECIPE.model = "models/n7/vorti_outfit/armor.mdl"
|
||||
RECIPE.category = "Vêtements"
|
||||
RECIPE.subcategory = "Vortigaunt"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["ing_antlion_meat"] = 8, ["comp_refined_metal"] = 3, ["comp_improved_nails_screws"] = 2, ["comp_fabric"] = 1, ["comp_strong_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["vortigaunt_torso_armor"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 300}, -- full XP
|
||||
{level = 40, exp = 150}, -- half XP
|
||||
{level = 45, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,389 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
|
||||
----- ARMES -----
|
||||
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_shotgun"
|
||||
RECIPE.name = "Fusil à double canon scié de fortune" -- 8 DMG
|
||||
RECIPE.description = "Une perche de fortune… agit essentiellement comme un double canon scié, juste fait de restes."
|
||||
RECIPE.model = "models/weapons/c_duplet.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Fusils"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_light_weapon_parts"] = 2, ["comp_craftwork_wood"] = 3, ["comp_reshaped_metal"] = 5, ["comp_improved_nails_screws"] = 3, ["comp_stitched_cloth"] = 6, ["comp_strong_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_tikhar"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 220}, -- full XP
|
||||
{level = 15, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_boltrifle" -- 24 DMG
|
||||
RECIPE.name = "Fusil à verrou Helsing"
|
||||
RECIPE.description = "Un pistolet à air comprimé silencieux et rotatif qui tire des boulons métalliques."
|
||||
RECIPE.model = "models/weapons/c_Helsing.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Fusils"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 1, ["comp_craftwork_wood"] = 1, ["comp_reshaped_metal"] = 3, ["comp_improved_nails_screws"] = 1, ["comp_stitched_cloth"] = 2, ["comp_nails_screws"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_helsing"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 220}, -- full XP
|
||||
{level = 15, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_shotgun"
|
||||
RECIPE.name = "Duplet Double Barrel"
|
||||
RECIPE.description = "A Double Barrel shotgun made from the worst materials around, literally 2 water pipes for a barrel."
|
||||
RECIPE.model = "models/weapons/c_duplet.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 1, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_duplet"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 220}, -- full XP
|
||||
{level = 15, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_smg"
|
||||
RECIPE.name = "Bastard SMG"
|
||||
RECIPE.description = "A creation from scrap and pipe work... someone got bored one day."
|
||||
RECIPE.model = "models/weapons/c_BastardGun.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 1, ["comp_craftwork_wood"] = 1, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_bassmg"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_popper"
|
||||
RECIPE.name = "Popper"
|
||||
RECIPE.description = "A revolver capable of firing a powerful shot towards its foes. In all fairness, its actually quite decent."
|
||||
RECIPE.model = "models/weapons/c_MetroRevolver.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 1, ["comp_craftwork_wood"] = 1, ["comp_reshaped_metal"] = 2, ["comp_improved_nails_screws"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_popper"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_vsk"
|
||||
RECIPE.name = "VSK-94"
|
||||
RECIPE.description = "A somewhat well-made VSK-94. Not sure how you did it, but good job."
|
||||
RECIPE.model = "models/weapons/c_VSV.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 2, ["comp_craftwork_wood"] = 2, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_vsv"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_akm"
|
||||
RECIPE.name = "Makeshift AKM"
|
||||
RECIPE.description = "An AKM which someone tried making, made out of all sorts of scrap from the Outlands."
|
||||
RECIPE.model = "models/weapons/c_kalash.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 2, ["comp_craftwork_wood"] = 2, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_ak"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_p90"
|
||||
RECIPE.name = "Odd-looking P90"
|
||||
RECIPE.description = "Is this meant to be a P90 as it has the capacity for one, the firerate for one. But no the looks of one."
|
||||
RECIPE.model = "models/weapons/c_kalash2012.mdl"
|
||||
RECIPE.category = "Weapons"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 2, ["comp_craftwork_wood"] = 2, ["comp_reshaped_metal"] = 4, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["jnk_p90"] = 1}
|
||||
RECIPE.level = 10 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_ballrifle" -- 17
|
||||
RECIPE.name = "Fusil à billes Tikhar"
|
||||
RECIPE.description = "Une arme de fortune capable de tirer des plombs en forme de balle avec un impact assez lourd grâce non seulement au poids des balles mais aussi à la force de pression de l'arme."
|
||||
RECIPE.model = "models/weapons/c_Tikhar.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Fusils"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_strong_adhesive"] = 3, ["comp_craftwork_wood"] = 3, ["comp_reshaped_metal"] = 5, ["comp_improved_nails_screws"] = 2, ["comp_stitched_cloth"] = 8, ["comp_heavy_weapon_parts"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["msballrifle"] = 1}
|
||||
RECIPE.level = 25 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 220}, -- full XP
|
||||
{level = 20, exp = 110}, -- half XP
|
||||
{level = 25, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_ms_smg"
|
||||
RECIPE.name = "Mitraillette bâtarde" -- 9 DMG
|
||||
RECIPE.description = "Un design pour le moins intéressant mais cette arme de fortune agit comme une mitraillette, à tir rapide mais assez faible."
|
||||
RECIPE.model = "models/weapons/c_BastardGun.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Mitraillettes"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_light_weapon_parts"] = 4, ["comp_craftwork_wood"] = 3, ["comp_reshaped_metal"] = 6, ["comp_improved_nails_screws"] = 3, ["comp_stitched_cloth"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["mssmg"] = 1}
|
||||
RECIPE.level = 40 -- Lower level gain for testing
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 150}, -- full XP
|
||||
{level = 15, exp = 75}, -- half XP
|
||||
{level = 20, exp = 0} -- 0 XP
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
----- LVL 5 -----
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_leadpipe"
|
||||
RECIPE.name = "Tuyau de plomb"
|
||||
RECIPE.description = "Ce long tube cylindrique en métal lourd est fabriqué en plomb solide et résistant."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_pipe_lead.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_improved_nails_screws"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["leadpipe"] = 1}
|
||||
RECIPE.level = 5
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 100},
|
||||
{level = 20, exp = 50},
|
||||
{level = 25, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
----- LVL 10 -----
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_knife"
|
||||
RECIPE.name = "Couteau de cuisine (aiguisé)"
|
||||
RECIPE.description = "Un couteau de cuisine aiguisé, comparé au couteau standard proposé par l'Union. Celui-ci n'est certainement pas autorisé."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_kitknife.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 2, ["comp_adhesive"] = 1, ["tool_knife"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["kitknife"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 5, exp = 100},
|
||||
{level = 10, exp = 50},
|
||||
{level = 15, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_baseball_bat"
|
||||
RECIPE.name = "Batte de baseball"
|
||||
RECIPE.description = "Un instrument de puissance entre vos mains, la batte de baseball respire la détermination et la force. Sa forme effilée et son manche robuste en bois vous offrent une prise ferme et confortable. Chaque rainure et chaque éclat sur sa surface racontent une histoire de coups précis et puissants. Son poids équilibré vous confère un sentiment de contrôle et de confiance, prêt à affronter n'importe quel défi sur le terrain."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_bat_metal.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.station = "tool_craftingbench"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 3, ["comp_craftwork_wood"] = 3, ["comp_improved_nails_screws"] = 2, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["baseballbat"] = 1}
|
||||
RECIPE.level = 10
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200},
|
||||
{level = 30, exp = 100},
|
||||
{level = 35, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
----- LVL 15 -----
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_hatchet"
|
||||
RECIPE.name = "Hachette"
|
||||
RECIPE.description = "Un outil polyvalent utilisé dans diverses tâches, la hachette est une petite hache à manche court."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_hatchet.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 5, ["comp_wood"] = 4, ["comp_nails_screws"] = 3, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["hatchet"] = 1}
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 120},
|
||||
{level = 20, exp = 60},
|
||||
{level = 25, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
----- LVL 20 -----
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_cleaver"
|
||||
RECIPE.name = "Couperet"
|
||||
RECIPE.description = "Un outil tranchant et robuste doté d'une lame lourde et coupante, montée sur un manche solide en bois. "
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_cleaver.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 6, ["comp_wood"] = 4, ["comp_nails_screws"] = 2, ["comp_adhesive"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["cleaver"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 10, exp = 100},
|
||||
{level = 20, exp = 50},
|
||||
{level = 25, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "rec_wep_crowbar"
|
||||
RECIPE.name = "Pied de biche"
|
||||
RECIPE.description = "Hum...un pied-de-biche. Maintenant, n'allez pas frapper à mort la Protection civile avec ça."
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_crowbar.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 2, ["comp_nails_screws"] = 2}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["crowbar"] = 1}
|
||||
RECIPE.level = 20
|
||||
RECIPE.experience = {
|
||||
{level = 20, exp = 200},
|
||||
{level = 30, exp = 100},
|
||||
{level = 35, exp = 0}
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
----- LVL 30 -----
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
|
||||
RECIPE.uniqueID = "rec_wep_sledgehammer"
|
||||
RECIPE.name = "Masse"
|
||||
RECIPE.description = "Cet outil robuste et puissant est l'essence même du métier de forgeron. Il se compose d'un manche solide en bois et d'une tête en acier forgé. "
|
||||
RECIPE.model = "models/weapons/tfa_nmrih/w_me_sledge.mdl"
|
||||
RECIPE.category = "Armes"
|
||||
RECIPE.subcategory = "Armes de mêlées"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_reshaped_metal"] = 5, ["comp_craftwork_wood"] = 5, ["comp_improved_nails_screws"] = 5, ["comp_adhesive"] = 3}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.result = {["sledgehammer"] = 1}
|
||||
RECIPE.level = 30
|
||||
RECIPE.experience = {
|
||||
{level = 30, exp = 500},
|
||||
{level = 40, exp = 250},
|
||||
{level = 45, exp = 0}
|
||||
}
|
||||
|
||||
RECIPE:Register()
|
||||
@@ -0,0 +1,66 @@
|
||||
--[[
|
||||
| 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 = "craft_writing_pin"
|
||||
RECIPE.name = "Broche"
|
||||
RECIPE.description = "Une broche utilisé pour accrocher des papiers sur les murs."
|
||||
RECIPE.model = "models/props_c17/TrapPropeller_Lever.mdl"
|
||||
RECIPE.category = "Écriture"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_metal"] = 1, ["comp_adhesive"] = 1}
|
||||
RECIPE.result = {["pin"] = 1}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 0
|
||||
RECIPE.experience = {
|
||||
{level = 0, exp = 50}, -- full xp
|
||||
{level = 10, exp = 25}, -- half xp
|
||||
{level = 15, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
|
||||
local RECIPE = ix.recipe:New()
|
||||
RECIPE.uniqueID = "craft_writing_notepad"
|
||||
RECIPE.name = "Bloc-notes"
|
||||
RECIPE.description = "Un bloc-notes pour écrire."
|
||||
RECIPE.model = "models/willard/work/notepad1.mdl"
|
||||
RECIPE.category = "Écriture"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["paper"] = 1, ["comp_wood"] = 1, ["comp_metal"] = 1}
|
||||
RECIPE.result = {["notepad"] = 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 = "craft_writing_ink"
|
||||
RECIPE.name = "Encre noire"
|
||||
RECIPE.description = "Une cartouche d'encre noire."
|
||||
RECIPE.model = "models/gibs/metal_gib2.mdl"
|
||||
RECIPE.category = "Écriture"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_bluecompound"] = 1, ["comp_charcoal"] = 1, ["comp_plastic"] = 1}
|
||||
RECIPE.result = {["black_ink"] = 4}
|
||||
RECIPE.hidden = false
|
||||
RECIPE.skill = "crafting"
|
||||
RECIPE.level = 15
|
||||
RECIPE.experience = {
|
||||
{level = 15, exp = 70}, -- full xp
|
||||
{level = 30, exp = 35}, -- half xp
|
||||
{level = 35, exp = 0} -- no xp
|
||||
}
|
||||
RECIPE:Register()
|
||||
Reference in New Issue
Block a user