Add files via upload

This commit is contained in:
PrairieAstronomer 2021-02-09 20:40:45 -07:00 committed by GitHub
parent 6ba55e986b
commit bb99f46341
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 33 additions and 1 deletions

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

@ -0,0 +1,2 @@
default
technic

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

@ -0,0 +1,2 @@
name = technic_diamond
depends = default, technic

BIN
screenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 KiB

BIN
textures/Thumbs.db Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 B