mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-19 14:43:47 +03:00
Upload
This commit is contained in:
@@ -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 = "Pinezka do papieru"
|
||||
RECIPE.description = "Pinezka, służy do zawieszania papieru na ścianie czy tablicy."
|
||||
RECIPE.model = "models/items/crossbowrounds.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
RECIPE.tool = "tool_toolkit"
|
||||
RECIPE.ingredients = {["comp_scrap"] = 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 = "Notatnik"
|
||||
RECIPE.description = "Notatnik w którym możesz pisać."
|
||||
RECIPE.model = "models/props_lab/clipboard.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
RECIPE.tool = "tool_scissors"
|
||||
RECIPE.ingredients = {["paper"] = 1, ["comp_wood"] = 1, ["comp_scrap"] = 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 = "Czarny tusz"
|
||||
RECIPE.description = "Wkład do drukarki z czarnym tuszem."
|
||||
RECIPE.model = "models/gibs/metal_gib2.mdl"
|
||||
RECIPE.category = "Pismo"
|
||||
RECIPE.station = "tool_mixer"
|
||||
RECIPE.ingredients = {["comp_chemcomp"] = 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