summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/misc/clock.lua
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-04-16 14:16:26 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2016-04-16 14:16:26 -0400
commit69b734c634c0838e1eb4d468d5a6db67f8eb7bd0 (patch)
treec8515ddbe104951a65313efe452ea0c83a7a09c8 /gamemode/craftablesystem/misc/clock.lua
parent88c8acfa90a71e50104b9c64b953eae939767f20 (diff)
downloadgmstranded-69b734c634c0838e1eb4d468d5a6db67f8eb7bd0.tar.gz
gmstranded-69b734c634c0838e1eb4d468d5a6db67f8eb7bd0.tar.bz2
gmstranded-69b734c634c0838e1eb4d468d5a6db67f8eb7bd0.zip
Moved all of combinations.lua into their own files under craftablesystem/
Diffstat (limited to 'gamemode/craftablesystem/misc/clock.lua')
-rw-r--r--gamemode/craftablesystem/misc/clock.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/misc/clock.lua b/gamemode/craftablesystem/misc/clock.lua
new file mode 100644
index 0000000..af986ea
--- /dev/null
+++ b/gamemode/craftablesystem/misc/clock.lua
@@ -0,0 +1,14 @@
+local COMBI = {}
+
+COMBI.Name = "Clock"
+COMBI.Description = "Shows you world time."
+
+COMBI.Req = {}
+COMBI.Req["Iron"] = 10
+COMBI.Req["Glass"] = 10
+
+COMBI.Results = "gms_clock_big"
+COMBI.Texture = "gms_icons/gms_clock_big.png"
+COMBI.BuildSiteModel = "models/props_trainstation/trainstation_clock001.mdl"
+
+GMS.RegisterCombi( COMBI, "Structures" )