diff --git a/mods/plantlife_modpack/bushes_classic/locale/fr.txt b/mods/plantlife_modpack/bushes_classic/locale/fr.txt new file mode 100644 index 00000000..ce806137 --- /dev/null +++ b/mods/plantlife_modpack/bushes_classic/locale/fr.txt @@ -0,0 +1,43 @@ +# Template + +Strawberry = Fraise +Blackberry = Mûre +Blueberry = Myrtille +Raspberry = Framboise +Gooseberry = Groseille +Mixed Berry = Mélange de baies +Basket with Strawberry Pies = Panier de tartes aux fraises +Basket with Blackberry Pies = Panier de tartes aux mûres +Basket with Blueberry Pies = Panier de tartes aux myrtilles +Basket with Raspberry Pies = Panier de tartes aux framboises +Basket with Gooseberry Pies = Panier de tartes aux groseilles +Basket with Mixed Berry Pies = Panier de tartes au mélange de baies +currently fruitless = actuellement sans fruit +Strawberry Bush = Buisson à fraise +Blackberry Bush = Buisson à mûre +Blueberry Bush = Buisson à myrtille +Raspberry Bush = Buisson à framboise +Gooseberry Bush = Buisson à groseille +Mixed Berry Bush = Buisson de baies mélangées +Basket = Panier +Sugar = Sucre +Raw Strawberry pie = Tarte crue aux fraises +Raw Blackberry pie = Tarte crue aux mûres +Raw Blueberry pie = Tarte crue aux myrtilles +Raw Raspberry pie = Tarte crue aux framboises +Raw Gooseberry pie = Tarte crue aux groseilles +Raw Mixed Berry pie = Tarte crue au mélange de baies +Cooked Strawberry pie = Tarte cuite aux fraises +Cooked Blackberry pie = Tarte cuite aux mûres +Cooked Blueberry pie = Tarte cuite aux myrtilles +Cooked Raspberry pie = Tarte cuite aux framboises +Cooked Gooseberry pie = Tarte cuite aux groseilles +Cooked Mixed Berry pie = Tarte cuite au mélange de baies +Slice of Strawberry pie = Part de tarte aux fraises +Slice of Blackberry pie = Part de tarte aux mûres +Slice of Blueberry pie = Part de tarte aux myrtilles +Slice of Raspberry pie = Part de tarts aux framboises +Slice of Gooseberry pie = Part de tarte aux groseilles +Slice of Mixed Berry pie = Part de tarte au mélange de baies + +[Bushes] Loaded. = [Buissons] Chargés. diff --git a/mods/plantlife_modpack/flowers_plus/init.lua b/mods/plantlife_modpack/flowers_plus/init.lua index 51edc223..02b7d084 100755 --- a/mods/plantlife_modpack/flowers_plus/init.lua +++ b/mods/plantlife_modpack/flowers_plus/init.lua @@ -242,18 +242,17 @@ for i in ipairs(flowers_list) do minetest.register_node(":flowers:potted_"..flower, { description = S("Potted "..flowerdesc), - drawtype = "plantlike", - tiles = { "flowers_potted_"..flower..".png" }, - inventory_image = "flowers_potted_"..flower..".png", - wield_image = "flowers_potted_"..flower..".png", + drawtype = "mesh", + mesh = "flowers_potted.obj", + tiles = { "flowers_potted_"..flower..".png", "flowers_potted.png" }, sunlight_propagates = true, paramtype = "light", walkable = false, - groups = { snappy = 3,flammable=2 }, - sounds = default.node_sound_leaves_defaults(), + groups = { snappy = 3, flammable=2 }, + sounds = default.node_sound_glass_defaults(), selection_box = { type = "fixed", - fixed = { -0.25, -0.5, -0.25, 0.25, 0.5, 0.25 }, + fixed = { -0.2, -0.5, -0.2, 0.2, 0.4, 0.2 }, }, }) @@ -497,14 +496,15 @@ plantslib:spawn_on_surfaces({ spawn_plants = {"flowers:sunflower"}, spawn_chance = SPAWN_CHANCE*2, spawn_surfaces = {"default:dirt_with_grass"}, - avoid_nodes = {"group:flower"}, + avoid_nodes = {"group:flower", "flowers:sunflower"}, seed_diff = flowers_seed_diff, light_min = 11, light_max = 14, min_elevation = 0, plantlife_limit = -0.9, temp_max = 0.53, - random_facedir = {0,3} + random_facedir = {0,3}, + avoid_radius = 5 }) -- crafting recipes! diff --git a/mods/plantlife_modpack/flowers_plus/locale/fr.txt b/mods/plantlife_modpack/flowers_plus/locale/fr.txt new file mode 100644 index 00000000..c4f47378 --- /dev/null +++ b/mods/plantlife_modpack/flowers_plus/locale/fr.txt @@ -0,0 +1,13 @@ +# Template + +Waterlily = Nénuphar +Seaweed = Algues +Potted Rose = Rose en pot +Potted Tulip = Tulipe en pot +Potted Yellow Dandelion = Pissenlit jaune en pot +Potted White Dandelion = Pissenlit blanc en pot +Potted Blue Geranium = Géranium bleu en pot +Potted Viola = Violette en pot +Flower Pot = Fleurs en pot + +[Flowers] Loaded. = [Fleurs] Chargées. diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_flowerpot.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_flowerpot.png old mode 100755 new mode 100644 index f1a16675..acd7c8df Binary files a/mods/plantlife_modpack/flowers_plus/textures/flowers_flowerpot.png and b/mods/plantlife_modpack/flowers_plus/textures/flowers_flowerpot.png differ diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted.png new file mode 100644 index 00000000..6505f05a Binary files /dev/null and b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted.png differ diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_bonsai.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_bonsai.png old mode 100755 new mode 100644 index 3f849582..f2a8c6c8 Binary files a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_bonsai.png and b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_bonsai.png differ diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_cactus.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_cactus.png old mode 100755 new mode 100644 index d978850c..725c6303 Binary files a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_cactus.png and b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_cactus.png differ diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_dandelion_white.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_dandelion_white.png old mode 100755 new mode 100644 index 78f2c891..0b0a8230 Binary files a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_dandelion_white.png and b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_dandelion_white.png differ diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_dandelion_yellow.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_dandelion_yellow.png old mode 100755 new mode 100644 index f04c0193..ec11c1c8 Binary files a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_dandelion_yellow.png and b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_dandelion_yellow.png differ diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_geranium.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_geranium.png old mode 100755 new mode 100644 index 915f76be..88de1d7f Binary files a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_geranium.png and b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_geranium.png differ diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_rose.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_rose.png old mode 100755 new mode 100644 index c55ec686..e3b841d2 Binary files a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_rose.png and b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_rose.png differ diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_tulip.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_tulip.png old mode 100755 new mode 100644 index d8dbfbb3..471fcd3a Binary files a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_tulip.png and b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_tulip.png differ diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_viola.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_viola.png old mode 100755 new mode 100644 index adeb3df1..7971c76a Binary files a/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_viola.png and b/mods/plantlife_modpack/flowers_plus/textures/flowers_potted_viola.png differ diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_seaweed.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_seaweed.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_seaweedLight.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_seaweedLight.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_seaweed_2.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_seaweed_2.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_seaweed_3.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_seaweed_3.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_seaweed_4.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_seaweed_4.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_22.5.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_22.5.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_45.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_45.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_67.5.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_67.5.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_small_1.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_small_1.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_small_2.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_small_2.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_small_3.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_small_3.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_small_4.png b/mods/plantlife_modpack/flowers_plus/textures/flowers_waterlily_small_4.png old mode 100755 new mode 100644 diff --git a/mods/plantlife_modpack/plants_lib/locale/fr.txt b/mods/plantlife_modpack/plants_lib/locale/fr.txt new file mode 100644 index 00000000..90709002 --- /dev/null +++ b/mods/plantlife_modpack/plants_lib/locale/fr.txt @@ -0,0 +1,5 @@ +# Template + +someone = quelqu'un +Sorry, %s owns that spot. = Désolé, %s possède cet endroit. +[Plantlife Library] Loaded = [Librairie Plantlife] Chargée. diff --git a/mods/plantlife_modpack/poisonivy/locale/fr.txt b/mods/plantlife_modpack/poisonivy/locale/fr.txt new file mode 100644 index 00000000..f033dc34 --- /dev/null +++ b/mods/plantlife_modpack/poisonivy/locale/fr.txt @@ -0,0 +1,7 @@ +# Template + +Poison ivy (seedling) = Sumac vénéneux (semis) +Poison ivy (sproutling) = Sumac vénéneux (pousse) +Poison ivy (climbing plant) = Sumac vénéneux (grimpant) + +[Poison Ivy] Loaded. = [Sumac vénéneux] Chargé. diff --git a/mods/plantlife_modpack/vines/vines.lua b/mods/plantlife_modpack/vines/vines.lua index 6b116b7b..82c5b2ab 100755 --- a/mods/plantlife_modpack/vines/vines.lua +++ b/mods/plantlife_modpack/vines/vines.lua @@ -26,7 +26,6 @@ vines.register_vine( 'vine', { spawn_delay = 500, spawn_chance = 100, spawn_surfaces = { - "default:leaves", "default:jungleleaves", "moretrees:jungletree_leaves_red", "moretrees:jungletree_leaves_yellow", @@ -48,7 +47,6 @@ vines.register_vine( 'side', { spawn_delay = 500, spawn_chance = 100, spawn_surfaces = { - "default:leaves", "default:jungleleaves", "moretrees:jungletree_leaves_red", "moretrees:jungletree_leaves_yellow",