add coral skeleton to ocean decorations

This commit is contained in:
Juraj Vajda 2023-03-06 14:30:54 -05:00
parent e56160a2b9
commit 80e03581c8
4 changed files with 16 additions and 4 deletions

View File

@ -94,5 +94,9 @@ minetest.register_decoration({
y_max = y_max - 5 > y_min and y_max - 5 or y_max, y_max = y_max - 5 > y_min and y_max - 5 or y_max,
y_min = y_max - 11 > y_min and y_max - 11 or y_min, y_min = y_max - 11 > y_min and y_max - 11 or y_min,
flags = 'force_placement', flags = 'force_placement',
decoration = { 'everness:coral_corals', 'everness:coral_jellyfish' }, decoration = {
'everness:coral_corals',
'everness:coral_jellyfish',
'default:coral_skeleton'
},
}) })

View File

@ -69,6 +69,7 @@ minetest.register_decoration({
flags = 'force_placement', flags = 'force_placement',
decoration = { decoration = {
'everness:crystal_coral_dark', 'everness:crystal_coral_dark',
'everness:crystal_coral_light' 'everness:crystal_coral_light',
'default:coral_skeleton'
}, },
}) })

View File

@ -94,7 +94,10 @@ minetest.register_decoration({
y_max = y_max - (y_max + 5), y_max = y_max - (y_max + 5),
y_min = y_max - (y_max + 10), y_min = y_max - (y_max + 10),
flags = 'force_placement', flags = 'force_placement',
decoration = 'everness:sand_with_spine_kelp', decoration = {
'everness:sand_with_spine_kelp',
'default:coral_skeleton'
},
param2 = 48, param2 = 48,
param2_max = 96, param2_max = 96,
}) })

View File

@ -67,5 +67,9 @@ minetest.register_decoration({
y_max = y_max - (y_max + 2), -- -2 y_max = y_max - (y_max + 2), -- -2
y_min = y_max - (y_max + 50), -- -50 y_min = y_max - (y_max + 50), -- -50
flags = 'force_placement', flags = 'force_placement',
decoration = { 'everness:coral_starfish', 'everness:coral_frosted' }, decoration = {
'everness:coral_starfish',
'everness:coral_frosted',
'default:coral_skeleton'
},
}) })