This commit is contained in:
lifestorm
2024-08-04 22:55:00 +03:00
parent 8064ba84d8
commit 73479cff9e
7338 changed files with 1718883 additions and 14 deletions

View File

@@ -0,0 +1,75 @@
--[[
| 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/
--]]
-- Pantalon usé
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_worn_black"
RECIPE.name = "Pantalon noir usé"
RECIPE.description = "Un pantalon usé. Fait pour durer, mais pas confortable."
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
RECIPE.category = "Vêtements"
RECIPE.subcategory = "Pantalon usé"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["legs_worn_black"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_worn_blue"
RECIPE.name = "Pantalon bleu usé"
RECIPE.description = "Un pantalon usé. Fait pour durer, mais pas confortable"
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
RECIPE.category = "Vêtements"
RECIPE.subcategory = "Pantalon usé"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["legs_worn_blue"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_worn_green"
RECIPE.name = "Pantalon vert usé"
RECIPE.description = "Un pantalon usé. Fait pour durer, mais pas confortable"
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
RECIPE.category = "Vêtements"
RECIPE.subcategory = "Pantalon usé"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["legs_worn_green"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_worn_grey"
RECIPE.name = "Pantalon gris usé"
RECIPE.description = "Un pantalon usé. Fait pour durer, mais pas confortable"
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
RECIPE.category = "Vêtements"
RECIPE.subcategory = "Pantalon usé"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["legs_worn_grey"] = 1}
RECIPE:Register()
local RECIPE = ix.recipe:New()
RECIPE.uniqueID = "bartering_legs_worn_red"
RECIPE.name = "Pantalon rouge usé"
RECIPE.description = "Un pantalon usé. Fait pour durer, mais pas confortable"
RECIPE.model = "models/willardnetworks/clothingitems/legs_citizen0.mdl"
RECIPE.category = "Vêtements"
RECIPE.subcategory = "Pantalon usé"
RECIPE.hidden = false
RECIPE.skill = "bartering"
RECIPE.cost = 20
RECIPE.result = {["legs_worn_red"] = 1}
RECIPE:Register()