summaryrefslogtreecommitdiff
path: root/gamemode/craftablesystem/misc
diff options
context:
space:
mode:
authorAlexander Pickering <alexandermpickering@gmail.com>2016-05-01 12:21:57 -0400
committerAlexander Pickering <alexandermpickering@gmail.com>2016-05-01 12:21:57 -0400
commit95a85da4da42d758f09b883fa655e947b7dfbfdc (patch)
tree09bcb89eb1987806cc04f0f2b9ce97bbb4b28b58 /gamemode/craftablesystem/misc
parent5f68ea128a2c4dfa2da8d78d33cb92506fed3286 (diff)
downloadgmstranded-95a85da4da42d758f09b883fa655e947b7dfbfdc.tar.gz
gmstranded-95a85da4da42d758f09b883fa655e947b7dfbfdc.tar.bz2
gmstranded-95a85da4da42d758f09b883fa655e947b7dfbfdc.zip
Fixed all recipies in misc crafting, added resources: basic/earth/air/fire/water rune, bass, dough, dust, meat, pickaxe handle, pickaxe head, plastic, resin, salmon, shark, spices, trout
Diffstat (limited to 'gamemode/craftablesystem/misc')
-rw-r--r--gamemode/craftablesystem/misc/drinkingfountain.lua2
-rw-r--r--gamemode/craftablesystem/misc/factory.lua10
-rw-r--r--gamemode/craftablesystem/misc/grindingstone.lua8
-rw-r--r--gamemode/craftablesystem/misc/mythrilfactory.lua20
-rw-r--r--gamemode/craftablesystem/misc/obelisk.lua8
-rw-r--r--gamemode/craftablesystem/misc/runealter.lua30
-rw-r--r--gamemode/craftablesystem/misc/runeinfuser.lua44
-rw-r--r--gamemode/craftablesystem/misc/stove.lua10
8 files changed, 66 insertions, 66 deletions
diff --git a/gamemode/craftablesystem/misc/drinkingfountain.lua b/gamemode/craftablesystem/misc/drinkingfountain.lua
index 261099c..7ba52ef 100644
--- a/gamemode/craftablesystem/misc/drinkingfountain.lua
+++ b/gamemode/craftablesystem/misc/drinkingfountain.lua
@@ -7,7 +7,7 @@ COMBI.Description = "PORTABLE WATER?!"
COMBI.Req = {}
COMBI.Req["Copper"] = 50
COMBI.Req["Iron"] = 50
-COMBI.Req["Water_Bottles"] = 50
+COMBI.Req["Water Bottles"] = 50
COMBI.Results = "gms_waterfountain"
COMBI.Texture = "gms_icons/gms_waterfountain.png"
diff --git a/gamemode/craftablesystem/misc/factory.lua b/gamemode/craftablesystem/misc/factory.lua
index 31f8034..c93c7cb 100644
--- a/gamemode/craftablesystem/misc/factory.lua
+++ b/gamemode/craftablesystem/misc/factory.lua
@@ -113,7 +113,7 @@ COMBI.Description = "Iron can be used to create more advanced buildings and tool
COMBI.Entity = "gms_factory"
COMBI.Req = {}
-COMBI.Req["Iron_Ore"] = 1
+COMBI.Req["Iron Ore"] = 1
COMBI.Results = {}
COMBI.Results["Iron"] = 1
@@ -131,7 +131,7 @@ COMBI.Description = "Copper can be used to create more advanced buildings and to
COMBI.Entity = "gms_factory"
COMBI.Req = {}
-COMBI.Req["Copper_Ore"] = 1
+COMBI.Req["Copper Ore"] = 1
COMBI.Results = {}
COMBI.Results["Copper"] = 1
@@ -195,7 +195,7 @@ COMBI.Entity = "gms_factory"
COMBI.Req = {}
COMBI.Req["Wood"] = 15
-COMBI.Req["Water_Bottles"] = 1
+COMBI.Req["Water Bottles"] = 1
COMBI.Results = {}
COMBI.Results["Resin"] = 5
@@ -211,7 +211,7 @@ COMBI.Entity = "gms_factory"
COMBI.Req = {}
COMBI.Req["Wood"] = 25
-COMBI.Req["Water_Bottles"] = 2
+COMBI.Req["Water Bottles"] = 2
COMBI.Results = {}
COMBI.Results["Resin"] = 10
@@ -227,7 +227,7 @@ COMBI.Entity = "gms_factory"
COMBI.Req = {}
COMBI.Req["Wood"] = 50
-COMBI.Req["Water_Bottles"] = 4
+COMBI.Req["Water Bottles"] = 4
COMBI.Results = {}
COMBI.Results["Resin"] = 25
diff --git a/gamemode/craftablesystem/misc/grindingstone.lua b/gamemode/craftablesystem/misc/grindingstone.lua
index 1463d48..1203e5c 100644
--- a/gamemode/craftablesystem/misc/grindingstone.lua
+++ b/gamemode/craftablesystem/misc/grindingstone.lua
@@ -66,7 +66,7 @@ COMBI.Description = "Converts 2 Grain Seeds to 1 Flour."
COMBI.Entity = "gms_grindingstone"
COMBI.Req = {}
-COMBI.Req["Grain_Seeds"] = 2
+COMBI.Req["Grain Seeds"] = 2
COMBI.Results = {}
COMBI.Results["Flour"] = 1
@@ -81,7 +81,7 @@ COMBI.Description = "Converts 5 Grain Seeds to 3 Flour."
COMBI.Entity = "gms_grindingstone"
COMBI.Req = {}
-COMBI.Req["Grain_Seeds"] = 5
+COMBI.Req["Grain Seeds"] = 5
COMBI.Results = {}
COMBI.Results["Flour"] = 3
@@ -96,7 +96,7 @@ COMBI.Description = "Converts 10 Grain Seeds to 7 Flour."
COMBI.Entity = "gms_grindingstone"
COMBI.Req = {}
-COMBI.Req["Grain_Seeds"] = 10
+COMBI.Req["Grain Seeds"] = 10
COMBI.Results = {}
COMBI.Results["Flour"] = 7
@@ -111,7 +111,7 @@ COMBI.Description = "Converts Grain Seeds to Flour ( 10:6 )."
COMBI.Entity = "gms_grindingstone"
COMBI.Req = {}
-COMBI.Req["Grain_Seeds"] = 1
+COMBI.Req["Grain Seeds"] = 1
COMBI.Results = {}
COMBI.Results["Flour"] = 1
diff --git a/gamemode/craftablesystem/misc/mythrilfactory.lua b/gamemode/craftablesystem/misc/mythrilfactory.lua
index 708e27d..b977131 100644
--- a/gamemode/craftablesystem/misc/mythrilfactory.lua
+++ b/gamemode/craftablesystem/misc/mythrilfactory.lua
@@ -5,7 +5,7 @@ COMBI.Name = "Mithril Factory"
COMBI.Description = "A advanced factor for faster smelting"
COMBI.Req = {}
-COMBI.Req["Pure_Mithril"] = 400
+COMBI.Req["Pure Mithril"] = 400
COMBI.Req["Teak"] = 50
COMBI.Results = "gms_mithrilfactory"
@@ -22,7 +22,7 @@ COMBI.Description = "Copper can be used to create more advanced buildings and to
COMBI.Entity = "gms_mithrilfactory"
COMBI.Req = {}
-COMBI.Req["Copper_Ore"] = 1
+COMBI.Req["Copper Ore"] = 1
COMBI.Results = {}
COMBI.Results["Copper"] = 1
@@ -40,7 +40,7 @@ COMBI.Description = "Iron can be used to create more advanced buildings and tool
COMBI.Entity = "gms_mithrilfactory"
COMBI.Req = {}
-COMBI.Req["Iron_Ore"] = 1
+COMBI.Req["Iron Ore"] = 1
COMBI.Results = {}
COMBI.Results["Iron"] = 1
@@ -58,7 +58,7 @@ COMBI.Description = "Tech can be used to create more advanced buildings and tool
COMBI.Entity = "gms_mithrilfactory"
COMBI.Req = {}
-COMBI.Req["Tech_Ore"] = 1
+COMBI.Req["Tech Ore"] = 1
COMBI.Results = {}
COMBI.Results["Tech"] = 1
@@ -76,7 +76,7 @@ COMBI.Description = "Silver can be used to create more advanced buildings and to
COMBI.Entity = "gms_mithrilfactory"
COMBI.Req = {}
-COMBI.Req["Silver_Ore"] = 1
+COMBI.Req["Silver Ore"] = 1
COMBI.Results = {}
COMBI.Results["Silver"] = 1
@@ -94,7 +94,7 @@ COMBI.Description = "Gold can be used to create more advanced buildings and tool
COMBI.Entity = "gms_mithrilfactory"
COMBI.Req = {}
-COMBI.Req["Gold_Ore"] = 1
+COMBI.Req["Gold Ore"] = 1
COMBI.Results = {}
COMBI.Results["Gold"] = 1
@@ -112,7 +112,7 @@ COMBI.Description = "Steel can be used to create more advanced buildings and too
COMBI.Entity = "gms_mithrilfactory"
COMBI.Req = {}
-COMBI.Req["Steel_Ore"] = 1
+COMBI.Req["Steel Ore"] = 1
COMBI.Results = {}
COMBI.Results["Steel"] = 1
@@ -130,7 +130,7 @@ COMBI.Description = "Platinum can be used to create more advanced buildings and
COMBI.Entity = "gms_mithrilfactory"
COMBI.Req = {}
-COMBI.Req["Platinum_Ore"] = 1
+COMBI.Req["Platinum Ore"] = 1
COMBI.Results = {}
COMBI.Results["Platinum"] = 1
@@ -148,10 +148,10 @@ COMBI.Description = "Pure Mithril can be used to start of you industrial needs"
COMBI.Entity = "gms_mithrilfactory"
COMBI.Req = {}
-COMBI.Req["Mithril_Ore"] = 2
+COMBI.Req["Mithril Ore"] = 2
COMBI.Results = {}
-COMBI.Results["Pure_Mithril"] = 1
+COMBI.Results["Pure Mithril"] = 1
COMBI.AllSmelt = true
COMBI.Max = 50
diff --git a/gamemode/craftablesystem/misc/obelisk.lua b/gamemode/craftablesystem/misc/obelisk.lua
index dd22752..4740047 100644
--- a/gamemode/craftablesystem/misc/obelisk.lua
+++ b/gamemode/craftablesystem/misc/obelisk.lua
@@ -5,7 +5,7 @@ COMBI.Name = "Obelisk"
COMBI.Description = "A broken down obelisk used to make basic runes"
COMBI.Req = {}
-COMBI.Req["Strange_Stone"] = 50
+COMBI.Req["Strange Stone"] = 50
COMBI.Results = "gms_obelisk"
COMBI.Texture = "gms_icons/gms_weapon.png"
@@ -21,10 +21,10 @@ COMBI.Description = "the most basic rune used for inscribing"
COMBI.Entity = "gms_obelisk"
COMBI.Req = {}
-COMBI.Req["Strange_Stone"] = 5
+COMBI.Req["Strange Stone"] = 5
COMBI.Results = {}
-COMBI.Results["Basic_Rune"] = 1
+COMBI.Results["Basic Rune"] = 1
GMS.RegisterCombi ( COMBI, "gms_obelisk")
@@ -37,7 +37,7 @@ COMBI.Entity = "gms_obelisk"
COMBI.Req = {}
COMBI.Req["Iron"] = 30
COMBI.Req["Wood"] = 5
-COMBI.Req["Strange_Stone"] = 5
+COMBI.Req["Strange Stone"] = 5
COMBI.SkillReq = {}
COMBI.SkillReq["Weapon_Crafting"] = 40
diff --git a/gamemode/craftablesystem/misc/runealter.lua b/gamemode/craftablesystem/misc/runealter.lua
index 2005704..05c21bb 100644
--- a/gamemode/craftablesystem/misc/runealter.lua
+++ b/gamemode/craftablesystem/misc/runealter.lua
@@ -5,9 +5,9 @@ COMBI.Name = "Rune Altar"
COMBI.Description = "A basic Altar used for making runes"
COMBI.Req = {}
-COMBI.Req["Strange_Stone"] = 100
+COMBI.Req["Strange Stone"] = 100
COMBI.Req["Stone"] = 500
-COMBI.Req["Basic_Rune"] = 10
+COMBI.Req["Basic Rune"] = 10
COMBI.Results = "gms_runealtar"
COMBI.Texture = "gms_icons/gms_weapon.png"
@@ -22,12 +22,12 @@ COMBI.Description = "A rune infused with the element of fire"
COMBI.Entity = "gms_runealtar"
COMBI.Req = {}
-COMBI.Req["Basic_Rune"] = 1
+COMBI.Req["Basic Rune"] = 1
COMBI.Req["Charcoal"] = 10
-COMBI.Req["Strange_Stone"] = 20
+COMBI.Req["Strange Stone"] = 20
COMBI.Results = {}
-COMBI.Results["Fire_Rune"] = 1
+COMBI.Results["Fire Rune"] = 1
GMS.RegisterCombi( COMBI, "gms_runealtar" )
@@ -39,12 +39,12 @@ 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.Req["Basic Rune"] = 1
+COMBI.Req["Water Bottles"] = 10
+COMBI.Req["Strange Stone"] = 20
COMBI.Results = {}
-COMBI.Results["Water_Rune"] = 1
+COMBI.Results["Water Rune"] = 1
GMS.RegisterCombi( COMBI, "gms_runealtar" )
@@ -56,12 +56,12 @@ COMBI.Description = "A rune infused with the element of air"
COMBI.Entity = "gms_runealtar"
COMBI.Req = {}
-COMBI.Req["Basic_Rune"] = 1
+COMBI.Req["Basic Rune"] = 1
COMBI.Req["Dust"] = 10
-COMBI.Req["Strange_Stone"] = 20
+COMBI.Req["Strange Stone"] = 20
COMBI.Results = {}
-COMBI.Results["Air_Rune"] = 1
+COMBI.Results["Air Rune"] = 1
GMS.RegisterCombi( COMBI, "gms_runealtar" )
@@ -73,11 +73,11 @@ COMBI.Description = "A rune infused with the element of earth"
COMBI.Entity = "gms_runealtar"
COMBI.Req = {}
-COMBI.Req["Basic_Rune"] = 1
+COMBI.Req["Basic Rune"] = 1
COMBI.Req["Wood"] = 10
-COMBI.Req["Strange_Stone"] = 20
+COMBI.Req["Strange Stone"] = 20
COMBI.Results = {}
-COMBI.Results["Earth_Rune"] = 1
+COMBI.Results["Earth Rune"] = 1
GMS.RegisterCombi( COMBI, "gms_runealtar" )
diff --git a/gamemode/craftablesystem/misc/runeinfuser.lua b/gamemode/craftablesystem/misc/runeinfuser.lua
index 151aa57..39f286c 100644
--- a/gamemode/craftablesystem/misc/runeinfuser.lua
+++ b/gamemode/craftablesystem/misc/runeinfuser.lua
@@ -4,9 +4,9 @@ COMBI.Name = "Runic Infuser"
COMBI.Description = "A basic place for infusing tools"
COMBI.Req = {}
-COMBI.Req["Strange_Stone"] = 200
+COMBI.Req["Strange Stone"] = 200
COMBI.Req["Stone"] = 200
-COMBI.Req["Basic_Rune"] = 20
+COMBI.Req["Basic Rune"] = 20
COMBI.Results = "gms_runicinfuser"
COMBI.Texture = "gms_icons/gms_weapon.png"
@@ -22,10 +22,10 @@ COMBI.Entity = "gms_runicinfuser"
COMBI.Req = {}
COMBI.Req["Stone"] = 150
-COMBI.Req["Strange_Stone"] = 20
+COMBI.Req["Strange Stone"] = 20
COMBI.Results = {}
-COMBI.Results["Pickaxe_Head"] = 1
+COMBI.Results["Pickaxe Head"] = 1
GMS.RegisterCombi( COMBI, "gms_runicinfuser" )
@@ -37,10 +37,10 @@ COMBI.Entity = "gms_runicinfuser"
COMBI.Req = {}
COMBI.Req["Stone"] = 100
-COMBI.Req["Strange_Stone"] = 15
+COMBI.Req["Strange Stone"] = 15
COMBI.Results = {}
-COMBI.Results["Pickaxe_Handle"] = 1
+COMBI.Results["Pickaxe Handle"] = 1
GMS.RegisterCombi( COMBI, "gms_runicinfuser" )
@@ -51,10 +51,10 @@ COMBI.Description = "A strange pickaxe that has a tendency to only mine a weird
COMBI.Entity = "gms_runicinfuser"
COMBI.Req = {}
-COMBI.Req["Pickaxe_Head"] = 1
-COMBI.Req["Pickaxe_Handle"] = 1
-COMBI.Req["Air_Rune"] = 3
-COMBI.Req["Strange_Stone"] = 15
+COMBI.Req["Pickaxe Head"] = 1
+COMBI.Req["Pickaxe Handle"] = 1
+COMBI.Req["Air Rune"] = 3
+COMBI.Req["Strange Stone"] = 15
COMBI.Texture = "gms_icons/gms_weapon.png"
COMBI.SwepClass = "gms_runeapickaxe"
@@ -68,10 +68,10 @@ COMBI.Description = "A strange pickaxe that has a tendency to only mine a weird
COMBI.Entity = "gms_runicinfuser"
COMBI.Req = {}
-COMBI.Req["Pickaxe_Head"] = 1
-COMBI.Req["Pickaxe_Handle"] = 1
-COMBI.Req["Earth_Rune"] = 3
-COMBI.Req["Strange_Stone"] = 15
+COMBI.Req["Pickaxe Head"] = 1
+COMBI.Req["Pickaxe Handle"] = 1
+COMBI.Req["Earth Rune"] = 3
+COMBI.Req["Strange Stone"] = 15
COMBI.Texture = "gms_icons/gms_weapon.png"
COMBI.SwepClass = "gms_runeepickaxe"
@@ -85,10 +85,10 @@ COMBI.Description = "A strange pickaxe that has a tendency to only mine a weird
COMBI.Entity = "gms_runicinfuser"
COMBI.Req = {}
-COMBI.Req["Pickaxe_Head"] = 1
-COMBI.Req["Pickaxe_Handle"] = 1
-COMBI.Req["Fire_Rune"] = 3
-COMBI.Req["Strange_Stone"] = 15
+COMBI.Req["Pickaxe Head"] = 1
+COMBI.Req["Pickaxe Handle"] = 1
+COMBI.Req["Fire Rune"] = 3
+COMBI.Req["Strange Stone"] = 15
COMBI.Texture = "gms_icons/gms_weapon.png"
COMBI.SwepClass = "gms_runefpickaxe"
@@ -102,10 +102,10 @@ COMBI.Description = "A strange pickaxe that has a tendency to only mine a weird
COMBI.Entity = "gms_runicinfuser"
COMBI.Req = {}
-COMBI.Req["Pickaxe_Head"] = 1
-COMBI.Req["Pickaxe_Handle"] = 1
-COMBI.Req["Water_Rune"] = 3
-COMBI.Req["Strange_Stone"] = 15
+COMBI.Req["Pickaxe Head"] = 1
+COMBI.Req["Pickaxe Handle"] = 1
+COMBI.Req["Water Rune"] = 3
+COMBI.Req["Strange Stone"] = 15
COMBI.Texture = "gms_icons/gms_weapon.png"
COMBI.SwepClass = "gms_runewpickaxe"
diff --git a/gamemode/craftablesystem/misc/stove.lua b/gamemode/craftablesystem/misc/stove.lua
index 4a8291c..3bf38f3 100644
--- a/gamemode/craftablesystem/misc/stove.lua
+++ b/gamemode/craftablesystem/misc/stove.lua
@@ -68,7 +68,7 @@ COMBI.Req = {}
COMBI.Req["Bass"] = 1
COMBI.Req["Trout"] = 1
COMBI.Req["Spices"] = 2
-COMBI.Req["Water_Bottles"] = 2
+COMBI.Req["Water Bottles"] = 2
COMBI.SkillReq = {}
COMBI.SkillReq["Cooking"] = 2
@@ -87,7 +87,7 @@ COMBI.Entity = "gms_stove"
COMBI.Req = {}
COMBI.Req["Meat"] = 1
COMBI.Req["Spices"] = 1
-COMBI.Req["Water_Bottles"] = 1
+COMBI.Req["Water Bottles"] = 1
COMBI.SkillReq = {}
COMBI.SkillReq["Cooking"] = 2
@@ -118,7 +118,7 @@ COMBI.Entity = "gms_stove"
COMBI.Req = {}
COMBI.Req["Dough"] = 2
-COMBI.Req["Water_Bottles"] = 2
+COMBI.Req["Water Bottles"] = 2
COMBI.Req["Berries"] = 5
COMBI.SkillReq = {}
@@ -203,7 +203,7 @@ COMBI.Entity = "gms_stove"
COMBI.Req = {}
COMBI.Req["Dough"] = 2
-COMBI.Req["Water_Bottles"] = 1
+COMBI.Req["Water Bottles"] = 1
COMBI.SkillReq = {}
COMBI.SkillReq["Cooking"] = 5
@@ -221,7 +221,7 @@ COMBI.Entity = "gms_stove"
COMBI.Req = {}
COMBI.Req["Dough"] = 2
-COMBI.Req["Water_Bottles"] = 1
+COMBI.Req["Water Bottles"] = 1
COMBI.Req["Meat"] = 2
COMBI.SkillReq = {}