Upload files to "/"

This commit is contained in:
Jammy 2024-12-07 01:56:38 +00:00
parent e0c27df8d7
commit 3566b3c19d
3 changed files with 14 additions and 3 deletions

View File

@ -1,5 +1,5 @@
register_craft({
minetest.register_craft({
type = "shapeless",
output = "basic_materials:gold_strip 10",
recipe = {
@ -7,7 +7,7 @@ register_craft({
}
})
register_craft({
minetest.register_craft({
type = "shapeless",
output = "default:gold_ingot",
recipe = {

10
init.lua Normal file
View File

@ -0,0 +1,10 @@
-- Gold Coins mod
-- by Jammy
-- This mod makes gold strips from basic_materials able to be crafted back to gold ingots
-- With this mod you can use gold strips as small denominations of gold
gold_coins = {}
gold_coins.mod = { author = "Jammy" }
gold_coins.modpath = minetest.get_modpath("gold_coins")
dofile(gold_coins.modpath .. "/crafts.lua")

View File

@ -1,2 +1,3 @@
name = gold_coins
depends = basic_materials
depends = basic_materials
min_minetest_version = 5.2.0