First commit
30
README.md
Normal file
@ -0,0 +1,30 @@
|
||||
Other Worlds
|
||||
===
|
||||
|
||||
Minetest mod which adds asteroid layers.
|
||||
|
||||
Each layer contains:
|
||||
1 - Asteroids composed of unique materials.
|
||||
2 - Decoration (or lack of) for the asteroid surfaces, included plants and glowing crystals.
|
||||
3 - A skybox for the layer.
|
||||
|
||||
Default layers are Space and Red Sky, but anyone familiar with editing mods should be able to easily adjust these or create different/ additional layers.
|
||||
|
||||
|
||||
Settings
|
||||
--------
|
||||
|
||||
Settings for this mod can be adjusted by editing the settings.lua file.
|
||||
|
||||
See the comments in this file for how to adjust:
|
||||
1 - The minimum and maximum height of each layer.
|
||||
2 - Whether map-generation is currently active for individual layers.
|
||||
3 - Whether crafting recipes are enabled.
|
||||
|
||||
Note: It is advised to turn off map-generation after you have generated the required number of asteroids.
|
||||
|
||||
|
||||
Licenses and Attribution
|
||||
-----------------------
|
||||
|
||||
Components of this mod use multiple licenses and were the work of several individuals. Please see license.txt for the full list.
|
274
asteroid_layer_helpers.lua
Normal file
@ -0,0 +1,274 @@
|
||||
|
||||
-- submodule
|
||||
otherworlds.asteroids = {}
|
||||
|
||||
-- Approximate realm limits.
|
||||
local XMIN = -33000
|
||||
local XMAX = 33000
|
||||
local ZMIN = -33000
|
||||
local ZMAX = 33000
|
||||
|
||||
local ASCOT = 1.0 -- Large asteroid / comet nucleus noise threshold.
|
||||
local SASCOT = 1.0 -- Small asteroid / comet nucleus noise threshold.
|
||||
local STOT = 0.125 -- Asteroid stone threshold.
|
||||
local COBT = 0.05 -- Asteroid cobble threshold.
|
||||
local GRAT = 0.02 -- Asteroid gravel threshold.
|
||||
local ICET = 0.05 -- Comet ice threshold.
|
||||
local ATMOT = -0.2 -- Comet atmosphere threshold.
|
||||
local FISTS = 0.01 -- Fissure noise threshold at surface. Controls size of fissures and amount / size of fissure entrances.
|
||||
local FISEXP = 0.3 -- Fissure expansion rate under surface.
|
||||
local ORECHA = 3*3*3 -- Ore 1/x chance per stone node.
|
||||
local CPCHU = 0 -- Maximum craters per chunk.
|
||||
local CRMIN = 5 -- Crater radius minimum, radius includes dust and obsidian layers.
|
||||
local CRRAN = 8 -- Crater radius range.
|
||||
|
||||
|
||||
-- Note: for fewer large objects: increase the 'spread' numbers in 'np_large' noise parameters. For fewer small objects do the same in 'np_small'. Then tune size with 'ASCOT'.
|
||||
|
||||
-- 3D Perlin noise 1 for large structures
|
||||
local np_large = {
|
||||
offset = 0,
|
||||
scale = 1,
|
||||
spread = {x=256, y=128, z=256},
|
||||
seed = -83928935,
|
||||
octaves = 5,
|
||||
persist = 0.6
|
||||
}
|
||||
|
||||
-- 3D Perlin noise 3 for fissures
|
||||
local np_fissure = {
|
||||
offset = 0,
|
||||
scale = 1,
|
||||
spread = {x=64, y=64, z=64},
|
||||
seed = -188881,
|
||||
octaves = 4,
|
||||
persist = 0.5
|
||||
}
|
||||
|
||||
-- 3D Perlin noise 4 for small structures
|
||||
local np_small = {
|
||||
offset = 0,
|
||||
scale = 1,
|
||||
spread = {x=128, y=64, z=128},
|
||||
seed = 1000760700090,
|
||||
octaves = 4,
|
||||
persist = 0.6
|
||||
}
|
||||
|
||||
-- 3D Perlin noise 5 for ore selection
|
||||
local np_ores = {
|
||||
offset = 0,
|
||||
scale = 1,
|
||||
spread = {x=128, y=128, z=128},
|
||||
seed = -70242,
|
||||
octaves = 1,
|
||||
persist = 0.5
|
||||
}
|
||||
|
||||
-- 3D Perlin noise 6 for comet atmosphere
|
||||
local np_latmos = {
|
||||
offset = 0,
|
||||
scale = 1,
|
||||
spread = {x=256, y=128, z=256},
|
||||
seed = -83928935,
|
||||
octaves = 3,
|
||||
persist = 0.6
|
||||
}
|
||||
|
||||
-- 3D Perlin noise 7 for small comet atmosphere
|
||||
local np_satmos = {
|
||||
offset = 0,
|
||||
scale = 1,
|
||||
spread = {x=128, y=64, z=128},
|
||||
seed = 1000760700090,
|
||||
octaves = 2,
|
||||
persist = 0.6
|
||||
}
|
||||
|
||||
-- Stuff
|
||||
|
||||
|
||||
-- On dignode function. Atmosphere flows into a dug hole.
|
||||
minetest.register_on_dignode(function(pos, oldnode, digger)
|
||||
if minetest.find_node_near(pos, 1, {"other_worlds:atmos"}) then
|
||||
minetest.set_node(pos, {name = "other_worlds:atmos"})
|
||||
end
|
||||
end)
|
||||
|
||||
-- Generate on_generated function based on parameters
|
||||
function otherworlds.asteroids.create_on_generated(ymin, ymax, content_ids)
|
||||
local YMIN = ymin
|
||||
local YMAX = ymax
|
||||
|
||||
local c_air = content_ids.c_air
|
||||
local c_stone = content_ids.c_stone
|
||||
local c_cobble = content_ids.c_cobble
|
||||
local c_gravel = content_ids.c_gravel
|
||||
local c_dust = content_ids.c_dust
|
||||
local c_ironore = content_ids.c_ironore
|
||||
local c_copperore = content_ids.c_copperore
|
||||
local c_goldore = content_ids.c_goldore
|
||||
local c_diamondore = content_ids.c_diamondore
|
||||
local c_meseore = content_ids.c_meseore
|
||||
local c_waterice = content_ids.c_waterice
|
||||
local c_atmos = content_ids.c_atmos
|
||||
local c_snowblock = content_ids.c_snowblock
|
||||
local c_obsidian = content_ids.c_obsidian
|
||||
|
||||
-- return the function closed over the upvalues we want
|
||||
return function(minp, maxp, seed)
|
||||
if minp.x < XMIN or maxp.x > XMAX
|
||||
or minp.y < YMIN or maxp.y > YMAX
|
||||
or minp.z < ZMIN or maxp.z > ZMAX then
|
||||
return
|
||||
end
|
||||
-- local t1 = os.clock()
|
||||
local x1 = maxp.x
|
||||
local y1 = maxp.y
|
||||
local z1 = maxp.z
|
||||
local x0 = minp.x
|
||||
local y0 = minp.y
|
||||
local z0 = minp.z
|
||||
--print ("[asteroid] chunk ("..x0.." "..y0.." "..z0..")")
|
||||
local sidelen = x1 - x0 + 1 -- chunk side length
|
||||
--local vplanarea = sidelen ^ 2 -- vertical plane area, used if calculating noise index from x y z
|
||||
local chulens = {x=sidelen, y=sidelen, z=sidelen}
|
||||
local minpos = {x=x0, y=y0, z=z0}
|
||||
|
||||
local vm, emin, emax = minetest.get_mapgen_object("voxelmanip")
|
||||
local area = VoxelArea:new{MinEdge=emin, MaxEdge=emax}
|
||||
local data = vm:get_data()
|
||||
|
||||
local nvals1 = minetest.get_perlin_map(np_large, chulens):get3dMap_flat(minpos)
|
||||
local nvals3 = minetest.get_perlin_map(np_fissure, chulens):get3dMap_flat(minpos)
|
||||
local nvals4 = minetest.get_perlin_map(np_small, chulens):get3dMap_flat(minpos)
|
||||
local nvals5 = minetest.get_perlin_map(np_ores, chulens):get3dMap_flat(minpos)
|
||||
local nvals6 = minetest.get_perlin_map(np_latmos, chulens):get3dMap_flat(minpos)
|
||||
local nvals7 = minetest.get_perlin_map(np_satmos, chulens):get3dMap_flat(minpos)
|
||||
|
||||
local ni = 1
|
||||
for z = z0, z1 do -- for each vertical plane do
|
||||
for y = y0, y1 do -- for each horizontal row do
|
||||
local vi = area:index(x0, y, z) -- LVM index for first node in x row
|
||||
for x = x0, x1 do -- for each node do
|
||||
local noise1abs = math.abs(nvals1[ni])
|
||||
local noise4abs = math.abs(nvals4[ni])
|
||||
local comet = false
|
||||
if nvals6[ni] < -(ASCOT + ATMOT) or (nvals7[ni] < -(SASCOT + ATMOT) and nvals1[ni] < ASCOT) then
|
||||
comet = true -- comet biome
|
||||
end
|
||||
if noise1abs > ASCOT or noise4abs > SASCOT then -- if below surface then
|
||||
local noise1dep = noise1abs - ASCOT -- noise1dep zero at surface, positive beneath
|
||||
if math.abs(nvals3[ni]) > FISTS + noise1dep * FISEXP then -- if no fissure then
|
||||
local noise4dep = noise4abs - SASCOT -- noise4dep zero at surface, positive beneath
|
||||
if not comet or (comet and (noise1dep > math.random() + ICET or noise4dep > math.random() + ICET)) then
|
||||
-- asteroid or asteroid materials in comet
|
||||
if noise1dep >= STOT or noise4dep >= STOT then
|
||||
-- stone/ores
|
||||
if math.random(ORECHA) == 2 then
|
||||
if nvals5[ni] > 0.6 then
|
||||
data[vi] = c_goldore
|
||||
elseif nvals5[ni] < -0.6 then
|
||||
data[vi] = c_diamondore
|
||||
elseif nvals5[ni] > 0.2 then
|
||||
data[vi] = c_meseore
|
||||
elseif nvals5[ni] < -0.2 then
|
||||
data[vi] = c_copperore
|
||||
else
|
||||
data[vi] = c_ironore
|
||||
end
|
||||
else
|
||||
data[vi] = c_stone
|
||||
end
|
||||
elseif noise1dep >= COBT or noise4dep >= COBT then
|
||||
data[vi] = c_cobble
|
||||
elseif noise1dep >= GRAT or noise4dep >= GRAT then
|
||||
data[vi] = c_gravel
|
||||
else
|
||||
data[vi] = c_dust
|
||||
end
|
||||
else -- comet materials
|
||||
if noise1dep >= ICET or noise4dep >= ICET then
|
||||
data[vi] = c_waterice
|
||||
else
|
||||
data[vi] = c_snowblock
|
||||
end
|
||||
end
|
||||
elseif comet then -- fissures, if comet then add comet atmosphere
|
||||
data[vi] = c_atmos
|
||||
end
|
||||
elseif comet then -- if comet atmosphere then
|
||||
data[vi] = c_atmos
|
||||
end
|
||||
ni = ni + 1
|
||||
vi = vi + 1
|
||||
end
|
||||
end
|
||||
end
|
||||
-- craters
|
||||
for ci = 1, CPCHU do -- iterate
|
||||
local cr = CRMIN + math.floor(math.random() ^ 2 * CRRAN) -- exponential radius
|
||||
local cx = math.random(minp.x + cr, maxp.x - cr) -- centre x
|
||||
local cz = math.random(minp.z + cr, maxp.z - cr) -- centre z
|
||||
local comet = false
|
||||
local surfy = false
|
||||
for y = y1, y0 + cr, -1 do
|
||||
local vi = area:index(cx, y, cz) -- LVM index for node
|
||||
local nodeid = data[vi]
|
||||
if nodeid == c_dust
|
||||
or nodeid == c_gravel
|
||||
or nodeid == c_cobble then
|
||||
surfy = y
|
||||
break
|
||||
elseif nodename == c_snowblock
|
||||
or nodename == c_waterice then
|
||||
comet = true
|
||||
surfy = y
|
||||
break
|
||||
end
|
||||
end
|
||||
if surfy and y1 - surfy > 8 then -- if surface found and 8 node space above impact node then
|
||||
for x = cx - cr, cx + cr do -- for each plane do
|
||||
for z = cz - cr, cz + cr do -- for each column do
|
||||
for y = surfy - cr, surfy + cr do -- for each node do
|
||||
local vi = area:index(x, y, z) -- LVM index for node
|
||||
local nr = ((x - cx) ^ 2 + (y - surfy) ^ 2 + (z - cz) ^ 2) ^ 0.5
|
||||
if nr <= cr - 2 then
|
||||
if comet then
|
||||
data[vi] = c_atmos
|
||||
else
|
||||
data[vi] = c_air
|
||||
end
|
||||
elseif nr <= cr - 1 then
|
||||
local nodeid = data[vi]
|
||||
if nodeid == c_gravel
|
||||
or nodeid == c_cobble
|
||||
or nodeid == c_stone
|
||||
or nodeid == c_diamondore
|
||||
or nodeid == c_goldore
|
||||
or nodeid == c_meseore
|
||||
or nodeid == c_copperore
|
||||
or nodeid == c_ironore then
|
||||
data[vi] = c_dust
|
||||
end
|
||||
elseif nr <= cr then
|
||||
local nodeid = data[vi]
|
||||
if nodeid == c_cobble
|
||||
or nodeid == c_stone then
|
||||
data[vi] = c_obsidian -- obsidian buried under dust
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
vm:set_data(data)
|
||||
vm:set_lighting({day=0, night=0})
|
||||
vm:calc_lighting()
|
||||
vm:write_to_map(data)
|
||||
-- local chugent = math.ceil((os.clock() - t1) * 1000)
|
||||
--print ("[asteroid] time "..chugent.." ms")
|
||||
data = nil
|
||||
end
|
||||
end
|
45
crafting.lua
Normal file
@ -0,0 +1,45 @@
|
||||
if otherworlds.settings.crafting.enable then
|
||||
|
||||
minetest.register_craft({
|
||||
output = "asteroid:cobble",
|
||||
recipe = {
|
||||
{"asteroid:stone"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "asteroid:gravel",
|
||||
recipe = {
|
||||
{"asteroid:cobble"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "asteroid:dust",
|
||||
recipe = {
|
||||
{"asteroid:gravel"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "asteroid:redcobble",
|
||||
recipe = {
|
||||
{"asteroid:redstone"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "asteroid:redgravel",
|
||||
recipe = {
|
||||
{"asteroid:redcobble"},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "asteroid:reddust",
|
||||
recipe = {
|
||||
{"asteroid:redgravel"},
|
||||
},
|
||||
})
|
||||
|
||||
end
|
50
crystals.lua
Normal file
@ -0,0 +1,50 @@
|
||||
|
||||
local sbox = {
|
||||
type = "fixed",
|
||||
fixed = {-5/16, -8/16, -6/16, 5/16, -1/32, 5/16},
|
||||
}
|
||||
|
||||
local crystal_list = {
|
||||
{"ghost_crystal", "ghost_crystal.png",},
|
||||
{"red_crystal", "red_crystal.png",},
|
||||
{"rose_quartz", "rose_quartz.png",},
|
||||
}
|
||||
|
||||
for i in ipairs(crystal_list) do
|
||||
local name = crystal_list[i][1]
|
||||
local texture = crystal_list[i][2]
|
||||
|
||||
minetest.register_node(":crystals:"..name.."_1", {
|
||||
description = "Glowing Crystal",
|
||||
drawtype = "mesh",
|
||||
mesh = "crystal_shape01.obj",
|
||||
tiles = {"crystals_"..texture,},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
selection_box = sbox,
|
||||
walkable = false,
|
||||
light_source = 10,
|
||||
use_texture_alpha = true,
|
||||
visual_scale = 10,
|
||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node(":crystals:"..name.."_2", {
|
||||
description = "Glowing Crystal",
|
||||
drawtype = "mesh",
|
||||
mesh = "crystal_shape02.obj",
|
||||
tiles = {"crystals_"..texture,},
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
selection_box = sbox,
|
||||
walkable = false,
|
||||
light_source = 10,
|
||||
use_texture_alpha = true,
|
||||
visual_scale = 10,
|
||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,},
|
||||
sounds = default.node_sound_glass_defaults(),
|
||||
})
|
||||
end
|
||||
|
||||
|
1
depends.txt
Normal file
@ -0,0 +1 @@
|
||||
default
|
13
init.lua
Normal file
@ -0,0 +1,13 @@
|
||||
local modpath = minetest.get_modpath("other_worlds").. DIR_DELIM
|
||||
|
||||
otherworlds = {}
|
||||
|
||||
dofile(modpath .. "settings.lua")
|
||||
dofile(modpath .. "mars_plants.lua")
|
||||
dofile(modpath .. "crystals.lua")
|
||||
dofile(modpath .. "space_nodes.lua")
|
||||
dofile(modpath .. "crafting.lua")
|
||||
dofile(modpath .. "skybox.lua")
|
||||
dofile(modpath .. "asteroid_layer_helpers.lua") -- required helpers for mapgen options below
|
||||
dofile(modpath .. "space_asteroids.lua")
|
||||
dofile(modpath .. "redsky_asteroids.lua")
|
40
license.txt
Normal file
@ -0,0 +1,40 @@
|
||||
|
||||
|
||||
Original asteroids code:
|
||||
License: MIT (https://opensource.org/licenses/MIT)
|
||||
By paramat (available from https://github.com/paramat/asteroid)
|
||||
|
||||
Original asteroid_ textures:
|
||||
License: CC BY-SA 3.0 (https://creativecommons.org/licenses/by/3.0/)
|
||||
Attribution: paramat
|
||||
|
||||
Crystal models:
|
||||
License: MIT (https://opensource.org/licenses/MIT)
|
||||
By Electra Gizen
|
||||
|
||||
Skybox texture:
|
||||
License: CC BY-SA 3.0 (https://creativecommons.org/licenses/by/3.0/)
|
||||
Attribution: Ulukai (available from http://opengameart.org/content/ulukais-space-skyboxes)
|
||||
|
||||
|
||||
---
|
||||
|
||||
Recoloured textures from various mods:
|
||||
Grass textures based on default mod in minetest_game (WTFPL).
|
||||
Redgrass texture based on junglegrass texture in default mod in minetest_game (assumed to be CC BY-SA 3.0).
|
||||
Red versions of asteroid textures (CC BY-SA 3.0).
|
||||
|
||||
|
||||
---
|
||||
|
||||
Textures created for this mod:
|
||||
CC BY-SA 4.0 (https://creativecommons.org/licenses/by-sa/4.0/)
|
||||
Attribution: Shara RedCat
|
||||
|
||||
All original code and edits to code for this mod:
|
||||
License: MIT (https://opensource.org/licenses/MIT)
|
||||
By Shara RedCat, tenplus1 and Mewmon
|
||||
|
||||
---
|
||||
|
||||
Thanks also to DonBatman for help with the initial idea, and to the players of Red Cat Creative who gave ideas and helped in testing.
|
111
mars_plants.lua
Normal file
@ -0,0 +1,111 @@
|
||||
minetest.register_node(":mars:redgrass", {
|
||||
description = "Red Grass",
|
||||
drawtype = "plantlike",
|
||||
waving = 1,
|
||||
visual_scale = 1.3,
|
||||
tiles = {"mars_redgrass.png"},
|
||||
inventory_image = "mars_redgrass.png",
|
||||
wield_image = "mars_redgrass.png",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
buildable_to = true,
|
||||
groups = {snappy=3,flora=1,attached_node=1},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_node(":mars:redweed", {
|
||||
description = "Red Weed",
|
||||
drawtype = "plantlike",
|
||||
waving = 1,
|
||||
visual_scale = 1.3,
|
||||
tiles = {"mars_redweed.png"},
|
||||
inventory_image = "mars_redweed.png",
|
||||
wield_image = "mars_redweed.png",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
buildable_to = true,
|
||||
groups = {snappy=3,flora=1,attached_node=1},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_node(":mars:moss", {
|
||||
description = "Martian Moss",
|
||||
drawtype = "nodebox",
|
||||
tiles = {"mars_moss.png"},
|
||||
inventory_image = "mars_moss.png",
|
||||
wield_image = "mars_moss.png",
|
||||
paramtype = "light",
|
||||
paramtype2 = "facedir",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
node_box = {
|
||||
type = "fixed",
|
||||
fixed = {-1/2, -1/2, -1/2, 1/2, -15/32, 1/2},
|
||||
},
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-1/2, -1/2, -1/2, 1/2, -15/32, 1/2},
|
||||
},
|
||||
groups = {snappy=3,flora=1,attached_node=1},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
})
|
||||
|
||||
|
||||
--mars grass
|
||||
minetest.register_node(":mars:grass_1", {
|
||||
description = "Martian Grass",
|
||||
drawtype = "plantlike",
|
||||
waving = 1,
|
||||
tiles = {"mars_grass_1.png"},
|
||||
inventory_image = "mars_grass_3.png",
|
||||
wield_image = "mars_grass_3.png",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
buildable_to = true,
|
||||
groups = {snappy=3,flora=1,attached_node=1},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
|
||||
},
|
||||
|
||||
on_place = function(itemstack, placer, pointed_thing)
|
||||
-- place a random grass node
|
||||
local stack = ItemStack("mars:grass_"..math.random(1,5))
|
||||
local ret = minetest.item_place(stack, placer, pointed_thing)
|
||||
return ItemStack("mars:grass_1 "..itemstack:get_count()-(1-ret:get_count()))
|
||||
end,
|
||||
})
|
||||
|
||||
for i=2,5 do
|
||||
minetest.register_node(":mars:grass_"..i, {
|
||||
description = "Martian Grass",
|
||||
drawtype = "plantlike",
|
||||
waving = 1,
|
||||
tiles = {"mars_grass_"..i..".png"},
|
||||
inventory_image = "mars_grass_"..i..".png",
|
||||
wield_image = "mars_grass_"..i..".png",
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
buildable_to = true,
|
||||
drop = "mars:grass_1",
|
||||
groups = {snappy=3,flora=1,attached_node=1,not_in_creative_inventory=1},
|
||||
sounds = default.node_sound_leaves_defaults(),
|
||||
selection_box = {
|
||||
type = "fixed",
|
||||
fixed = {-0.5, -0.5, -0.5, 0.5, -5/16, 0.5},
|
||||
},
|
||||
})
|
||||
end
|
228
models/crystal_shape01.obj
Normal file
@ -0,0 +1,228 @@
|
||||
# Blender v2.77 (sub 0) OBJ File: ''
|
||||
# www.blender.org
|
||||
mtllib crystal_shape01.mtl
|
||||
o Crystal_Taya1.001
|
||||
v 0.019427 0.022291 -0.013603
|
||||
v 0.012823 0.031159 -0.009449
|
||||
v 0.013985 0.030045 -0.009115
|
||||
v 0.008443 0.038346 -0.005912
|
||||
v 0.000000 0.050687 0.000000
|
||||
v -0.015208 0.018939 -0.021719
|
||||
v 0.020909 0.009672 -0.020909
|
||||
v 0.021719 0.018939 -0.015208
|
||||
v -0.016684 -0.038612 -0.014735
|
||||
v -0.017468 -0.029657 -0.017468
|
||||
v -0.015357 -0.037747 -0.016760
|
||||
v -0.015748 -0.040752 -0.016497
|
||||
v -0.015913 -0.047431 -0.015913
|
||||
v -0.017109 -0.033753 0.015516
|
||||
v -0.018018 -0.023370 0.018018
|
||||
v -0.018512 -0.017718 0.018512
|
||||
v -0.016177 -0.044411 0.016177
|
||||
v -0.015748 -0.049313 0.015748
|
||||
v -0.015748 -0.049313 -0.015748
|
||||
v -0.019675 -0.004427 0.016381
|
||||
v -0.020909 0.009672 -0.020909
|
||||
v -0.020741 0.007752 0.020741
|
||||
v -0.021719 0.018939 0.015208
|
||||
v -0.020909 0.009672 0.020909
|
||||
v -0.018512 -0.003302 0.019773
|
||||
v 0.020560 0.005685 0.020560
|
||||
v 0.015208 0.018939 0.021719
|
||||
v 0.017174 -0.008451 0.019323
|
||||
v 0.018163 -0.021714 0.018163
|
||||
v -0.016177 -0.030600 0.017385
|
||||
v 0.015748 -0.049313 0.015748
|
||||
v 0.020909 0.009672 0.020909
|
||||
v 0.019672 -0.004460 0.017730
|
||||
v 0.020488 0.004867 -0.020488
|
||||
v 0.019075 -0.011285 -0.016746
|
||||
v 0.016094 -0.045364 -0.016094
|
||||
v 0.015748 -0.049313 -0.015748
|
||||
v 0.017187 -0.010187 -0.019171
|
||||
vt 0.0000 0.0000
|
||||
vt -0.0148 0.1172
|
||||
vt -0.0221 0.1025
|
||||
vt 0.0000 0.0000
|
||||
vt -0.0100 0.0907
|
||||
vt -0.0085 -0.0141
|
||||
vt -0.0000 0.0000
|
||||
vt -0.0729 -0.1433
|
||||
vt 0.1875 -0.3687
|
||||
vt -0.1099 -0.2268
|
||||
vt -0.1696 -0.4763
|
||||
vt -0.1677 -0.3298
|
||||
vt -0.1875 -0.3687
|
||||
vt 0.0165 -0.0925
|
||||
vt -0.0000 0.0000
|
||||
vt -0.0076 -0.0836
|
||||
vt -0.0199 -0.0214
|
||||
vt -0.0000 0.0000
|
||||
vt -0.0242 0.0087
|
||||
vt -0.0140 -0.0882
|
||||
vt -0.0200 -0.0214
|
||||
vt -0.3048 0.1074
|
||||
vt -0.0023 0.1562
|
||||
vt -0.3322 0.1973
|
||||
vt 0.0227 0.2604
|
||||
vt 0.0276 0.3172
|
||||
vt 0.0043 0.0492
|
||||
vt -0.3166 0.0189
|
||||
vt 0.0000 0.0000
|
||||
vt -0.3150 0.0000
|
||||
vt 0.0063 0.4506
|
||||
vt -0.3666 0.5921
|
||||
vt 0.0499 0.5728
|
||||
vt -0.0054 0.6851
|
||||
vt 0.0516 0.5921
|
||||
vt -0.0003 -0.1132
|
||||
vt -0.0000 0.0000
|
||||
vt -0.0360 -0.1247
|
||||
vt -0.0119 -0.1442
|
||||
vt -0.0000 0.0000
|
||||
vt -0.0359 -0.0113
|
||||
vt -0.3426 0.4619
|
||||
vt 0.0481 0.5521
|
||||
vt -0.3649 0.5728
|
||||
vt -0.0054 0.6851
|
||||
vt -0.3666 0.5921
|
||||
vt 0.0143 0.4102
|
||||
vt -0.3426 0.3172
|
||||
vt 0.0241 0.2770
|
||||
vt -0.3377 0.2604
|
||||
vt -0.3192 0.1878
|
||||
vt 0.0000 0.0000
|
||||
vt -0.3192 0.0492
|
||||
vt -0.3150 0.0000
|
||||
vt 0.0516 0.5921
|
||||
vt 0.0093 -0.0743
|
||||
vt -0.0000 0.0000
|
||||
vt -0.0102 -0.1067
|
||||
vt -0.0104 -0.1382
|
||||
vt -0.0000 0.0000
|
||||
vt -0.0208 -0.0316
|
||||
vt 0.0000 0.0000
|
||||
vt 0.0149 0.1726
|
||||
vt -0.0147 0.1327
|
||||
vt 0.0000 0.0000
|
||||
vt -0.0166 0.1044
|
||||
vt -0.0280 -0.0411
|
||||
vt -0.3348 0.4502
|
||||
vt 0.0474 0.5439
|
||||
vt -0.3631 0.5521
|
||||
vt -0.0054 0.6851
|
||||
vt -0.3666 0.5921
|
||||
vt 0.0100 0.3817
|
||||
vt -0.3391 0.2770
|
||||
vt 0.0035 0.0396
|
||||
vt -0.3150 0.0000
|
||||
vt 0.0000 0.0000
|
||||
vt 0.0516 0.5921
|
||||
vt 0.0000 0.0000
|
||||
vt 0.0168 0.3529
|
||||
vt -0.0139 0.3419
|
||||
vt 0.0000 0.0000
|
||||
vt -0.0126 0.1542
|
||||
vt -0.0306 -0.0113
|
||||
vt 0.0000 0.0859
|
||||
vt -0.0039 0.1161
|
||||
vt -0.3184 0.0396
|
||||
vt 0.0172 0.1973
|
||||
vt -0.3293 0.3928
|
||||
vt 0.0516 0.5921
|
||||
vt -0.3624 0.5439
|
||||
vt -0.0054 0.6851
|
||||
vt -0.3666 0.5921
|
||||
vt 0.0016 0.0189
|
||||
vt -0.3150 0.0000
|
||||
vt 0.0000 0.0000
|
||||
vt -0.1696 -0.4763
|
||||
vt 0.1875 -0.3687
|
||||
vt -0.1875 -0.3687
|
||||
vt -0.1696 -0.4763
|
||||
vt 0.1875 -0.3687
|
||||
vt -0.1875 -0.3687
|
||||
vt 0.0729 -0.1433
|
||||
vt -0.1875 -0.3687
|
||||
vt 0.1141 -0.2397
|
||||
vt -0.1696 -0.4763
|
||||
vt 0.1677 -0.3298
|
||||
vt 0.1875 -0.3687
|
||||
vt 0.1575 0.1575
|
||||
vt -0.1575 0.1575
|
||||
vt 0.1575 -0.1575
|
||||
vt -0.1575 -0.1575
|
||||
usemtl wire_191191191.001
|
||||
s 1
|
||||
f 1/1 2/2 3/3
|
||||
f 2/4 4/5 3/6
|
||||
f 5/7 4/8 6/9
|
||||
f 6/9 4/8 2/10
|
||||
f 6/9 2/10 7/11
|
||||
f 7/11 2/10 1/12
|
||||
f 7/11 1/12 8/13
|
||||
f 9/14 10/15 11/16
|
||||
f 12/17 9/18 11/19
|
||||
f 13/20 9/18 12/21
|
||||
f 9/22 14/23 10/24
|
||||
f 10/24 14/23 15/25
|
||||
f 10/24 15/25 16/26
|
||||
f 14/23 9/22 17/27
|
||||
f 17/27 9/22 13/28
|
||||
f 17/27 13/28 18/29
|
||||
f 18/29 13/28 19/30
|
||||
f 16/26 20/31 10/24
|
||||
f 10/24 20/31 21/32
|
||||
f 21/32 20/31 22/33
|
||||
f 21/32 22/33 23/34
|
||||
f 23/34 22/33 24/35
|
||||
f 25/36 22/37 20/38
|
||||
f 16/39 25/40 20/41
|
||||
f 25/42 26/43 22/44
|
||||
f 22/44 26/43 27/45
|
||||
f 22/44 27/45 24/46
|
||||
f 26/43 25/42 28/47
|
||||
f 28/47 25/42 16/48
|
||||
f 28/47 16/48 29/49
|
||||
f 29/49 16/48 15/50
|
||||
f 29/49 15/50 30/51
|
||||
f 29/49 30/51 31/52
|
||||
f 31/52 30/51 17/53
|
||||
f 31/52 17/53 18/54
|
||||
f 26/43 32/55 27/45
|
||||
f 30/56 15/57 14/58
|
||||
f 17/59 30/60 14/61
|
||||
f 29/62 33/63 28/64
|
||||
f 33/65 26/66 28/67
|
||||
f 33/68 34/69 26/70
|
||||
f 26/70 34/69 8/71
|
||||
f 26/70 8/71 32/72
|
||||
f 34/69 33/68 35/73
|
||||
f 35/73 33/68 29/74
|
||||
f 35/73 29/74 36/75
|
||||
f 36/75 29/74 31/76
|
||||
f 36/75 31/76 37/77
|
||||
f 34/69 7/78 8/71
|
||||
f 36/79 38/80 35/81
|
||||
f 38/82 34/83 35/84
|
||||
f 12/85 11/86 36/87
|
||||
f 36/87 11/86 10/88
|
||||
f 36/87 10/88 38/89
|
||||
f 38/89 10/88 21/90
|
||||
f 38/89 21/90 34/91
|
||||
f 34/91 21/90 6/92
|
||||
f 34/91 6/92 7/93
|
||||
f 12/85 36/87 13/94
|
||||
f 13/94 36/87 37/95
|
||||
f 13/94 37/95 19/96
|
||||
f 21/97 23/98 6/99
|
||||
f 6/99 23/98 5/7
|
||||
f 24/100 27/101 23/102
|
||||
f 23/102 27/101 5/7
|
||||
f 4/103 27/104 3/105
|
||||
f 3/105 27/104 32/106
|
||||
f 3/105 32/106 1/107
|
||||
f 1/107 32/106 8/108
|
||||
f 4/103 5/7 27/104
|
||||
f 31/109 18/110 37/111
|
||||
f 37/111 18/110 19/112
|
198
models/crystal_shape02.obj
Normal file
@ -0,0 +1,198 @@
|
||||
# Blender v2.77 (sub 0) OBJ File: ''
|
||||
# www.blender.org
|
||||
mtllib crystal_shape02.mtl
|
||||
o Crystal_Taya2.000
|
||||
v 0.006739 0.025244 0.012075
|
||||
v 0.001956 0.043504 0.004196
|
||||
v 0.004129 0.024144 0.013098
|
||||
v 0.011672 0.002214 0.025031
|
||||
v 0.000000 0.051819 0.000000
|
||||
v 0.026389 -0.000477 -0.012306
|
||||
v 0.023148 -0.023541 0.023148
|
||||
v 0.012306 -0.000477 0.026389
|
||||
v 0.023266 -0.013100 -0.018731
|
||||
v 0.024664 -0.012754 -0.016476
|
||||
v 0.023359 -0.022037 -0.022441
|
||||
v -0.006315 0.024980 -0.013543
|
||||
v -0.008197 0.010863 -0.020143
|
||||
v 0.023148 -0.023541 -0.023148
|
||||
v -0.011933 0.001106 -0.025590
|
||||
v -0.012306 -0.000477 -0.026389
|
||||
v -0.010407 0.010810 -0.018614
|
||||
v -0.018415 0.015325 0.008587
|
||||
v -0.009799 0.031187 0.003172
|
||||
v -0.001187 0.049467 0.000554
|
||||
v -0.023148 -0.023541 -0.023148
|
||||
v -0.026389 -0.000477 0.012306
|
||||
v -0.009284 0.030199 0.005679
|
||||
v -0.023148 -0.023541 0.023148
|
||||
v -0.019685 -0.048181 -0.019685
|
||||
v 0.019685 -0.048181 -0.019685
|
||||
v 0.019685 -0.048181 0.019685
|
||||
v -0.019685 -0.048181 0.019685
|
||||
vt 0.0323 -0.2020
|
||||
vt -0.0000 0.0000
|
||||
vt 0.0048 -0.2141
|
||||
vt 0.0306 -0.2671
|
||||
vt -0.0000 0.0000
|
||||
vt -0.0273 -0.0128
|
||||
vt 0.0000 0.0000
|
||||
vt -0.0327 -0.0894
|
||||
vt 0.2059 -0.5620
|
||||
vt -0.0904 -0.2856
|
||||
vt -0.1383 -0.8099
|
||||
vt -0.1953 -0.5331
|
||||
vt -0.2059 -0.5620
|
||||
vt 0.0710 -0.1265
|
||||
vt -0.0000 0.0000
|
||||
vt 0.0445 -0.1230
|
||||
vt 0.0304 -0.0919
|
||||
vt -0.0000 0.0000
|
||||
vt -0.0265 0.0036
|
||||
vt -0.2059 -0.5620
|
||||
vt 0.1057 -0.2884
|
||||
vt -0.1546 -0.6977
|
||||
vt 0.1459 -0.4402
|
||||
vt -0.1383 -0.8099
|
||||
vt 0.1997 -0.5450
|
||||
vt 0.2059 -0.5620
|
||||
vt -0.1428 -0.7937
|
||||
vt 0.0000 0.0000
|
||||
vt 0.0280 0.1172
|
||||
vt 0.0012 0.1178
|
||||
vt 0.0000 0.0000
|
||||
vt -0.0042 0.1559
|
||||
vt -0.0269 0.0006
|
||||
vt -0.1393 -0.4407
|
||||
vt 0.1437 -0.3922
|
||||
vt -0.1057 -0.2884
|
||||
vt 0.0633 -0.2217
|
||||
vt 0.0093 -0.0253
|
||||
vt -0.1383 -0.8099
|
||||
vt -0.1997 -0.5450
|
||||
vt -0.2059 -0.5620
|
||||
vt 0.2059 -0.5620
|
||||
vt 0.0000 0.0000
|
||||
vt 0.0137 0.1764
|
||||
vt -0.0111 0.1881
|
||||
vt 0.0000 0.0000
|
||||
vt -0.0163 0.2146
|
||||
vt -0.0251 0.0110
|
||||
vt 0.0327 -0.0894
|
||||
vt -0.0678 -0.2324
|
||||
vt 0.0836 -0.2974
|
||||
vt -0.1437 -0.3922
|
||||
vt -0.1383 -0.8099
|
||||
vt -0.2059 -0.5620
|
||||
vt -0.0093 -0.0253
|
||||
vt 0.2059 -0.5620
|
||||
vt 0.1953 -0.5331
|
||||
vt -0.0738 0.4817
|
||||
vt -0.4283 0.2488
|
||||
vt 0.0346 0.2488
|
||||
vt 0.0000 0.0000
|
||||
vt -0.3937 0.0000
|
||||
vt -0.0738 0.4817
|
||||
vt -0.4283 0.2488
|
||||
vt -0.0321 0.3577
|
||||
vt 0.0276 0.2640
|
||||
vt 0.0346 0.2488
|
||||
vt 0.0000 0.0000
|
||||
vt -0.3937 0.0000
|
||||
vt -0.0738 0.4817
|
||||
vt -0.4283 0.2488
|
||||
vt 0.0346 0.2488
|
||||
vt 0.0000 0.0000
|
||||
vt -0.3937 0.0000
|
||||
vt -0.0738 0.4817
|
||||
vt -0.4283 0.2488
|
||||
vt 0.0346 0.2488
|
||||
vt 0.0000 0.0000
|
||||
vt -0.3937 0.0000
|
||||
vt 0.1969 0.1969
|
||||
vt -0.1969 0.1969
|
||||
vt 0.1969 -0.1969
|
||||
vt -0.1969 -0.1969
|
||||
vn 0.1681 0.4273 0.8883
|
||||
vn 0.1213 0.5063 0.8538
|
||||
vn 0.8744 0.3663 0.3183
|
||||
vn 0.8744 0.3663 0.3182
|
||||
vn 0.8745 0.3664 0.3178
|
||||
vn 0.8439 0.0624 -0.5328
|
||||
vn 0.8105 0.2318 -0.5380
|
||||
vn 0.3182 0.3663 -0.8744
|
||||
vn 0.3183 0.3663 -0.8744
|
||||
vn 0.3181 0.3663 -0.8744
|
||||
vn -0.4802 0.5605 -0.6747
|
||||
vn -0.5239 0.4171 -0.7427
|
||||
vn -0.8744 0.3663 -0.3182
|
||||
vn -0.8744 0.3663 -0.3183
|
||||
vn -0.8744 0.3663 -0.3181
|
||||
vn -0.7587 0.5377 0.3678
|
||||
vn -0.8295 0.4401 0.3438
|
||||
vn -0.3182 0.3663 0.8744
|
||||
vn -0.3183 0.3663 0.8744
|
||||
vn -0.3181 0.3663 0.8744
|
||||
vn -0.3180 0.3664 0.8744
|
||||
vn -0.3181 0.3664 0.8744
|
||||
vn 0.0000 -0.1392 -0.9903
|
||||
vn 0.9903 -0.1391 0.0000
|
||||
vn 0.9903 -0.1392 0.0000
|
||||
vn 0.9903 -0.1390 -0.0000
|
||||
vn 0.0000 -0.1392 0.9903
|
||||
vn -0.9903 -0.1392 -0.0000
|
||||
vn 0.0000 -1.0000 -0.0000
|
||||
usemtl wire_191191191.000
|
||||
s 1
|
||||
f 1/1/1 2/2/1 3/3/1
|
||||
f 4/4/2 1/5/2 3/6/2
|
||||
f 5/7/3 2/8/3 6/9/4
|
||||
f 6/9/4 2/8/3 1/10/4
|
||||
f 6/9/4 1/10/4 7/11/4
|
||||
f 7/11/4 1/10/4 4/12/4
|
||||
f 7/11/4 4/12/4 8/13/5
|
||||
f 9/14/6 6/15/6 10/16/6
|
||||
f 11/17/7 9/18/7 10/19/7
|
||||
f 5/7/8 6/20/8 12/21/8
|
||||
f 12/21/8 6/20/8 9/22/8
|
||||
f 12/21/8 9/22/8 13/23/8
|
||||
f 13/23/8 9/22/8 14/24/9
|
||||
f 13/23/8 14/24/9 15/25/8
|
||||
f 15/25/8 14/24/9 16/26/8
|
||||
f 9/22/8 11/27/10 14/24/9
|
||||
f 15/28/11 17/29/11 13/30/11
|
||||
f 17/31/12 12/32/12 13/33/12
|
||||
f 17/34/13 18/35/13 12/36/14
|
||||
f 12/36/14 18/35/13 19/37/14
|
||||
f 12/36/14 19/37/14 20/38/13
|
||||
f 18/35/13 17/34/13 21/39/13
|
||||
f 21/39/13 17/34/13 15/40/13
|
||||
f 21/39/13 15/40/13 16/41/15
|
||||
f 21/39/13 22/42/13 18/35/13
|
||||
f 20/38/13 5/7/13 12/36/14
|
||||
f 18/43/16 23/44/16 19/45/16
|
||||
f 23/46/17 20/47/17 19/48/17
|
||||
f 2/49/18 23/50/19 3/51/19
|
||||
f 3/51/19 23/50/19 18/52/18
|
||||
f 3/51/19 18/52/18 24/53/18
|
||||
f 24/53/18 18/52/18 22/54/20
|
||||
f 5/7/21 20/55/22 2/49/18
|
||||
f 2/49/18 20/55/22 23/50/19
|
||||
f 8/56/18 4/57/18 24/53/18
|
||||
f 24/53/18 4/57/18 3/51/19
|
||||
f 16/58/23 14/59/23 21/60/23
|
||||
f 21/60/23 14/59/23 25/61/23
|
||||
f 25/61/23 14/59/23 26/62/23
|
||||
f 6/63/24 7/64/25 10/65/25
|
||||
f 10/65/25 7/64/25 11/66/26
|
||||
f 11/66/26 7/64/25 14/67/24
|
||||
f 14/67/24 7/64/25 26/68/25
|
||||
f 26/68/25 7/64/25 27/69/25
|
||||
f 8/70/27 24/71/27 7/72/27
|
||||
f 7/72/27 24/71/27 27/73/27
|
||||
f 27/73/27 24/71/27 28/74/27
|
||||
f 22/75/28 21/76/28 24/77/28
|
||||
f 24/77/28 21/76/28 28/78/28
|
||||
f 28/78/28 21/76/28 25/79/28
|
||||
f 27/80/29 28/81/29 26/82/29
|
||||
f 26/82/29 28/81/29 25/83/29
|
76
redsky_asteroids.lua
Normal file
@ -0,0 +1,76 @@
|
||||
if otherworlds.settings.redsky_asteroids.enable then
|
||||
|
||||
-- Approximate realm limits
|
||||
local YMIN = otherworlds.settings.redsky_asteroids.YMIN or 6000
|
||||
local YMAX = otherworlds.settings.redsky_asteroids.YMAX or 7000
|
||||
|
||||
-- Register on_generated function for this layer
|
||||
|
||||
minetest.register_on_generated(otherworlds.asteroids.create_on_generated(YMIN, YMAX, {
|
||||
c_air = minetest.get_content_id("air"),
|
||||
c_obsidian = minetest.get_content_id("default:obsidian"),
|
||||
c_stone = minetest.get_content_id("asteroid:redstone"),
|
||||
c_cobble = minetest.get_content_id("air"),
|
||||
c_gravel = minetest.get_content_id("asteroid:redgravel"),
|
||||
c_dust = minetest.get_content_id("asteroid:reddust"),
|
||||
c_ironore = minetest.get_content_id("asteroid:ironore"),
|
||||
c_copperore = minetest.get_content_id("asteroid:copperore"),
|
||||
c_goldore = minetest.get_content_id("asteroid:goldore"),
|
||||
c_diamondore = minetest.get_content_id("asteroid:diamondore"),
|
||||
c_meseore = minetest.get_content_id("asteroid:meseore"),
|
||||
c_waterice = minetest.get_content_id("default:ice"),
|
||||
c_atmos = minetest.get_content_id("asteroid:atmos"),
|
||||
c_snowblock = minetest.get_content_id("default:snowblock"),
|
||||
}))
|
||||
|
||||
|
||||
-- Deco code for grass and crystal
|
||||
|
||||
local TOPDECO = 500 -- how often surface decoration appears on top of asteroid cobble
|
||||
|
||||
local grass = {
|
||||
"mars:grass_1", "mars:grass_2", "mars:grass_3",
|
||||
"mars:grass_4", "mars:grass_5"
|
||||
}
|
||||
local flower = {
|
||||
"mars:moss", "mars:redweed", "mars:redgrass"
|
||||
}
|
||||
local crystal = {
|
||||
"crystals:ghost_crystal_1", "crystals:ghost_crystal_2",
|
||||
"crystals:red_crystal_1", "crystals:red_crystal_2",
|
||||
"crystals:rose_quartz_1", "crystals:rose_quartz_2",
|
||||
}
|
||||
|
||||
-- Add surface decoration
|
||||
minetest.register_on_generated(function(minp, maxp)
|
||||
|
||||
if minp.y < YMIN or maxp.y > YMAX then
|
||||
return
|
||||
end
|
||||
|
||||
local bpos, ran
|
||||
local coal = minetest.find_nodes_in_area_under_air(minp, maxp,
|
||||
{"asteroid:redgravel"})
|
||||
|
||||
for n = 1, #coal do
|
||||
|
||||
bpos = {x = coal[n].x, y = coal[n].y + 1, z = coal[n].z }
|
||||
|
||||
ran = math.random(TOPDECO)
|
||||
|
||||
if ran < 100 then -- grass
|
||||
|
||||
minetest.swap_node(bpos, {name = grass[ math.random(1, #grass) ] })
|
||||
|
||||
elseif ran >= 180 and ran <= 200 then -- other plants
|
||||
|
||||
minetest.swap_node(bpos, {name = flower[ math.random(1, #flower) ] })
|
||||
|
||||
elseif ran == TOPDECO then -- crystals
|
||||
|
||||
minetest.swap_node(bpos, {name = crystal[ math.random(1, #crystal) ] })
|
||||
end
|
||||
end
|
||||
end)
|
||||
|
||||
end
|
21
settings.lua
Normal file
@ -0,0 +1,21 @@
|
||||
otherworlds.settings = {}
|
||||
|
||||
-- general
|
||||
otherworlds.settings.crafting = {
|
||||
enable = true, --set to false to remove crafting recipes
|
||||
}
|
||||
|
||||
-- space_asteroids
|
||||
otherworlds.settings.space_asteroids = {
|
||||
enable = true, -- set to false to prevent space mapgen
|
||||
YMIN = 5000,
|
||||
YMAX = 6000,
|
||||
}
|
||||
|
||||
|
||||
-- redsky_asteroids
|
||||
otherworlds.settings.redsky_asteroids = {
|
||||
enable = true, -- set to false to prevent redsky mapgen
|
||||
YMIN = 6000,
|
||||
YMAX = 7000,
|
||||
}
|
75
skybox.lua
Normal file
@ -0,0 +1,75 @@
|
||||
--Heights for skyboxes
|
||||
local space_low = 5000
|
||||
local space_high = 5999
|
||||
local redsky_low = 6000
|
||||
local redsky_high = 6999
|
||||
|
||||
|
||||
local player_list = {} -- Holds name of skybox showing for each player
|
||||
|
||||
--Outerspace skybox
|
||||
local spaceskybox = {
|
||||
"sky_pos_z.png",
|
||||
"sky_neg_z.png^[transformR180",
|
||||
"sky_neg_y.png^[transformR270",
|
||||
"sky_pos_y.png^[transformR270",
|
||||
"sky_pos_x.png^[transformR270",
|
||||
"sky_neg_x.png^[transformR90",
|
||||
}
|
||||
|
||||
--Redsky skybox
|
||||
local redskybox = {
|
||||
"sky_pos_z.png^[colorize:#99000050",
|
||||
"sky_neg_z.png^[transformR180^[colorize:#99000050",
|
||||
"sky_neg_y.png^[transformR270^[colorize:#99000050",
|
||||
"sky_pos_y.png^[transformR270^[colorize:#99000050",
|
||||
"sky_pos_x.png^[transformR270^[colorize:#99000050",
|
||||
"sky_neg_x.png^[transformR90^[colorize:#99000050",
|
||||
}
|
||||
|
||||
|
||||
local timer = 0
|
||||
|
||||
minetest.register_globalstep(function(dtime)
|
||||
|
||||
timer = timer + dtime
|
||||
|
||||
if timer < 2 then
|
||||
return
|
||||
end
|
||||
|
||||
timer = 0
|
||||
|
||||
for _, player in pairs(minetest.get_connected_players()) do
|
||||
|
||||
local name = player:get_player_name()
|
||||
local pos = player:getpos()
|
||||
local current = player_list[name] or ""
|
||||
|
||||
-- Earth
|
||||
if pos.y < space_low and current ~= "earth" then
|
||||
player:set_sky({}, "regular", {})
|
||||
player_list[name] = "earth"
|
||||
|
||||
-- Outerspace
|
||||
elseif pos.y > space_low and pos.y < space_high and current ~= "space" then
|
||||
player:set_sky({}, "skybox", spaceskybox)
|
||||
player_list[name] = "space"
|
||||
|
||||
-- Redsky
|
||||
elseif pos.y > redsky_low and pos.y < redsky_high and current ~= "redsky" then
|
||||
player:set_sky({}, "skybox", redskybox)
|
||||
player_list[name] = "redsky"
|
||||
|
||||
-- Everything else (blackness)
|
||||
elseif pos.y > redsky_high and current ~= "blackness" then
|
||||
player:set_sky(000000, "plain", {})
|
||||
player_list[name] = "blackness"
|
||||
end
|
||||
end
|
||||
end)
|
||||
|
||||
minetest.register_on_leaveplayer(function(player)
|
||||
local name = player:get_player_name()
|
||||
player_list[name] = nil
|
||||
end)
|
26
space_asteroids.lua
Normal file
@ -0,0 +1,26 @@
|
||||
if otherworlds.settings.space_asteroids.enable then
|
||||
|
||||
-- Approximate realm limits
|
||||
local YMIN = otherworlds.settings.space_asteroids.YMIN or 5000
|
||||
local YMAX = otherworlds.settings.space_asteroids.YMAX or 6000
|
||||
|
||||
-- Register on_generated function for this layer
|
||||
|
||||
minetest.register_on_generated(otherworlds.asteroids.create_on_generated(YMIN, YMAX, {
|
||||
c_air = minetest.get_content_id("air"),
|
||||
c_obsidian = minetest.get_content_id("default:obsidian"),
|
||||
c_stone = minetest.get_content_id("asteroid:stone"),
|
||||
c_cobble = minetest.get_content_id("asteroid:cobble"),
|
||||
c_gravel = minetest.get_content_id("asteroid:gravel"),
|
||||
c_dust = minetest.get_content_id("asteroid:dust"),
|
||||
c_ironore = minetest.get_content_id("default:stone_with_iron"),
|
||||
c_copperore = minetest.get_content_id("default:stone_with_copper"),
|
||||
c_goldore = minetest.get_content_id("default:stone_with_gold"),
|
||||
c_diamondore = minetest.get_content_id("default:stone_with_diamond"),
|
||||
c_meseore = minetest.get_content_id("default:stone_with_messe"),
|
||||
c_waterice = minetest.get_content_id("default:ice"),
|
||||
c_atmos = minetest.get_content_id("asteroid:atmos"),
|
||||
c_snowblock = minetest.get_content_id("default:snowblock"),
|
||||
}))
|
||||
|
||||
end
|
136
space_nodes.lua
Normal file
@ -0,0 +1,136 @@
|
||||
-- Nodes
|
||||
|
||||
minetest.register_node(":asteroid:stone", {
|
||||
description = "Asteroid Stone",
|
||||
tiles = {"default_stone.png"},
|
||||
is_ground_content = false,
|
||||
drop = 'asteroid:cobble',
|
||||
groups = {cracky = 3, not_in_creative_inventory=1},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:redstone", {
|
||||
description = "Asteroid Stone",
|
||||
tiles = {"asteroid_redstone.png"},
|
||||
is_ground_content = false,
|
||||
drop = 'asteroid:redcobble',
|
||||
groups = {cracky = 3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:cobble", {
|
||||
description = "Asteroid Cobble",
|
||||
tiles = {"asteroid_cobble.png"},
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:redcobble", {
|
||||
description = "Asteroid Cobble",
|
||||
tiles = {"asteroid_redcobble.png"},
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:gravel", {
|
||||
description = "Asteroid gravel",
|
||||
tiles = {"asteroid_gravel.png"},
|
||||
is_ground_content = false,
|
||||
groups = {crumbly = 2},
|
||||
sounds = default.node_sound_dirt_defaults({
|
||||
footstep = {name = "default_gravel_footstep", gain = 0.2},
|
||||
}),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:redgravel", {
|
||||
description = "Asteroid gravel",
|
||||
tiles = {"asteroid_redgravel.png"},
|
||||
is_ground_content = false,
|
||||
groups = {crumbly = 2},
|
||||
sounds = default.node_sound_dirt_defaults({
|
||||
footstep = {name = "default_gravel_footstep", gain = 0.2},
|
||||
}),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:dust", {
|
||||
description = "Asteroid Dust",
|
||||
tiles = {"asteroid_dust.png"},
|
||||
is_ground_content = false,
|
||||
groups = {crumbly = 3},
|
||||
sounds = default.node_sound_dirt_defaults({
|
||||
footstep = {name = "default_gravel_footstep", gain = 0.1},
|
||||
}),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:reddust", {
|
||||
description = "Asteroid Dust",
|
||||
tiles = {"asteroid_reddust.png"},
|
||||
is_ground_content = false,
|
||||
groups = {crumbly = 3},
|
||||
sounds = default.node_sound_dirt_defaults({
|
||||
footstep = {name = "default_gravel_footstep", gain = 0.1},
|
||||
}),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:ironore", {
|
||||
description = "Asteroid Iron Ore",
|
||||
tiles = {"asteroid_redstone.png^default_mineral_iron.png"},
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 2},
|
||||
drop = "default:iron_lump",
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:copperore", {
|
||||
description = "Asteroid Copper Ore",
|
||||
tiles = {"asteroid_redstone.png^default_mineral_copper.png"},
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 2},
|
||||
drop = "default:copper_lump",
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:goldore", {
|
||||
description = "Asteroid Gold Ore",
|
||||
tiles = {"asteroid_redstone.png^default_mineral_gold.png"},
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 2},
|
||||
drop = "default:gold_lump",
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:diamondore", {
|
||||
description = "Asteroid Diamond Ore",
|
||||
tiles = {"asteroid_redstone.png^default_mineral_diamond.png"},
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 1},
|
||||
drop = "default:diamond",
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:meseore", {
|
||||
description = "Asteroid Mese Ore",
|
||||
tiles = {"asteroid_redstone.png^default_mineral_mese.png"},
|
||||
is_ground_content = false,
|
||||
groups = {cracky = 1},
|
||||
drop = "default:mese_crystal",
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node(":asteroid:atmos", {
|
||||
description = "Comet Atmosphere",
|
||||
drawtype = "glasslike",
|
||||
tiles = {"asteroid_atmos.png"},
|
||||
paramtype = "light",
|
||||
sunlight_propagates = true,
|
||||
walkable = false,
|
||||
pointable = false,
|
||||
diggable = false,
|
||||
buildable_to = true,
|
||||
is_ground_content = false,
|
||||
use_texture_alpha = true,
|
||||
post_effect_color = {a = 31, r = 241, g = 248, b = 255},
|
||||
groups = {not_in_creative_inventory = 1},
|
||||
})
|
BIN
textures/asteroid_atmos.png
Normal file
After Width: | Height: | Size: 96 B |
BIN
textures/asteroid_cobble.png
Normal file
After Width: | Height: | Size: 660 B |
BIN
textures/asteroid_dust.png
Normal file
After Width: | Height: | Size: 672 B |
BIN
textures/asteroid_gravel.png
Normal file
After Width: | Height: | Size: 524 B |
BIN
textures/asteroid_redcobble.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
textures/asteroid_reddust.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
textures/asteroid_redgravel.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
textures/asteroid_redstone.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
BIN
textures/crystals_ghost_crystal.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
textures/crystals_red_crystal.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
textures/crystals_rose_quartz.png
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
textures/mars_grass_1.png
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
textures/mars_grass_2.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
textures/mars_grass_3.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
textures/mars_grass_4.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
textures/mars_grass_5.png
Normal file
After Width: | Height: | Size: 3.2 KiB |
BIN
textures/mars_moss.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
textures/mars_redgrass.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
textures/mars_redweed.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
textures/sky_neg_x.png
Normal file
After Width: | Height: | Size: 297 KiB |
BIN
textures/sky_neg_y.png
Normal file
After Width: | Height: | Size: 331 KiB |
BIN
textures/sky_neg_z.png
Normal file
After Width: | Height: | Size: 388 KiB |
BIN
textures/sky_pos_x.png
Normal file
After Width: | Height: | Size: 336 KiB |
BIN
textures/sky_pos_y.png
Normal file
After Width: | Height: | Size: 403 KiB |
BIN
textures/sky_pos_z.png
Normal file
After Width: | Height: | Size: 290 KiB |