mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
76 lines
2.5 KiB
Lua
76 lines
2.5 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/
|
||
|
|
--]]
|
||
|
|
|
||
|
|
-- 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()
|