Add blast resistance to a ton of blocks
This commit is contained in:
parent
6be056c0e7
commit
0aeb109c64
25 changed files with 99 additions and 8 deletions
|
@ -33,6 +33,7 @@ minetest.register_node("mcl_farming:wheat_1", {
|
|||
{-0.5, -0.5, -0.25, 0.5, 0.375, -0.25}, -- NodeBox4
|
||||
}
|
||||
},
|
||||
_mcl_blast_resistance = 0,
|
||||
})
|
||||
|
||||
minetest.register_node("mcl_farming:wheat_2", {
|
||||
|
@ -61,6 +62,7 @@ minetest.register_node("mcl_farming:wheat_2", {
|
|||
{-0.5, -0.5, -0.25, 0.5, 0.375, -0.25}, -- NodeBox4
|
||||
}
|
||||
},
|
||||
_mcl_blast_resistance = 0,
|
||||
})
|
||||
|
||||
minetest.register_node("mcl_farming:wheat_3", {
|
||||
|
@ -89,6 +91,7 @@ minetest.register_node("mcl_farming:wheat_3", {
|
|||
{-0.5, -0.5, -0.25, 0.5, 0.375, -0.25}, -- NodeBox4
|
||||
}
|
||||
},
|
||||
_mcl_blast_resistance = 0,
|
||||
})
|
||||
|
||||
minetest.register_node("mcl_farming:wheat", {
|
||||
|
@ -125,6 +128,7 @@ minetest.register_node("mcl_farming:wheat", {
|
|||
{-0.5, -0.5, -0.25, 0.5, 0.375, -0.25}, -- NodeBox4
|
||||
}
|
||||
},
|
||||
_mcl_blast_resistance = 0,
|
||||
})
|
||||
|
||||
mcl_farming:add_plant("mcl_farming:wheat", {"mcl_farming:wheat_1", "mcl_farming:wheat_2", "mcl_farming:wheat_3"}, 50, 20)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue