From e4bcd4a0f9eda134a1a34a24e2ada95ac4258ef5 Mon Sep 17 00:00:00 2001 From: Alexander Pickering Date: Sat, 16 Apr 2016 14:41:55 -0400 Subject: Finsihed moveing things out of combinations2 --- gamemode/craftablesystem/misc/obelisk.lua | 48 +++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 gamemode/craftablesystem/misc/obelisk.lua (limited to 'gamemode/craftablesystem/misc/obelisk.lua') 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") -- cgit v1.2.3-70-g09d2