summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/misc/runealter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/craftablesystem/misc/runealter.lua')
-rw-r--r--gamemode/craftablesystem/misc/runealter.lua83
1 files changed, 83 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/misc/runealter.lua b/gamemode/craftablesystem/misc/runealter.lua
new file mode 100644
index 0000000..2005704
--- /dev/null
+++ b/gamemode/craftablesystem/misc/runealter.lua
@@ -0,0 +1,83 @@
+------------------------------------------------Rune Altar--------------------------------------
+local COMBI = {}
+
+COMBI.Name = "Rune Altar"
+COMBI.Description = "A basic Altar used for making runes"
+
+COMBI.Req = {}
+COMBI.Req["Strange_Stone"] = 100
+COMBI.Req["Stone"] = 500
+COMBI.Req["Basic_Rune"] = 10
+
+COMBI.Results = "gms_runealtar"
+COMBI.Texture = "gms_icons/gms_weapon.png"
+COMBI.BuildSiteModel = "models/xqm/rails/cap.mdl"
+
+GMS.RegisterCombi( COMBI, "Structures" )
+
+ local COMBI = {}
+
+COMBI.Name = "Fire Rune"
+COMBI.Description = "A rune infused with the element of fire"
+COMBI.Entity = "gms_runealtar"
+
+COMBI.Req = {}
+COMBI.Req["Basic_Rune"] = 1
+COMBI.Req["Charcoal"] = 10
+COMBI.Req["Strange_Stone"] = 20
+
+COMBI.Results = {}
+COMBI.Results["Fire_Rune"] = 1
+
+
+GMS.RegisterCombi( COMBI, "gms_runealtar" )
+
+local COMBI = {}
+
+COMBI.Name = "Water Rune"
+COMBI.Description = "A rune infused with the element of water"
+COMBI.Entity = "gms_runealtar"
+
+COMBI.Req = {}
+COMBI.Req["Basic_Rune"] = 1
+COMBI.Req["Water_Bottles"] = 10
+COMBI.Req["Strange_Stone"] = 20
+
+COMBI.Results = {}
+COMBI.Results["Water_Rune"] = 1
+
+
+GMS.RegisterCombi( COMBI, "gms_runealtar" )
+
+local COMBI = {}
+
+COMBI.Name = "Air Rune"
+COMBI.Description = "A rune infused with the element of air"
+COMBI.Entity = "gms_runealtar"
+
+COMBI.Req = {}
+COMBI.Req["Basic_Rune"] = 1
+COMBI.Req["Dust"] = 10
+COMBI.Req["Strange_Stone"] = 20
+
+COMBI.Results = {}
+COMBI.Results["Air_Rune"] = 1
+
+
+GMS.RegisterCombi( COMBI, "gms_runealtar" )
+
+local COMBI = {}
+
+COMBI.Name = "Earth Rune"
+COMBI.Description = "A rune infused with the element of earth"
+COMBI.Entity = "gms_runealtar"
+
+COMBI.Req = {}
+COMBI.Req["Basic_Rune"] = 1
+COMBI.Req["Wood"] = 10
+COMBI.Req["Strange_Stone"] = 20
+
+COMBI.Results = {}
+COMBI.Results["Earth_Rune"] = 1
+
+GMS.RegisterCombi( COMBI, "gms_runealtar" )