forked from minetest/minetest_game
Add stonebricks
This commit is contained in:
@ -31,7 +31,7 @@ Cisoun's WTFPL texture pack:
|
||||
default_chest_lock.png
|
||||
default_chest_side.png
|
||||
default_chest_top.png
|
||||
default_cobble.png
|
||||
default_stone_brick.png
|
||||
default_dirt.png
|
||||
default_grass.png
|
||||
default_grass_side.png
|
||||
@ -39,7 +39,6 @@ Cisoun's WTFPL texture pack:
|
||||
default_jungletree_top.png
|
||||
default_lava.png
|
||||
default_leaves.png
|
||||
default_mossycobble.png
|
||||
default_sand.png
|
||||
default_sapling.png
|
||||
default_sign_wall.png
|
||||
@ -60,6 +59,8 @@ Originating from G4JC's Almost MC Texture Pack:
|
||||
default_torch.png
|
||||
default_torch_on_ceiling.png
|
||||
default_torch_on_floor.png
|
||||
default_cobble.png
|
||||
default_mossycobble.png
|
||||
|
||||
VanessaE's animated torches (WTFPL):
|
||||
default_torch_animated.png
|
||||
|
@ -531,6 +531,15 @@ minetest.register_craft({
|
||||
{'default:obsidian_shard', 'default:obsidian_shard', 'default:obsidian_shard'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'default:stonebrick',
|
||||
recipe = {
|
||||
{'default:stone', 'default:stone'},
|
||||
{'default:stone', 'default:stone'},
|
||||
}
|
||||
})
|
||||
|
||||
--
|
||||
-- Crafting (tool repair)
|
||||
--
|
||||
@ -827,6 +836,14 @@ minetest.register_node("default:stone_with_mese", {
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:stonebrick", {
|
||||
description = "Stone Brick",
|
||||
tiles = {"default_stone_brick.png"},
|
||||
is_ground_content = true,
|
||||
groups = {cracky=3, stone=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("default:dirt_with_grass", {
|
||||
description = "Dirt with Grass",
|
||||
tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
|
||||
|
BIN
mods/default/textures/default_cobble.png
Executable file → Normal file
BIN
mods/default/textures/default_cobble.png
Executable file → Normal file
Binary file not shown.
Before Width: | Height: | Size: 744 B After Width: | Height: | Size: 589 B |
BIN
mods/default/textures/default_mossycobble.png
Executable file → Normal file
BIN
mods/default/textures/default_mossycobble.png
Executable file → Normal file
Binary file not shown.
Before Width: | Height: | Size: 988 B After Width: | Height: | Size: 853 B |
BIN
mods/default/textures/default_stone_brick.png
Executable file
BIN
mods/default/textures/default_stone_brick.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 744 B |
Reference in New Issue
Block a user