diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-01 12:21:57 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-01 12:21:57 -0400 |
| commit | 95a85da4da42d758f09b883fa655e947b7dfbfdc (patch) | |
| tree | 09bcb89eb1987806cc04f0f2b9ce97bbb4b28b58 /gamemode/itemsystem | |
| parent | 5f68ea128a2c4dfa2da8d78d33cb92506fed3286 (diff) | |
| download | gmstranded-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/itemsystem')
| -rw-r--r-- | gamemode/itemsystem/items/airrune.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/basicrune.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/bass.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/dough.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/dust.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/earthrune.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/firerune.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/meat.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/pickaxehandle.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/pickaxehead.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/plastic.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/resin.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/salmon.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/shark.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/spices.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/trout.lua | 10 | ||||
| -rw-r--r-- | gamemode/itemsystem/items/waterrune.lua | 10 |
17 files changed, 170 insertions, 0 deletions
diff --git a/gamemode/itemsystem/items/airrune.lua b/gamemode/itemsystem/items/airrune.lua new file mode 100644 index 0000000..590201f --- /dev/null +++ b/gamemode/itemsystem/items/airrune.lua @@ -0,0 +1,10 @@ +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/basicrune.lua b/gamemode/itemsystem/items/basicrune.lua new file mode 100644 index 0000000..cfd73a7 --- /dev/null +++ b/gamemode/itemsystem/items/basicrune.lua @@ -0,0 +1,10 @@ +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 new file mode 100644 index 0000000..c677243 --- /dev/null +++ b/gamemode/itemsystem/items/bass.lua @@ -0,0 +1,10 @@ +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/dough.lua b/gamemode/itemsystem/items/dough.lua new file mode 100644 index 0000000..9ca67c9 --- /dev/null +++ b/gamemode/itemsystem/items/dough.lua @@ -0,0 +1,10 @@ +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 new file mode 100644 index 0000000..e73ced7 --- /dev/null +++ b/gamemode/itemsystem/items/dust.lua @@ -0,0 +1,10 @@ +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 new file mode 100644 index 0000000..15f9caf --- /dev/null +++ b/gamemode/itemsystem/items/earthrune.lua @@ -0,0 +1,10 @@ +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/firerune.lua b/gamemode/itemsystem/items/firerune.lua new file mode 100644 index 0000000..c1bad32 --- /dev/null +++ b/gamemode/itemsystem/items/firerune.lua @@ -0,0 +1,10 @@ +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/meat.lua b/gamemode/itemsystem/items/meat.lua new file mode 100644 index 0000000..55ecfdf --- /dev/null +++ b/gamemode/itemsystem/items/meat.lua @@ -0,0 +1,10 @@ +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/pickaxehandle.lua b/gamemode/itemsystem/items/pickaxehandle.lua new file mode 100644 index 0000000..37ad091 --- /dev/null +++ b/gamemode/itemsystem/items/pickaxehandle.lua @@ -0,0 +1,10 @@ +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 new file mode 100644 index 0000000..c68726b --- /dev/null +++ b/gamemode/itemsystem/items/pickaxehead.lua @@ -0,0 +1,10 @@ +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 new file mode 100644 index 0000000..749e242 --- /dev/null +++ b/gamemode/itemsystem/items/plastic.lua @@ -0,0 +1,10 @@ +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/resin.lua b/gamemode/itemsystem/items/resin.lua new file mode 100644 index 0000000..80ab286 --- /dev/null +++ b/gamemode/itemsystem/items/resin.lua @@ -0,0 +1,10 @@ +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 new file mode 100644 index 0000000..c7fdc9d --- /dev/null +++ b/gamemode/itemsystem/items/salmon.lua @@ -0,0 +1,10 @@ +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/shark.lua b/gamemode/itemsystem/items/shark.lua new file mode 100644 index 0000000..986b61c --- /dev/null +++ b/gamemode/itemsystem/items/shark.lua @@ -0,0 +1,10 @@ +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/spices.lua b/gamemode/itemsystem/items/spices.lua new file mode 100644 index 0000000..64eda20 --- /dev/null +++ b/gamemode/itemsystem/items/spices.lua @@ -0,0 +1,10 @@ +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/trout.lua b/gamemode/itemsystem/items/trout.lua new file mode 100644 index 0000000..4713ac3 --- /dev/null +++ b/gamemode/itemsystem/items/trout.lua @@ -0,0 +1,10 @@ +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/waterrune.lua b/gamemode/itemsystem/items/waterrune.lua new file mode 100644 index 0000000..7bce7ac --- /dev/null +++ b/gamemode/itemsystem/items/waterrune.lua @@ -0,0 +1,10 @@ +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) |
