Texture update: boats, big oak sapling, end stone bricks, sign

This commit is contained in:
Wuzzy 2017-02-06 17:58:26 +01:00
parent 9eb72e2703
commit 9df7c7bbc8
13 changed files with 5 additions and 4 deletions

View File

@ -136,6 +136,7 @@ end
local woods = { "", "_spruce", "_birch", "_jungle", "_dark", "_acacia" }
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 images = { "oak", "spruce", "birch", "jungle", "dark_oak", "acacia" }
for w=1, #woods do
local textures = {"mcl_boats_texture.png"}
@ -143,7 +144,7 @@ for w=1, #woods do
minetest.register_craftitem("mcl_boats:boat"..woods[w], {
description = names[w],
inventory_image = "mcl_boats_inventory.png",
inventory_image = "mcl_boats_"..images[w].."_boat.png",
liquids_pointable = true,
groups = { boat = 1, transport = 1},
stack_max = 1,

Binary file not shown.

After

Width:  |  Height:  |  Size: 844 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 848 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 839 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 848 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 849 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 840 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -9,7 +9,7 @@ minetest.register_node("mcl_end:end_stone", {
minetest.register_node("mcl_end:end_bricks", {
description = "End Stone Bricks",
tiles = {"mcl_end_end_stone_brick.png"},
tiles = {"mcl_end_end_bricks.png"},
is_ground_content = false,
stack_max = 64,
groups = {cracky=3,building_block=1},

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -188,10 +188,10 @@ end
minetest.register_node("signs:sign_wall", {
description = "Sign",
inventory_image = "default_sign_wall.png",
inventory_image = "default_sign.png",
walkable = false,
is_ground_content = false,
wield_image = "default_sign_wall.png",
wield_image = "default_sign.png",
node_placement_prediction = "",
paramtype = "light",
sunlight_propagates = true,