first commit

master
runs 2020-10-24 13:32:56 +02:00
commit faf1e7626c
30 changed files with 809 additions and 0 deletions

1
README.md Normal file
View File

@ -0,0 +1 @@
# rainf

785
init.lua Normal file
View File

@ -0,0 +1,785 @@
local S = minetest.get_translator(minetest.get_current_modname())
local mg_name = minetest.get_mapgen_setting("mg_name")
local water_type
minetest.chat_send_all(mg_name)
if mg_name == "valleys" then
water_type= "default:river_water_source"
else
water_type= "default:water_source"
end
-- Register Biomes
minetest.register_biome({
name = "temperate_rainforest",
node_top = "rainf:meadow",
depth_top = 1,
node_filler = "swaz:silt",
depth_filler = 3,
node_riverbed = "default:sand",
depth_riverbed = 2,
node_water_top = water_type,
depth_water_top = 1,
node_stone = "rainf:granite",
y_max = 5,
y_min = 1,
heat_point = 45,
humidity_point = 75,
})
minetest.register_node("rainf:meadow", {
description = S("Meadow"),
tiles = {"rainf_meadow.png", "rainf_dirt.png",
{name = "rainf_dirt.png^rainf_dirt_with_grass_side.png",
tileable_vertical = false}},
groups = {crumbly = 3, soil = 1, spreading_dirt_type = 1},
drop = "swaz:mud",
sounds = default.node_sound_dirt_defaults({
footstep = {name = "default_grass_footstep", gain = 0.25},
}),
})
minetest.register_node("rainf:blossom_meadow", {
description = S("Blossom Meadow"),
tiles = {"rainf_blossom_meadow.png", "rainf_dirt.png",
{name = "rainf_dirt.png^rainf_dirt_with_grass_side.png",
tileable_vertical = false}},
groups = {crumbly = 3, soil = 1, spreading_dirt_type = 1},
drop = "swaz:mud",
sounds = default.node_sound_dirt_defaults({
footstep = {name = "default_grass_footstep", gain = 0.25},
}),
})
minetest.register_node("rainf:meadow_with_mud", {
description = S("Meadow with Mud"),
tiles = {"rainf_meadow_with_mud.png", "rainf_dirt.png",
{name = "rainf_dirt.png^rainf_dirt_with_grass_side.png",
tileable_vertical = false}},
groups = {crumbly = 3, soil = 1, spreading_dirt_type = 1},
drop = "swaz:mud",
sounds = default.node_sound_dirt_defaults({
footstep = {name = "default_grass_footstep", gain = 0.25},
}),
})
minetest.register_node("rainf:granite", {
description = S("Granite"),
tiles = {"rainf_granite.png"},
groups = {cracky = 3, stone = 1},
drop = "rainf:granite",
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("rainf:pink_granite", {
description = S("Pink Granite"),
tiles = {"rainf_pink_granite.png"},
groups = {cracky = 3, stone = 1},
drop = "rainf:pink_granite",
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("rainf:pink_granite_with_moss", {
description = S("Pink Granite with Moss"),
tiles = {"rainf_pink_granite.png^rainf_moss.png"},
groups = {cracky = 3, stone = 1},
drop = "rainf:pink_granite",
sounds = default.node_sound_stone_defaults(),
})
--Grasses
minetest.register_node("rainf:aloe_vera", {
description = S("Aloe Vera"),
drawtype = "plantlike",
waving = 1,
visual_scale = 1.0,
tiles = {"rainf_aloe_vera.png"},
inventory_image = "rainf_aloe_vera.png",
wield_image = "rainf_aloe_vera.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, flora = 1, attached_node = 1, flammable = 1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-4 / 16, -0.5, -4 / 16, 4 / 16, 0.0, 4 / 16},
},
})
minetest.register_node("rainf:weed", {
description = S("Weed"),
drawtype = "plantlike",
waving = 1,
visual_scale = 0.8,
tiles = {"rainf_weed.png"},
inventory_image = "rainf_weed.png",
wield_image = "rainf_weed.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, flora = 1, attached_node = 1, flammable = 1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-4 / 16, -0.5, -4 / 16, 4 / 16, 0.0, 4 / 16},
},
})
minetest.register_node("rainf:grass", {
description = S("Short Grass"),
drawtype = "plantlike",
waving = 1,
visual_scale = 0.8,
tiles = {"rainf_grass.png"},
inventory_image = "rainf_grass.png",
wield_image = "rainf_grass.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, flora = 1, attached_node = 1, flammable = 1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-4 / 16, -0.5, -4 / 16, 4 / 16, 0.0, 4 / 16},
},
})
--Flowers
minetest.register_node("rainf:pansy", {
description = S("Pansy"),
drawtype = "plantlike",
waving = 1,
visual_scale = 0.8,
tiles = {"rainf_pansy.png"},
inventory_image = "rainf_pansy.png",
wield_image = "rainf_pansy.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, flower = 1, flora = 1, attached_node = 1, flammable = 1, color_blue = 1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-2 / 16, -0.5, -2 / 16, 2 / 16, 0, 2 / 16},
},
})
minetest.register_node("rainf:dahlia", {
description = S("Dahlia"),
drawtype = "plantlike",
waving = 1,
visual_scale = 0.8,
tiles = {"rainf_dahlia.png"},
inventory_image = "rainf_dahlia.png",
wield_image = "rainf_dahlia.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, flower = 1, flora = 1, attached_node = 1, flammable = 1, color_orange = 1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-2 / 16, -0.5, -2 / 16, 2 / 16, 0, 2 / 16},
},
})
minetest.register_node("rainf:camomille", {
description = S("Camomille"),
drawtype = "plantlike",
waving = 1,
visual_scale = 0.8,
tiles = {"rainf_camomille.png"},
inventory_image = "rainf_camomille.png",
wield_image = "rainf_camomille.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, flower = 1, flora = 1, attached_node = 1, flammable = 1, color_white = 1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-2 / 16, -0.5, -2 / 16, 2 / 16, 0, 2 / 16},
},
})
minetest.register_node("rainf:red_daisy", {
description = S("Red Daisy"),
drawtype = "plantlike",
waving = 1,
visual_scale = 1.0,
tiles = {"rainf_red_daisy.png"},
inventory_image = "rainf_red_daisy.png",
wield_image = "rainf_red_daisy.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, flower = 1, flora = 1, attached_node = 1, flammable = 1, color_red = 1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-2 / 16, -0.5, -2 / 16, 2 / 16, 0, 2 / 16},
},
})
minetest.register_node("rainf:hyacinth", {
description = S("Hyacinth"),
drawtype = "plantlike",
waving = 1,
visual_scale = 1.0,
tiles = {"rainf_hyacinth.png"},
inventory_image = "rainf_hyacinth.png",
wield_image = "rainf_hyacinth.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, flower = 1, flora = 1, attached_node = 1, flammable = 1, color_yellow = 1},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-2 / 16, -0.5, -2 / 16, 2 / 16, 0, 2 / 16},
},
})
-- Vines and Grapes
minetest.register_node("rainf:grapes", {
description = S("Grapes"),
drawtype = "plantlike",
tiles = {"rainf_grapes.png"},
inventory_image = "rainf_grapes.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
is_ground_content = false,
selection_box = {
type = "fixed",
fixed = {-3 / 16, -7 / 16, -3 / 16, 3 / 16, 4 / 16, 3 / 16}
},
groups = {fleshy = 3, dig_immediate = 3, flammable = 2, leafdecay = 3, leafdecay_drop = 1},
on_use = minetest.item_eat(2),
sounds = default.node_sound_leaves_defaults(),
after_place_node = function(pos, placer, itemstack)
minetest.set_node(pos, {name = "rainf:grapes", param2 = 1})
end,
})
minetest.register_node("rainf:vine", {
description = S("Vine"),
drawtype = "plantlike",
waving = 1,
visual_scale = 1.0,
tiles = {"rainf_vine.png"},
inventory_image = "rainf_vine.png",
wield_image = "rainf_vine.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, flora = 1, attached_node = 1, flammable = 1,},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-2 / 16, -0.5, -2 / 16, 2 / 16, 0, 2 / 16},
},
})
minetest.register_node("rainf:grapevine", {
description = S("Grapevine"),
drawtype = "plantlike",
waving = 1,
visual_scale = 1.0,
tiles = {"rainf_grapevine.png"},
inventory_image = "rainf_grapevine.png",
wield_image = "rainf_grapevine.png",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
groups = {snappy = 3, flora = 1, attached_node = 1, flammable = 1,},
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "fixed",
fixed = {-2 / 16, -0.5, -2 / 16, 2 / 16, 0, 2 / 16},
},
on_rightclick = function(pos, node, player, itemstack, pointed_thing)
local inv = player:get_inventory()
if inv:room_for_item("main", "rainf:grapes") then
inv:add_item("main", "rainf:grapes")
minetest.set_node(pos, {name="rainf:vine"})
end
end
})
-- Mushroom
minetest.register_node("rainf:champignon", {
description = S("Champignon"),
visual_scale = 0.8,
tiles = {"rainf_champignon.png"},
inventory_image = "rainf_champignon.png",
wield_image = "rainf_champignon.png",
drawtype = "plantlike",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
buildable_to = true,
stack_max = 99,
groups = {snappy = 3, attached_node = 1, flammable = 1},
sounds = default.node_sound_leaves_defaults(),
on_use = minetest.item_eat(3),
selection_box = {
type = "fixed",
fixed = {-4 / 16, -0.5, -4 / 16, 4 / 16, -1 / 16, 4 / 16},
}
})
minetest.register_abm({
label = "Rainf Mushroom Spread",
nodenames = {"rainf:champignon"},
interval = 11,
chance = 150,
action = function(...)
flowers.mushroom_spread(...)
end,
})
--Pavements
local pavements= {
{name= "rainf:granite_wall", description= "Granite Wall", texture= "rainf_granite_wall.png",
amount = 8,
recipe = {
{'rainf:granite', 'rainf:granite', 'rainf:granite'},
{'rainf:granite', 'rainf:granite', 'rainf:granite'},
{'rainf:granite', 'rainf:granite', 'rainf:granite'},
}
},
}
for i = 1, #pavements do
minetest.register_node(pavements[i].name, {
description = S(pavements[i].description),
tiles = {pavements[i].texture},
is_ground_content = true,
groups = {cracky=3},
sounds = default.node_sound_stone_defaults(),
})
local amount
if pavements[i].amount then
amount = " ".. tostring(pavements[i].amount)
else
amount = "1"
end
minetest.register_craft({
output = pavements[i].name .. amount,
type = 'shaped',
recipe = pavements[i].recipe,
})
end
-- Register Decoration
-- IMPORTANT!
-- THE ORDER OF THE DECORATION MATTERS!
-- DO NOT SORT
if mg_name ~= "v6" and mg_name ~= "singlenode" then
--Water Source (4x4)
minetest.register_decoration({
deco_type = "schematic",
place_on = {"rainf:meadow"},
sidelen = 16,
noise_params = {
offset = 0.0009,
scale = 0.005,
spread = {x = 250, y = 250, z = 250},
seed = 2,
octaves = 3,
persist = 0.66
},
biomes = {"rainf"},
height = 2,
y_min = 2,
y_max = 1000,
place_offset_y = 0,
schematic = {
size = {x = 4, y = 1, z = 4},
data = {
{name = "rainf:meadow"}, {name = "rainf:meadow"}, {name = "rainf:meadow"},{name = "rainf:meadow"},
{name = "rainf:meadow"}, {name = water_type}, {name = water_type},{name = "rainf:meadow"},
{name = "rainf:meadow"}, {name = water_type}, {name = water_type},{name = "rainf:meadow"},
{name = "rainf:meadow"}, {name = "rainf:meadow"}, {name = "rainf:meadow"},{name = "rainf:meadow"},
}
},
spawn_by = "rainf:meadow",
num_spawn_by = 5,
flags = "place_center_x, place_center_z, force_placement",
rotation = "random",
})
minetest.register_decoration({
decoration = "rainf:blossom_meadow",
deco_type = "simple",
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 0.1,
biomes = {"rainf"},
noise_params = {
offset = 0.0002,
scale = 0.008,
spread = {x = 250, y = 250, z = 250},
seed = 221,
octaves = 3,
persist = 0.66
},
y_min = 1,
y_max = 80,
place_offset_y = -1,
flags = "place_center_x, place_center_z, force_placement",
})
minetest.register_decoration({
decoration = "rainf:meadow_with_mud",
deco_type = "simple",
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 2.0,
biomes = {"rainf"},
y_min = 1,
y_max = 80,
spawn_by = water_type,
num_spawn_by = 1,
place_offset_y = -1,
flags = "place_center_x, place_center_z, force_placement",
})
minetest.register_decoration({
decoration = "rainf:meadow_with_mud",
deco_type = "simple",
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 0.05,
noise_params = {
offset = 0.2,
scale = 0.008,
spread = {x = 250, y = 250, z = 250},
seed = 451,
octaves = 3,
persist = 0.66
},
biomes = {"rainf"},
y_min = 1,
y_max = 80,
spawn_by = "rainf:meadow_with_mud",
num_spawn_by = 1,
place_offset_y = -1,
flags = "place_center_x, place_center_z, force_placement",
})
minetest.register_decoration({
deco_type = "simple",
decoration = water_type,
place_on = {"rainf:meadow"},
sidelen = 16,
noise_params = {
offset = 0.8,
scale = 0.8,
spread = {x = 250, y = 250, z = 250},
seed = 2,
octaves = 3,
persist = 0.66
},
biomes = {"rainf"},
height = 2,
y_min = 2,
y_max = 1000,
place_offset_y = -2,
spawn_by = "rainf:meadow_with_mud",
num_spawn_by = 5,
flags = "place_center_x, place_center_z, force_placement",
rotation = "random",
})
minetest.register_decoration({
deco_type = "schematic",
schematic = {
size = {x = 1, y = 2, z = 1},
data = {
{name = "rainf:pink_granite"}, {name = "rainf:pink_granite_with_moss"},
}
},
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 0.00001,
biomes = {"rainf"},
noise_params = {
offset = 0.0002,
scale = 0.0008,
spread = {x = 250, y = 250, z = 250},
seed = 4341,
octaves = 3,
persist = 0.66
},
y_min = 1,
y_max = 80,
place_offset_y = -1,
flags = "place_center_x, place_center_z, force_placement",
})
minetest.register_decoration({
deco_type = "schematic",
schematic = {
size = {x = 1, y = 2, z = 1},
data = {
{name = "rainf:pink_granite"}, {name = "rainf:pink_granite_with_moss"},
}
},
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 0.6,
biomes = {"rainf"},
y_min = 1,
y_max = 80,
place_offset_y = -1,
spawn_by = "rainf:pink_granite_with_moss",
num_spawn_by = 1,
flags = "place_center_x, place_center_z, force_placement",
})
--Another Pink granite over same block
minetest.register_decoration({
decoration = "rainf:pink_granite_with_moss",
deco_type = "simple",
place_on = "rainf:pink_granite_with_moss",
sidelen = 16,
fill_ratio = 0.6,
biomes = {"rainf"},
y_min = 1,
y_max = 80,
place_offset_y = 0,
flags = "place_center_x, place_center_z, force_placement",
})
minetest.register_decoration({
decoration = "rainf:blossom_meadow",
deco_type = "simple",
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 0.1,
biomes = {"rainf"},
noise_params = {
offset = 0.9,
scale = 0.08,
spread = {x = 250, y = 250, z = 250},
seed = 2231,
octaves = 3,
persist = 0.66
},
y_min = 1,
spawn_by = "rainf:blossom_meadow",
num_spawn_by = 1,
place_offset_y = -1,
y_max = 80,
flags = "place_center_x, place_center_z, force_placement",
})
--Aloe Vera
minetest.register_decoration({
decoration = "rainf:aloe_vera",
deco_type = "simple",
place_on = {"rainf:meadow"},
sidelen = 16,
biomes = {"rainf"},
fill_ratio = 0.001,
y_min = 1,
y_max = 80,
})
--Weed
minetest.register_decoration({
decoration = "rainf:weed",
deco_type = "simple",
place_on = {"rainf:meadow", "rainf:meadow_with_mud", "rainf:pink_granite_with_moss"},
sidelen = 16,
biomes = {"rainf"},
fill_ratio = 0.01,
y_min = 1,
y_max = 80,
})
minetest.register_decoration({
decoration = "rainf:grass",
deco_type = "simple",
place_on = {"rainf:meadow", "rainf:pink_granite_with_moss"},
sidelen = 16,
biomes = {"rainf"},
fill_ratio = 0.05,
y_min = 1,
y_max = 80,
})
--Pansy
minetest.register_decoration({
decoration = "rainf:pansy",
deco_type = "simple",
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 0.008,
biomes = {"rainf"},
noise_params = {
offset = 0.005,
scale = 0.008,
spread = {x = 250, y = 250, z = 250},
seed = 289,
octaves = 3,
persist = 0.66
},
y_min = 1,
y_max = 80,
})
--Dahlia
minetest.register_decoration({
decoration = "rainf:dahlia",
deco_type = "simple",
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 0.008,
biomes = {"rainf"},
noise_params = {
offset = 0.005,
scale = 0.008,
spread = {x = 250, y = 250, z = 250},
seed = 34,
octaves = 3,
persist = 0.66
},
y_min = 1,
y_max = 80,
})
-- Camomille
minetest.register_decoration({
decoration = "rainf:camomille",
deco_type = "simple",
place_on = "rainf:blossom_meadow",
sidelen = 16,
fill_ratio = 0.5,
biomes = {"rainf"},
noise_params = {
offset = 0.8,
scale = 0.008,
spread = {x = 250, y = 250, z = 250},
seed = 452,
octaves = 3,
persist = 0.66
},
y_min = 1,
y_max = 80,
})
-- Red Daisy
minetest.register_decoration({
decoration = "rainf:red_daisy",
deco_type = "simple",
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 0.05,
biomes = {"rainf"},
noise_params = {
offset = 0.005,
scale = 0.008,
spread = {x = 250, y = 250, z = 250},
seed = 452,
octaves = 3,
persist = 0.66
},
y_min = 1,
y_max = 80,
})
-- Hyacinth
minetest.register_decoration({
decoration = "rainf:hyacinth",
deco_type = "simple",
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 0.05,
biomes = {"rainf"},
noise_params = {
offset = 0.005,
scale = 0.008,
spread = {x = 250, y = 250, z = 250},
seed = 452,
octaves = 3,
persist = 0.66
},
y_min = 1,
y_max = 80,
})
-- Champignon
minetest.register_decoration({
decoration = "rainf:champignon",
deco_type = "simple",
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 0.0005,
biomes = {"rainf"},
noise_params = {
offset = 0.0008,
scale = 0.0008,
spread = {x = 250, y = 250, z = 250},
seed = 452,
octaves = 3,
persist = 0.66
},
y_min = 1,
y_max = 80,
})
-- Vine
minetest.register_decoration({
decoration = "rainf:grapevine",
deco_type = "simple",
place_on = "rainf:meadow",
sidelen = 16,
fill_ratio = 0.0005,
biomes = {"rainf"},
noise_params = {
offset = 0.0008,
scale = 0.0008,
spread = {x = 250, y = 250, z = 250},
seed = 452,
octaves = 3,
persist = 0.66
},
y_min = 1,
y_max = 80,
})
end

20
locale/rainf.es.tr Normal file
View File

@ -0,0 +1,20 @@
# textdomain: rainf
Meadow=Pradera
Blossom Meadow=Pradera florida
Meadow with Mud=Pradera con barro
Granite=Granito
Pink Granite=Granito rosa
Pink Granite with Moss=Granito rosa con musgo
Aloe vera=Aloe vera
Weed=Mala hierba
Short Grass=Hierba corta
Pansy=Pensamiento
Dahlia=Dalia
Camomille=Manzanilla
Red Daisy=Margarita roja
Hyacinth=Jacinto
Grapes=Uvas
Vine=Vid
Grapevine=Viñedo
Champignon=Campiñón común

3
mod.conf Normal file
View File

@ -0,0 +1,3 @@
name = rainf
depends = default
optional_depends = stairs

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
textures/rainf_dahlia.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

BIN
textures/rainf_dirt.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
textures/rainf_granite.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

BIN
textures/rainf_grapes.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

BIN
textures/rainf_grass.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 919 B

BIN
textures/rainf_hyacinth.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
textures/rainf_meadow.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
textures/rainf_moss.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
textures/rainf_pansy.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
textures/rainf_vine.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

BIN
textures/rainf_weed.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB