diff options
Diffstat (limited to 'gamemode/itemsystem/items/sprout.lua')
| -rw-r--r-- | gamemode/itemsystem/items/sprout.lua | 11 |
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) |
