Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ethereal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
ethereal
Commits
7d0ee517
Commit
7d0ee517
authored
7 years ago
by
TenPlus1
Browse files
Options
Downloads
Patches
Plain Diff
Added farming redo's hemp on mapgen
parent
aeb71b08
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bonemeal.lua
+1
-0
1 addition, 0 deletions
bonemeal.lua
init.lua
+1
-1
1 addition, 1 deletion
init.lua
mapgen.lua
+22
-0
22 additions, 0 deletions
mapgen.lua
with
24 additions
and
1 deletion
bonemeal.lua
+
1
−
0
View file @
7d0ee517
...
@@ -82,6 +82,7 @@ local crops = {
...
@@ -82,6 +82,7 @@ local crops = {
{
"ethereal:strawberry_"
,
8
},
{
"ethereal:strawberry_"
,
8
},
{
"ethereal:onion_"
,
5
},
{
"ethereal:onion_"
,
5
},
{
"farming:barley_"
,
7
},
{
"farming:barley_"
,
7
},
{
"farming:hemp_"
,
8
},
}
}
-- check if sapling has enough height room to grow
-- check if sapling has enough height room to grow
...
...
This diff is collapsed.
Click to expand it.
init.lua
+
1
−
1
View file @
7d0ee517
...
@@ -42,7 +42,7 @@ ethereal.fiery = 1 -- Red grass with lava craters
...
@@ -42,7 +42,7 @@ ethereal.fiery = 1 -- Red grass with lava craters
ethereal
.
sandclay
=
1
-- Sand areas with clay underneath
ethereal
.
sandclay
=
1
-- Sand areas with clay underneath
ethereal
.
swamp
=
1
-- Swamp areas with vines on tree's, mushrooms, lilly's and clay sand
ethereal
.
swamp
=
1
-- Swamp areas with vines on tree's, mushrooms, lilly's and clay sand
ethereal
.
sealife
=
1
-- Enable coral and seaweed
ethereal
.
sealife
=
1
-- Enable coral and seaweed
ethereal
.
reefs
=
1
-- Enable new coral reefs in default
ethereal
.
reefs
=
1
-- Enable new
0.4.15
coral reefs in default
local
path
=
minetest
.
get_modpath
(
"ethereal"
)
local
path
=
minetest
.
get_modpath
(
"ethereal"
)
...
...
This diff is collapsed.
Click to expand it.
mapgen.lua
+
22
−
0
View file @
7d0ee517
...
@@ -520,6 +520,28 @@ add_node({"ethereal:green_dirt"}, 0.025, {"grassytwo"}, 1, 100, {"farming:grapeb
...
@@ -520,6 +520,28 @@ add_node({"ethereal:green_dirt"}, 0.025, {"grassytwo"}, 1, 100, {"farming:grapeb
add_node
({
"ethereal:green_dirt"
},
0
.
025
,
{
"grassy"
},
1
,
100
,
{
"farming:grapebush"
},
nil
,
nil
,
nil
,
ethereal
.
grassy
)
add_node
({
"ethereal:green_dirt"
},
0
.
025
,
{
"grassy"
},
1
,
100
,
{
"farming:grapebush"
},
nil
,
nil
,
nil
,
ethereal
.
grassy
)
add_node
({
"ethereal:prairie_dirt"
},
0
.
025
,
{
"prairie"
},
1
,
100
,
{
"farming:grapebush"
},
nil
,
nil
,
nil
,
ethereal
.
prairie
)
add_node
({
"ethereal:prairie_dirt"
},
0
.
025
,
{
"prairie"
},
1
,
100
,
{
"farming:grapebush"
},
nil
,
nil
,
nil
,
ethereal
.
prairie
)
minetest
.
register_decoration
({
deco_type
=
"simple"
,
place_on
=
{
"default:dirt_with_grass"
,
"ethereal:prairie_dirt"
,
"default:dirt_with_rainforest_litter"
,
},
sidelen
=
16
,
noise_params
=
{
offset
=
0
,
scale
=
0
.
06
,
spread
=
{
x
=
100
,
y
=
100
,
z
=
100
},
seed
=
420
,
octaves
=
3
,
persist
=
0
.
6
},
y_min
=
5
,
y_max
=
35
,
decoration
=
"farming:hemp_7"
,
spawn_by
=
"group:tree"
,
num_spawn_by
=
1
,
})
end
end
-- place waterlily in beach areas
-- place waterlily in beach areas
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment