summaryrefslogtreecommitdiff
path: root/gamemode
diff options
context:
space:
mode:
authorScott <scotth0828@gmail.com>2016-05-06 18:25:01 -0400
committerScott <scotth0828@gmail.com>2016-05-06 18:25:01 -0400
commit859ca4d379c1a0805177e2916d35f0a4edd00f7f (patch)
treedb8024ed9416b6c2c6a3469bedf4d9f63b6d1f45 /gamemode
parent6644afa5b7bc77fee28809f953c17433862e2f9d (diff)
downloadgmstranded-859ca4d379c1a0805177e2916d35f0a4edd00f7f.tar.gz
gmstranded-859ca4d379c1a0805177e2916d35f0a4edd00f7f.tar.bz2
gmstranded-859ca4d379c1a0805177e2916d35f0a4edd00f7f.zip
Flour and spices images added
Diffstat (limited to 'gamemode')
-rw-r--r--gamemode/craftablesystem/playermade/flour.lua1
-rw-r--r--gamemode/craftablesystem/playermade/spice.lua1
-rw-r--r--gamemode/itemsystem/items/deaddroppable.lua3
3 files changed, 4 insertions, 1 deletions
diff --git a/gamemode/craftablesystem/playermade/flour.lua b/gamemode/craftablesystem/playermade/flour.lua
index 4ebd77d..3a9891e 100644
--- a/gamemode/craftablesystem/playermade/flour.lua
+++ b/gamemode/craftablesystem/playermade/flour.lua
@@ -2,6 +2,7 @@ local COMBI = {}
COMBI.Name = "Flour"
COMBI.Description = "Flour can be used for making dough."
+COMBI.Icon = "items/flour.png"
COMBI.Req = {}
COMBI.Req["Stone"] = 1
diff --git a/gamemode/craftablesystem/playermade/spice.lua b/gamemode/craftablesystem/playermade/spice.lua
index 3172ed5..f6f39e2 100644
--- a/gamemode/craftablesystem/playermade/spice.lua
+++ b/gamemode/craftablesystem/playermade/spice.lua
@@ -3,6 +3,7 @@ local COMBI = {}
COMBI.Name = "Spices"
COMBI.Description = "Spice can be used for various meals."
+COMBI.Icon = "items/spices.png"
COMBI.Req = {}
COMBI.Req["Stone"] = 1
diff --git a/gamemode/itemsystem/items/deaddroppable.lua b/gamemode/itemsystem/items/deaddroppable.lua
index 12bec62..0ea26e6 100644
--- a/gamemode/itemsystem/items/deaddroppable.lua
+++ b/gamemode/itemsystem/items/deaddroppable.lua
@@ -20,6 +20,7 @@ local tbl = {
{"Elm","You can identify that this is wood.","items/wood_elm.png"},
{"Fire Rune","A slightly warm stone.","test.png"},
{"Flashlight","Lights up the dark!","test.png"},
+ {"Flour","An item to craft with!","items/flour.png"},
{"Glass","Useful in construction!","test.png"},
{"Gold","You're Rich!","items/ingot_gold.png"},
{"Gold Ore","Something you can craft with!","items/ore_gold.png"},
@@ -45,7 +46,7 @@ local tbl = {
{"Shark","Something you can craft with!","test.png"},
{"Silver","Something you can craft with!","items/ingot_silver.png"},
{"Silver Ore","Something you can craft with!","items/ore_silver.png"},
- {"Spices","Freshen up that stinking mutton!","test.png"},
+ {"Spices","Freshen up that stinking mutton!","items/spices.png"},
{"Steel","Something you can craft with!","items/ingot_steel.png"},
{"Steel Ore","Something you can craft with!","items/ore_steel.png"},
{"Stone","Something you can craft with!","items/stone.png"},