Texture update: boats, big oak sapling, end stone bricks, sign
|
@ -136,6 +136,7 @@ end
|
||||||
local woods = { "", "_spruce", "_birch", "_jungle", "_dark", "_acacia" }
|
local woods = { "", "_spruce", "_birch", "_jungle", "_dark", "_acacia" }
|
||||||
local names = { "Oak Boat", "Spruce Boat", "Birch Boat", "Jungle Boat", "Dark Oak Boat", "Acacia Boat" }
|
local names = { "Oak Boat", "Spruce Boat", "Birch Boat", "Jungle Boat", "Dark Oak Boat", "Acacia Boat" }
|
||||||
local craftstuffs = { "mcl_core:wood", "mcl_core:sprucewood", "mcl_core:birchwood", "mcl_core:junglewood", "mcl_core:darkwood", "mcl_core:acaciawood" }
|
local craftstuffs = { "mcl_core:wood", "mcl_core:sprucewood", "mcl_core:birchwood", "mcl_core:junglewood", "mcl_core:darkwood", "mcl_core:acaciawood" }
|
||||||
|
local images = { "oak", "spruce", "birch", "jungle", "dark_oak", "acacia" }
|
||||||
|
|
||||||
for w=1, #woods do
|
for w=1, #woods do
|
||||||
local textures = {"mcl_boats_texture.png"}
|
local textures = {"mcl_boats_texture.png"}
|
||||||
|
@ -143,7 +144,7 @@ for w=1, #woods do
|
||||||
|
|
||||||
minetest.register_craftitem("mcl_boats:boat"..woods[w], {
|
minetest.register_craftitem("mcl_boats:boat"..woods[w], {
|
||||||
description = names[w],
|
description = names[w],
|
||||||
inventory_image = "mcl_boats_inventory.png",
|
inventory_image = "mcl_boats_"..images[w].."_boat.png",
|
||||||
liquids_pointable = true,
|
liquids_pointable = true,
|
||||||
groups = { boat = 1, transport = 1},
|
groups = { boat = 1, transport = 1},
|
||||||
stack_max = 1,
|
stack_max = 1,
|
||||||
|
|
After Width: | Height: | Size: 844 B |
After Width: | Height: | Size: 848 B |
After Width: | Height: | Size: 839 B |
Before Width: | Height: | Size: 280 B |
After Width: | Height: | Size: 848 B |
After Width: | Height: | Size: 849 B |
After Width: | Height: | Size: 840 B |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 3.5 KiB |
|
@ -9,7 +9,7 @@ minetest.register_node("mcl_end:end_stone", {
|
||||||
|
|
||||||
minetest.register_node("mcl_end:end_bricks", {
|
minetest.register_node("mcl_end:end_bricks", {
|
||||||
description = "End Stone Bricks",
|
description = "End Stone Bricks",
|
||||||
tiles = {"mcl_end_end_stone_brick.png"},
|
tiles = {"mcl_end_end_bricks.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
stack_max = 64,
|
stack_max = 64,
|
||||||
groups = {cracky=3,building_block=1},
|
groups = {cracky=3,building_block=1},
|
||||||
|
|
After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.8 KiB |
|
@ -188,10 +188,10 @@ end
|
||||||
|
|
||||||
minetest.register_node("signs:sign_wall", {
|
minetest.register_node("signs:sign_wall", {
|
||||||
description = "Sign",
|
description = "Sign",
|
||||||
inventory_image = "default_sign_wall.png",
|
inventory_image = "default_sign.png",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
wield_image = "default_sign_wall.png",
|
wield_image = "default_sign.png",
|
||||||
node_placement_prediction = "",
|
node_placement_prediction = "",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
|
|