add mesecons mods

This commit is contained in:
N-Nachtigal 2025-07-26 18:53:34 +02:00
parent 71a53fbef8
commit 9861939223
721 changed files with 19937 additions and 1 deletions

View file

@ -0,0 +1 @@
Craftitem: It can't be placed! Made by cooking glue in the furnace. Used for insulated mesecon crafting.

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -0,0 +1 @@
Craftitem: It can't be placed! Made by cooking saplings in furnace. Used for sticky pistons and sticky movestones.

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -0,0 +1 @@
Silicon is just a craftitem: It can't be placed. You'll need it in order to craft other items.

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

View file

@ -0,0 +1,43 @@
local S = minetest.get_translator(minetest.get_current_modname())
-- Glue and fiber
minetest.register_craftitem("mesecons_materials:glue", {
inventory_image = "mesecons_glue.png",
on_place_on_ground = minetest.craftitem_place_item,
description = S("Glue"),
})
minetest.register_craftitem("mesecons_materials:fiber", {
inventory_image = "mesecons_fiber.png",
on_place_on_ground = minetest.craftitem_place_item,
description = S("Fiber"),
})
minetest.register_craft({
output = "mesecons_materials:glue 2",
type = "cooking",
recipe = "group:sapling",
cooktime = 2
})
minetest.register_craft({
output = "mesecons_materials:fiber 6",
type = "cooking",
recipe = "mesecons_materials:glue",
cooktime = 4
})
-- Silicon
minetest.register_craftitem("mesecons_materials:silicon", {
inventory_image = "mesecons_silicon.png",
on_place_on_ground = minetest.craftitem_place_item,
description = S("Silicon"),
})
minetest.register_craft({
output = "mesecons_materials:silicon 4",
recipe = {
{"group:sand", "group:sand"},
{"group:sand", "mesecons_gamecompat:steel_ingot"},
}
})

View file

@ -0,0 +1,4 @@
# textdomain: mesecons_materials
Glue=Klebstoff
Fiber=Faser
Silicon=Silizium

View file

@ -0,0 +1,6 @@
# textdomain: mesecons_materials
### init.lua ###
Glue=Gluo
Fiber=Fibro
Silicon=Silicio

View file

@ -0,0 +1,6 @@
# textdomain: mesecons_materials
### init.lua ###
Glue=Colle
Fiber=Fibre
Silicon=Silicone

View file

@ -0,0 +1,6 @@
# textdomain: mesecons_materials
### init.lua ###
Glue=Клей
Fiber=Волокно
Silicon=Кремний

View file

@ -0,0 +1,6 @@
# textdomain: mesecons_materials
### init.lua ###
Glue=Клей
Fiber=Волокно
Silicon=Кремній

View file

@ -0,0 +1,6 @@
# textdomain: mesecons_materials
### init.lua ###
Glue=
Fiber=
Silicon=

View file

@ -0,0 +1,2 @@
name = mesecons_materials
depends = mesecons_gamecompat

Binary file not shown.

After

Width:  |  Height:  |  Size: 427 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 421 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 B