diff options
| author | Scott <scotth0828@gmail.com> | 2016-05-06 18:25:01 -0400 |
|---|---|---|
| committer | Scott <scotth0828@gmail.com> | 2016-05-06 18:25:01 -0400 |
| commit | 859ca4d379c1a0805177e2916d35f0a4edd00f7f (patch) | |
| tree | db8024ed9416b6c2c6a3469bedf4d9f63b6d1f45 | |
| parent | 6644afa5b7bc77fee28809f953c17433862e2f9d (diff) | |
| download | gmstranded-859ca4d379c1a0805177e2916d35f0a4edd00f7f.tar.gz gmstranded-859ca4d379c1a0805177e2916d35f0a4edd00f7f.tar.bz2 gmstranded-859ca4d379c1a0805177e2916d35f0a4edd00f7f.zip | |
Flour and spices images added
| -rw-r--r-- | content/materials/items/flour.png | bin | 0 -> 6668 bytes | |||
| -rw-r--r-- | content/materials/items/spices.png | bin | 0 -> 4621 bytes | |||
| -rw-r--r-- | gamemode/craftablesystem/playermade/flour.lua | 1 | ||||
| -rw-r--r-- | gamemode/craftablesystem/playermade/spice.lua | 1 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/deaddroppable.lua | 3 |
5 files changed, 4 insertions, 1 deletions
diff --git a/content/materials/items/flour.png b/content/materials/items/flour.png Binary files differnew file mode 100644 index 0000000..cbcffd5 --- /dev/null +++ b/content/materials/items/flour.png diff --git a/content/materials/items/spices.png b/content/materials/items/spices.png Binary files differnew file mode 100644 index 0000000..2a0b24d --- /dev/null +++ b/content/materials/items/spices.png 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"}, |
