Fix typo and capitalization of some items
Depp → Deep Ceramic Pot flowers → Ceramic Pot Flowers Lotus Flower pink → Lotus Flower Pink
This commit is contained in:
parent
a5ac304413
commit
f494f44eb3
|
@ -93,8 +93,8 @@ Double Willow Wood Slab=
|
|||
Double Magma Cobblestone Slab=
|
||||
Double Volcanic Rock Slab=
|
||||
Double Volcanic Rock with Magma Slab=
|
||||
Double Coral Depp Ocean Sandstone Block Slab=
|
||||
Double Coral Depp Ocean Sandstone Brick Slab=
|
||||
Double Coral Deep Ocean Sandstone Block Slab=
|
||||
Double Coral Deep Ocean Sandstone Brick Slab=
|
||||
Double Coral White Sandstone Slab=
|
||||
Double Coral White Sandstone Pillar Slab=
|
||||
Double Coral White Sandstone Brick Slab=
|
||||
|
@ -169,10 +169,10 @@ Volcanic Rock Stair=
|
|||
Volcanic Rock Slab=
|
||||
Volcanic Rock with Magma Stair=
|
||||
Volcanic Rock with Magma Slab=
|
||||
Coral Depp Ocean Sandstone Block Stair=
|
||||
Coral Depp Ocean Sandstone Block Slab=
|
||||
Coral Depp Ocean Sandstone Brick Stair=
|
||||
Coral Depp Ocean Sandstone Brick Slab=
|
||||
Coral Deep Ocean Sandstone Block Stair=
|
||||
Coral Deep Ocean Sandstone Block Slab=
|
||||
Coral Deep Ocean Sandstone Brick Stair=
|
||||
Coral Deep Ocean Sandstone Brick Slab=
|
||||
Coral White Sandstone Stair=
|
||||
Coral White Sandstone Slab=
|
||||
Coral White Sandstone Pillar Stair=
|
||||
|
@ -375,12 +375,12 @@ Cursed Mud=
|
|||
Cobweb=
|
||||
Cave Flower=
|
||||
Cave Flower with Particles=
|
||||
Lotus Flower pink=
|
||||
Lotus Flower pink Animated=
|
||||
Lotus Flower purple=
|
||||
Lotus Flower purple Animated=
|
||||
Lotus Flower white=
|
||||
Lotus Flower white Animated=
|
||||
Lotus Flower Pink=
|
||||
Lotus Flower Pink Animated=
|
||||
Lotus Flower Purple=
|
||||
Lotus Flower Purple Animated=
|
||||
Lotus Flower White=
|
||||
Lotus Flower White Animated=
|
||||
Lotus Leaf=
|
||||
Lotus Leaf Dry=
|
||||
Forsaken Fire=
|
||||
|
@ -521,14 +521,14 @@ Lava Source=
|
|||
Flowing Lava=
|
||||
Water Geyser=
|
||||
Water Geyser Active=
|
||||
Ceramic Pot blank=
|
||||
Ceramic Pot blank Sherd=
|
||||
Ceramic Pot flowers=
|
||||
Ceramic Pot flowers Sherd=
|
||||
Ceramic Pot lines=
|
||||
Ceramic Pot lines Sherd=
|
||||
Ceramic Pot tribal=
|
||||
Ceramic Pot tribal Sherd=
|
||||
Ceramic Pot Blank=
|
||||
Ceramic Pot Blank Sherd=
|
||||
Ceramic Pot Flowers=
|
||||
Ceramic Pot Flowers Sherd=
|
||||
Ceramic Pot Lines=
|
||||
Ceramic Pot Lines Sherd=
|
||||
Ceramic Pot Tribal=
|
||||
Ceramic Pot Tribal Sherd=
|
||||
If destroyed by archelogical pick axe, it will drop ceramic sherds instead of ceramic pot item.=
|
||||
(owned by @1)=
|
||||
Sand Castle Wall=
|
||||
|
|
|
@ -630,12 +630,12 @@ mcl_stairs.register_stair_and_slab(
|
|||
'everness:coral_deep_ocean_sandstone_block',
|
||||
{ pickaxey = 2 },
|
||||
{ 'everness_deep_ocean_sandstone_block.png' },
|
||||
S('Coral Depp Ocean Sandstone Block Stair'),
|
||||
S('Coral Depp Ocean Sandstone Block Slab'),
|
||||
S('Coral Deep Ocean Sandstone Block Stair'),
|
||||
S('Coral Deep Ocean Sandstone Block Slab'),
|
||||
Everness.node_sound_stone_defaults(),
|
||||
6,
|
||||
2,
|
||||
S('Double Coral Depp Ocean Sandstone Block Slab'),
|
||||
S('Double Coral Deep Ocean Sandstone Block Slab'),
|
||||
nil
|
||||
)
|
||||
|
||||
|
@ -644,12 +644,12 @@ mcl_stairs.register_stair_and_slab(
|
|||
'everness:coral_deep_ocean_sandstone_brick',
|
||||
{ pickaxey = 2 },
|
||||
{ 'everness_deep_ocean_sandstone_brick.png' },
|
||||
S('Coral Depp Ocean Sandstone Brick Stair'),
|
||||
S('Coral Depp Ocean Sandstone Brick Slab'),
|
||||
S('Coral Deep Ocean Sandstone Brick Stair'),
|
||||
S('Coral Deep Ocean Sandstone Brick Slab'),
|
||||
Everness.node_sound_stone_defaults(),
|
||||
6,
|
||||
2,
|
||||
S('Double Coral Depp Ocean Sandstone Brick Slab'),
|
||||
S('Double Coral Deep Ocean Sandstone Brick Slab'),
|
||||
nil
|
||||
)
|
||||
|
||||
|
|
24
nodes.lua
24
nodes.lua
|
@ -3741,12 +3741,13 @@ local lotus_flower_def = {
|
|||
}
|
||||
|
||||
-- For detection by update_translations script.
|
||||
-- S('Lotus Flower pink'); S('Lotus Flower pink Animated')
|
||||
-- S('Lotus Flower purple'); S('Lotus Flower purple Animated')
|
||||
-- S('Lotus Flower white'); S('Lotus Flower white Animated')
|
||||
for _, color in ipairs({ 'pink', 'purple', 'white' }) do
|
||||
-- S('Lotus Flower Pink'); S('Lotus Flower Pink Animated')
|
||||
-- S('Lotus Flower Purple'); S('Lotus Flower Purple Animated')
|
||||
-- S('Lotus Flower White'); S('Lotus Flower White Animated')
|
||||
for _, color in ipairs({ 'Pink', 'Purple', 'White' }) do
|
||||
local def = table.copy(lotus_flower_def)
|
||||
local flower_name = 'Lotus Flower ' .. color
|
||||
local flower_name = 'Lotus Flower ' .. color
|
||||
color = string.lower(color)
|
||||
|
||||
def.description = S(flower_name)
|
||||
def.short_description = S(flower_name)
|
||||
|
@ -11672,12 +11673,13 @@ Everness:register_node('everness:water_geyser_active', {
|
|||
})
|
||||
|
||||
-- For detection by update_translations script.
|
||||
-- S('Ceramic Pot blank'); S('Ceramic Pot blank Sherd')
|
||||
-- S('Ceramic Pot flowers'); S('Ceramic Pot flowers Sherd')
|
||||
-- S('Ceramic Pot lines'); S('Ceramic Pot lines Sherd')
|
||||
-- S('Ceramic Pot tribal'); S('Ceramic Pot tribal Sherd')
|
||||
for i, v in ipairs({ 'blank', 'flowers', 'lines', 'tribal' }) do
|
||||
local pot_name = 'Ceramic Pot ' .. v
|
||||
-- S('Ceramic Pot Blank'); S('Ceramic Pot Blank Sherd')
|
||||
-- S('Ceramic Pot Flowers'); S('Ceramic Pot Flowers Sherd')
|
||||
-- S('Ceramic Pot Lines'); S('Ceramic Pot Lines Sherd')
|
||||
-- S('Ceramic Pot Tribal'); S('Ceramic Pot Tribal Sherd')
|
||||
for i, v in ipairs({ 'Blank', 'Flowers', 'Lines', 'Tribal' }) do
|
||||
local pot_name = 'Ceramic Pot ' .. v
|
||||
v = string.lower(v)
|
||||
Everness:register_node('everness:ceramic_pot_' .. v, {
|
||||
description = S(pot_name) .. '. ' .. S('If destroyed by archelogical pick axe, it will drop ceramic sherds instead of ceramic pot item.'),
|
||||
short_description = S(pot_name),
|
||||
|
|
|
@ -450,8 +450,8 @@ stairs.register_stair_and_slab(
|
|||
'everness:coral_deep_ocean_sandstone_block',
|
||||
{ cracky = 2 },
|
||||
{ 'everness_deep_ocean_sandstone_block.png' },
|
||||
S('Coral Depp Ocean Sandstone Block Stair'),
|
||||
S('Coral Depp Ocean Sandstone Block Slab'),
|
||||
S('Coral Deep Ocean Sandstone Block Stair'),
|
||||
S('Coral Deep Ocean Sandstone Block Slab'),
|
||||
Everness.node_sound_stone_defaults(),
|
||||
true
|
||||
)
|
||||
|
@ -461,8 +461,8 @@ stairs.register_stair_and_slab(
|
|||
'everness:coral_deep_ocean_sandstone_brick',
|
||||
{ cracky = 2 },
|
||||
{ 'everness_deep_ocean_sandstone_brick.png' },
|
||||
S('Coral Depp Ocean Sandstone Brick Stair'),
|
||||
S('Coral Depp Ocean Sandstone Brick Slab'),
|
||||
S('Coral Deep Ocean Sandstone Brick Stair'),
|
||||
S('Coral Deep Ocean Sandstone Brick Slab'),
|
||||
Everness.node_sound_stone_defaults(),
|
||||
true
|
||||
)
|
||||
|
|
Ŝarĝante…
Reference in New Issue