diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-25 22:06:26 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-25 22:06:26 -0400 |
| commit | 4adec24c3a2a53f518d817ae8a6ddd0c4c47422c (patch) | |
| tree | adb91a867dfda05f5c2880e19d0111fb657ecb9f /gamemode/structuresystem/structures/stonefurnace.lua | |
| parent | 699df0d5df4e7d00a0d2b838b8c851c9b5027cea (diff) | |
| download | gmstranded-4adec24c3a2a53f518d817ae8a6ddd0c4c47422c.tar.gz gmstranded-4adec24c3a2a53f518d817ae8a6ddd0c4c47422c.tar.bz2 gmstranded-4adec24c3a2a53f518d817ae8a6ddd0c4c47422c.zip | |
more work on the structure system
Diffstat (limited to 'gamemode/structuresystem/structures/stonefurnace.lua')
| -rw-r--r-- | gamemode/structuresystem/structures/stonefurnace.lua | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gamemode/structuresystem/structures/stonefurnace.lua b/gamemode/structuresystem/structures/stonefurnace.lua new file mode 100644 index 0000000..84c0311 --- /dev/null +++ b/gamemode/structuresystem/structures/stonefurnace.lua @@ -0,0 +1,31 @@ +local STRUCT = {} + +STRUCT.Name = "Stone Furnace" +STRUCT.Model = "models/props/de_inferno/ClayOven.mdl" + +STRUCT.Structure = { + {"models/props/de_inferno/ClayOven.mdl",Vector(0,0,0),Angle(0,0,0)} +} + +STRUCT.onInitialize = function(self) + print("Initalize called!") +end + +STRUCT.uniquedata = false + +STRUCT.onUse = function(self, ply) + print("I am the old use function!") +end + +STRUCT.Recipes = {} + +STRUCT.timemult = 0.5 +STRUCT.skillease = 0.25 + +genericMakeFurnace(STRUCT) +recipieForSmelt(STRUCT.Recipes,"Copper", "Smelt copper ore into copper", "Copper Ore", "Copper", {1,1}, {1,5,10}) + +print("stone furnace's recipies:") +PrintTable(STRUCT.Recipes) + +registerStructure(STRUCT) |
