mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
67 lines
2.0 KiB
Lua
67 lines
2.0 KiB
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
local RECIPE = ix.recipe:New()
|
|
RECIPE.uniqueID = "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()
|