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.
23 lines
948 B
23 lines
948 B
-- __ _ _______ _ __
|
|
-- / / /\ | | |__ __| | | \ \
|
|
-- / / / \ | |_ __ ___ | | ___ ___| |__ \ \
|
|
-- < < / /\ \ | | '_ ` _ \| |/ _ \/ __| '_ \ > >
|
|
-- \ \ / ____ \| | | | | | | | __/ (__| | | | / /
|
|
-- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/
|
|
|
|
Quantum.Item = {}
|
|
Quantum.Items = {}
|
|
|
|
function Quantum.Item.Create( id, args )
|
|
local item = {
|
|
name = args.name, -- items name
|
|
desc = args.desc, -- items description
|
|
icon = args.icon, -- items icon
|
|
stack = args.stack, -- items max stack size
|
|
soulbound = args.soulbound, -- if item could be dropped/traded to other players
|
|
rarity = args.rarity, -- rarity of the item
|
|
usefunction = args.usefunction, -- use function
|
|
consumefunction = args.consumefunction, --consume function
|
|
equipfunction = args.equipfunction -- equip function
|
|
}
|
|
end |