Quantum is a Garry's Mod RPG framework.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
quantum/gamemode/engine/lib/sh_items.lua

29 lines
1.1 KiB

5 years ago
-- __ _ _______ _ __
-- / / /\ | | |__ __| | | \ \
-- / / / \ | |_ __ ___ | | ___ ___| |__ \ \
-- < < / /\ \ | | '_ ` _ \| |/ _ \/ __| '_ \ > >
-- \ \ / ____ \| | | | | | | | __/ (__| | | | / /
-- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/
Quantum.Item = {}
Quantum.Items = {}
function Quantum.Item.Create( id, args )
local item = {
name = args.name || "ERROR", -- items name
desc = args.desc || "ERROR: Some idiot forgot to give this item a description.", -- items description
model = args.model || "models/props_phx/gears/bevel12.mdl", -- items model
stack = args.stack || false, -- items max stack size
soulbound = args.soulbound || true, -- if item could be dropped/traded to other players
equipable = args.equipable || false, -- equipable or not
rarity = args.rarity || Quantum.Rarity.Trash, -- rarity of the item
usefunction = args.usefunction, -- use function
consumefunction = args.consumefunction --consume function
}
Quantum.Items[id] = item
return item
end
function Quantum.Item.Get( id )
return Quantum.Items[id]
5 years ago
end