mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-19 06:33:47 +03:00
Upload
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_adhesive"
|
||||
ITEM.name = "Adhésif"
|
||||
ITEM.description = "Un adhésif pour coller des objets ensemble, utilisé dans l'artisanat."
|
||||
ITEM.category = "Crafting"
|
||||
ITEM.model = "models/willardnetworks/props/glue.mdl"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(98.4, 229.73, 85.26),
|
||||
ang = Angle(17.97, 246.81, 0),
|
||||
fov = 2.21
|
||||
}
|
||||
ITEM.colorAppendix = {["blue"] = "Cet objet peut être fabriqué avec la compétence Médecine."}
|
||||
ITEM.maxStackSize = 8
|
||||
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_alcohol"
|
||||
ITEM.name = "Alcool"
|
||||
ITEM.description = "Substance alcoolique extraite de diverses boissons alcoolisées."
|
||||
ITEM.category = "Composants Médicaux"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/food/prop_bar_bottle_e.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Vous pouvez acquérir cet objet via la compétence Médecine."}
|
||||
ITEM.maxStackSize = 8
|
||||
@@ -0,0 +1,38 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "antidote"
|
||||
ITEM.name = "Antidote"
|
||||
ITEM.description = "A strange syringe filled with purple liquid can reduce toxin levels in your body.."
|
||||
ITEM.category = "Medical"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/skills/medx.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "This item can be made through the Medical skill.", ["red"] = "This item can lower the amount of 'Gas' your character has."}
|
||||
ITEM.useSound = "medicina/nmrih_syringe.ogg"
|
||||
|
||||
ITEM.functions.Use = {
|
||||
name = "Apply",
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
|
||||
client:EmitSound(item.useSound)
|
||||
|
||||
if character:GetGasPoints() >= 120 then
|
||||
client:ChatNotifyLocalized("You inject the antidote in your body... but don't feel any different. *There's nothing else to be done, this is it for me...*")
|
||||
elseif (character:GetGasPoints() - 45 <= 0) then
|
||||
character:SetGasPoints(0)
|
||||
client:ChatNotifyLocalized("You feel a lot better now!")
|
||||
else
|
||||
character:SetGasPoints(character:GetGasPoints() - 45)
|
||||
end
|
||||
end
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_bloodsyringe"
|
||||
ITEM.name = "Seringue de sang"
|
||||
ITEM.description = "Une seringue remplie de sang humain, pouvant être utilisée à certain fins."
|
||||
ITEM.category = "Composants Médicaux"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/skills/syringeammo.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Cet objet peut être fabriqué avec la compétence Médecine."}
|
||||
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_bluecompound"
|
||||
ITEM.name = "Composé bleu"
|
||||
ITEM.description = "Un flacon de composé bleu, utilisé à des fins médicinales."
|
||||
ITEM.category = "Composants Médicaux"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/skills/medjar4.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Cet objet peut être fabriqué avec la compétence Médecine."}
|
||||
ITEM.maxStackSize = 8
|
||||
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_greencompound"
|
||||
ITEM.name = "Composé vert"
|
||||
ITEM.description = "Un flacon de composé vert, utilisé à des fins médicinales."
|
||||
ITEM.category = "Composants Médicaux"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/skills/medjar1.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Cet objet peut être fabriqué avec la compétence Médecine."}
|
||||
ITEM.maxStackSize = 8
|
||||
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_purifier"
|
||||
ITEM.name = "Purificateur"
|
||||
ITEM.description = "Poussière étrange utilisée pour réduire les composés toxiques dans les substances."
|
||||
ITEM.category = "Composants Médicaux"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/skills/pill_bottle.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Cet objet peut être fabriquer avec la compétence de Médecine."}
|
||||
ITEM.maxStackSize = 8
|
||||
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_redcompound"
|
||||
ITEM.name = "Composé rouge"
|
||||
ITEM.description = "Un flacon de composé rouge, utilisé à des fins médicinales."
|
||||
ITEM.category = "Composants Médicaux"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/skills/medjar3.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Cet objet peut être fabriqué avec la compétence Médecine."}
|
||||
ITEM.maxStackSize = 8
|
||||
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_refinedchemical"
|
||||
ITEM.name = "Produits chimiques raffinés"
|
||||
ITEM.description = "Une bouteille de matière chimique raffinée. Peut être décomposé en composés chimiques distincts."
|
||||
ITEM.category = "Composants Médicaux"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/skills/medjar.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Cet objet peut être fabriqué avec la compétence Médecine."}
|
||||
ITEM.maxStackSize = 8
|
||||
@@ -0,0 +1,24 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_strong_adhesive"
|
||||
ITEM.name = "Adhésif fort"
|
||||
ITEM.description = "Un adhésif plus fort pour coller des objets ensemble, utilisé dans l'artisanat."
|
||||
ITEM.category = "Crafting"
|
||||
ITEM.model = "models/willardnetworks/props/spicyglue.mdl"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.iconCam = {
|
||||
pos = Vector(98.4, 229.73, 85.26),
|
||||
ang = Angle(17.97, 246.81, 0),
|
||||
fov = 2.21
|
||||
}
|
||||
ITEM.colorAppendix = {["blue"] = "Cet objet peut être fabriqué avec la compétence Médecine."}
|
||||
ITEM.maxStackSize = 8
|
||||
@@ -0,0 +1,45 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_syringe"
|
||||
ITEM.name = "Seringue"
|
||||
ITEM.description = "Une seringue capable de contenir des substances de type liquide, utiles à des fins médicinales."
|
||||
ITEM.category = "Composants Médicaux"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/skills/syringeammo.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Cet objet peut être fabriqué avec la compétence Artisanat."}
|
||||
|
||||
ITEM.useSound = "items/medshot4.wav"
|
||||
ITEM.openedItem = "comp_bloodsyringe"
|
||||
ITEM.openRequirementAmount = 1
|
||||
|
||||
ITEM.functions.Use = {
|
||||
name = "Utiliser",
|
||||
OnRun = function(item)
|
||||
local client = item.player
|
||||
local character = item.player:GetCharacter()
|
||||
local inventory = character:GetInventory()
|
||||
|
||||
client:EmitSound(item.useSound)
|
||||
|
||||
-- Spawn the opened item if it exists
|
||||
local requirementAmount = item.openRequirementAmount or 1
|
||||
if (item.openedItem) then
|
||||
local openedItemName = ix.item.list[item.openedItem] and ix.item.list[item.openedItem].name or item.openedItem
|
||||
if (!inventory:Add(item.openedItem, requirementAmount)) then
|
||||
client:NotifyLocalized("Vous avez besoin de "..requirementAmount.." d'emplacement d'inventaire pour la seringue")
|
||||
return
|
||||
end
|
||||
|
||||
client:NotifyLocalized("Vous avez extrait du sang avec le "..item.name.." et reçu un "..openedItemName)
|
||||
end
|
||||
end
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_unrefinedchemical"
|
||||
ITEM.name = "Produits chimiques non raffinés"
|
||||
ITEM.description = "Une bouteille de restes de matière chimique non raffinée. Peut être affiné en quelque chose de plus utile..."
|
||||
ITEM.category = "Composants Médicaux"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/props_junk/garbage_plasticbottle001a.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Vous pouvez acquérir cet objet via la compétence Médecine."}
|
||||
ITEM.maxStackSize = 8
|
||||
@@ -0,0 +1,19 @@
|
||||
--[[
|
||||
| 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/
|
||||
--]]
|
||||
|
||||
ITEM.uniqueID = "comp_yellowcompound"
|
||||
ITEM.name = "Composé jaune"
|
||||
ITEM.description = "Un flacon de composé jaune, utilisé à des fins médicinales."
|
||||
ITEM.category = "Composants Médicaux"
|
||||
ITEM.width = 1
|
||||
ITEM.height = 1
|
||||
ITEM.model = "models/willardnetworks/skills/medjar2.mdl"
|
||||
ITEM.colorAppendix = {["blue"] = "Cet objet peut être fabriqué avec la compétence Médecine."}
|
||||
ITEM.maxStackSize = 8
|
||||
Reference in New Issue
Block a user