Files
wnsrc/gamemodes/darkrp/plugins/willardskills/recipes/bartering/sh_bartering_trousers.lua

76 lines
2.5 KiB
Lua
Raw Normal View History

2024-08-04 22:55:00 +03:00
--[[
| 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()