summaryrefslogtreecommitdiff
path: root/gamemode/itemsystem/items/sprout.lua
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-04-30 22:11:53 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2016-04-30 22:11:53 -0400
commit052d3aad1a4b3e13a6c4f50095fdc9803701c857 (patch)
treefc0b3be7b2a02e95bb7cb3037d0f8508e945e0ba /gamemode/itemsystem/items/sprout.lua
parentbdf6cacc1fe7af364b93604253f3229d842d6170 (diff)
downloadgmstranded-052d3aad1a4b3e13a6c4f50095fdc9803701c857.tar.gz
gmstranded-052d3aad1a4b3e13a6c4f50095fdc9803701c857.tar.bz2
gmstranded-052d3aad1a4b3e13a6c4f50095fdc9803701c857.zip
Added combinations tab to the q menu
Diffstat (limited to 'gamemode/itemsystem/items/sprout.lua')
-rw-r--r--gamemode/itemsystem/items/sprout.lua11
1 files changed, 10 insertions, 1 deletions
diff --git a/gamemode/itemsystem/items/sprout.lua b/gamemode/itemsystem/items/sprout.lua
index 218ff2c..93d5646 100644
--- a/gamemode/itemsystem/items/sprout.lua
+++ b/gamemode/itemsystem/items/sprout.lua
@@ -1 +1,10 @@
-print("Hello from sprout.lua!")
+ITEM = {}
+
+ITEM.Name = "Sprouts"
+ITEM.Description = "Something you can craft with!"
+ITEM.Icon = "test.png"
+ITEM.UniqueData = false
+
+genericMakeDroppable(ITEM)
+
+GMS.RegisterResource(ITEM)