summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/misc/obelisk.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/craftablesystem/misc/obelisk.lua')
-rw-r--r--gamemode/craftablesystem/misc/obelisk.lua48
1 files changed, 48 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/misc/obelisk.lua b/gamemode/craftablesystem/misc/obelisk.lua
new file mode 100644
index 0000000..dd22752
--- /dev/null
+++ b/gamemode/craftablesystem/misc/obelisk.lua
@@ -0,0 +1,48 @@
+/*Obelisk*/
+local COMBI = {}
+
+COMBI.Name = "Obelisk"
+COMBI.Description = "A broken down obelisk used to make basic runes"
+
+COMBI.Req = {}
+COMBI.Req["Strange_Stone"] = 50
+
+COMBI.Results = "gms_obelisk"
+COMBI.Texture = "gms_icons/gms_weapon.png"
+COMBI.BuildSiteModel = "models/props_c17/gravestone_cross001b.mdl"
+
+GMS.RegisterCombi( COMBI, "Structures" )
+
+
+local COMBI = {}
+
+COMBI.Name = "Basic Rune"
+COMBI.Description = "the most basic rune used for inscribing"
+COMBI.Entity = "gms_obelisk"
+
+COMBI.Req = {}
+COMBI.Req["Strange_Stone"] = 5
+
+COMBI.Results = {}
+COMBI.Results["Basic_Rune"] = 1
+
+GMS.RegisterCombi ( COMBI, "gms_obelisk")
+
+local COMBI = {}
+
+COMBI.Name = "Chisel"
+COMBI.Description = "Effective in cutting stone"
+COMBI.Entity = "gms_obelisk"
+
+COMBI.Req = {}
+COMBI.Req["Iron"] = 30
+COMBI.Req["Wood"] = 5
+COMBI.Req["Strange_Stone"] = 5
+
+COMBI.SkillReq = {}
+COMBI.SkillReq["Weapon_Crafting"] = 40
+
+COMBI.Texture = "gms_icons/gms_weapon.png"
+COMBI.SwepClass = "gms_chisel"
+
+GMS.RegisterCombi ( COMBI, "gms_obelisk")