From 671afe4f2ece80877c776d47a9158e0b4e5d7bd5 Mon Sep 17 00:00:00 2001 From: Alexander Pickering Date: Sun, 1 May 2016 19:39:32 -0400 Subject: Updated itemsystem to compress how many files we need --- gamemode/itemsystem/items/admantineore.lua | 10 ----- gamemode/itemsystem/items/airrune.lua | 10 ----- gamemode/itemsystem/items/baits.lua | 10 ----- gamemode/itemsystem/items/basicrune.lua | 10 ----- gamemode/itemsystem/items/bass.lua | 10 ----- gamemode/itemsystem/items/batteries.lua | 10 ----- gamemode/itemsystem/items/cedar.lua | 10 ----- gamemode/itemsystem/items/charcoal.lua | 10 ----- gamemode/itemsystem/items/copperore.lua | 10 ----- gamemode/itemsystem/items/deaddroppable.lua | 67 +++++++++++++++++++++++++++++ gamemode/itemsystem/items/dough.lua | 10 ----- gamemode/itemsystem/items/dust.lua | 10 ----- gamemode/itemsystem/items/earthrune.lua | 10 ----- gamemode/itemsystem/items/elm.lua | 10 ----- gamemode/itemsystem/items/firerune.lua | 10 ----- gamemode/itemsystem/items/flashlight.lua | 10 ----- gamemode/itemsystem/items/glass.lua | 10 ----- gamemode/itemsystem/items/gold.lua | 10 ----- gamemode/itemsystem/items/goldore.lua | 10 ----- gamemode/itemsystem/items/gunpowder.lua | 10 ----- gamemode/itemsystem/items/herbs.lua | 10 ----- gamemode/itemsystem/items/iron.lua | 10 ----- gamemode/itemsystem/items/ironore.lua | 10 ----- gamemode/itemsystem/items/mahogany.lua | 10 ----- gamemode/itemsystem/items/maple.lua | 10 ----- gamemode/itemsystem/items/meat.lua | 10 ----- gamemode/itemsystem/items/mithirilore.lua | 10 ----- gamemode/itemsystem/items/pickaxehandle.lua | 10 ----- gamemode/itemsystem/items/pickaxehead.lua | 10 ----- gamemode/itemsystem/items/plastic.lua | 10 ----- gamemode/itemsystem/items/platinum.lua | 10 ----- gamemode/itemsystem/items/platinumore.lua | 10 ----- gamemode/itemsystem/items/puremithril.lua | 10 ----- gamemode/itemsystem/items/resin.lua | 10 ----- gamemode/itemsystem/items/salmon.lua | 10 ----- gamemode/itemsystem/items/sand.lua | 10 ----- gamemode/itemsystem/items/shark.lua | 10 ----- gamemode/itemsystem/items/silver.lua | 10 ----- gamemode/itemsystem/items/silverore.lua | 10 ----- gamemode/itemsystem/items/spices.lua | 10 ----- gamemode/itemsystem/items/sprout.lua | 1 + gamemode/itemsystem/items/steel.lua | 10 ----- gamemode/itemsystem/items/steelore.lua | 10 ----- gamemode/itemsystem/items/stone.lua | 10 ----- gamemode/itemsystem/items/strangestone.lua | 10 ----- gamemode/itemsystem/items/sulpher.lua | 10 ----- gamemode/itemsystem/items/teak.lua | 10 ----- gamemode/itemsystem/items/tech.lua | 10 ----- gamemode/itemsystem/items/techore.lua | 10 ----- gamemode/itemsystem/items/trout.lua | 10 ----- gamemode/itemsystem/items/urinebottle.lua | 10 ----- gamemode/itemsystem/items/waterrune.lua | 10 ----- gamemode/itemsystem/items/wood.lua | 10 ----- gamemode/itemsystem/items/wristwatch.lua | 10 ----- 54 files changed, 68 insertions(+), 520 deletions(-) delete mode 100644 gamemode/itemsystem/items/admantineore.lua delete mode 100644 gamemode/itemsystem/items/airrune.lua delete mode 100644 gamemode/itemsystem/items/baits.lua delete mode 100644 gamemode/itemsystem/items/basicrune.lua delete mode 100644 gamemode/itemsystem/items/bass.lua delete mode 100644 gamemode/itemsystem/items/batteries.lua delete mode 100644 gamemode/itemsystem/items/cedar.lua delete mode 100644 gamemode/itemsystem/items/charcoal.lua delete mode 100644 gamemode/itemsystem/items/copperore.lua create mode 100644 gamemode/itemsystem/items/deaddroppable.lua delete mode 100644 gamemode/itemsystem/items/dough.lua delete mode 100644 gamemode/itemsystem/items/dust.lua delete mode 100644 gamemode/itemsystem/items/earthrune.lua delete mode 100644 gamemode/itemsystem/items/elm.lua delete mode 100644 gamemode/itemsystem/items/firerune.lua delete mode 100644 gamemode/itemsystem/items/flashlight.lua delete mode 100644 gamemode/itemsystem/items/glass.lua delete mode 100644 gamemode/itemsystem/items/gold.lua delete mode 100644 gamemode/itemsystem/items/goldore.lua delete mode 100644 gamemode/itemsystem/items/gunpowder.lua delete mode 100644 gamemode/itemsystem/items/herbs.lua delete mode 100644 gamemode/itemsystem/items/iron.lua delete mode 100644 gamemode/itemsystem/items/ironore.lua delete mode 100644 gamemode/itemsystem/items/mahogany.lua delete mode 100644 gamemode/itemsystem/items/maple.lua delete mode 100644 gamemode/itemsystem/items/meat.lua delete mode 100644 gamemode/itemsystem/items/mithirilore.lua delete mode 100644 gamemode/itemsystem/items/pickaxehandle.lua delete mode 100644 gamemode/itemsystem/items/pickaxehead.lua delete mode 100644 gamemode/itemsystem/items/plastic.lua delete mode 100644 gamemode/itemsystem/items/platinum.lua delete mode 100644 gamemode/itemsystem/items/platinumore.lua delete mode 100644 gamemode/itemsystem/items/puremithril.lua delete mode 100644 gamemode/itemsystem/items/resin.lua delete mode 100644 gamemode/itemsystem/items/salmon.lua delete mode 100644 gamemode/itemsystem/items/sand.lua delete mode 100644 gamemode/itemsystem/items/shark.lua delete mode 100644 gamemode/itemsystem/items/silver.lua delete mode 100644 gamemode/itemsystem/items/silverore.lua delete mode 100644 gamemode/itemsystem/items/spices.lua delete mode 100644 gamemode/itemsystem/items/steel.lua delete mode 100644 gamemode/itemsystem/items/steelore.lua delete mode 100644 gamemode/itemsystem/items/stone.lua delete mode 100644 gamemode/itemsystem/items/strangestone.lua delete mode 100644 gamemode/itemsystem/items/sulpher.lua delete mode 100644 gamemode/itemsystem/items/teak.lua delete mode 100644 gamemode/itemsystem/items/tech.lua delete mode 100644 gamemode/itemsystem/items/techore.lua delete mode 100644 gamemode/itemsystem/items/trout.lua delete mode 100644 gamemode/itemsystem/items/urinebottle.lua delete mode 100644 gamemode/itemsystem/items/waterrune.lua delete mode 100644 gamemode/itemsystem/items/wood.lua delete mode 100644 gamemode/itemsystem/items/wristwatch.lua (limited to 'gamemode') diff --git a/gamemode/itemsystem/items/admantineore.lua b/gamemode/itemsystem/items/admantineore.lua deleted file mode 100644 index 2b1ac16..0000000 --- a/gamemode/itemsystem/items/admantineore.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Adamantine Ore" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/airrune.lua b/gamemode/itemsystem/items/airrune.lua deleted file mode 100644 index 590201f..0000000 --- a/gamemode/itemsystem/items/airrune.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Air Rune" -ITEM.Description = "This stone seems like it should be heavier." -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/baits.lua b/gamemode/itemsystem/items/baits.lua deleted file mode 100644 index 47a6fbb..0000000 --- a/gamemode/itemsystem/items/baits.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Baits" -ITEM.Description = "Something you can use to fish with! (Consumed automatically)" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/basicrune.lua b/gamemode/itemsystem/items/basicrune.lua deleted file mode 100644 index cfd73a7..0000000 --- a/gamemode/itemsystem/items/basicrune.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Basic Rune" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/bass.lua b/gamemode/itemsystem/items/bass.lua deleted file mode 100644 index c677243..0000000 --- a/gamemode/itemsystem/items/bass.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Bass" -ITEM.Description = "Don't drop it!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/batteries.lua b/gamemode/itemsystem/items/batteries.lua deleted file mode 100644 index 0e78a75..0000000 --- a/gamemode/itemsystem/items/batteries.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Batteries" -ITEM.Description = "It holds a charge!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/cedar.lua b/gamemode/itemsystem/items/cedar.lua deleted file mode 100644 index 683d3d9..0000000 --- a/gamemode/itemsystem/items/cedar.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Cedar" -ITEM.Description = "You can identify that this is wood." -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/charcoal.lua b/gamemode/itemsystem/items/charcoal.lua deleted file mode 100644 index a580582..0000000 --- a/gamemode/itemsystem/items/charcoal.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Charcoal" -ITEM.Description = "Bits of burnt wood." -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/copperore.lua b/gamemode/itemsystem/items/copperore.lua deleted file mode 100644 index c7e1fea..0000000 --- a/gamemode/itemsystem/items/copperore.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Copper Ore" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/deaddroppable.lua b/gamemode/itemsystem/items/deaddroppable.lua new file mode 100644 index 0000000..64b6933 --- /dev/null +++ b/gamemode/itemsystem/items/deaddroppable.lua @@ -0,0 +1,67 @@ +--A bunch of intermediate resources, since they're all almost the same code-wise, they're all collected here. + +--Try to keep this table in alphabetical order so if something needs changeing, you can find it +local tbl = { + {"Adamantine Ore","Something you can craft with!","test.png"}, + {"Air Rune","This stone seems like it should be heavier.","test.png"}, + {"Baits","Something you can use to fish with! (Consumed automatically)","test.png"}, + {"Basic Rune","Something you can craft with!","test.png"}, + {"Bass","Don't drop it!","test.png"}, + {"Batteries","It holds a charge!","test.png"}, + {"Cedar","You can identify that this is wood.","test.png"}, + {"Charcoal","Bits of burnt wood.","test.png"}, + {"Copper Ore","Something you can craft with!","test.png"}, + {"Dough","Something you can craft with!","test.png"}, + {"Dust","Ever wondered what would happen if sand got smaller?","test.png"}, + {"Earth Rune","A stone that's heavier than it looks.","test.png"}, + {"Elm","You can identify that this is wood.","test.png"}, + {"Fire Rune","A slightly warm stone.","test.png"}, + {"Flashlight","Lights up the dark!","test.png"}, + {"Glass","Useful in construction!","test.png"}, + {"Gold","You're Rich!","test.png"}, + {"Gold Ore","Something you can craft with!","test.png"}, + {"Gunpowder","Something you can craft with!","test.png"}, + {"Herbs","Blech, vegtables...","test.png"}, + {"Iron","Something you can craft with!","test.png"}, + {"Iron Ore","Something you can craft with!","test.png"}, + {"Mahogany","A rich dark color.","test.png"}, + {"Maple","It's some nice wood, Eh?","test.png"}, + {"Meat","Something you can craft with!","test.png"}, + {"Mithril Ore","Something you can craft with!","test.png"}, + {"Pickaxe Handle","Something you can craft with!","test.png"}, + {"Pickaxe Head","Something you can craft with!","test.png"}, + {"Plastic","Some solidified resin!","test.png"}, + {"Platinum","Something you can craft with!","test.png"}, + {"Platinum Ore","Something you can craft with!","test.png"}, + {"Pure Mithril","Something you can craft with!","test.png"}, + {"Resin","Something you can craft with!","test.png"}, + {"Salmon","Something you can craft with!","test.png"}, + {"Sand","How in the world are you holding this stuff?","test.png"}, + {"Shark","Something you can craft with!","test.png"}, + {"Silver","Something you can craft with!","test.png"}, + {"Silver Ore","Something you can craft with!","test.png"}, + {"Spices","Freshen up that stinking mutton!","test.png"}, + {"Steel","Something you can craft with!","test.png"}, + {"Steel Ore","Something you can craft with!","test.png"}, + {"Stone","Something you can craft with!","test.png"}, + {"Strange Stone","Something you can craft with!","test.png"}, + {"Sulpher","Watch out, it's explosive!","test.png"}, + {"Teak","You've got wood.","test.png"}, + {"Tech","You're blinded by SCIENCE!","test.png"}, + {"Tech Ore","Something you can craft with!","test.png"}, + {"Trout","A flippy floppy fish!","test.png"}, + {"Urine Bottles","Something you can craft with!","test.png"}, + {"Water Rune","Whenever you touch it, your hand feels slightly damp.","test.png"}, + {"Wood","Something you can craft with!","test.png"}, + {"Wrist Watch","See the time wherever you go!","test.png"}, +} + +for k,v in pairs(tbl) do + local ITEM = {} + ITEM.Name = v[1] + ITEM.Description = v[2] + ITEM.Icon = v[3] + ITEM.UniqueData = false + genericMakeDroppable(ITEM) + GMS.RegisterResource(ITEM) +end diff --git a/gamemode/itemsystem/items/dough.lua b/gamemode/itemsystem/items/dough.lua deleted file mode 100644 index 9ca67c9..0000000 --- a/gamemode/itemsystem/items/dough.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Dough" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/dust.lua b/gamemode/itemsystem/items/dust.lua deleted file mode 100644 index e73ced7..0000000 --- a/gamemode/itemsystem/items/dust.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Dust" -ITEM.Description = "Ever wondered what would happen if sand got smaller?" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/earthrune.lua b/gamemode/itemsystem/items/earthrune.lua deleted file mode 100644 index 15f9caf..0000000 --- a/gamemode/itemsystem/items/earthrune.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Earth Rune" -ITEM.Description = "A stone that's heavier than it looks." -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/elm.lua b/gamemode/itemsystem/items/elm.lua deleted file mode 100644 index ab62432..0000000 --- a/gamemode/itemsystem/items/elm.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Elm" -ITEM.Description = "You can identify that this is wood." -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/firerune.lua b/gamemode/itemsystem/items/firerune.lua deleted file mode 100644 index c1bad32..0000000 --- a/gamemode/itemsystem/items/firerune.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Fire Rune" -ITEM.Description = "A slightly warm stone." -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/flashlight.lua b/gamemode/itemsystem/items/flashlight.lua deleted file mode 100644 index 7c6e966..0000000 --- a/gamemode/itemsystem/items/flashlight.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Flashlight" -ITEM.Description = "Lights up the dark!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/glass.lua b/gamemode/itemsystem/items/glass.lua deleted file mode 100644 index 3827185..0000000 --- a/gamemode/itemsystem/items/glass.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Glass" -ITEM.Description = "Useful in construction!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/gold.lua b/gamemode/itemsystem/items/gold.lua deleted file mode 100644 index 9d354db..0000000 --- a/gamemode/itemsystem/items/gold.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Gold" -ITEM.Description = "You're Rich!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/goldore.lua b/gamemode/itemsystem/items/goldore.lua deleted file mode 100644 index a5b1a53..0000000 --- a/gamemode/itemsystem/items/goldore.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Gold Ore" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/gunpowder.lua b/gamemode/itemsystem/items/gunpowder.lua deleted file mode 100644 index 63166a7..0000000 --- a/gamemode/itemsystem/items/gunpowder.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Gunpowder" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/herbs.lua b/gamemode/itemsystem/items/herbs.lua deleted file mode 100644 index f0b9dc8..0000000 --- a/gamemode/itemsystem/items/herbs.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Herbs" -ITEM.Description = "Blech, vegtables..." -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/iron.lua b/gamemode/itemsystem/items/iron.lua deleted file mode 100644 index 0cf2e5d..0000000 --- a/gamemode/itemsystem/items/iron.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Iron" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/ironore.lua b/gamemode/itemsystem/items/ironore.lua deleted file mode 100644 index b94d9eb..0000000 --- a/gamemode/itemsystem/items/ironore.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Iron Ore" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/mahogany.lua b/gamemode/itemsystem/items/mahogany.lua deleted file mode 100644 index 6747457..0000000 --- a/gamemode/itemsystem/items/mahogany.lua +++ /dev/null @@ -1,10 +0,0 @@ -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/maple.lua b/gamemode/itemsystem/items/maple.lua deleted file mode 100644 index 6a9b1d5..0000000 --- a/gamemode/itemsystem/items/maple.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Maple" -ITEM.Description = "It's some nice wood, Eh?" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/meat.lua b/gamemode/itemsystem/items/meat.lua deleted file mode 100644 index 55ecfdf..0000000 --- a/gamemode/itemsystem/items/meat.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Meat" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/mithirilore.lua b/gamemode/itemsystem/items/mithirilore.lua deleted file mode 100644 index da3dea8..0000000 --- a/gamemode/itemsystem/items/mithirilore.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Mithril Ore" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/pickaxehandle.lua b/gamemode/itemsystem/items/pickaxehandle.lua deleted file mode 100644 index 37ad091..0000000 --- a/gamemode/itemsystem/items/pickaxehandle.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Pickaxe Handle" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/pickaxehead.lua b/gamemode/itemsystem/items/pickaxehead.lua deleted file mode 100644 index c68726b..0000000 --- a/gamemode/itemsystem/items/pickaxehead.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Pickaxe Head" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/plastic.lua b/gamemode/itemsystem/items/plastic.lua deleted file mode 100644 index 749e242..0000000 --- a/gamemode/itemsystem/items/plastic.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Plastic" -ITEM.Description = "Some solidified resin!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/platinum.lua b/gamemode/itemsystem/items/platinum.lua deleted file mode 100644 index b6c8985..0000000 --- a/gamemode/itemsystem/items/platinum.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Platinum" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/platinumore.lua b/gamemode/itemsystem/items/platinumore.lua deleted file mode 100644 index 14b3f62..0000000 --- a/gamemode/itemsystem/items/platinumore.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Platinum Ore" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/puremithril.lua b/gamemode/itemsystem/items/puremithril.lua deleted file mode 100644 index 80ad764..0000000 --- a/gamemode/itemsystem/items/puremithril.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Pure Mithril" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/resin.lua b/gamemode/itemsystem/items/resin.lua deleted file mode 100644 index 80ab286..0000000 --- a/gamemode/itemsystem/items/resin.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Resin" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/salmon.lua b/gamemode/itemsystem/items/salmon.lua deleted file mode 100644 index c7fdc9d..0000000 --- a/gamemode/itemsystem/items/salmon.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Salmon" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/sand.lua b/gamemode/itemsystem/items/sand.lua deleted file mode 100644 index 37924e7..0000000 --- a/gamemode/itemsystem/items/sand.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Sand" -ITEM.Description = "How in the world are you holding this stuff?" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/shark.lua b/gamemode/itemsystem/items/shark.lua deleted file mode 100644 index 986b61c..0000000 --- a/gamemode/itemsystem/items/shark.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Shark" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/silver.lua b/gamemode/itemsystem/items/silver.lua deleted file mode 100644 index 4a61ddc..0000000 --- a/gamemode/itemsystem/items/silver.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Silver" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/silverore.lua b/gamemode/itemsystem/items/silverore.lua deleted file mode 100644 index f0b0505..0000000 --- a/gamemode/itemsystem/items/silverore.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Silver Ore" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/spices.lua b/gamemode/itemsystem/items/spices.lua deleted file mode 100644 index 64eda20..0000000 --- a/gamemode/itemsystem/items/spices.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Spices" -ITEM.Description = "Freshen up that stinking mutton!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/sprout.lua b/gamemode/itemsystem/items/sprout.lua index 93d5646..9b8714b 100644 --- a/gamemode/itemsystem/items/sprout.lua +++ b/gamemode/itemsystem/items/sprout.lua @@ -1,3 +1,4 @@ +--TODO:Make this plantable ITEM = {} ITEM.Name = "Sprouts" diff --git a/gamemode/itemsystem/items/steel.lua b/gamemode/itemsystem/items/steel.lua deleted file mode 100644 index 77e79e1..0000000 --- a/gamemode/itemsystem/items/steel.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Steel" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/steelore.lua b/gamemode/itemsystem/items/steelore.lua deleted file mode 100644 index c245ade..0000000 --- a/gamemode/itemsystem/items/steelore.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Steel Ore" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/stone.lua b/gamemode/itemsystem/items/stone.lua deleted file mode 100644 index d288d27..0000000 --- a/gamemode/itemsystem/items/stone.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Stone" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/strangestone.lua b/gamemode/itemsystem/items/strangestone.lua deleted file mode 100644 index 9d684ce..0000000 --- a/gamemode/itemsystem/items/strangestone.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Strange Stone" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/sulpher.lua b/gamemode/itemsystem/items/sulpher.lua deleted file mode 100644 index f4fcc63..0000000 --- a/gamemode/itemsystem/items/sulpher.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Sulpher" -ITEM.Description = "Watch out, it's explosive!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/teak.lua b/gamemode/itemsystem/items/teak.lua deleted file mode 100644 index e56ff68..0000000 --- a/gamemode/itemsystem/items/teak.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Teak" -ITEM.Description = "You've got wood." -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/tech.lua b/gamemode/itemsystem/items/tech.lua deleted file mode 100644 index 4cdc90e..0000000 --- a/gamemode/itemsystem/items/tech.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Tech" -ITEM.Description = "You're blinded by SCIENCE!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/techore.lua b/gamemode/itemsystem/items/techore.lua deleted file mode 100644 index cc494e6..0000000 --- a/gamemode/itemsystem/items/techore.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Tech Ore" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/trout.lua b/gamemode/itemsystem/items/trout.lua deleted file mode 100644 index 4713ac3..0000000 --- a/gamemode/itemsystem/items/trout.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "A flippy floppy fish!" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/urinebottle.lua b/gamemode/itemsystem/items/urinebottle.lua deleted file mode 100644 index cdf1e76..0000000 --- a/gamemode/itemsystem/items/urinebottle.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Urine Bottles" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/waterrune.lua b/gamemode/itemsystem/items/waterrune.lua deleted file mode 100644 index 7bce7ac..0000000 --- a/gamemode/itemsystem/items/waterrune.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Water Rune" -ITEM.Description = "Whenever you touch it, your hand feels slightly damp." -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/wood.lua b/gamemode/itemsystem/items/wood.lua deleted file mode 100644 index ec9c261..0000000 --- a/gamemode/itemsystem/items/wood.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Wood" -ITEM.Description = "Something you can craft with!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) diff --git a/gamemode/itemsystem/items/wristwatch.lua b/gamemode/itemsystem/items/wristwatch.lua deleted file mode 100644 index 7d01f26..0000000 --- a/gamemode/itemsystem/items/wristwatch.lua +++ /dev/null @@ -1,10 +0,0 @@ -ITEM = {} - -ITEM.Name = "Wrist Watch" -ITEM.Description = "See the time wherever you go!" -ITEM.Icon = "test.png" -ITEM.UniqueData = false - -genericMakeDroppable(ITEM) - -GMS.RegisterResource(ITEM) -- cgit v1.2.3-70-g09d2