1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-22 04:30:17 +02:00

Update Moretrees

But keep our changes
This commit is contained in:
Ombridride 2014-12-25 18:55:50 +01:00
parent 3fce25aeab
commit 5b6c7f8d2d
111 changed files with 5 additions and 9 deletions

0
mods/moretrees/.gitignore vendored Executable file → Normal file
View File

0
mods/moretrees/LICENSE Executable file → Normal file
View File

0
mods/moretrees/README.md Executable file → Normal file
View File

0
mods/moretrees/biome_defs.lua Executable file → Normal file
View File

0
mods/moretrees/crafts.lua Executable file → Normal file
View File

0
mods/moretrees/default_settings.txt Executable file → Normal file
View File

0
mods/moretrees/depends.txt Executable file → Normal file
View File

0
mods/moretrees/init.lua Executable file → Normal file
View File

0
mods/moretrees/leafdecay.lua Executable file → Normal file
View File

0
mods/moretrees/locale/de.txt Executable file → Normal file
View File

0
mods/moretrees/locale/template.txt Executable file → Normal file
View File

14
mods/moretrees/node_defs.lua Executable file → Normal file
View File

@ -30,12 +30,10 @@ local dirs2 = { 12, 9, 18, 7, 12 }
local dirs3 = { 14, 11, 16, 5, 14 } local dirs3 = { 14, 11, 16, 5, 14 }
local moretrees_new_leaves_drawtype = "allfaces_optional" local moretrees_new_leaves_drawtype = "allfaces_optional"
local moretrees_new_leaves_extension = ".png"
local moretrees_plantlike_leaves_visual_scale = 1 local moretrees_plantlike_leaves_visual_scale = 1
if moretrees.plantlike_leaves then if moretrees.plantlike_leaves then
moretrees_new_leaves_drawtype = "plantlike" moretrees_new_leaves_drawtype = "plantlike"
moretrees_new_leaves_extension = "_plantlike.png"
moretrees_plantlike_leaves_visual_scale = 1.189 moretrees_plantlike_leaves_visual_scale = 1.189
end end
@ -50,8 +48,7 @@ if moretrees.plantlike_leaves then
minetest.override_item("default:leaves", { minetest.override_item("default:leaves", {
inventory_image = minetest.inventorycube("default_leaves.png"), inventory_image = minetest.inventorycube("default_leaves.png"),
drawtype = "plantlike", drawtype = "plantlike",
visual_scale = 1.189, visual_scale = 1.189
tiles = { "default_leaves_plantlike.png" }
}) })
else else
minetest.override_item("default:leaves", { minetest.override_item("default:leaves", {
@ -70,8 +67,7 @@ if moretrees.plantlike_leaves then
minetest.override_item("default:jungleleaves", { minetest.override_item("default:jungleleaves", {
inventory_image = minetest.inventorycube("default_jungleleaves.png"), inventory_image = minetest.inventorycube("default_jungleleaves.png"),
drawtype = "plantlike", drawtype = "plantlike",
visual_scale = 1.189, visual_scale = 1.189
tiles = { "default_jungleleaves_plantlike.png" }
}) })
else else
minetest.override_item("default:jungleleaves", { minetest.override_item("default:jungleleaves", {
@ -169,7 +165,7 @@ for i in ipairs(moretrees.treelist) do
drawtype = moretrees_new_leaves_drawtype, drawtype = moretrees_new_leaves_drawtype,
waving = moretrees_new_leaves_waving, waving = moretrees_new_leaves_waving,
visual_scale = moretrees_plantlike_leaves_visual_scale, visual_scale = moretrees_plantlike_leaves_visual_scale,
tiles = { "moretrees_"..treename.."_leaves"..moretrees_new_leaves_extension }, tiles = { "moretrees_"..treename.."_leaves.png" },
inventory_image = moretrees_leaves_inventory_image, inventory_image = moretrees_leaves_inventory_image,
paramtype = "light", paramtype = "light",
groups = {snappy=3, flammable=2, leaves=1, moretrees_leaves=1}, groups = {snappy=3, flammable=2, leaves=1, moretrees_leaves=1},
@ -314,7 +310,7 @@ for color = 1, 3 do
drawtype = moretrees_new_leaves_drawtype, drawtype = moretrees_new_leaves_drawtype,
waving = moretrees_new_leaves_waving, waving = moretrees_new_leaves_waving,
visual_scale = moretrees_plantlike_leaves_visual_scale, visual_scale = moretrees_plantlike_leaves_visual_scale,
tiles = {"moretrees_jungletree_leaves_"..jungleleaves[color]..moretrees_new_leaves_extension}, tiles = {"moretrees_jungletree_leaves_"..jungleleaves[color]..".png"},
inventory_image = moretrees_leaves_inventory_image, inventory_image = moretrees_leaves_inventory_image,
paramtype = "light", paramtype = "light",
groups = {snappy=3, flammable=2, leaves=1, moretrees_leaves=1}, groups = {snappy=3, flammable=2, leaves=1, moretrees_leaves=1},
@ -342,7 +338,7 @@ minetest.register_node("moretrees:fir_leaves_bright", {
waving = moretrees_new_leaves_waving, waving = moretrees_new_leaves_waving,
visual_scale = moretrees_plantlike_leaves_visual_scale, visual_scale = moretrees_plantlike_leaves_visual_scale,
description = S("Douglas Fir Leaves (Bright)"), description = S("Douglas Fir Leaves (Bright)"),
tiles = { "moretrees_fir_leaves_bright"..moretrees_new_leaves_extension }, tiles = { "moretrees_fir_leaves_bright.png" },
inventory_image = moretrees_leaves_inventory_image, inventory_image = moretrees_leaves_inventory_image,
paramtype = "light", paramtype = "light",
groups = {snappy=3, flammable=2, leaves=1, moretrees_leaves=1 }, groups = {snappy=3, flammable=2, leaves=1, moretrees_leaves=1 },

0
mods/moretrees/saplings.lua Executable file → Normal file
View File

Binary file not shown.

Before

Width:  |  Height:  |  Size: 390 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 404 B

0
mods/moretrees/textures/moretrees_acacia_leaves.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 340 B

After

Width:  |  Height:  |  Size: 340 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 278 B

0
mods/moretrees/textures/moretrees_acacia_sapling.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 359 B

After

Width:  |  Height:  |  Size: 359 B

0
mods/moretrees/textures/moretrees_acacia_trunk.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 682 B

After

Width:  |  Height:  |  Size: 682 B

0
mods/moretrees/textures/moretrees_acacia_trunk_top.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 731 B

After

Width:  |  Height:  |  Size: 731 B

0
mods/moretrees/textures/moretrees_acacia_wood.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 364 B

After

Width:  |  Height:  |  Size: 364 B

0
mods/moretrees/textures/moretrees_acorn.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 417 B

After

Width:  |  Height:  |  Size: 417 B

0
mods/moretrees/textures/moretrees_acorn_muffin.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 782 B

After

Width:  |  Height:  |  Size: 782 B

View File

Before

Width:  |  Height:  |  Size: 619 B

After

Width:  |  Height:  |  Size: 619 B

View File

Before

Width:  |  Height:  |  Size: 385 B

After

Width:  |  Height:  |  Size: 385 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 338 B

View File

Before

Width:  |  Height:  |  Size: 375 B

After

Width:  |  Height:  |  Size: 375 B

0
mods/moretrees/textures/moretrees_apple_tree_trunk.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 525 B

After

Width:  |  Height:  |  Size: 525 B

0
mods/moretrees/textures/moretrees_apple_tree_wood.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 481 B

After

Width:  |  Height:  |  Size: 481 B

0
mods/moretrees/textures/moretrees_beech_leaves.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 220 B

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 404 B

0
mods/moretrees/textures/moretrees_beech_sapling.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 372 B

After

Width:  |  Height:  |  Size: 372 B

0
mods/moretrees/textures/moretrees_beech_trunk.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 980 B

After

Width:  |  Height:  |  Size: 980 B

0
mods/moretrees/textures/moretrees_beech_trunk_top.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 947 B

After

Width:  |  Height:  |  Size: 947 B

0
mods/moretrees/textures/moretrees_beech_wood.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 197 B

After

Width:  |  Height:  |  Size: 197 B

0
mods/moretrees/textures/moretrees_birch_leaves.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 496 B

After

Width:  |  Height:  |  Size: 496 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 433 B

0
mods/moretrees/textures/moretrees_birch_sapling.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 465 B

After

Width:  |  Height:  |  Size: 465 B

0
mods/moretrees/textures/moretrees_birch_trunk.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 975 B

After

Width:  |  Height:  |  Size: 975 B

0
mods/moretrees/textures/moretrees_birch_trunk_top.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 832 B

After

Width:  |  Height:  |  Size: 832 B

0
mods/moretrees/textures/moretrees_birch_wood.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

0
mods/moretrees/textures/moretrees_coconut.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 985 B

After

Width:  |  Height:  |  Size: 985 B

0
mods/moretrees/textures/moretrees_coconut_milk.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 227 B

After

Width:  |  Height:  |  Size: 227 B

0
mods/moretrees/textures/moretrees_coconut_milk_inv.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 275 B

After

Width:  |  Height:  |  Size: 275 B

0
mods/moretrees/textures/moretrees_fir_cone.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 244 B

After

Width:  |  Height:  |  Size: 244 B

0
mods/moretrees/textures/moretrees_fir_leaves.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 225 B

After

Width:  |  Height:  |  Size: 225 B

View File

Before

Width:  |  Height:  |  Size: 225 B

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 B

0
mods/moretrees/textures/moretrees_fir_nuts.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 390 B

After

Width:  |  Height:  |  Size: 390 B

0
mods/moretrees/textures/moretrees_fir_sapling.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 325 B

After

Width:  |  Height:  |  Size: 325 B

0
mods/moretrees/textures/moretrees_fir_trunk.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 770 B

After

Width:  |  Height:  |  Size: 770 B

0
mods/moretrees/textures/moretrees_fir_trunk_top.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 942 B

After

Width:  |  Height:  |  Size: 942 B

0
mods/moretrees/textures/moretrees_fir_wood.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

Before

Width:  |  Height:  |  Size: 220 B

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 B

View File

Before

Width:  |  Height:  |  Size: 220 B

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 B

View File

Before

Width:  |  Height:  |  Size: 220 B

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 B

0
mods/moretrees/textures/moretrees_oak_leaves.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 749 B

After

Width:  |  Height:  |  Size: 749 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 620 B

0
mods/moretrees/textures/moretrees_oak_sapling.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 409 B

After

Width:  |  Height:  |  Size: 409 B

0
mods/moretrees/textures/moretrees_oak_trunk.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 998 B

After

Width:  |  Height:  |  Size: 998 B

0
mods/moretrees/textures/moretrees_oak_trunk_top.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 542 B

After

Width:  |  Height:  |  Size: 542 B

0
mods/moretrees/textures/moretrees_oak_wood.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 618 B

After

Width:  |  Height:  |  Size: 618 B

0
mods/moretrees/textures/moretrees_palm_leaves.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 918 B

After

Width:  |  Height:  |  Size: 918 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 766 B

0
mods/moretrees/textures/moretrees_palm_sapling.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 259 B

After

Width:  |  Height:  |  Size: 259 B

0
mods/moretrees/textures/moretrees_palm_trunk.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 319 B

After

Width:  |  Height:  |  Size: 319 B

0
mods/moretrees/textures/moretrees_palm_trunk_top.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 422 B

After

Width:  |  Height:  |  Size: 422 B

0
mods/moretrees/textures/moretrees_palm_wood.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 598 B

After

Width:  |  Height:  |  Size: 598 B

0
mods/moretrees/textures/moretrees_pine_cone.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 336 B

After

Width:  |  Height:  |  Size: 336 B

0
mods/moretrees/textures/moretrees_pine_leaves.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 225 B

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 B

0
mods/moretrees/textures/moretrees_pine_nuts.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 399 B

After

Width:  |  Height:  |  Size: 399 B

0
mods/moretrees/textures/moretrees_pine_sapling.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 468 B

After

Width:  |  Height:  |  Size: 468 B

0
mods/moretrees/textures/moretrees_pine_trunk.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

0
mods/moretrees/textures/moretrees_pine_trunk_top.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 472 B

After

Width:  |  Height:  |  Size: 472 B

0
mods/moretrees/textures/moretrees_pine_wood.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 648 B

After

Width:  |  Height:  |  Size: 648 B

0
mods/moretrees/textures/moretrees_raw_coconut.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 484 B

After

Width:  |  Height:  |  Size: 484 B

View File

Before

Width:  |  Height:  |  Size: 220 B

After

Width:  |  Height:  |  Size: 220 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 206 B

View File

Before

Width:  |  Height:  |  Size: 304 B

After

Width:  |  Height:  |  Size: 304 B

View File

Before

Width:  |  Height:  |  Size: 723 B

After

Width:  |  Height:  |  Size: 723 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 556 B

After

Width:  |  Height:  |  Size: 556 B

0
mods/moretrees/textures/moretrees_rubber_tree_wood.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 454 B

After

Width:  |  Height:  |  Size: 454 B

0
mods/moretrees/textures/moretrees_sequoia_leaves.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 225 B

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 B

0
mods/moretrees/textures/moretrees_sequoia_sapling.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 462 B

After

Width:  |  Height:  |  Size: 462 B

0
mods/moretrees/textures/moretrees_sequoia_trunk.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 647 B

After

Width:  |  Height:  |  Size: 647 B

View File

Before

Width:  |  Height:  |  Size: 616 B

After

Width:  |  Height:  |  Size: 616 B

0
mods/moretrees/textures/moretrees_sequoia_wood.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

0
mods/moretrees/textures/moretrees_spruce_cone.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 496 B

After

Width:  |  Height:  |  Size: 496 B

0
mods/moretrees/textures/moretrees_spruce_leaves.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 225 B

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 212 B

0
mods/moretrees/textures/moretrees_spruce_nuts.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 396 B

After

Width:  |  Height:  |  Size: 396 B

0
mods/moretrees/textures/moretrees_spruce_sapling.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 291 B

After

Width:  |  Height:  |  Size: 291 B

Some files were not shown because too many files have changed in this diff Show More