diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-01 11:49:50 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-01 11:49:50 -0400 |
| commit | 4c19fc52eaceb3c00886cb915bd3d72bbd0965e8 (patch) | |
| tree | 947b1c1fee0edcfa8425e4a10015b77eaf9231a0 /gamemode | |
| parent | 859300053ba9f2b584d2e9a5bc47cca06617a6eb (diff) | |
| download | gmstranded-4c19fc52eaceb3c00886cb915bd3d72bbd0965e8.tar.gz gmstranded-4c19fc52eaceb3c00886cb915bd3d72bbd0965e8.tar.bz2 gmstranded-4c19fc52eaceb3c00886cb915bd3d72bbd0965e8.zip | |
Fixed recipies for steel furnace, added mahogany and steel resources
Diffstat (limited to 'gamemode')
| -rw-r--r-- | gamemode/craftablesystem/furnaces/steelfurnace.lua | 6 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/mahogany.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/steel.lua | 10 |
3 files changed, 23 insertions, 3 deletions
diff --git a/gamemode/craftablesystem/furnaces/steelfurnace.lua b/gamemode/craftablesystem/furnaces/steelfurnace.lua index d4680a9..55c1b26 100644 --- a/gamemode/craftablesystem/furnaces/steelfurnace.lua +++ b/gamemode/craftablesystem/furnaces/steelfurnace.lua @@ -22,7 +22,7 @@ COMBI.Description = "Platinum can be used to create more advanced buildings and COMBI.Entity = "gms_steelfurnace" COMBI.Req = {} -COMBI.Req["Platinum_Ore"] = 1 +COMBI.Req["Platinum Ore"] = 1 COMBI.Results = {} COMBI.Results["Platinum"] = 1 @@ -38,7 +38,7 @@ for k,v in pairs(PlatinumMultiples) do COMBI.Entity = "gms_steelfurnace" COMBI.Req = {} - COMBI.Req["Platinum_Ore"] = v + COMBI.Req["Platinum Ore"] = v COMBI.Results = {} COMBI.Results["Platinum"] = v @@ -54,7 +54,7 @@ COMBI.Description = "Platinum can be used to create more advanced buildings and COMBI.Entity = "gms_steelfurnace" COMBI.Req = {} -COMBI.Req["Platinum_Ore"] = 1 +COMBI.Req["Platinum Ore"] = 1 COMBI.Results = {} COMBI.Results["Platinum"] = 1 diff --git a/gamemode/itemsystem/items/mahogany.lua b/gamemode/itemsystem/items/mahogany.lua new file mode 100644 index 0000000..6747457 --- /dev/null +++ b/gamemode/itemsystem/items/mahogany.lua @@ -0,0 +1,10 @@ +ITEM = {} + +ITEM.Name = "Mahogany" +ITEM.Description = "A rich dark color." +ITEM.Icon = "test.png" +ITEM.UniqueData = false + +genericMakeDroppable(ITEM) + +GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/steel.lua b/gamemode/itemsystem/items/steel.lua new file mode 100644 index 0000000..77e79e1 --- /dev/null +++ b/gamemode/itemsystem/items/steel.lua @@ -0,0 +1,10 @@ +ITEM = {} + +ITEM.Name = "Steel" +ITEM.Description = "Something you can craft with!" +ITEM.Icon = "test.png" +ITEM.UniqueData = false + +genericMakeDroppable(ITEM) + +GMS.RegisterResource(ITEM) |
