Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -164,3 +164,10 @@ pip-log.txt
#gedit backup files
*~

#################
## IntelliJ Idea
#################

#Project files
.idea

2 changes: 1 addition & 1 deletion technic/crafts.lua
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ core.register_craft({
type = "shapeless",
replacements = {{mat.bucket_water,mat.bucket_empty}},
recipe = {
"technic:stone_dust",
"technic:silt",
"group:leaves",
mat.bucket_water,
"group:sand",
Expand Down
1 change: 1 addition & 0 deletions technic/locale/template.txt
Original file line number Diff line number Diff line change
Expand Up @@ -206,3 +206,4 @@ Wind Mill Frame=
Wrought Iron=
You are not allowed to edit this!=
Zinc=
Silt=
9 changes: 4 additions & 5 deletions technic/machines/register/grinder_recipes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ local recipes = {
{"technic:zinc_lump", "technic:zinc_dust 2"},
{"technic:lead_lump", "technic:lead_dust 2"},
{"technic:sulfur_lump", "technic:sulfur_dust 2"},
{mat.stone, "technic:stone_dust"},
{mat.sand, "technic:stone_dust"},
{mat.desert_sand, "technic:stone_dust"},
{mat.silver_sand, "technic:stone_dust"},
{mat.stone, "technic:silt"},
{mat.sand, "technic:silt"},
{mat.desert_sand, "technic:silt"},
{mat.silver_sand, "technic:silt"},

-- Other
{mat.cobble, mat.gravel},
Expand Down Expand Up @@ -119,7 +119,6 @@ register_dust("Gold", mat.gold_ingot)
register_dust("Mithril", mat.mithril_ingot)
register_dust("Silver", mat.silver_ingot)
register_dust("Stainless Steel", "technic:stainless_steel_ingot")
register_dust("Stone", mat.stone)
register_dust("Sulfur", nil)
register_dust("Tin", mat.tin_ingot)
register_dust("Wrought Iron", "technic:wrought_iron_ingot")
Expand Down
Binary file added technic/textures/technic_silt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions technic_worldgen/nodes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,24 @@ else
})
end

core.register_node(":technic:silt", {
description = S("Silt"),
groups = {
falling_node = 1, -- common
crumbly = 3, -- minetest game
handy = 1, shovely = 1, enderman_takable = 1, building_block = 1 -- mineclon*
},
is_ground_content = true,
_mcl_blast_resistance = 0.5,
_mcl_hardness = 0.5,
drawtype = "allfaces",
tiles = {"technic_silt.png"},
sounds = technic.sounds.node_sound_sand_defaults(),
_tnt_loss = 2,
})

core.register_alias("technic:stone_dust", "technic:silt")

core.register_node(":technic:uranium_block", {
description = S("Uranium Block"),
tiles = {"technic_uranium_block.png"},
Expand Down
Loading