mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-24 18:00:29 +01:00
Make granite harder than regular stone
In real life granite is renowned for its hardness.
This commit is contained in:
parent
84cf6504c5
commit
0dfac3f484
@ -25,7 +25,7 @@ register_stair_slab_panel_micro("technic", "marble_bricks", "technic:marble_bric
|
|||||||
0)
|
0)
|
||||||
|
|
||||||
register_stair_slab_panel_micro("technic", "granite", "technic:granite",
|
register_stair_slab_panel_micro("technic", "granite", "technic:granite",
|
||||||
{cracky=3, not_in_creative_inventory=1},
|
{cracky=1, not_in_creative_inventory=1},
|
||||||
{"technic_granite.png"},
|
{"technic_granite.png"},
|
||||||
S("Granite"),
|
S("Granite"),
|
||||||
"granite",
|
"granite",
|
||||||
|
@ -90,7 +90,7 @@ technic.cnc.register_all("technic:marble",
|
|||||||
-- Granite
|
-- Granite
|
||||||
------------
|
------------
|
||||||
technic.cnc.register_all("technic:granite",
|
technic.cnc.register_all("technic:granite",
|
||||||
{cracky=3, not_in_creative_inventory=1},
|
{cracky=1, not_in_creative_inventory=1},
|
||||||
{"technic_granite.png"},
|
{"technic_granite.png"},
|
||||||
S("Granite"))
|
S("Granite"))
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ minetest.register_node( ":technic:granite", {
|
|||||||
description = S("Granite"),
|
description = S("Granite"),
|
||||||
tiles = { "technic_granite.png" },
|
tiles = { "technic_granite.png" },
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
groups = {cracky=3},
|
groups = {cracky=1},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user