mirror of
https://github.com/PrairieAstronomer/minetest-technic_diamond.git
synced 2024-12-30 05:57:33 +01:00
Add files via upload
This commit is contained in:
parent
6ba55e986b
commit
bb99f46341
21
LICENSE.txt
Normal file
21
LICENSE.txt
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2021 PrairieWind
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
@ -1 +1 @@
|
||||
# minetest-technic_diamond
|
||||
# minetest-technic_diamond-mod A mod that adds the ability to grind diamonds in technic. Players can also turn coal dust into diamonds or back into coal. WARNING: This mod may cause inflation on economy servers.
|
2
depends.txt
Normal file
2
depends.txt
Normal file
@ -0,0 +1,2 @@
|
||||
default
|
||||
technic
|
7
init.lua
Normal file
7
init.lua
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
minetest.register_craftitem("technic_diamond:diamond_dust", { description="Diamond Dust", inventory_image = "technic_diamond_dust.png"})
|
||||
technic.register_grinder_recipe({ input = {"default:diamond"}, output = {"technic_diamond:diamond_dust 2"}})
|
||||
technic.register_compressor_recipe({ input = {"technic_diamond:diamond_dust"}, output = {"default:diamond"}})
|
||||
|
||||
technic.register_compressor_recipe({ input = {"technic:coal_dust 10"}, output = {"default:diamond"}})
|
||||
technic.register_compressor_recipe({ input = {"technic:coal_dust"}, input = {"default:coal_lump"}})
|
2
mod.conf
Normal file
2
mod.conf
Normal file
@ -0,0 +1,2 @@
|
||||
name = technic_diamond
|
||||
depends = default, technic
|
BIN
screenshot.png
Normal file
BIN
screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 209 KiB |
BIN
textures/Thumbs.db
Normal file
BIN
textures/Thumbs.db
Normal file
Binary file not shown.
BIN
textures/technic_diamond_dust.png
Normal file
BIN
textures/technic_diamond_dust.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 208 B |
Loading…
Reference in New Issue
Block a user