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
1bcdfc56
Commit
1bcdfc56
authored
9 years ago
by
TenPlus1
Browse files
Options
Downloads
Patches
Plain Diff
Tweaked mesa biome, added glacier biome
parent
882b741d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
dirt.lua
+17
-2
17 additions, 2 deletions
dirt.lua
init.lua
+2
-3
2 additions, 3 deletions
init.lua
mapgen_v7n.lua
+73
-19
73 additions, 19 deletions
mapgen_v7n.lua
textures/baked_clay_grey.png
+0
-0
0 additions, 0 deletions
textures/baked_clay_grey.png
with
92 additions
and
24 deletions
dirt.lua
+
17
−
2
View file @
1bcdfc56
...
...
@@ -112,7 +112,7 @@ if not minetest.get_modpath("bakedclay") then
is_ground_content
=
false
,
sounds
=
default
.
node_sound_stone_defaults
(),
})
stairs
.
register_stair_and_slab
(
"bakedclay_red"
,
"bakedclay:red"
,
{
cracky
=
3
,
not_in_craft_guide
=
1
},
{
"baked_clay_red.png"
},
...
...
@@ -127,7 +127,7 @@ if not minetest.get_modpath("bakedclay") then
is_ground_content
=
false
,
sounds
=
default
.
node_sound_stone_defaults
(),
})
stairs
.
register_stair_and_slab
(
"bakedclay_orange"
,
"bakedclay:orange"
,
{
cracky
=
3
,
not_in_craft_guide
=
1
},
{
"baked_clay_orange.png"
},
...
...
@@ -135,4 +135,19 @@ if not minetest.get_modpath("bakedclay") then
"Baked Clay Orange Slab"
,
default
.
node_sound_stone_defaults
())
minetest
.
register_node
(
":bakedclay:grey"
,
{
description
=
"Grey Baked Clay"
,
tiles
=
{
"baked_clay_grey.png"
},
groups
=
{
cracky
=
3
},
is_ground_content
=
false
,
sounds
=
default
.
node_sound_stone_defaults
(),
})
stairs
.
register_stair_and_slab
(
"bakedclay_grey"
,
"bakedclay:grey"
,
{
cracky
=
3
,
not_in_craft_guide
=
1
},
{
"baked_clay_grey.png"
},
"Baked Clay Grey Stair"
,
"Baked Clay Grey Slab"
,
default
.
node_sound_stone_defaults
())
end
\ No newline at end of file
This diff is collapsed.
Click to expand it.
init.lua
+
2
−
3
View file @
1bcdfc56
--[[
Minetest Ethereal Mod 1.16 (2
5
th July 2015)
Minetest Ethereal Mod 1.16 (2
7
th July 2015)
Created by ChinChow
...
...
@@ -12,7 +12,7 @@ ethereal = {}
ethereal
.
leaftype
=
0
-- 0 for 2D plantlike, 1 for 3D allfaces
-- Set following to 1 to enable biome or 0 to disable
ethereal
.
glacier
=
1
-- Huge ice glaciers with snow
ethereal
.
bamboo
=
1
-- Bamboo with sprouts
ethereal
.
mesa
=
1
-- Mesa red and orange clay with giant redwood
ethereal
.
alpine
=
1
-- Snowy grass
...
...
@@ -35,7 +35,6 @@ ethereal.lake = 1 -- Small sandy lake areas with gravel below, also used fo
ethereal
.
plains
=
1
-- Dry dirt with scorched trees
ethereal
.
fiery
=
1
-- Red grass with lava craters
ethereal
.
sandclay
=
1
-- Sand areas with clay underneath
ethereal
.
icewater
=
1
-- Ice surrounding cold coastal areas
dofile
(
minetest
.
get_modpath
(
"ethereal"
)
..
"/plantlife.lua"
)
dofile
(
minetest
.
get_modpath
(
"ethereal"
)
..
"/mushroom.lua"
)
...
...
This diff is collapsed.
Click to expand it.
mapgen_v7n.lua
+
73
−
19
View file @
1bcdfc56
...
...
@@ -11,20 +11,35 @@ dofile(path.."banana_tree.lua")
--= Biomes (Minetest 0.4.12 and above)
if
ethereal
.
icewater
==
1
then
minetest
.
register_biome
({
name
=
"icewater"
,
node_top
=
"default:sand"
,
depth_top
=
1
,
node_filler
=
"default:sand"
,
depth_filler
=
1
,
node_water_top
=
"default:ice"
,
depth_water_top
=
2
,
y_min
=
-
31000
,
y_max
=
1
,
heat_point
=
0
,
humidity_point
=
0
,
})
if
ethereal
.
glacier
==
1
then
minetest
.
register_biome
({
name
=
"glacier"
,
node_dust
=
"default:snowblock"
,
node_top
=
"default:snowblock"
,
depth_top
=
1
,
node_filler
=
"default:snowblock"
,
depth_filler
=
3
,
node_stone
=
"default:ice"
,
node_water_top
=
"default:ice"
,
depth_water_top
=
10
,
y_min
=
-
8
,
y_max
=
31000
,
heat_point
=
-
5
,
humidity_point
=
50
,
})
minetest
.
register_biome
({
name
=
"glacier_ocean"
,
node_dust
=
"default:sand"
,
-- was snowblock
node_top
=
"default:gravel"
,
depth_top
=
1
,
node_filler
=
"default:gravel"
,
depth_filler
=
2
,
y_min
=
-
112
,
y_max
=
-
9
,
heat_point
=
-
5
,
humidity_point
=
50
,
})
end
if
ethereal
.
bamboo
==
1
then
...
...
@@ -56,11 +71,11 @@ end
if
ethereal
.
mesa
==
1
then
minetest
.
register_biome
({
name
=
"mesa"
,
node_top
=
"bakedclay:
red
"
,
node_top
=
"bakedclay:
orange
"
,
depth_top
=
1
,
node_filler
=
"bakedclay:orange"
,
depth_filler
=
5
,
y_min
=
2
,
depth_filler
=
1
5
,
y_min
=
1
,
y_max
=
71
,
heat_point
=
25
,
humidity_point
=
28
,
...
...
@@ -77,6 +92,45 @@ minetest.register_biome({
heat_point
=
25
,
humidity_point
=
28
,
})
minetest
.
register_ore
({
ore_type
=
"blob"
,
ore
=
"bakedclay:red"
,
wherein
=
{
"bakedclay:orange"
},
clust_scarcity
=
4
*
4
*
4
,
clust_num_ores
=
8
,
clust_size
=
6
,
y_min
=
-
10
,
y_max
=
71
,
noise_params
=
{
offset
=
0
.
35
,
scale
=
0
.
2
,
spread
=
{
x
=
5
,
y
=
5
,
z
=
5
},
seed
=
-
316
,
octaves
=
1
,
persist
=
0
.
5
},
})
minetest
.
register_ore
({
ore_type
=
"blob"
,
ore
=
"bakedclay:grey"
,
wherein
=
{
"bakedclay:orange"
},
clust_scarcity
=
4
*
4
*
4
,
clust_num_ores
=
8
,
clust_size
=
6
,
y_min
=
-
10
,
y_max
=
71
,
noise_params
=
{
offset
=
0
.
35
,
scale
=
0
.
2
,
spread
=
{
x
=
5
,
y
=
5
,
z
=
5
},
seed
=
-
613
,
octaves
=
1
,
persist
=
0
.
5
},
})
end
if
ethereal
.
alpine
==
1
then
...
...
@@ -436,7 +490,7 @@ end
-- redwood tree
minetest
.
register_decoration
({
deco_type
=
"schematic"
,
place_on
=
{
"bakedclay:red"
,
"bakedclay:orange"
},
place_on
=
{
"bakedclay:red"
},
--
"bakedclay:orange"},
sidelen
=
80
,
fill_ratio
=
0
.
01
,
biomes
=
{
"mesa"
},
...
...
@@ -462,7 +516,7 @@ minetest.register_decoration({
sidelen
=
80
,
fill_ratio
=
0
.
04
,
biomes
=
{
"alpine"
},
y_min
=
82
,
y_min
=
100
,
y_max
=
140
,
schematic
=
path
..
"yellowtree.mts"
,
flags
=
"place_center_x, place_center_z"
,
...
...
This diff is collapsed.
Click to expand it.
textures/baked_clay_grey.png
0 → 100644
+
0
−
0
View file @
1bcdfc56
211 B
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