├── .gitignore ├── .luacheckrc ├── LICENSE.txt ├── README.md ├── api.lua ├── documentation └── doc.md ├── init.lua ├── mod.conf ├── moretrees34.lua ├── settingtypes.txt ├── sounds └── tree_falling.ogg └── trees.lua /.gitignore: -------------------------------------------------------------------------------- 1 | ## Generic ignorable patterns and files 2 | *~ 3 | .*.swp 4 | debug.txt 5 | *.patch 6 | -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HybridDog/treecapitator/HEAD/.luacheckrc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HybridDog/treecapitator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HybridDog/treecapitator/HEAD/README.md -------------------------------------------------------------------------------- /api.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HybridDog/treecapitator/HEAD/api.lua -------------------------------------------------------------------------------- /documentation/doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HybridDog/treecapitator/HEAD/documentation/doc.md -------------------------------------------------------------------------------- /init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HybridDog/treecapitator/HEAD/init.lua -------------------------------------------------------------------------------- /mod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HybridDog/treecapitator/HEAD/mod.conf -------------------------------------------------------------------------------- /moretrees34.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HybridDog/treecapitator/HEAD/moretrees34.lua -------------------------------------------------------------------------------- /settingtypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HybridDog/treecapitator/HEAD/settingtypes.txt -------------------------------------------------------------------------------- /sounds/tree_falling.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HybridDog/treecapitator/HEAD/sounds/tree_falling.ogg -------------------------------------------------------------------------------- /trees.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HybridDog/treecapitator/HEAD/trees.lua --------------------------------------------------------------------------------