diff options
| -rw-r--r-- | gamemode/craftablesystem/workbenches/mythrilworkbench.lua | 4 | ||||
| -rw-r--r-- | gamemode/craftablesystem/workbenches/techworkbench.lua | 2 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/batteries.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/flashlight.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/teak.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/wristwatch.lua | 10 |
6 files changed, 43 insertions, 3 deletions
diff --git a/gamemode/craftablesystem/workbenches/mythrilworkbench.lua b/gamemode/craftablesystem/workbenches/mythrilworkbench.lua index 91a5e3a..a99e43f 100644 --- a/gamemode/craftablesystem/workbenches/mythrilworkbench.lua +++ b/gamemode/craftablesystem/workbenches/mythrilworkbench.lua @@ -4,7 +4,7 @@ COMBI.Name = "Mithril WorkBench" COMBI.Description = "A very basic industrial crafting station" COMBI.Req = {} -COMBI.Req["Pure_Mithril"] = 200 +COMBI.Req["Pure Mithril"] = 200 COMBI.Req["Teak"] = 20 COMBI.Results = "gms_mithrilworkbench" @@ -20,7 +20,7 @@ COMBI.Description = "A strange pickaxe that has a tendency to only mine a weird COMBI.Entity = "gms_mithrilworkbench" COMBI.Req = {} -COMBI.Req["Pure_Mithril"] = 50 +COMBI.Req["Pure Mithril"] = 50 COMBI.Req["Teak"] = 25 diff --git a/gamemode/craftablesystem/workbenches/techworkbench.lua b/gamemode/craftablesystem/workbenches/techworkbench.lua index 96b07cb..5940986 100644 --- a/gamemode/craftablesystem/workbenches/techworkbench.lua +++ b/gamemode/craftablesystem/workbenches/techworkbench.lua @@ -97,7 +97,7 @@ COMBI.Description = "See the time whereever you go." COMBI.Entity = "gms_techworkbench" COMBI.Results = {} -COMBI.Results["Wrist_Watch"] = 1 +COMBI.Results["Wrist Watch"] = 1 COMBI.Req = {} COMBI.Req["Iron"] = 5 diff --git a/gamemode/itemsystem/items/batteries.lua b/gamemode/itemsystem/items/batteries.lua new file mode 100644 index 0000000..0e78a75 --- /dev/null +++ b/gamemode/itemsystem/items/batteries.lua @@ -0,0 +1,10 @@ +ITEM = {} + +ITEM.Name = "Batteries" +ITEM.Description = "It holds a charge!" +ITEM.Icon = "test.png" +ITEM.UniqueData = false + +genericMakeDroppable(ITEM) + +GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/flashlight.lua b/gamemode/itemsystem/items/flashlight.lua new file mode 100644 index 0000000..7c6e966 --- /dev/null +++ b/gamemode/itemsystem/items/flashlight.lua @@ -0,0 +1,10 @@ +ITEM = {} + +ITEM.Name = "Flashlight" +ITEM.Description = "Lights up the dark!" +ITEM.Icon = "test.png" +ITEM.UniqueData = false + +genericMakeDroppable(ITEM) + +GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/teak.lua b/gamemode/itemsystem/items/teak.lua new file mode 100644 index 0000000..e56ff68 --- /dev/null +++ b/gamemode/itemsystem/items/teak.lua @@ -0,0 +1,10 @@ +ITEM = {} + +ITEM.Name = "Teak" +ITEM.Description = "You've got wood." +ITEM.Icon = "test.png" +ITEM.UniqueData = false + +genericMakeDroppable(ITEM) + +GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/wristwatch.lua b/gamemode/itemsystem/items/wristwatch.lua new file mode 100644 index 0000000..7d01f26 --- /dev/null +++ b/gamemode/itemsystem/items/wristwatch.lua @@ -0,0 +1,10 @@ +ITEM = {} + +ITEM.Name = "Wrist Watch" +ITEM.Description = "See the time wherever you go!" +ITEM.Icon = "test.png" +ITEM.UniqueData = false + +genericMakeDroppable(ITEM) + +GMS.RegisterResource(ITEM) |
