titanic_mod/init.lua

3428 lines
106 KiB
Lua

minetest.register_node("titanic_mod:squash_court_1", {
description = "Squash Court 1",
tiles = {"squash_court_1.png",
"verkleidung.png",
"squash_court_1.png"},
paramtype2 = "wallmounted",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:squash_court_2", {
description = "Squash Court 2",
tiles = {"squash_court_2.png",
"verkleidung.png",
"squash_court_2.png"},
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:squash_court_3", {
description = "Squash Court 3",
tiles = {"squash_court_3.png",
"verkleidung.png",
"squash_court_3.png"},
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:turkish_bath1", {
description = "turkish bath 1",
tiles = {"turkish_bath1.png"},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:turkish_bath_wand1", {
description = "turkish bath Wand 1",
paramtype2 = "facedir",
tiles = {
"turkish_bath_wand1.png",
"turkish_bath_wand1.png",
"turkish_bath_wand1.png",
"turkish_bath_wand1.png",
"verkleidung.png",
"turkish_bath_wand1.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:turkish_bath_holzverkleidung1", {
description = "turkish bath Holzverkleidung 1",
paramtype2 = "facedir",
tiles = {
"turkish_bath_holzverkleidung1.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:turkish_bath_holzverkleidung2", {
description = "turkish bath Holzverkleidung 2",
paramtype2 = "facedir",
tiles = {
"turkish_bath_holzverkleidung1.png",
"turkish_bath_holzverkleidung1.png",
"verkleidung.png",
"turkish_bath_holzverkleidung1.png",
"verkleidung.png",
"turkish_bath_holzverkleidung1.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:turkish_bath_holzverkleidung3", {
description = "turkish bath Holzverkleidung 3",
paramtype2 = "facedir",
tiles = {
"turkish_bath_holzverkleidung1.png",
"turkish_bath_holzverkleidung1.png",
"coral.png",
"turkish_bath_holzverkleidung1.png",
"coral.png",
"turkish_bath_holzverkleidung1.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_diningsasloon_floor", {
description = "1st Class Dining Saloon Floor",
tiles = {"1st_class_diningsasloon_floor.png",
"verkleidung.png",
"1st_class_diningsasloon_floor.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:enigneers_stone1", {
description = "Engineers Stone1",
tiles = {"verkleidung.png",
"verkleidung.png",
"junglewood.png",
"verkleidung.png",
"junglewood.png",
"verkleidung.png",
},
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:temperate_room_wall1", {
description = "Temperate Room Wall 1",
tiles = {"temperate_room_wall1.png",
},
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:temperate_room_wall2", {
description = "Temperate Room Wall 2",
tiles = {"temperate_room_wall2.png",
},
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:2ndclassfloor3", {
description = "2ndclassfloor3",
tiles = {"2ndclassfloor3.png",
"verkleidung.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:secondclassstaircasefloor", {
description = "secondclassstaircasefloor",
tiles = {
"2ndclassfloor.png",
"2ndclassstaircaseverkleidung2.png",
},
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.312500, -0.5, 0.5, 0.5, 0.5}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:secondclassstaircasefloor_smaller", {
description = "secondclassstaircasefloor smaller",
tiles = {
"2ndclassfloor.png",
"staircase2ndclassstair.png",
},
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5}, -- NodeBox10
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:secondclassstaircasefloor_green_snaller", {
description = "secondclassstaircasefloor green smaller",
tiles = {
"2ndclassfloor_green.png",
"staircase2ndclassstair.png",
},
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5}, -- NodeBox10
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:secondclassstaircasefloor_green", {
description = "secondclassstaircasefloor green",
tiles = {
"2ndclassfloor_green.png",
"2ndclassstaircaseverkleidung2.png",
},
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.312500, -0.5, 0.5, 0.5, 0.5}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:secondclassstaircasefloor_gren_brick", {
description = "secondclassstaircasefloor green",
tiles = {
"2ndclassfloor_green.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:secondclassstaircasefloor_black_snaller", {
description = "secondclassstaircasefloor black smaller",
tiles = {
"2ndclassfloor_black.png",
"staircase2ndclassstair.png",
},
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5}, -- NodeBox10
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:secondclassstaircasefloor_black", {
description = "secondclassstaircasefloor black",
tiles = {
"2ndclassfloor_black.png",
"2ndclassstaircaseverkleidung2.png",
},
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.312500, -0.5, 0.5, 0.5, 0.5}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:secondclassstaircasefloor_black_brick", {
description = "secondclassstaircasefloor black",
tiles = {
"2ndclassfloor_black.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:staircase2ndclassstair", {
description = "staircase2ndclassstair",
tiles = {
"2ndclassfloor.png",
"coral.png",
"1st_class_dining_saloon_chair5.png",
"1st_class_dining_saloon_chair5.png",
"coral.png",
"1st_class_dining_saloon_chair5.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.25, -0.25}, -- NodeBox10
{-0.5, -0.25, -0.25, 0.5, 0, 0}, -- NodeBox11
{-0.5, 0, 0, 0.5, 0.25, 0.25}, -- NodeBox12
{-0.5, 0.25, 0.25, 0.5, 0.5, 0.5}, -- NodeBox13
{-0.5, 0.0625, 0.25, 0.5, 0.25, 0.3125}, -- NodeBox14
{-0.5, 0.1875, 0.3125, 0.5, 0.25, 0.4375}, -- NodeBox15
{-0.5, 0.125, 0.3125, 0.5, 0.1875, 0.375}, -- NodeBox16
{-0.5, -0.0625, 0.0625, 0.5, 0, 0.1875}, -- NodeBox17
{-0.5, -0.1875, 0, 0.5, 0, 0.0625}, -- NodeBox18
{-0.5, -0.125, 0.0625, 0.5, -0.0625, 0.125}, -- NodeBox19
{-0.5, -0.3125, -0.1875, 0.5, -0.25, -0.0625}, -- NodeBox20
{-0.5, -0.4375, -0.25, 0.5, -0.25, -0.1875}, -- NodeBox21
{-0.5, -0.375, -0.1875, 0.5, -0.3125, -0.125}, -- NodeBox23
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:staircase2ndclassblock", {
description = "staircase2ndclassblock",
tiles = {
"2ndclassfloor.png",
"verkleidung.png",
"2ndclassstaircaseverkleidung2.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:2nd_Class_Table", {
description = "2nd Class Table",
tiles = {
"coral.png",
"2ndclasstable.png",
"2ndclasstable.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.3125, -0.5, -0.3125, 0.3125, -0.4375, 0.3125}, -- NodeBox1
{-0.125, -0.4375, -0.125, 0.125, -0.375, 0.125}, -- NodeBox2
{-0.0625, -0.5, -0.0625, 0.0625, 0, 0.0625}, -- NodeBox3
{-0.5, 0.25, -0.375, 0.5, 0.375, 0.375}, -- NodeBox4
{-0.5, 0, -0.4375, 0.5, 0.25, 0.4375}, -- NodeBox5
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:2nd_Class_Table_Endingpiece", {
description = "2nd Class Table Endingpiece",
tiles = {
"coral.png",
"2ndclasstable.png",
"2ndclasstable.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.3125, -0.5, -0.3125, 0.3125, -0.4375, 0.3125}, -- NodeBox1
{-0.125, -0.4375, -0.125, 0.125, -0.375, 0.125}, -- NodeBox2
{-0.0625, -0.5, -0.0625, 0.0625, 0, 0.0625}, -- NodeBox3
{-0.5, 0.25, -0.375, 0.375, 0.375, 0.375}, -- NodeBox4
{-0.5, 0, -0.4375, 0.4375, 0.25, 0.4375}, -- NodeBox5
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:2nd_Class_Table_Middlepiece", {
description = "2nd Class Table Middlepiece",
tiles = {
"coral.png",
"2ndclasstable.png",
"2ndclasstable.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.3125, -0.5, -0.3125, 0.3125, -0.4375, 0.3125}, -- NodeBox1
{-0.125, -0.4375, -0.125, 0.125, -0.375, 0.125}, -- NodeBox2
{-0.0625, -0.5, -0.0625, 0.0625, 0, 0.0625}, -- NodeBox3
{-0.5, 0, -0.5, 0.5, 0.375, 0.5}, -- NodeBox5
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:2nd_Class_Table_ecke", {
description = "2nd Class Table Ecke",
tiles = {
"coral.png",
"2ndclasstable.png",
"2ndclasstable.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.3125, -0.5, -0.3125, 0.3125, -0.4375, 0.3125}, -- NodeBox1
{-0.125, -0.4375, -0.125, 0.125, -0.375, 0.125}, -- NodeBox2
{-0.0625, -0.5, -0.0625, 0.0625, 0, 0.0625}, -- NodeBox3
{-0.4375, 0, -0.4375, 0.5, 0.25, 0.5}, -- NodeBox5
{-0.375, 0.25, -0.375, 0.5, 0.375, 0.5}, -- NodeBox6
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:stuetze1", {
description = "Stuetze1",
tiles = {
"2ndclassstaircaseverkleidung.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.1875, -0.5, -0.0625, 0.1875, 0.5, -0}, -- NodeBox1
{-0.0625, -0.5, -0.1875, 0.0625, 0.5, 0.125}, -- NodeBox2
{-0.125, -0.5, -0.125, 0.125, 0.5, -0.0625}, -- NodeBox3
{-0.125, -0.5, 0, 0.125, 0.5, 0.0625}, -- NodeBox4
{-0.125, 0, -0.25, 0.125, 0.5, 0.1875}, -- NodeBox5
{-0.25, 0, -0.125, 0.25, 0.5, 0.0625}, -- NodeBox6
{-0.1875, 0, 0.0625, 0.1875, 0.5, 0.125}, -- NodeBox7
{-0.1875, 0, -0.1875, 0.1875, 0.5, -0.125}, -- NodeBox8
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:stuetze2", {
description = "Stuetze2",
tiles = {
"2ndclassstaircaseverkleidung2.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.1875, -0.5, -0.0625, 0.1875, 0.5, -0}, -- NodeBox1
{-0.0625, -0.5, -0.1875, 0.0625, 0.5, 0.125}, -- NodeBox2
{-0.125, -0.5, -0.125, 0.125, 0.5, -0.0625}, -- NodeBox3
{-0.1875, -0.5, -0.1875, 0.1875, 0.0625, 0.125}, -- NodeBox5
{-0.25, -0.5, -0.25, -0.1875, 0, -0.1875}, -- NodeBox9
{0.1875, -0.5, -0.25, 0.25, 0, -0.1875}, -- NodeBox10
{0.1875, -0.5, 0.125, 0.25, 0, 0.1875}, -- NodeBox11
{-0.25, -0.5, 0.125, -0.1875, 0, 0.1875}, -- NodeBox12
{-0.25, -0.5, -0.25, 0.25, -0.4375, -0.1875}, -- NodeBox13
{-0.25, 0, -0.25, 0.25, 0.0625, -0.1875}, -- NodeBox14
{0.1875, 0, -0.25, 0.25, 0.0625, 0.1875}, -- NodeBox15
{0.1875, -0.5, -0.25, 0.25, -0.4375, 0.1875}, -- NodeBox16
{-0.1875, -0.5, 0.125, 0.25, -0.4375, 0.1875}, -- NodeBox17
{-0.25, 0, 0.125, 0.25, 0.0625, 0.1875}, -- NodeBox18
{-0.25, -0.5, -0.25, -0.1875, -0.4375, 0.1875}, -- NodeBox19
{-0.25, 0, -0.25, -0.1875, 0.0625, 0.1875}, -- NodeBox20
{-0.125, -0.5, 0, 0.125, 0.5, 0.0625}, -- NodeBox21
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:2nd_Class_Chair", {
description = "2nd Class Table Chair",
tiles = {
"2ndclasstableside3.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.0625, -0.4375, -0.0625, 0.0625, -0.125, 0.0625}, -- NodeBox1
{-0.25, -0.125, -0.375, 0.25, -0.0625, 0.375}, -- NodeBox2
{-0.375, -0.125, -0.3125, 0.375, -0.0625, 0.25}, -- NodeBox3
{0.1875, -0.125, 0.375, 0.25, 0.5, 0.4375}, -- NodeBox4
{-0.25, -0.125, 0.375, -0.1875, 0.5, 0.4375}, -- NodeBox5
{-0.4375, -0.125, -0.25, -0.375, 0.25, -0.1875}, -- NodeBox6
{0.375, -0.125, -0.25, 0.4375, 0.25, -0.1875}, -- NodeBox7
{-0.4375, -0.125, 0.1875, -0.375, 0.25, 0.25}, -- NodeBox8
{0.375, -0.125, 0.1875, 0.4375, 0.25, 0.25}, -- NodeBox9
{-0.5, 0.1875, -0.3125, -0.375, 0.25, 0.25}, -- NodeBox10
{0.375, 0.1875, -0.3125, 0.5, 0.25, 0.25}, -- NodeBox11
{-0.3125, 0.1875, 0.4375, 0.3125, 0.5, 0.5}, -- NodeBox12
{0.3125, 0.1875, 0.375, 0.375, 0.4375, 0.4375}, -- NodeBox13
{0.375, 0.1875, 0.1875, 0.4375, 0.375, 0.375}, -- NodeBox14
{-0.375, 0.1875, 0.375, -0.3125, 0.4375, 0.4375}, -- NodeBox16
{-0.4375, 0.1875, 0.1875, -0.375, 0.375, 0.375}, -- NodeBox17
{-0.0625, -0.5, -0.25, 0.0625, -0.4375, 0.25}, -- NodeBox18
{-0.25, -0.5, -0.0625, 0.25, -0.4375, 0.0625}, -- NodeBox19
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:gelaender", {
description = "gelaender",
tiles = {
"2ndclassstaircaseverkleidung.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.375, -0.5, -0.3125, 0.4375, 0.5, -0.25}, -- NodeBox1
{0.375, -0.5, 0, 0.4375, 0.5, 0.0625}, -- NodeBox2
{0.375, -0.5, 0.3125, 0.4375, 0.5, 0.375}, -- NodeBox3
{0.3125, -0.5, -0.5, 0.5, -0.4375, 0.5}, -- NodeBox4
{0.375, -0.5, -0.5, 0.4375, -0.375, 0.5}, -- NodeBox5
{0.3125, 0.4375, -0.5, 0.5, 0.5, 0.5}, -- NodeBox6
{0.375, 0.375, -0.5, 0.4375, 0.5, 0.5}, -- NodeBox7
{0.3125, 0.3125, -0.375, 0.5, 0.5, -0.1875}, -- NodeBox8
{0.3125, 0.3125, -0.0625, 0.5, 0.5, 0.125}, -- NodeBox9
{0.3125, 0.3125, 0.25, 0.5, 0.5, 0.4375}, -- NodeBox10
{0.375, -0.5, -0.375, 0.4375, -0.25, -0.1875}, -- NodeBox11
{0.3125, -0.5, -0.3125, 0.5, -0.3125, -0.25}, -- NodeBox12
{0.3125, -0.5, 0, 0.5, -0.3125, 0.0625}, -- NodeBox13
{0.375, -0.5, -0.0625, 0.4375, -0.25, 0.125}, -- NodeBox14
{0.375, -0.5, 0.25, 0.4375, -0.25, 0.4375}, -- NodeBox15
{0.3125, -0.5, 0.3125, 0.5, -0.3125, 0.375}, -- NodeBox16
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:treppenhausverkleidung_schmal1", {
description = "treppenhausverkleidung schmal1",
tiles = {
"2ndclassstaircaseverkleidung.png",
"2ndclassstaircaseverkleidung.png",
"2ndclassstaircaseverkleidung.png",
"2ndclassstaircaseverkleidung.png",
"coral.png",
"2ndclassstaircaseverkleidung.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.499375, 0.5, 0.5, 0.5}, -- NodeBox27
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:treppenhausverkleidung_schmal2", {
description = "treppenhausverkleidung schmal2",
tiles = {
"2ndclassstaircaseverkleidung2.png",
"2ndclassstaircaseverkleidung2.png",
"2ndclassstaircaseverkleidung2.png",
"2ndclassstaircaseverkleidung2.png",
"coral.png",
"2ndclassstaircaseverkleidung2.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.499375, 0.5, 0.5, 0.5}, -- NodeBox27
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:treppenhausverkleidung_schmal3", {
description = "treppenhausverkleidung schmal3",
tiles = {
"2ndclassstaircaseverkleidung.png",
"2ndclassstaircaseverkleidung.png",
"coral.png",
"2ndclassstaircaseverkleidung.png",
"coral.png",
"2ndclassstaircaseverkleidung.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.499375, 0.5, 0.5, 0.5}, -- NodeBox27
{0.499375, -0.5, -0.5, 0.5, 0.5, 0.5}, -- NodeBox28
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:treppenhausverkleidung_schmal4", {
description = "treppenhausverkleidung schmal4",
tiles = {
"2ndclassstaircaseverkleidung2.png",
"2ndclassstaircaseverkleidung2.png",
"coral.png",
"2ndclassstaircaseverkleidung2.png",
"coral.png",
"2ndclassstaircaseverkleidung2.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.499375, 0.5, 0.5, 0.5}, -- NodeBox27
{0.499375, -0.5, -0.5, 0.5, 0.5, 0.5}, -- NodeBox28
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:treppenhausverkleidung1_1", {
description = "treppenhausverkleidung1_1",
tiles = {
"2ndclassstaircaseverkleidung.png",
"coral.png",
"2ndclassstaircaseverkleidung.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0, 0.5, 0.5, 0.5}, -- NodeBox1
{-0.5, -0.5, -0.5, 0.5, 0, 0.5}, -- NodeBox2
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:treppenhausverkleidung2_1", {
description = "treppenhausverkleidung2_1",
tiles = {
"2ndclassstaircaseverkleidung2.png",
"coral.png",
"2ndclassstaircaseverkleidung2.png",
"2ndclassstaircaseverkleidung2.png",
"coral.png",
"2ndclassstaircaseverkleidung2.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0, 0.5, 0.5, 0.5}, -- NodeBox1
{-0.5, -0.5, -0.5, 0.5, 0, 0.5}, -- NodeBox2
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:treppenhausverkleidung1_2", {
description = "treppenhausverkleidung1_2",
tiles = {"coral.png",
"2ndclassstaircaseverkleidung.png",
"coral.png",
"2ndclassstaircaseverkleidung.png",
"coral.png",
"2ndclassstaircaseverkleidung.png",
},
groups = {oddly_breakable_by_hand = 2},
paramtype2 = "facedir",
})
minetest.register_node("titanic_mod:treppenhausverkleidung2_2", {
description = "treppenhausverkleidung2_2",
tiles = {"coral.png",
"2ndclassstaircaseverkleidung2.png",
"coral.png",
"2ndclassstaircaseverkleidung2.png",
"coral.png",
"2ndclassstaircaseverkleidung2.png",
},
groups = {oddly_breakable_by_hand = 2},
paramtype2 = "facedir",
})
minetest.register_node("titanic_mod:grand_staircase_stair1", {
description = "Grand Staircase Stair1",
tiles = {
"grand_staircase_stair2.png",
"coral.png",
"grand_staircase_stair1.png",
"grand_staircase_stair1.png",
"coral.png",
"grand_staircase_stair1.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.25, -0, 0.5, 0, 0.5}, -- NodeBox1
{-0.5, -0.5, -0.5, 0.5, -0.25, 0}, -- NodeBox3
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:grand_staircase_stair2", {
description = "Grand Staircase Stair2",
tiles = {
"grand_staircase_stair2.png",
"coral.png",
"grand_staircase_stair1.png",
"grand_staircase_stair1.png",
"coral.png",
"grand_staircase_stair1.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.25, -0, 0.5, 0.5, 0.5}, -- NodeBox1
{-0.5, -0, -0.5, 0.5, 0.25, -0}, -- NodeBox2
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:coral_slab", {
description = "Coral Slab",
tiles = {
"coral.png",
},
paramtype2 = "facedir",
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0, -0.5, 0.5, 0.5, 0.5}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:my_stairs", {
description = "My Stairs",
tiles = {
"tin.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.25, -0.25}, -- NodeBox1
{-0.5, -0.25, -0.25, 0.5, 0, 0}, -- NodeBox4
{-0.5, 0, 0, 0.5, 0.25, 0.25}, -- NodeBox5
{-0.5, 0.25, 0.25, 0.5, 0.5, 0.5}, -- NodeBox6
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:my_stairs2", {
description = "My Stairs 2",
tiles = {
"tin.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, -- NodeBox1
{-0.5, -0.25, -0.25, 0.5, 0, 0.5}, -- NodeBox4
{-0.5, 0, 0, 0.5, 0.25, 0.5}, -- NodeBox5
{-0.5, 0.25, 0.25, 0.5, 0.5, 0.5}, -- NodeBox6
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:schmale_verkleidung", {
description = "Schmale Verkleidung",
tiles = {
"verkleidung.png",
"verkleidung.png",
"verkleidung.png",
"verkleidung.png",
"coral.png",
"verkleidung.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox11
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:schmale_verkleidung0_1", {
description = "Schmale Verkleidung 0.1",
tiles = {
"verkleidung.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox11
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:schmale_verkleidung2", {
description = "Schmale Verkleidung 2",
tiles = {
"verkleidung.png",
"verkleidung.png",
"coral.png",
"coral.png",
"coral.png",
"verkleidung.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox11
{-0.5, -0.5, -0.5, 0.5, 0.5, -0.375}, -- NodeBox12
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:schmale_verkleidung3", {
description = "Schmale Verkleidung 3",
tiles = {
"verkleidung.png",
"verkleidung.png",
"verkleidung.png",
"verkleidung.png",
"coral.png",
"verkleidung.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox11
{0.375, -0.5, -0.5, 0.5, 0.5, 0.375}, -- NodeBox12
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:schmale_verkleidung4", {
description = "Schmale Verkleidung 4",
tiles = {
"coral.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox9
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:schmale_verkleidung2_1", {
description = "Schmale Verkleidung 2,1",
tiles = {
"coral.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox11
{-0.5, -0.5, -0.5, 0.5, 0.5, -0.375}, -- NodeBox12
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:schmale_verkleidung3_1", {
description = "Schmale Verkleidung 3,1",
tiles = {
"coral.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox11
{0.375, -0.5, -0.5, 0.5, 0.5, 0.375}, -- NodeBox12
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lounge_wall_1", {
description = "lounge wall 1",
tiles = {
"alpha.png",
"lounge_wall_1.png",
"lounge_wall_1.png",
"lounge_wall_1.png",
"lounge_wall_1.png",
"lounge_wall_1_1_draussen.png",
},
drawtype = "nodebox",
use_texture_alpha = true,
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.125, -0.375}, -- NodeBox1
{0.375, 0.125, -0.5, 0.5, 0.5, -0.375}, -- NodeBox2
{-0.5, 0.125, -0.5, -0.375, 0.5, -0.375}, -- NodeBox3
{-0.5, -0.5, -0.4375, 0.5, 0.5, -0.4375}, -- NodeBox4
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lounge_wall_2", {
description = "lounge wall 2",
tiles = {
"alpha.png",
"alpha.png",
"lounge_wall_2.png",
"lounge_wall_2.png",
"lounge_wall_2.png",
"lounge_wall_2_draussen.png",
},
drawtype = "nodebox",
use_texture_alpha = true,
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.375, -0.5, -0.5, 0.5, 0.5, -0.375}, -- NodeBox2
{-0.5, -0.5, -0.5, -0.375, 0.5, -0.375}, -- NodeBox3
{-0.5, -0.5, -0.4375, 0.5, 0.5, -0.4375}, -- NodeBox4
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lounge_wall_3", {
description = "lounge wall 3",
tiles = {
"lounge_wall_3.png",
"lounge_wall_3.png",
"lounge_wall_3.png",
"lounge_wall_3.png",
"lounge_wall_3.png",
"lounge_wall_3_draussen.png",
},
use_texture_alpha = true,
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.375, -0.5, -0.5, 0.5, 0.5, -0.375}, -- NodeBox2
{-0.5, -0.5, -0.5, -0.375, 0.5, -0.375}, -- NodeBox3
{-0.5, -0.5, -0.4375, 0.5, 0.5, -0.4375}, -- NodeBox4
{-0.5, -0.25, -0.5, 0.5, 0.5, -0.375}, -- NodeBox5
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lounge_wall_1_1", {
description = "lounge wall 1.1",
tiles = {
"lounge_wall_1_3.png",
"lounge_wall_1_3.png",
"lounge_wall_1_3.png",
"lounge_wall_1_3.png",
"lounge_wall_1_2.png",
"lounge_wall_1_1.png",
},
use_texture_alpha = true,
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.25, -0.5, -0.125, 0.5, 0.5, 0.125}, -- NodeBox30
{-0.5, -0.5, -0.0625, 0.5, 0.125, 0.0625}, -- NodeBox31
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lounge_wall_1_2", {
description = "lounge wall 1.2",
tiles = {
"lounge_wall_1_3.png",
},
use_texture_alpha = true,
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.25, -0.5, -0.125, 0.5, 0.5, 0.125}, -- NodeBox30
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lounge_wall_4", {
description = "lounge wall 4",
paramtype2 = "facedir",
tiles = {
"lounge_wall_4.png",
"lounge_wall_4.png",
"coral.png",
"lounge_wall_4.png",
"coral.png",
"lounge_wall_4.png",
},
drawtype = "nodebox",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lounge_wall_5", {
description = "lounge wall 5",
tiles = {
"lounge_wall_4.png",
},
drawtype = "nodebox",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lounge_wall_6", {
description = "lounge wall 6",
paramtype2 = "facedir",
tiles = {
"lounge_wall_4.png",
"lounge_wall_4.png",
"coral.png",
"lounge_wall_4.png",
},
drawtype = "nodebox",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lounge_chair", {
description = "lounge chair",
tiles = {
"lounge_chair2.png",
"lounge_chair2.png",
"lounge_chair.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.375, -0.375, -0.4375, 0.375, -0.1875, 0.0625}, -- NodeBox1
{-0.3125, -0.375, 0.0625, 0.3125, -0.1875, 0.1875}, -- NodeBox2
{-0.25, -0.375, 0.1875, 0.25, 0.0625, 0.3125}, -- NodeBox3
{-0.3125, -0.375, 0.125, -0.1875, 0.0625, 0.1875}, -- NodeBox4
{0.1875, -0.1875, 0.125, 0.3125, 0.25, 0.1875}, -- NodeBox5
{-0.3125, -0.3125, 0.0625, -0.25, 0.0625, 0.125}, -- NodeBox6
{0.25, -0.3125, 0.0625, 0.3125, 0.0625, 0.125}, -- NodeBox7
{-0.125, 0.0625, 0.25, 0.125, 0.375, 0.375}, -- NodeBox8
{0.125, 0.0625, 0.1875, 0.25, 0.375, 0.3125}, -- NodeBox9
{0.1875, 0, 0.125, 0.25, 0.3125, 0.1875}, -- NodeBox10
{-0.25, 0, 0.1875, -0.125, 0.375, 0.3125}, -- NodeBox11
{-0.3125, 0, 0.125, -0.1875, 0.3125, 0.1875}, -- NodeBox12
{0.3125, -0.1875, -0.4375, 0.375, 0.0625, 0.0625}, -- NodeBox14
{-0.375, -0.3125, -0.4375, -0.3125, 0.0625, 0.0625}, -- NodeBox15
{0.3125, 0, -0.125, 0.375, 0.1875, 0.125}, -- NodeBox16
{0.3125, 0, -0.3125, 0.375, 0.125, -0.0625}, -- NodeBox17
{0.3125, 0.125, -0.0625, 0.375, 0.25, 0.125}, -- NodeBox18
{-0.375, -0.0625, -0.3125, -0.3125, 0.125, 0.125}, -- NodeBox19
{-0.375, 0, -0.125, -0.3125, 0.1875, 0.125}, -- NodeBox20
{-0.375, 0.0625, -0.25, -0.3125, 0.125, 0.125}, -- NodeBox21
{0.125, -0.5, 0.1875, 0.1875, -0.375, 0.25}, -- NodeBox23
{0.25, -0.5, -0.375, 0.3125, -0.375, -0.3125}, -- NodeBox24
{-0.3125, -0.5, -0.375, -0.25, -0.375, -0.3125}, -- NodeBox25
{-0.1875, -0.5, 0.25, -0.125, -0.375, 0.3125}, -- NodeBox26
{0.25, 0.0625, 0.125, 0.3125, 0.3125, 0.1875}, -- NodeBox27
{-0.375, 0.0625, -0.0625, -0.3125, 0.25, 0.125}, -- NodeBox28
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lounge_table", {
description = "lounge table",
tiles = {
"lounge_table.png",
"lounge_table2.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.4375, 0.0625, -0.4375, 0.4375, 0.125, 0.4375}, -- NodeBox30
{-0.5, 0.0625, -0.375, 0.5, 0.125, 0.375}, -- NodeBox32
{0.25, -0.5, 0.1875, 0.3125, 0.0625, 0.25}, -- NodeBox42
{0.25, -0.5, -0.25, 0.3125, 0.0625, -0.1875}, -- NodeBox43
{-0.3125, -0.5, -0.25, -0.25, 0.0625, -0.1875}, -- NodeBox44
{-0.3125, -0.5, 0.1875, -0.25, 0.0625, 0.25}, -- NodeBox45
{-0.3125, -0.5, -0.3125, -0.25, -0.4375, -0.1875}, -- NodeBox46
{-0.375, -0.5, -0.25, -0.25, -0.4375, -0.1875}, -- NodeBox47
{0.25, -0.5, -0.3125, 0.3125, -0.4375, -0.1875}, -- NodeBox48
{0.25, -0.5, -0.25, 0.375, -0.4375, -0.1875}, -- NodeBox49
{-0.3125, -0.5, 0.1875, -0.25, -0.4375, 0.3125}, -- NodeBox50
{0.25, -0.5, 0.1875, 0.375, -0.4375, 0.25}, -- NodeBox51
{0.25, -0.5, 0.1875, 0.3125, -0.4375, 0.3125}, -- NodeBox52
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lounge_floor", {
description = "lounge floor",
tiles = {
"lounge_floor.png",
"verkleidung.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_dining_saloon_chair", {
description = "1st Class Dining Saloon chair",
tiles = {
"1st_class_dining_saloon_chair2.png",
"1st_class_dining_saloon_chair5.png",
"1st_class_dining_saloon_chair3.png",
"1st_class_dining_saloon_chair4.png",
"1st_class_dining_saloon_chair1.png",
"1st_class_dining_saloon_chair1.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.3125, 0.0625, 0.125, 0.3125, 0.375, 0.1875}, -- NodeBox1
{0.1875, 0.375, 0.125, 0.3125, 0.4375, 0.1875}, -- NodeBox2
{-0.3125, 0.375, 0.125, -0.1875, 0.4375, 0.1875}, -- NodeBox3
{-0.0625, 0.4375, 0.125, 0.0625, 0.5, 0.1875}, -- NodeBox4
{-0.125, 0.375, 0.125, 0.125, 0.4375, 0.1875}, -- NodeBox5
{-0.3125, -0.1875, -0.375, 0.3125, -0.125, 0.0625001}, -- NodeBox6
{-0.375, -0.25, -0.4375, 0.375, -0.1875, 0.125}, -- NodeBox7
{-0.375, 0.0625, -0.0625, -0.3125, 0.125, 0.1875}, -- NodeBox8
{-0.375, -0.5, -0.4375, -0.3125, 0.0625, -0.375}, -- NodeBox9
{-0.375, 0, -0.3125, -0.3125, 0.0625, -4.47035e-008}, -- NodeBox10
{-0.375, 0.0625, -0.5, -0.3125, 0.125, -0.25}, -- NodeBox11
{0.3125, -0.5, -0.4375, 0.375, 0.0625, -0.375}, -- NodeBox12
{-0.375, -0.5, 0.1875, -0.3125, 0.0625, 0.125}, -- NodeBox13
{0.3125, -0.5, 0.125, 0.375, 0.0625, 0.1875}, -- NodeBox14
{0.3125, 0.0625, -0.0625, 0.375, 0.125, 0.1875}, -- NodeBox15
{0.3125, 0, -0.3125, 0.375, 0.0625, 2.98023e-008}, -- NodeBox16
{0.3125, 0.0625, -0.5, 0.375, 0.125, -0.25}, -- NodeBox17
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_dining_saloon_wall1", {
description = "1st class dining saloon wall1",
tiles = {
"1st_class_dining_saloon_wall1.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
use_texture_alpha = true,
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox11
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_dining_saloon_wall2", {
description = "1st class dining saloon wall2",
tiles = {
"1st_class_dining_saloon_wall2.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
use_texture_alpha = true,
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox11
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_dining_saloon_wall3", {
description = "1st class dining saloon wall",
tiles = {
"verkleidung.png",
"verkleidung.png",
"1st_class_dining_saloon_wall1.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.375, 0.5, 0.125, 0.5}, -- NodeBox19
{0.3125, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox20
{-0.5, -0.5, 0.375, -0.3125, 0.5, 0.5}, -- NodeBox21
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_dining_saloon_wall4", {
description = "1st class dining saloon wall4",
tiles = {
"verkleidung.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.375, 0.375, 0.5, 0.5, 0.5}, -- NodeBox19
{0.3125, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox20
{-0.5, -0.5, 0.375, -0.3125, 0.5, 0.5}, -- NodeBox21
{-0.3125, 0.125, 0.375, -0.25, 0.375, 0.5}, -- NodeBox22
{-0.1875, 0.3125, 0.375, -0.125, 0.5, 0.5}, -- NodeBox24
{-0.125, 0.3125, 0.375, -0.0625, 0.5, 0.5}, -- NodeBox25
{0.25, 0.125, 0.375, 0.3125, 0.5, 0.5}, -- NodeBox26
{0.1875, 0.25, 0.375, 0.25, 0.5, 0.5}, -- NodeBox27
{-0.25, 0.25, 0.375, -0.1875, 0.5, 0.5}, -- NodeBox30
{0.0625, 0.3125, 0.375, 0.1875, 0.5, 0.5}, -- NodeBox31
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_dining_saloon_wall5", {
description = "1st class dining saloon wall5",
tiles = {
"coral.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox41
{-0.5, -0.5, -0.5, -0.4375, 0.5, 0.4375}, -- NodeBox42
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:Reling", {
description = "Reling",
tiles = {
"coral.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.375, -0.5, 0, 0.4375, 0.5, 0.0625}, -- NodeBox7
{-0.5, 0.375, 0, 0.4375, 0.4375, 0.0625}, -- NodeBox8
{-0.5, -0.125, 0, 0.5, -0.0625, 0.0625}, -- NodeBox9
{-0.5, -0.375, 0, 0.5, -0.3125, 0.0625}, -- NodeBox10
{-0.5, 0.125, 0, 0.5, 0.1875, 0.0625}, -- NodeBox11
{0.375, 0.375, -0.0625, 0.4375, 0.4375, 0.125}, -- NodeBox12
{0.375, 0.375, 0, 0.5, 0.4375, 0.0625}, -- NodeBox13
{0.375, 0.125, -0.0625, 0.4375, 0.1875, 0.125}, -- NodeBox14
{0.375, -0.125, -0.0625, 0.4375, -0.0625, 0.125}, -- NodeBox15
{0.375, -0.375, -0.0625, 0.4375, -0.3125, 0.125}, -- NodeBox16
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:Relingsecke1", {
description = "Relingsecke1",
tiles = {
"coral.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0, -0.5, 0, 0.0625, 0.5, 0.0625}, -- NodeBox7
{-0.5, 0.375, 0, 0.125, 0.4375, 0.0625}, -- NodeBox8
{-0.5, -0.125, 0, 0.125, -0.0625, 0.0625}, -- NodeBox9
{-0.5, -0.375, 0, 0.125, -0.3125, 0.0625}, -- NodeBox10
{-0.5, 0.125, 0, 0.125, 0.1875, 0.0625}, -- NodeBox11
{0, 0.375, -0.5, 0.0625, 0.4375, 0.125}, -- NodeBox13
{0, 0.125, -0.5, 0.0625, 0.1875, 0.125}, -- NodeBox14
{0, -0.125, -0.5, 0.0625, -0.0625, 0.125}, -- NodeBox15
{0, -0.375, -0.5, 0.0625, -0.3125, 0.125}, -- NodeBox18
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:Relingsecke2", {
description = "Relingsecke2",
tiles = {
"coral.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.0625, -0.5, -0.0625, -3.1665e-008, 0.5, 0}, -- NodeBox7
{-0.5, 0.375, -0.0625, 0.0625, 0.4375, 0}, -- NodeBox8
{-0.5, -0.125, -0.0625, 0.0625, -0.0625, -3.72529e-009}, -- NodeBox9
{-0.5, -0.375, -0.0625, 0.0625, -0.3125, 0}, -- NodeBox10
{-0.5, 0.125, -0.0625, 0.0625, 0.1875, 0}, -- NodeBox11
{-0.0625, 0.375, -0.5, 1.86265e-009, 0.4375, 0.0624999}, -- NodeBox13
{-0.0625, 0.125, -0.5, -1.49012e-008, 0.1875, 0.0625}, -- NodeBox14
{-0.0625, -0.125, -0.5, 0, -0.0625, 0.0625}, -- NodeBox15
{-0.0625, -0.375, -0.5, 0, -0.3125, 0.0625}, -- NodeBox18
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:Schornstein", {
description = "Schornstein",
tiles = {
"coral.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.375, 0.5, 0.5, -0.3125}, -- NodeBox25
{-0.5, -0.5, -0.3125, 0.5, -0.3125, 0.5}, -- NodeBox26
{-0.5, -0.3125, -0.3125, 0.5, -0.125, 0.4375}, -- NodeBox27
{-0.5, -0.125, -0.3125, 0.5, 0.4375, -0.125}, -- NodeBox28
{-0.5, -0.125, -0.125, 0.5, 0.375, 0}, -- NodeBox29
{-0.5, -0.125, 0, 0.5, 0, 0.375}, -- NodeBox30
{-0.5, 0, 0, 0.5, 0.125, 0.3125}, -- NodeBox31
{-0.5, 0.0625, 0, 0.5, 0.3125, 0.125}, -- NodeBox32
{-0.5, 0.0625, 0.0625, 0.5, 0.25, 0.25}, -- NodeBox33
{-0.5, 0.375, -0.5, 0.5, 0.5, -0.375}, -- NodeBox34
{-0.5, -0.5, -0.5, 0.5, -0.375, -0.375}, -- NodeBox35
{0.375, -0.375, -0.5, 0.5, 0.375, -0.375}, -- NodeBox36
{-0.5, -0.375, -0.5, -0.3125, 0.375, -0.375}, -- NodeBox37
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:Schornstein2", {
description = "Schornstein2",
tiles = {
"coral.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.25, -0.375, 0.5, 0.5}, -- NodeBox38
{0.375, -0.5, 0.25, 0.5, 0.5, 0.5}, -- NodeBox39
{-0.5, 0.375, 0.25, 0.5, 0.5, 0.5}, -- NodeBox40
{-0.5, -0.5, 0.25, 0.5, -0.375, 0.5}, -- NodeBox41
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:poller", {
description = "poller",
tiles = {
"obsidian.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5}, -- NodeBox38
{-0.125, -0.4375, -0.125, 0.125, 0.4375, 0.125}, -- NodeBox42
{-0.1875, 0.125, -0.1875, 0.1875, 0.25, 0.1875}, -- NodeBox43
{-0.25, 0.25, -0.25, 0.25, 0.4375, 0.25}, -- NodeBox44
{-0.1875, -0.25, -0.1875, 0.1875, -0.125, 0.1875}, -- NodeBox45
{-0.25, -0.4375, -0.25, 0.25, -0.25, 0.25}, -- NodeBox46
{-0.1875, -0.4375, -0.3125, 0.1875, -0.3125, 0.3125}, -- NodeBox48
{-0.3125, -0.4375, -0.125, 0.3125, -0.3125, 0.1875}, -- NodeBox49
{-0.3125, 0.3125, -0.1875, 0.3125, 0.4375, 0.1875}, -- NodeBox51
{-0.1875, 0.25, -0.3125, 0.1875, 0.4375, 0.25}, -- NodeBox52
{-0.3125, 0.4375, -0.3125, 0.3125, 0.5, 0.25}, -- NodeBox53
{-0.25, 0.4375, -0.375, 0.25, 0.5, 0.3125}, -- NodeBox55
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lifeboat_1", {
description = "lifeboat 1",
tiles = {
"lifeboat.png",
},
paramtype = "light",
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:lifeboat_2", {
description = "lifeboat 2",
tiles = {
"lifeboat.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0, 0.5}, -- NodeBox71
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:window_inside", {
description = "lwindow inside",
use_texture_alpha = true,
tiles = {
"bulkhead1.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox71
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:window_inside2", {
description = "lwindow inside 2",
use_texture_alpha = true,
tiles = {
"bulkhead2.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox71
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:third_class_light", {
description = "Third Class Light",
paramtype = "light",
tiles = {
"third_class_light.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
light_source = -14,
node_box = {
type = "fixed",
fixed = {
{-0.125, -0.125, 0.3125, 0.125, 0.375, 0.5}, -- NodeBox3
{-0.125, -0.0625, 0.1875, 0.125, 0.3125, 0.3125}, -- NodeBox4
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:third_class_stuetze", {
description = "Third Class Stuetze",
tiles = {
"coral.png",
},
drawtype = "nodebox",
sunlight_propagates = true,
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0, -0.5, 0.4375, 0.0625, 0.5, 0.5}, -- NodeBox9
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_Class_Wand", {
description = "1st Class Wand",
tiles = {
"coral.png",
"coral.png",
"1st_Class_Wand.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox2
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_Class_Wand2", {
description = "1st Class Wand 2",
tiles = {
"1st_Class_Wand2.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.25, 0.5}, -- NodeBox2
{-0.5, 0.25, 0.1875, 0.5, 0.5, 0.5}, -- NodeBox3
{-0.5, 0.375, 0.0625, 0.5, 0.5, 0.125}, -- NodeBox7
{-0.5, 0.3125, 0.125, 0.5, 0.5, 0.25}, -- NodeBox8
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_Class_Wand_with_light", {
description = "1st Class Wand with light",
tiles = {
"1st_Class_Wand2_extra.png",
"1st_Class_Wand_light_down.png",
"1st_Class_Wand_light_seitex.png",
"1st_Class_Wand_light_seiteminusx.png",
"1st_Class_Wand_light_hinten.png",
"1st_Class_Wand2_extra.png",
},
paramtype = "light",
paramtype2 = "facedir",
drawtype = "nodebox","allfaces_optional",
light_source = -14,
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.25, 0.5}, -- NodeBox2
{-0.5, 0.25, 0.1875, 0.5, 0.5, 0.5}, -- NodeBox3
{-0.5, 0.375, 0.0625, 0.5, 0.5, 0.125}, -- NodeBox7
{-0.5, 0.3125, 0.125, 0.5, 0.5, 0.25}, -- NodeBox8
{-0.1875, 0.3125, -0.5, 0.1875, 0.5, -0.3125}, -- NodeBox10
{-0.125, 0.375, -0.3125, 0.125, 0.5, -0.25}, -- NodeBox11
{0.1875, 0.375, -0.5, 0.25, 0.5, -0.375}, -- NodeBox12
{-0.25, 0.375, -0.5, -0.1875, 0.5, -0.375}, -- NodeBox13
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_Class_light", {
description = "1st Class light",
tiles = {
"1st_Class_Wand_light_hinten.png",
},
paramtype = "light",
paramtype2 = "facedir",
drawtype = "nodebox","allfaces_optional",
light_source = -14,
node_box = {
type = "fixed",
fixed = {
{-0.1875, 0.3125, 0.3125, 0.1875, 0.5, 0.5}, -- NodeBox1
{-0.25, 0.375, 0.375, 0.25, 0.5, 0.5}, -- NodeBox2
{-0.125, 0.375, 0.25, 0.125, 0.5, 0.5}, -- NodeBox3
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_Class_Wand3", {
description = "1st Class Wand 3",
tiles = {
"1st_Class_Wand2.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.25, 0.5}, -- NodeBox2
{-0.5, 0.25, 0.1875, 0.5, 0.5, 0.5}, -- NodeBox3
{-0.5, 0.375, 0.0625, 0.5, 0.5, 0.125}, -- NodeBox7
{-0.5, 0.3125, 0.125, 0.5, 0.5, 0.25}, -- NodeBox8
{-0.5, -0.5, -0.5, 0.5, 0.5, -0.4375}, -- NodeBox14
{-0.5, 0.25, -0.4375, 0.5, 0.5, -0.1875}, -- NodeBox15
{-0.5, 0.3125, -0.1875, 0.5, 0.5, -0.125}, -- NodeBox16
{-0.5, 0.375, -0.125, 0.5, 0.5, -0.0625}, -- NodeBox17
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_Class_Wand4", {
description = "1st Class Wand 4",
tiles = {
"1st_Class_Wand.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox18
{-0.5, -0.5, -0.5, 0.5, 0.5, -0.4375}, -- NodeBox19
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_Class_Wandsims", {
description = "1st Class Wandsims",
tiles = {
"1st_Class_Wand2.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.25, 0.1875, -0.1875, 0.3125, 0.5}, -- NodeBox18
{-0.5, 0.3125, 0.125, -0.125, 0.375, 0.5}, -- NodeBox20
{-0.5, 0.375, 0.0625, -0.0625, 0.5, 0.5}, -- NodeBox21
{0.1875, 0.25, 0.1875, 0.5, 0.3125, 0.5}, -- NodeBox23
{0.125, 0.3125, 0.125, 0.5, 0.375, 0.5}, -- NodeBox24
{0.0625, 0.375, 0.0625, 0.5, 0.5, 0.5}, -- NodeBox25
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_Class_Wandsims2", {
description = "1st Class Wandsims2",
tiles = {
"1st_Class_Wand2.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.4375, 0.0625, 0.5, 0.5, 0.5}, -- NodeBox18
{-0.5, 0.375, 0.125, 0.5, 0.4375, 0.5}, -- NodeBox26
{0.375, 0.375, 0.0625, 0.5, 0.4375, 0.5}, -- NodeBox27
{-0.5, 0.375, 0.0625, -0.375, 0.4375, 0.5}, -- NodeBox28
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_Class_Wandsims3", {
description = "1st Class Wandsims3",
tiles = {
"1st_Class_Wand2.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.4375, 0.0625, 0.5, 0.5, 0.5}, -- NodeBox18
{-0.5, 0.375, 0.125, 0.5, 0.4375, 0.5}, -- NodeBox26
{0.375, 0.375, 0.0625, 0.5, 0.4375, 0.5}, -- NodeBox27
{-0.5, 0.375, 0.0625, -0.375, 0.4375, 0.5}, -- NodeBox28
{-0.5, -0.5, -0.5, 0.5, 0.5, -0.4375}, -- NodeBox33
{-0.5, 0.375, -0.4375, 0.5, 0.5, -0.0625}, -- NodeBox34
{-0.5, 0.3125, -0.4375, 0.5, 0.375, -0.125}, -- NodeBox35
{-0.5, 0.25, -0.4375, 0.5, 0.3125, -0.1875}, -- NodeBox36
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_Class_Wandsims4", {
description = "1st Class Wandsims4",
tiles = {
"1st_Class_Wand2.png",
},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.4375, 0.0625, 0.5, 0.5, 0.5}, -- NodeBox18
{-0.5, 0.375, 0.125, 0.5, 0.4375, 0.5}, -- NodeBox26
{0.375, 0.375, 0.0625, 0.5, 0.4375, 0.5}, -- NodeBox27
{-0.5, 0.375, 0.0625, -0.375, 0.4375, 0.5}, -- NodeBox28
{-0.5, 0.4375, -0.5, 0.5, 0.5, -0.0625}, -- NodeBox37
{-0.5, 0.375, -0.5, 0.5, 0.4375, -0.125}, -- NodeBox38
{0.375, 0.375, -0.125, 0.5, 0.4375, -0.0625}, -- NodeBox39
{-0.5, 0.375, -0.125, -0.375, 0.4375, -0.0625}, -- NodeBox40
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:swimming_pool", {
description = "Swimming Pool",
tiles = {
"swimming_pool_stone.png",
"verkleidung.png",
"swimming_pool_stone_side.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:window_bridge", {
description = "Window Bridge",
tiles = {
"titanic_bridge_window.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
use_texture_alpha = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox41
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:officers_window", {
description = "Officers window",
tiles = {
"titanic_officers_window.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
use_texture_alpha = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox41
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:staterooms_window", {
description = "Staterooms Window",
tiles = {
"titanic_staterooms_window.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
use_texture_alpha = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox41
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:staterooms_window2", {
description = "Staterooms Window2",
tiles = {
"titanic_staterooms_window2.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
use_texture_alpha = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox41
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:firt_class_window", {
description = "First Class Window",
tiles = {
"1st_class_window5.1.png",
"alpha.png",
"1st_class_window3.1.png",
"1st_class_window4.1.png",
"1st_class_window2.1.png",
"1st_class_window1.1.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
use_texture_alpha = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, -0.49375, 0.5, 0.5}, -- NodeBox4
{0.49375, -0.5, -0.5, 0.5, 0.5, 0.5}, -- NodeBox5
{-0.5, -0.5, -0.5, 0.5, -0.3125, -0.3125}, -- NodeBox8
{-0.5, -0.5, -0.3125, 0.5, -0.1875, -0.125}, -- NodeBox9
{-0.5, -0.5, -0.125, 0.5, 0.5, 0.5}, -- NodeBox10
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:firt_class_window2", {
description = "First Class Window2",
tiles = {
"alpha.png",
"1st_class_window5.2.png",
"1st_class_window3.2.png",
"1st_class_window4.2.png",
"1st_class_window2.2.png",
"1st_class_window1.2.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
use_texture_alpha = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, -0.49375, 0.5, 0.5}, -- NodeBox4
{0.49375, -0.5, -0.5, 0.5, 0.5, 0.5}, -- NodeBox5
{-0.5, -0.5, -0.125, 0.5, 0.5, 0.5}, -- NodeBox10
{-0.5, 0.4375, -0.25, 0.5, 0.5, -0.125}, -- NodeBox11
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:firt_class_window3", {
description = "First Class Window3",
tiles = {
"1st_class_window5.1.2.png",
"alpha.png",
"cafe_parisien_wand1.png",
"cafe_parisien_wand1.png",
"1st_class_window1.1.2.png",
"1st_class_window2.1.2.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
use_texture_alpha = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, -0.49375, 0.5, 0.5}, -- NodeBox4
{0.49375, -0.5, -0.5, 0.5, 0.5, 0.5}, -- NodeBox5
{-0.5, -0.5, -0.5, 0.5, -0.3125, -0.3125}, -- NodeBox8
{-0.5, -0.5, -0.3125, 0.5, -0.1875, -0.125}, -- NodeBox9
{-0.5, -0.5, -0.125, 0.5, 0.5, 0.5}, -- NodeBox10
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:firt_class_window4", {
description = "First Class Window4",
tiles = {
"alpha.png",
"1st_class_window5.2.2.png",
"cafe_parisien_wand2.png",
"cafe_parisien_wand2.png",
"1st_class_window1.2.2.png",
"1st_class_window2.2.2.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
use_texture_alpha = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, -0.49375, 0.5, 0.5}, -- NodeBox4
{0.49375, -0.5, -0.5, 0.5, 0.5, 0.5}, -- NodeBox5
{-0.5, -0.5, -0.125, 0.5, 0.5, 0.5}, -- NodeBox10
{-0.5, 0.4375, -0.25, 0.5, 0.5, -0.125}, -- NodeBox11
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:steuerinstrument", {
description = "Steuerinstrument",
tiles = {
"titanic_bridge_steuerinstrument1_oben.png",
"titanic_bridge_steuerinstrument_unten.png",
"titanic_bridge_steuerinstrumentx_sidex.png",
"titanic_bridge_steuerinstrumentx_sidex.png",
"titanic_bridge_steuerinstrumentx_sidez.png",
"titanic_bridge_steuerinstrumentx_sidez.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.4375, 0.25, -0.3125, 0.4375, 0.5, -0.25}, -- NodeBox41
{-0.4375, 0.125, -0.1875, 0.4375, 0.1875, 0.1875}, -- NodeBox43
{-0.4375, 0.1875, -0.25, 0.4375, 0.25, -0.1875}, -- NodeBox45
{-0.4375, 0.1875, 0.1875, 0.4375, 0.25, 0.25}, -- NodeBox46
{-0.4375, 0.25, 0.25, 0.4375, 0.5, 0.3125}, -- NodeBox47
{-0.375, 0.1875, -0.25, 0.375, 0.5, 0.25}, -- NodeBox48
{-0.0625, -0.5, -0.0625, 0.0625, 0.125, 0.0625}, -- NodeBox49
{-0.0625, -0.5, -0.125, 0.0625, -0.1875, 0.125}, -- NodeBox50
{-0.125, -0.5, -0.0625, 0.125, -0.125, 0.0625}, -- NodeBox51
{-0.25, -0.5, -0.25, 0.25, -0.4375, 0.25}, -- NodeBox52
{-0.25, -0.5, -0.25, 0.25, -0.4375, 0.25}, -- NodeBox53
{-0.1875, -0.5, -0.3125, 0.1875, -0.4375, 0.3125}, -- NodeBox54
{-0.3125, -0.5, -0.1875, 0.3125, -0.4375, 0.1875}, -- NodeBox55
{-0.1875, -0.4375, -0.0625, 0.1875, -0.375, 0.0625}, -- NodeBox56
{-0.0625, -0.4375, -0.1875, 0.0625, -0.375, 0.1875}, -- NodeBox57
{-0.125, -0.5, -0.125, 0.125, -0.375, 0.125}, -- NodeBox58
{0.4375, 0.375, 0, 0.5, 0.5, 0.0625}, -- NodeBox59
{-0.5, 0.375, 0, -0.4375, 0.5, 0.0625}, -- NodeBox60
{-0.5, 0.375, 0, -0.4375, 0.5, 0.0625}, -- NodeBox62
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:steuerinstrument2", {
description = "Steuerinstrument2",
tiles = {
"titanic_bridge_steuerinstrument2_oben.png",
"titanic_bridge_steuerinstrument_unten.png",
"titanic_bridge_steuerinstrument2_sidex.png",
"titanic_bridge_steuerinstrument2_sidex.png",
"titanic_bridge_steuerinstrument2_sidez.png",
"titanic_bridge_steuerinstrument2_sidez.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.4375, -0.4375, -0.25, 0.4375, -0.375, -0.1875}, -- NodeBox1
{-0.4375, -0.4375, 0.1875, 0.4375, -0.375, 0.25}, -- NodeBox2
{-0.4375, -0.375, -0.1875, 0.4375, -0.3125, 0.1875}, -- NodeBox3
{-0.375, -0.5, -0.25, 0.375, -0.375, 0.25}, -- NodeBox4
{0.4375, -0.5, 0, 0.5, -0.1875, 0.0625}, -- NodeBox5
{-0.5, -0.5, 0, -0.4375, -0.25, 0.0625}, -- NodeBox7
{-0.4375, -0.5, -0.3125, 0.4375, -0.4375, -0.25}, -- NodeBox8
{-0.4375, -0.5, 0.25, 0.4375, -0.4375, 0.3125}, -- NodeBox9
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:steuer1", {
description = "Steuer1",
tiles = {
"steuer1_oben.png",
"steuer2_unten.png",
"steuer1_seite_rechts.png",
"steuer1_seite_links.png",
"steuer1_hinten.png",
"steuer1_vorne.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.0625, -0.5, -0.0625, 0.0625, 0.3125, 0.0625}, -- NodeBox49
{-0.0625, -0.5, -0.125, 0.0625, -0.1875, 0.125}, -- NodeBox50
{-0.125, -0.5, -0.0625, 0.125, -0.125, 0.0625}, -- NodeBox51
{-0.25, -0.5, -0.25, 0.25, -0.4375, 0.25}, -- NodeBox52
{-0.25, -0.5, -0.25, 0.25, -0.4375, 0.25}, -- NodeBox53
{-0.1875, -0.5, -0.3125, 0.1875, -0.4375, 0.3125}, -- NodeBox54
{-0.3125, -0.5, -0.1875, 0.3125, -0.4375, 0.1875}, -- NodeBox55
{-0.1875, -0.4375, -0.0625, 0.1875, -0.375, 0.0625}, -- NodeBox56
{-0.0625, -0.4375, -0.1875, 0.0625, -0.375, 0.1875}, -- NodeBox57
{-0.125, -0.5, -0.125, 0.125, -0.375, 0.125}, -- NodeBox58
{-0.1875, 0.3125, -0.125, 0.1875, 0.5, 0.125}, -- NodeBox63
{-0.0625, -0.0625, -0.1875, 0, 0.5, -0.125}, -- NodeBox64
{-0.5, 0.4375, -0.1875, 0.5, 0.5, -0.125}, -- NodeBox65
{0, 0.375, -0.1875, 0.0625, 0.4375, -0.125}, -- NodeBox66
{0.0625, 0.3125, -0.1875, 0.125, 0.375, -0.125}, -- NodeBox67
{0.125, 0.25, -0.1875, 0.1875, 0.3125, -0.125}, -- NodeBox68
{0.1875, 0.1875, -0.1875, 0.25, 0.25, -0.125}, -- NodeBox69
{0.25, 0.125, -0.1875, 0.3125, 0.1875, -0.125}, -- NodeBox71
{0, 0, -0.1875, 0.125, 0.0625, -0.125}, -- NodeBox72
{0.125, 0.0625, -0.1875, 0.25, 0.125, -0.125}, -- NodeBox73
{0.375, 0.3125, -0.1875, 0.4375, 0.4375, -0.125}, -- NodeBox74
{0.3125, 0.1875, -0.1875, 0.375, 0.3125, -0.125}, -- NodeBox75
{-0.125, 0.375, -0.1875, -0.0625, 0.4375, -0.125}, -- NodeBox76
{-0.1875, 0.3125, -0.1875, -0.125, 0.375, -0.125}, -- NodeBox77
{-0.25, 0.25, -0.1875, -0.1875, 0.3125, -0.125}, -- NodeBox78
{-0.3125, 0.1875, -0.1875, -0.25, 0.25, -0.125}, -- NodeBox79
{-0.4375, 0.0625, -0.1875, -0.375, 0.125, -0.125}, -- NodeBox80
{-0.4375, 0.3125, -0.1875, -0.375, 0.4375, -0.125}, -- NodeBox81
{-0.375, 0.125, -0.1875, -0.3125, 0.3125, -0.125}, -- NodeBox82
{-0.3125, 0.0625, -0.1875, -0.1875, 0.125, -0.125}, -- NodeBox83
{-0.1875, 0, -0.1875, -0.0625, 0.0625, -0.125}, -- NodeBox84
{0.3125, 0.0625, -0.1875, 0.375, 0.125, -0.125}, -- NodeBox85
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:steuer2", {
description = "Steuer2",
tiles = {
"steuer2_oben.png",
"steuer2_unten.png",
"steuer2_seite_rechts.png",
"steuer2_seite_links.png",
"steuer2_hinten.png",
"steuer2_vorne.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.125, -0.5, -0.125, 0.125, -0.4375, 0.125}, -- NodeBox10
{-0.0625, -0.5, -0.1875, 0, 0, -0.125}, -- NodeBox11
{0, -0.5, -0.1875, 0.0625, -0.4375, -0.125}, -- NodeBox12
{0.0625, -0.4375, -0.1875, 0.125, -0.375, -0.125}, -- NodeBox13
{0.125, -0.375, -0.1875, 0.1875, -0.3125, -0.125}, -- NodeBox14
{0.1875, -0.3125, -0.1875, 0.25, -0.25, -0.125}, -- NodeBox15
{0.25, -0.25, -0.1875, 0.3125, -0.1875, -0.125}, -- NodeBox16
{0.3125, -0.1875, -0.1875, 0.375, -0.125, -0.125}, -- NodeBox17
{0.375, -0.5, -0.1875, 0.4375, -0.375, -0.125}, -- NodeBox18
{0.3125, -0.375, -0.1875, 0.375, -0.25, -0.125}, -- NodeBox19
{0.125, -0.1875, -0.1875, 0.25, -0.125, -0.125}, -- NodeBox20
{0, -0.125, -0.1875, 0.125, -0.0625, -0.125}, -- NodeBox21
{-0.125, -0.5, -0.1875, -0.0625, -0.4375, -0.125}, -- NodeBox22
{-0.1875, -0.4375, -0.1875, -0.125, -0.375, -0.125}, -- NodeBox23
{-0.25, -0.375, -0.1875, -0.1875, -0.3125, -0.125}, -- NodeBox24
{-0.3125, -0.3125, -0.1875, -0.25, -0.25, -0.125}, -- NodeBox25
{-0.375, -0.25, -0.1875, -0.3125, -0.1875, -0.125}, -- NodeBox26
{-0.4375, -0.1875, -0.1875, -0.375, -0.125, -0.125}, -- NodeBox27
{-0.1875, -0.125, -0.1875, -0.0625, -0.0625, -0.125}, -- NodeBox28
{-0.3125, -0.1875, -0.1875, -0.1875, -0.125, -0.125}, -- NodeBox29
{-0.4375, -0.5, -0.1875, -0.375, -0.375, -0.125}, -- NodeBox31
{-0.375, -0.375, -0.1875, -0.3125, -0.25, -0.125}, -- NodeBox32
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:pine_with_coral", {
description = "pine with coral",
tiles = {
"pine.png",
"coral.png",
},
paramtype = "light",
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_floor", {
description = "A La Carte Restaurant floor",
tiles = {
"a_la_carte_restaurant_floor.png",
"verkleidung.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:45_grad", {
description = "45 Grad",
tiles = {
"coral.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.4375, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox3
{-0.5, 0.375, 0.375, 0.5, 0.4375, 0.5}, -- NodeBox4
{-0.5, 0.3125, 0.3125, 0.5, 0.375, 0.5}, -- NodeBox5
{-0.5, 0.25, 0.25, 0.5, 0.3125, 0.5}, -- NodeBox6
{-0.5, 0.1875, 0.1875, 0.5, 0.25, 0.5}, -- NodeBox7
{-0.5, 0.125, 0.125, 0.5, 0.1875, 0.5}, -- NodeBox8
{-0.5, 0.0625, 0.0625, 0.5, 0.125, 0.5}, -- NodeBox9
{-0.5, 0, 0, 0.5, 0.0625, 0.5}, -- NodeBox10
{-0.5, -0.0625, -0.0625, 0.5, 0, 0.5}, -- NodeBox11
{-0.5, -0.125, -0.125, 0.5, -0.0625, 0.5}, -- NodeBox12
{-0.5, -0.1875, -0.1875, 0.5, -0.125, 0.5}, -- NodeBox13
{-0.5, -0.25, -0.25, 0.5, -0.1875, 0.5}, -- NodeBox14
{-0.5, -0.3125, -0.3125, 0.5, -0.25, 0.5}, -- NodeBox15
{-0.5, -0.375, -0.375, 0.5, -0.3125, 0.5}, -- NodeBox16
{-0.5, -0.4375, -0.4375, 0.5, -0.375, 0.5}, -- NodeBox17
{-0.5, -0.5, -0.5, 0.5, -0.4375, 0.5}, -- NodeBox18
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:coral_stair", {
description = "Coral Stair",
tiles = {
"coral.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0, 0.5}, -- NodeBox19
{-0.5, 0, 0, 0.5, 0.5, 0.5}, -- NodeBox20
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_floor_wand1", {
description = "a la carte restaurant floor wand1",
tiles = {"alpha.png",
"alpha.png",
"alpha.png",
"alpha.png",
"cafe_parisien_fensterwand2.png",
"a_la_carte_restaurant_floor_wand1.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.5, 0.5, 0.5, -0.5, 0.4375}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_floor_wand2", {
description = "a la carte restaurant floor wand2",
tiles = {"alpha.png",
"alpha.png",
"alpha.png",
"alpha.png",
"cafe_parisien_fensterwand1.png",
"a_la_carte_restaurant_floor_wand2.png",
},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.5, 0.5, 0.5, -0.5, 0.4375}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_floor_wand3", {
description = "a la carte restaurant floor wand3",
tiles = {"alpha.png",
"alpha.png",
"alpha.png",
"alpha.png",
"cafe_parisien_fensterwand4.png",
"a_la_carte_restaurant_floor_wand3.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.5, 0.5, 0.5, -0.5, 0.4375}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_floor_wand4", {
description = "a la carte restaurant floor wand4",
tiles = {"alpha.png",
"alpha.png",
"alpha.png",
"alpha.png",
"cafe_parisien_fensterwand3.png",
"a_la_carte_restaurant_floor_wand4.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.5, 0.5, 0.5, -0.5, 0.4375}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_wand5", {
description = "a la carte restaurant wand5",
tiles = {"a_la_carte_restaurant_wand5.png"},
paramtype2 = "wallmounted",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_wand6", {
description = "a la carte restaurant wand6",
tiles = {"a_la_carte_restaurant_wand6.png"},
paramtype2 = "wallmounted",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_wand5_with_coral", {
description = "a la carte restaurant wand5",
tiles = {"a_la_carte_restaurant_wand5.png",
"a_la_carte_restaurant_wand5.png",
"cafe_parisien_wand1.png",
"a_la_carte_restaurant_wand5.png",
"cafe_parisien_wand1.png",
"a_la_carte_restaurant_wand5.png",},
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_wand6_with_coral", {
description = "a la carte restaurant wand6",
tiles = {"a_la_carte_restaurant_wand6.png",
"a_la_carte_restaurant_wand6.png",
"cafe_parisien_wand2.png",
"a_la_carte_restaurant_wand6.png",
"cafe_parisien_wand2.png",
"a_la_carte_restaurant_wand6.png",},
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_floor_wandfenster1", {
description = "a la carte restaurant floor wandfenster1",
tiles = {"a_la_carte_restaurant_floor_wandfenster1.png",
"a_la_carte_restaurant_floor_wandfenster1.png",
"coral.png",
"a_la_carte_restaurant_floor_wandfenster1.png",
"coral.png",
"a_la_carte_restaurant_floor_wandfenster1.png",},
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_floor_wandfenster2", {
description = "a la carte restaurant floor wandfenster2",
tiles = {"a_la_carte_restaurant_floor_wandfenster2.png",
"a_la_carte_restaurant_floor_wandfenster2.png",
"coral.png",
"a_la_carte_restaurant_floor_wandfenster2.png",
"coral.png",
"a_la_carte_restaurant_floor_wandfenster2.png",},
paramtype2 = "facedir",
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_seitenwand1", {
description = "a la carte restaurant seitenwand1",
tiles = {"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwandseite2.png",
"a_la_carte_restaurant_seitenwand1gespiegelt.png",
"a_la_carte_restaurant_seitenwand1.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.125, 0.5, 0.4375, 0.125}, -- NodeBox1
{-0.5, 0.375, -0.125, 0.4375, 0.5, 0.125}, -- NodeBox2
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_seitenwand2", {
description = "a la carte restaurant seitenwand2",
tiles = {"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwandseite2.png",
"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwand2gespiegelt.png",
"a_la_carte_restaurant_seitenwand2.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.125, 0.5, 0.3125, 0.125}, -- NodeBox1
{-0.5, 0.3125, -0.125, -0.4375, 0.375, 0.125}, -- NodeBox3
{-0.125, 0.3125, -0.125, 0.5, 0.375, 0.125}, -- NodeBox4
{-0.0625, 0.375, -0.125, 0.5, 0.4375, 0.125}, -- NodeBox5
{0, 0.4375, -0.125, 0.5, 0.5, 0.125}, -- NodeBox6
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_seitenwand3", {
description = "a la carte restaurant seitenwand3",
tiles = {"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwand3gespiegelt.png",
"a_la_carte_restaurant_seitenwand3.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.125, 0.375, 0.5, 0.125}, -- NodeBox1
{0.375, -0.5, -0.125, 0.4375, -0.4375, 0.125}, -- NodeBox7
{-0.5, 0.25, -0.125, 0.5, 0.5, 0.125}, -- NodeBox8
{0.375, 0.125, -0.125, 0.4375, 0.5, 0.125}, -- NodeBox9
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_seitenwand4", {
description = "a la carte restaurant seitenwand4",
tiles = {"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwandseite.png",
"a_la_carte_restaurant_seitenwand4gespiegelt.png",
"a_la_carte_restaurant_seitenwand4.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.0625, -0.5, -0.125, 0.5, 0.5, 0.125}, -- NodeBox1
{0, -0.5, -0.125, 0.0625, -0.4375, 0.125}, -- NodeBox10
{-0.5, 0.375, -0.125, 0.0625, 0.5, 0.125}, -- NodeBox11
{-0.5, 0.3125, -0.125, -0.4375, 0.5, 0.125}, -- NodeBox12
{-0.125, 0.3125, -0.125, 0.0625, 0.375, 0.125}, -- NodeBox13
{-0.0625, 0.25, -0.125, 0.0625, 0.3125, 0.125}, -- NodeBox14
{0, 0.125, -0.125, 0.0625, 0.25, 0.125}, -- NodeBox15
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_stuetze", {
description = "a la carte restaurant stuetze",
tiles = {"a_la_carte_restaurant_stuetze2.png",
"a_la_carte_restaurant_stuetze2.png",
"a_la_carte_restaurant_stuetze.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.125, -0.375, -0.0625, 0.125, 0.5, 0.0625}, -- NodeBox1
{-0.0625, -0.375, -0.125, 0.0625, 0.5, 0.125}, -- NodeBox2
{-0.1875, -0.5, -0.125, 0.1875, -0.375, 0.125}, -- NodeBox3
{-0.125, -0.5, -0.1875, 0.125, -0.375, 0.1875}, -- NodeBox4
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_theke", {
description = "a la carte restaurant theke",
tiles = {"a_la_carte_restaurant_theke2.png",
"a_la_carte_restaurant_theke2.png",
"a_la_carte_restaurant_theke1.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.3125, 0.25}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_theke2", {
description = "a la carte restaurant theke2",
tiles = {"a_la_carte_restaurant_theke2.png",
"a_la_carte_restaurant_theke2.png",
"a_la_carte_restaurant_theke1.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.3125, 0.25}, -- NodeBox1
{-0.25, -0.5, 0.25, 0.5, 0.3125, 0.5}, -- NodeBox5
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_chair", {
description = "a la carte restaurant chair",
tiles = {"a_la_carte_restaurant_chair3.png",
"a_la_carte_restaurant_chair3.png",
"a_la_carte_restaurant_chair2.1.png",
"a_la_carte_restaurant_chair2.png",
"a_la_carte_restaurant_chair1.1.png",
"a_la_carte_restaurant_chair1.png",},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.1875, -0.5, -0.3125, 0.25, -0.1875, -0.25}, -- NodeBox1
{-0.375, -0.25, -0.3125, 0.3125, -0.0625, 0.25}, -- NodeBox6
{-0.3125, -0.25, -0.375, 0.25, -0.0625, 0.3125}, -- NodeBox7
{-0.3125, -0.5, -0.3125, -0.25, -0.1875, -0.25}, -- NodeBox8
{0.1875, -0.5, 0.1875, 0.25, -0.1875, 0.25}, -- NodeBox9
{-0.3125, -0.5, 0.1875, -0.25, -0.1875, 0.25}, -- NodeBox10
{-0.3125, 0.125, 0.3125, 0.25, 0.4375, 0.375}, -- NodeBox11
{0.3125, -0.125, 0.1875, 0.375, 0.1875, 0.25}, -- NodeBox12
{0.3125, 0.1875, 0.0625, 0.375, 0.25, 0.3125}, -- NodeBox13
{0.25, 0.125, 0.25, 0.3125, 0.3125, 0.3125}, -- NodeBox15
{0.3125, 0.125, -0.375, 0.375, 0.1875, 0.125}, -- NodeBox16
{0.3125, -0.125, -0.3125, 0.375, 0.125, -0.25}, -- NodeBox17
{-0.25, 0.4375, 0.3125, 0.1875, 0.5, 0.375}, -- NodeBox18
{-0.4375, -0.125, -0.3125, -0.375, 0.125, -0.25}, -- NodeBox19
{-0.4375, 0.125, -0.375, -0.375, 0.1875, 0.125}, -- NodeBox20
{-0.4375, -0.125, 0.1875, -0.375, 0.1875, 0.25}, -- NodeBox21
{-0.4375, 0.1875, 0.0625, -0.375, 0.25, 0.3125}, -- NodeBox22
{-0.375, 0.125, 0.25, -0.3125, 0.3125, 0.3125}, -- NodeBox23
{-0.3125, 0.0625, 0.3125, 0.25, 0.125, 0.375}, -- NodeBox24
{-0.25, 0, 0.3125, 0.1875, 0.0625, 0.375}, -- NodeBox25
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_table", {
description = "a la carte restaurant table",
tiles = {"coral.png",
"a_la_carte_restaurant_table2.png",},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.1875, -0.0625, 0.5, 0.25, 0.0625}, -- NodeBox1
{-0.0625, -0.1875, -0.5, 0.0625, 0.25, 0.5}, -- NodeBox26
{-0.1875, -0.1875, -0.4375, 0.1875, 0.25, 0.4375}, -- NodeBox27
{-0.4375, -0.1875, -0.1875, 0.4375, 0.25, 0.1875}, -- NodeBox28
{-0.375, -0.1875, -0.3125, 0.375, 0.25, 0.3125}, -- NodeBox30
{-0.3125, -0.1875, -0.375, 0.3125, 0.25, 0.375}, -- NodeBox31
{0.25, -0.5, -0.3125, 0.3125, -0.1875, -0.25}, -- NodeBox32
{-0.3125, -0.5, -0.3125, -0.25, -0.1875, -0.25}, -- NodeBox33
{0.25, -0.5, 0.25, 0.3125, -0.1875, 0.3125}, -- NodeBox34
{-0.3125, -0.5, 0.25, -0.25, -0.1875, 0.3125}, -- NodeBox35
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_table2", {
description = "a la carte restaurant table2",
tiles = {"coral.png",
"a_la_carte_restaurant_table2.png",},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.1875, -0.375, 0.375, 0.25, 0.375}, -- NodeBox1
{0.1875, -0.5, 0.1875, 0.25, -0.1875, 0.25}, -- NodeBox37
{0.1875, -0.5, -0.25, 0.25, -0.1875, -0.1875}, -- NodeBox38
{-0.375, -0.5, -0.25, -0.3125, -0.1875, -0.1875}, -- NodeBox39
{-0.375, -0.5, 0.1875, -0.3125, -0.1875, 0.25}, -- NodeBox40
{-0.5, -0.1875, -0.4375, 0.4375, 0.0625, 0.4375}, -- NodeBox41
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:a_la_carte_restaurant_table3", {
description = "a la carte restaurant table3",
tiles = {"coral.png",
"a_la_carte_restaurant_table2.png",},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.4375, -0.1875, -0.375, 0.4375, 0.25, 0.375}, -- NodeBox1
{0.1875, -0.5, 0.25, 0.25, -0.1875, 0.3125}, -- NodeBox37
{0.1875, -0.5, -0.3125, 0.25, -0.1875, -0.25}, -- NodeBox38
{-0.375, -0.5, -0.3125, -0.3125, -0.1875, -0.25}, -- NodeBox39
{-0.375, -0.5, 0.25, -0.3125, -0.1875, 0.3125}, -- NodeBox40
{-0.5, -0.1875, -0.4375, 0.5, 0.0625, 0.4375}, -- NodeBox41
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:cafe_parisien_verkleidung1", {
description = "cafe parisien verkleidung1",
tiles = {"coral.png",
"coral.png",
"coral.png",
"coral.png",
"cafe_parisien_verkleidung1.png",
"coral.png",},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.5, 0.5, 0.5, 0.47}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:cafe_parisien_verkleidung2", {
description = "cafe parisien verkleidung2",
tiles = {"coral.png",
"coral.png",
"coral.png",
"coral.png",
"cafe_parisien_verkleidung2.png",
"coral.png",},
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.5, 0.5, 0.5, 0.47}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:cafe_parisien_fenster", {
description = "cafe parisien fenster",
tiles = {"coral.png",
"coral.png",
"coral.png",
"coral.png",
"cafe_parisien_fenster.png",
"titanic_bridge_window.png",
},
drawtype = "nodebox",
use_texture_alpha = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.5, 0.5, 0.5, 0.47}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:cafe_parisien_chair", {
description = "cafe parisien chair",
tiles = {"cafe_parisien_chair5.png",
"cafe_parisien_chair5.png",
"cafe_parisien_chair1.png",
"cafe_parisien_chair2.png",
"cafe_parisien_chair4.png",
"cafe_parisien_chair3.png",
},
drawtype = "nodebox",
drawtype2 = "allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.3125, -0.1875, -0.3125, 0.3125, -0.0625, 0.25}, -- NodeBox1
{-0.25, -0.1875, -0.375, 0.25, -0.0625, -0.3125}, -- NodeBox2
{-0.3125, -0.3125, 0.1875, -0.25, 0.4375, 0.25}, -- NodeBox3
{0.25, -0.3125, 0.1875, 0.3125, 0.4375, 0.25}, -- NodeBox4
{-0.25, 0.4375, 0.1875, 0.25, 0.5, 0.25}, -- NodeBox5
{0.25, -0.5, -0.3125, 0.3125, 0.1875, -0.25}, -- NodeBox6
{0.25, 0.1875, -0.25, 0.3125, 0.25, 0.1875}, -- NodeBox7
{-0.3125, 0.1875, -0.25, -0.25, 0.25, 0.1875}, -- NodeBox8
{-0.3125, -0.5, -0.3125, -0.25, 0.1875, -0.25}, -- NodeBox10
{0.25, -0.5, 0.25, 0.3125, -0.3125, 0.3125}, -- NodeBox11
{-0.3125, -0.5, 0.25, -0.25, -0.3125, 0.3125}, -- NodeBox12
{0.28125, -0.0625, -0.25, 0.2875, 0.1875, 0.1875}, -- NodeBox16
{-0.2875, -0.0625, -0.3125, -0.28125, 0.1875, 0.1875}, -- NodeBox17
{-0.25, -0.0625, 0.21875, 0.25, 0.4375, 0.225}, -- NodeBox18
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:cafe_parisien_table", {
description = "cafe parisien table",
tiles = {"cafe_parisien_table2.png",
"cafe_parisien_table1.png",
},
drawtype = "nodebox",
drawtype2 = "allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.375, 0.0625, -0.4375, 0.375, 0.1875, 0.4375}, -- NodeBox21
{-0.4375, 0.0625, -0.375, 0.4375, 0.1875, 0.375}, -- NodeBox26
{-0.3125, 0, -0.375, 0.3125, 0.0625, 0.375}, -- NodeBox27
{-0.375, 0, -0.3125, 0.375, 0.0625, 0.3125}, -- NodeBox28
{0.25, -0.5, -0.3125, 0.3125, 0, -0.25}, -- NodeBox29
{-0.3125, -0.5, -0.3125, -0.25, 0, -0.25}, -- NodeBox30
{0.25, -0.5, 0.25, 0.3125, 0, 0.3125}, -- NodeBox31
{-0.3125, -0.5, 0.25, -0.25, 0, 0.3125}, -- NodeBox32
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:cafe_parisien_light", {
description = "cafe parisien light",
tiles = {
"cafe_parisien_light.png",
"cafe_parisien_light2.png",
"cafe_parisien_light.png",
},
paramtype = "light",
paramtype2 = "facedir",
drawtype = "nodebox","allfaces_optional",
light_source = 10,
node_box = {
type = "fixed",
fixed = {
{0, 0.375, 0, 0.0625, 0.4375, 0.0625}, -- NodeBox33
{0.04375, 0.4375, 0.04375, 0.0125, 0.5, 0.0125}, -- NodeBox34
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:reception_room_floor", {
description = "reception room floor",
tiles = {
"reception_room_floor.png",
"verkleidung.png",
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_reception_room_wall1", {
description = "1st class reception room wall1",
tiles = {
"1st_class_reception_room_wand1.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.375, 0.125, -0.375, 0.375, 0.5, 0.375}, -- NodeBox1
{-0.5, -0.5, -0.5, 0.5, 0.125, 0.5}, -- NodeBox2
{-0.5, 0.125, -0.5, -0.3125, 0.5, -0.3125}, -- NodeBox3
{0.3125, 0.125, -0.5, 0.5, 0.5, -0.3125}, -- NodeBox4
{-0.5, 0.125, 0.3125, -0.3125, 0.5, 0.5}, -- NodeBox6
{0.3125, 0.125, 0.3125, 0.5, 0.5, 0.5}, -- NodeBox7
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_reception_room_wall2", {
description = "1st class reception room wall 2",
tiles = {
"1st_class_reception_room_wand2.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.3125, -0.5, -0.5, 0.5, 0.5, -0.3125}, -- NodeBox14
{-0.5, -0.5, -0.5, -0.3125, 0.5, -0.3125}, -- NodeBox15
{-0.5, -0.125, -0.5, 0.5, 0, 0.5}, -- NodeBox16
{0.25, 0.125, -0.5, 0.3125, 0.5, -0.375}, -- NodeBox17
{0.1875, 0.25, -0.5, 0.25, 0.5, -0.375}, -- NodeBox18
{0.0625, 0.3125, -0.5, 0.1875, 0.5, -0.375}, -- NodeBox19
{-0.0625, 0.375, -0.5, 0.0625, 0.5, -0.375}, -- NodeBox21
{-0.3125, 0.125, -0.5, -0.25, 0.5, -0.375}, -- NodeBox22
{-0.25, 0.25, -0.5, -0.1875, 0.5, -0.375}, -- NodeBox23
{-0.1875, 0.3125, -0.5, -0.0625, 0.5, -0.375}, -- NodeBox24
{0.3125, -0.5, 0.3125, 0.5, 0.5, 0.5}, -- NodeBox28
{-0.5, -0.5, 0.3125, -0.3125, 0.5, 0.5}, -- NodeBox29
{-0.5, 0.125, -0.3125, -0.375, 0.5, -0.25}, -- NodeBox30
{-0.5, 0.25, -0.25, -0.375, 0.5, -0.1875}, -- NodeBox31
{-0.5, 0.3125, -0.1875, -0.375, 0.5, -0.0625}, -- NodeBox32
{-0.5, 0.375, -0.0625, -0.375, 0.5, 0.0625}, -- NodeBox33
{-0.5, 0.3125, 0.0625, -0.375, 0.5, 0.1875}, -- NodeBox34
{-0.5, 0.25, 0.1875, -0.375, 0.5, 0.25}, -- NodeBox35
{-0.5, 0.125, 0.25, -0.375, 0.5, 0.3125}, -- NodeBox36
{0.25, 0.125, 0.375, 0.3125, 0.5, 0.5}, -- NodeBox37
{0.1875, 0.25, 0.375, 0.25, 0.5, 0.5}, -- NodeBox38
{0.0625, 0.3125, 0.375, 0.1875, 0.5, 0.5}, -- NodeBox39
{-0.0625, 0.375, 0.375, 0.0625, 0.5, 0.5}, -- NodeBox40
{-0.1875, 0.3125, 0.375, -0.0625, 0.5, 0.5}, -- NodeBox41
{-0.25, 0.25, 0.375, -0.1875, 0.5, 0.5}, -- NodeBox42
{-0.3125, 0.125, 0.375, -0.25, 0.5, 0.5}, -- NodeBox43
{0.375, 0.125, -0.3125, 0.5, 0.5, -0.25}, -- NodeBox44
{0.375, 0.25, -0.25, 0.5, 0.5, -0.1875}, -- NodeBox45
{0.375, 0.3125, -0.1875, 0.5, 0.5, -0.0625}, -- NodeBox46
{0.375, 0.375, -0.0625, 0.5, 0.5, 0.0625}, -- NodeBox47
{0.375, 0.3125, 0.0625, 0.5, 0.5, 0.1875}, -- NodeBox48
{0.375, 0.25, 0.1875, 0.5, 0.5, 0.25}, -- NodeBox49
{0.375, 0.125, 0.25, 0.5, 0.5, 0.3125}, -- NodeBox50
{-0.375, -0.5, -0.375, 0.375, 0.5, 0.375}, -- NodeBox51
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_reception_room_wall3", {
description = "1st class reception room wall3",
tiles = {
"verkleidung.png",
"verkleidung.png",
"1st_class_dining_saloon_wall_side1.png",
"1st_class_dining_saloon_wall_side2.png",
"porthole1.png",
"reception_room_wand3.png",
},
drawtype = "nodebox","allfaces_optional",
use_texture_alpha = true,
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.375, 0.5, 0.5, 0.0625}, -- NodeBox1
{-0.5, -0.5, -0.5, 0.5, 0.125, -0.375}, -- NodeBox8
{0.3125, 0.125, -0.5, 0.5, 0.5, -0.375}, -- NodeBox9
{-0.5, 0.125, -0.5, -0.3125, 0.5, -0.375}, -- NodeBox10
{-0.5, -0.5, 0.0625, -0.49375, 0.5, 0.5}, -- NodeBox11
{0.49375, -0.5, 0.0625, 0.5, 0.5, 0.5}, -- NodeBox12
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_reception_room_wall4", {
description = "1st class reception room wall 4",
tiles = {
"verkleidung.png",
"verkleidung.png",
"1st_class_dining_saloon_wall_side1.png",
"1st_class_dining_saloon_wall_side2.png",
"porthole1.png",
"reception_room_wand4.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
use_texture_alpha = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, -0.3125, 0.5, -0.375}, -- NodeBox14
{0.3125, -0.5, -0.5, 0.5, 0.5, -0.375}, -- NodeBox15
{-0.3125, 0.125, -0.5, -0.25, 0.5, -0.375}, -- NodeBox17
{-0.25, 0.25, -0.5, -0.1875, 0.5, -0.375}, -- NodeBox18
{-0.1875, 0.3125, -0.5, -0.0625, 0.5, -0.375}, -- NodeBox19
{-0.0625, 0.375, -0.5, 0.0625, 0.5, -0.375}, -- NodeBox21
{0.25, 0.125, -0.5, 0.3125, 0.5, -0.375}, -- NodeBox22
{0.1875, 0.25, -0.5, 0.25, 0.5, -0.375}, -- NodeBox23
{0.0625, 0.3125, -0.5, 0.1875, 0.5, -0.375}, -- NodeBox24
{-0.5, -0.5, -0.375, 0.5, 0.5, 0.0625}, -- NodeBox25
{-0.5, -0.5, 0.0625, -0.49375, 0.5, 0.5}, -- NodeBox26
{0.49375, -0.5, 0.0625, 0.5, 0.5, 0.5}, -- NodeBox27
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_reception_room_wall5", {
description = "1st class reception room wall5",
tiles = {
"reception_room_wand5.png",
},
drawtype = "nodebox","allfaces_optional",
use_texture_alpha = true,
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.375, 0.125, -0.375, 0.375, 0.5, 0.375}, -- NodeBox1
{-0.5, -0.5, -0.5, 0.5, 0.125, 0.5}, -- NodeBox2
{-0.5, 0.125, -0.5, -0.3125, 0.5, -0.3125}, -- NodeBox3
{0.3125, 0.125, -0.5, 0.5, 0.5, -0.3125}, -- NodeBox4
{-0.5, 0.125, 0.3125, -0.3125, 0.5, 0.5}, -- NodeBox6
{0.3125, 0.125, 0.3125, 0.5, 0.5, 0.5}, -- NodeBox7
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_reception_room_wall6", {
description = "1st class reception room wall 6",
tiles = {
"reception_room_wand6.png",
},
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
use_texture_alpha = true,
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, -0.3125, 0.4375, -0.3125}, -- NodeBox52
{0.3125, -0.5, -0.5, 0.5, 0.4375, -0.3125}, -- NodeBox53
{0.3125, -0.5, 0.3125, 0.5, 0.4375, 0.5}, -- NodeBox54
{-0.5, -0.5, 0.3125, -0.3125, 0.4375, 0.5}, -- NodeBox55
{-0.5, 0.4375, -0.5, 0.5, 0.5, 0.5}, -- NodeBox56
{-0.375, -0.5, -0.375, 0.375, 0.5, 0.375}, -- NodeBox57
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:reception_room_chair1", {
description = "reception room chair 1",
tiles = {"reception_room_chair1_5.png",
"reception_room_chair1_5.png",
"reception_room_chair1_4.png",
"reception_room_chair1_3.png",
"reception_room_chair1_2.png",
"reception_room_chair1_1.png",},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.3125, -0.5, -0.25, 0.375, 0.0625, -0.1875}, -- NodeBox1
{0.3125, -0.5, 0.1875, 0.375, 0.1875, 0.25}, -- NodeBox2
{0.1875, -0.375, 0.25, 0.3125, 0.25, 0.3125}, -- NodeBox3
{0.1875, -0.375, 0.3125, 0.25, 0.25, 0.375}, -- NodeBox4
{0, 0.1875, 0.3125, 0.1875, 0.3125, 0.375}, -- NodeBox5
{0.3125, 0.0625, -0.1875, 0.375, 0.125, -0.0625}, -- NodeBox6
{0.375, 0.0625, -0.125, 0.4375, 0.125, 0.1875}, -- NodeBox7
{0, -0.375, -0.3125, 0.3125, -0.1875, 0.25}, -- NodeBox8
{0, -0.375, -0.375, 0.25, -0.1875, -0.3125}, -- NodeBox9
{0, -0.375, -0.4375, 0.125, -0.1875, -0.375}, -- NodeBox10
{0.3125, 0.0625, -0.0625, 0.375, 0.06875, 0.1875}, -- NodeBox11
{0, -0.375, 0.25, 0.1875, -0.1875, 0.3125}, -- NodeBox12
{0, -0.375, 0.3125, 0.1875, 0.1875, 0.31875}, -- NodeBox13
{0.3125, -0.375, -0.1875, 0.31875, 0.0625, 0.1875}, -- NodeBox14
{-0.375, -0.5, -0.25, -0.3125, 0.0625, -0.1875}, -- NodeBox15
{-0.375, -0.5, 0.1875, -0.3125, 0.1875, 0.25}, -- NodeBox16
{-0.3125, -0.375, 0.25, -0.1875, 0.25, 0.3125}, -- NodeBox17
{-0.25, -0.375, 0.3125, -0.1875, 0.25, 0.375}, -- NodeBox18
{-0.1875, 0.1875, 0.3125, -0, 0.3125, 0.375}, -- NodeBox19
{-0.375, 0.0625, -0.1875, -0.3125, 0.125, -0.0625}, -- NodeBox20
{-0.4375, 0.0625, -0.125, -0.375, 0.125, 0.1875}, -- NodeBox21
{-0.3125, -0.375, -0.3125, -0, -0.1875, 0.25}, -- NodeBox22
{-0.25, -0.375, -0.375, -0, -0.1875, -0.3125}, -- NodeBox23
{-0.125, -0.375, -0.4375, -0, -0.1875, -0.375}, -- NodeBox24
{-0.375, 0.0625, -0.0625, -0.3125, 0.06875, 0.1875}, -- NodeBox25
{-0.1875, -0.375, 0.25, -0, -0.1875, 0.3125}, -- NodeBox26
{-0.1875, -0.375, 0.3125, -0, 0.1875, 0.31875}, -- NodeBox27
{-0.31875, -0.375, -0.1875, -0.3125, 0.0625, 0.1875}, -- NodeBox28
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:reception_room_sofa1", {
description = "reception room sofa 1",
tiles = {"reception_room_chair1_6.png",
"reception_room_chair1_6.png",
"reception_room_chair1_4.png",
"reception_room_chair1_3.png",
"reception_room_sofa2.png",
"reception_room_sofa1.png",},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.375, -0.5, -0.25, -0.3125, 0.0625, -0.1875}, -- NodeBox1
{-0.375, -0.5, 0.1875, -0.3125, 0.1875, 0.25}, -- NodeBox2
{-0.3125, -0.375, 0.25, -0.1875, 0.25, 0.3125}, -- NodeBox3
{-0.25, -0.375, 0.3125, -0.1875, 0.25, 0.375}, -- NodeBox4
{-0.1875, 0.1875, 0.3125, 0.5, 0.3125, 0.375}, -- NodeBox5
{-0.375, 0.0625, -0.1875, -0.3125, 0.125, -0.0625}, -- NodeBox6
{-0.4375, 0.0625, -0.125, -0.375, 0.125, 0.1875}, -- NodeBox7
{-0.3125, -0.375, -0.3125, 0.5, -0.1875, 0.25}, -- NodeBox8
{-0.25, -0.375, -0.375, 0.5, -0.1875, -0.3125}, -- NodeBox9
{-0.125, -0.375, -0.4375, 0.5, -0.1875, -0.375}, -- NodeBox10
{-0.375, 0.0625, -0.0625, -0.3125, 0.06875, 0.1875}, -- NodeBox11
{-0.1875, -0.375, 0.25, 0.5, -0.1875, 0.3125}, -- NodeBox12
{-0.1875, -0.375, 0.3125, 0.5, 0.1875, 0.31875}, -- NodeBox13
{-0.31875, -0.375, -0.1875, -0.3125, 0.0625, 0.1875}, -- NodeBox15
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:reception_room_sofa2", {
description = "reception room sofa 2",
tiles = {"reception_room_chair1_7.png",
"reception_room_chair1_7.png",
"reception_room_chair1_4.png",
"reception_room_chair1_3.png",
"reception_room_sofa3.png",
"reception_room_sofa4.png",},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.3125, -0.5, -0.25, 0.375, 0.0625, -0.1875}, -- NodeBox1
{0.3125, -0.5, 0.1875, 0.375, 0.1875, 0.25}, -- NodeBox2
{0.1875, -0.375, 0.25, 0.3125, 0.25, 0.3125}, -- NodeBox3
{0.1875, -0.375, 0.3125, 0.25, 0.25, 0.375}, -- NodeBox4
{-0.5, 0.1875, 0.3125, 0.1875, 0.3125, 0.375}, -- NodeBox5
{0.3125, 0.0625, -0.1875, 0.375, 0.125, -0.0625}, -- NodeBox6
{0.375, 0.0625, -0.125, 0.4375, 0.125, 0.1875}, -- NodeBox7
{-0.5, -0.375, -0.3125, 0.3125, -0.1875, 0.25}, -- NodeBox8
{-0.5, -0.375, -0.375, 0.25, -0.1875, -0.3125}, -- NodeBox9
{-0.5, -0.375, -0.4375, 0.125, -0.1875, -0.375}, -- NodeBox10
{0.3125, 0.0625, -0.0625, 0.375, 0.06875, 0.1875}, -- NodeBox11
{-0.5, -0.375, 0.25, 0.1875, -0.1875, 0.3125}, -- NodeBox12
{-0.5, -0.375, 0.3125, 0.1875, 0.1875, 0.31875}, -- NodeBox13
{0.3125, -0.375, -0.1875, 0.31875, 0.0625, 0.1875}, -- NodeBox15
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:reception_room_stuetze1", {
description = "reception room stuetze1",
tiles = {"reception_room_wand5.png",},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.125, -0.4375, -0.125, 0.125, 0.125, 0.125}, -- NodeBox1
{-0.1875, -0.5, -0.1875, 0.1875, -0.4375, 0.1875}, -- NodeBox2
{-0.1875, 0, -0.1875, 0.1875, 0.0624999, 0.1875}, -- NodeBox3
{-0.15, -0.4375, -0.15, 0.15, -0.375, 0.15}, -- NodeBox4
{-0.0625, 0.125, -0.0625, 0.0625, 0.5, 0.0625}, -- NodeBox5
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:reception_room_stuetze2", {
description = "reception room stuetze2",
tiles = {"reception_room_wand6.png",},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.0625, -0.5, -0.0625, 0.0625, 0.4375, 0.0625}, -- NodeBox5
{-0.125, 0.4375, -0.125, 0.125, 0.5, 0.125}, -- NodeBox7
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:reception_room_table1", {
description = "reception room table1",
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
tiles = {"reception_room_table1.png",
"reception_room_table2.png",},
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.4375, 0.125, -0.1875, 0.4375, 0.1875, 0.1875}, -- NodeBox8
{-0.1875, 0.125, -0.4375, 0.1875, 0.1875, 0.4375}, -- NodeBox9
{-0.375, 0.125, -0.25, 0.375, 0.1875, 0.25}, -- NodeBox10
{-0.3125, 0.125, -0.3125, 0.3125, 0.1875, 0.3125}, -- NodeBox11
{-0.25, 0.125, -0.375, 0.25, 0.1875, 0.375}, -- NodeBox12
{-0.1875, -0.125, -0.375, 0.1875, 0.125, 0.375}, -- NodeBox13
{-0.375, -0.125, -0.1875, 0.375, 0.125, 0.1875}, -- NodeBox14
{-0.25, -0.125, -0.3125, 0.25, 0.125, 0.3125}, -- NodeBox15
{-0.3125, -0.125, -0.25, 0.3125, 0.125, 0.25}, -- NodeBox16
{0, -0.5, -0.375, 0.0625, -0.125, -0.3125}, -- NodeBox17
{0.3125, -0.5, 0, 0.375, -0.125, 0.0625}, -- NodeBox18
{-0.0625, -0.5, 0.3125, 0, -0.125, 0.375}, -- NodeBox19
{-0.375, -0.5, -0.0625, -0.3125, -0.125, 0}, -- NodeBox20
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:reception_room_table2", {
description = "reception room table2",
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
tiles = {"reception_room_table1.png",
"reception_room_table2.png",},
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.4375, 0.125, -0.1875, -0.375, 0.1875, 0.1875}, -- NodeBox8
{-0.1875, 0.125, -0.4375, 0.5, 0.1875, 0.4375}, -- NodeBox9
{-0.375, 0.125, -0.25, -0.3125, 0.1875, 0.25}, -- NodeBox10
{-0.3125, 0.125, -0.3125, -0.25, 0.1875, 0.3125}, -- NodeBox11
{-0.25, 0.125, -0.375, -0.1875, 0.1875, 0.375}, -- NodeBox12
{-0.1875, -0.125, -0.375, 0.5, 0.125, 0.375}, -- NodeBox13
{-0.375, -0.125, -0.1875, -0.3125, 0.125, 0.1875}, -- NodeBox14
{-0.25, -0.125, -0.3125, -0.1875, 0.125, 0.3125}, -- NodeBox15
{-0.3125, -0.125, -0.25, -0.25, 0.125, 0.25}, -- NodeBox16
{0, -0.5, -0.375, 0.0625, -0.125, -0.3125}, -- NodeBox17
{-0.0625, -0.5, 0.3125, 0, -0.125, 0.375}, -- NodeBox19
{-0.375, -0.5, -0.0625, -0.3125, -0.125, 0}, -- NodeBox20
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:wendeltreppe", {
description = "wendeltreppe",
tiles = {"tin.png"},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.25, -0.25}, -- NodeBox1
{0.25, 0.25, -0.5, 0.5, 0.5, 0.5}, -- NodeBox2
{0.25, -0.25, -0.5, 0.5, -7.45058e-009, -0.25}, -- NodeBox3
{-0.25, -0.25, -0.25, 0.25, 0, 0}, -- NodeBox4
{-0.5, -0.25, 0, -0.25, 0, 0.25}, -- NodeBox5
{0.25, 0, -0.5, 0.5, 0.25, -0.25}, -- NodeBox6
{0, 0, 0, 0.25, 0.25, 0.5}, -- NodeBox7
{-0.5, 0, 0.25, 0, 0.25, 0.5}, -- NodeBox8
{-0.5, -0.3125, -0.25, 0.25, -0.25, 0}, -- NodeBox10
{-0.25, -0.0625, 0, 0.0625, 0, 0.25}, -- NodeBox11
{0.25, 0, -0.25, 0.3125, 0.25, 0}, -- NodeBox12
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:schiffswand", {
description = "Schiffswand",
tiles = {"obsidian.png"},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:rohr1", {
description = "Rohr1",
tiles = {"rohr.png"},
sunlight_propagates = true,
paramtype = "light",
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.375, 0.25, 0.5, 0.5, 0.375}, -- NodeBox1
{-0.5, 0.3125, 0.1875, 0.5, 0.4375, 0.4375}, -- NodeBox2
{-0.5, 0.25, 0.25, 0.5, 0.3125, 0.375}, -- NodeBox3
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:rohr2", {
description = "Rohr2",
tiles = {"rohr.png"},
sunlight_propagates = true,
paramtype = "light",
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.375, 0.25, 0.125, 0.5, 0.375}, -- NodeBox1
{-0.5, 0.3125, 0.1875, 0.125, 0.4375, 0.4375}, -- NodeBox2
{-0.5, 0.25, 0.25, 0.125, 0.3125, 0.375}, -- NodeBox3
{-0.5, 0.25, 0.1875, -0.4375, 0.5, 0.4375}, -- NodeBox4
{0.1875, -0.5, 0.25, 0.25, 0.1875, 0.375}, -- NodeBox5
{0.125, 0.1875, 0.25, 0.1875, 0.25, 0.375}, -- NodeBox6
{0.25, -0.5, 0.1875, 0.375, 0.125, 0.4375}, -- NodeBox7
{0.125, 0.25, 0.1875, 0.1875, 0.375, 0.4375}, -- NodeBox8
{0.1875, 0.1875, 0.1875, 0.3125, 0.375, 0.4375}, -- NodeBox9
{0.25, 0.125, 0.1875, 0.375, 0.25, 0.4375}, -- NodeBox10
{0.125, 0.375, 0.1875, 0.1875, 0.4375, 0.4375}, -- NodeBox11
{0.25, 0.25, 0.1875, 0.3125, 0.3125, 0.4375}, -- NodeBox12
{0.375, -0.5, 0.25, 0.4375, 0.1875, 0.375}, -- NodeBox13
{0.25, -0.5, 0.25, 0.3125, 0.3125, 0.375}, -- NodeBox14
{0.125, 0.375, 0.25, 0.1875, 0.4375, 0.375}, -- NodeBox15
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:rohr3", {
description = "Rohr3",
tiles = {"rohr.png"},
sunlight_propagates = true,
paramtype = "light",
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{0.3125, -0.5, 0.25, 0.4375, 0.5, 0.375}, -- NodeBox1
{0.25, -0.5, 0.1875, 0.375, 0.5, 0.4375}, -- NodeBox2
{0.1875, -0.5, 0.25, 0.25, 0.5, 0.375}, -- NodeBox3
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:rohr4", {
description = "Rohr4",
tiles = {"rohr.png"},
sunlight_propagates = true,
paramtype = "light",
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.25, -0.5, 0.25, -0.1875, 0.25, 0.375}, -- NodeBox1
{-0.375, -0.5, 0.1875, -0.25, 0.3125, 0.4375}, -- NodeBox2
{-0.4375, -0.5, 0.25, -0.375, 0.3125, 0.375}, -- NodeBox3
{-0.25, 0.4375, 0.25, 0.5, 0.5, 0.375}, -- NodeBox16
{-0.25, 0.3125, 0.1875, 0.5, 0.4375, 0.4375}, -- NodeBox17
{-0.25, 0.25, 0.25, 0.5, 0.3125, 0.375}, -- NodeBox18
{-0.3125, 0.3125, 0.1875, -0.25, 0.4375, 0.4375}, -- NodeBox19
{-0.375, 0.1875, 0.25, -0.125, 0.375, 0.375}, -- NodeBox20
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:rohr5", {
description = "Rohr5",
tiles = {"rohr.png"},
sunlight_propagates = true,
paramtype = "light",
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.3125, -0.25, 0.1875, 0.4375, -0.1875}, -- NodeBox1
{-0.5, 0.25, -0.375, 0.25, 0.5, -0.25}, -- NodeBox2
{-0.5, 0.3125, -0.4375, 0.25, 0.4375, -0.375}, -- NodeBox3
{0.375, 0.3125, -0.25, 0.4375, 0.4375, 0.5}, -- NodeBox16
{0.25, 0.25, -0.25, 0.375, 0.5, 0.5}, -- NodeBox17
{0.1875, 0.3125, -0.25, 0.25, 0.4375, 0.5}, -- NodeBox18
{0.25, 0.25, -0.3125, 0.375, 0.5, -0.25}, -- NodeBox19
{0.125, 0.3125, -0.375, 0.3125, 0.4375, -0.125}, -- NodeBox20
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:standard_wand", {
description = "Standard Wand",
tiles = {"standard_wand.png"},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.375, 0.5}, -- NodeBox27
{-0.5, -0.5, -0.5, -0.375, 0.5, -0.375}, -- NodeBox28
{0.375, -0.5, -0.5, 0.5, 0.5, -0.375}, -- NodeBox29
{-0.0625, -0.5, -0.5, 0.0625, 0.5, -0.4375}, -- NodeBox30
{0.4375, -0.5, -0.0625, 0.5, 0.5, 0.0625}, -- NodeBox31
{-0.5, -0.5, -0.0625, -0.4375, 0.5, 0.0625}, -- NodeBox32
{-0.0625, -0.5, 0.4375, 0.0625, 0.5, 0.5}, -- NodeBox33
{0.375, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox34
{-0.5, -0.5, 0.375, -0.375, 0.5, 0.5}, -- NodeBox35
{-0.4375, -0.5, -0.4375, 0.4375, 0.5, 0.4375}, -- NodeBox36
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:standard_wand2", {
description = "Standard Wand 2",
tiles = {"standard_wand.png"},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, 0.375, -0.5, 0.5, 0.5, 0.5}, -- NodeBox27
{0.375, -0.5, -0.5, 0.5, 0.5, -0.375}, -- NodeBox28
{-0.5, -0.5, -0.5, -0.375, 0.5, -0.375}, -- NodeBox29
{-0.0625, -0.5, -0.5, 0.0625, 0.5, -0.4375}, -- NodeBox30
{-0.5, -0.5, -0.0625, -0.4375, 0.5, 0.0625}, -- NodeBox31
{0.4375, -0.5, -0.0625, 0.5, 0.5, 0.0625}, -- NodeBox32
{-0.0625, -0.5, 0.4375, 0.0625, 0.5, 0.5}, -- NodeBox33
{-0.5, -0.5, 0.375, -0.375, 0.5, 0.5}, -- NodeBox34
{0.375, -0.5, 0.375, 0.5, 0.5, 0.5}, -- NodeBox35
{-0.4375, -0.5, -0.4375, 0.4375, 0.5, 0.4375}, -- NodeBox36
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_smoking_room_floor", {
description = "1st Class Smoking Room Floor",
tiles = {"1st_class_smoking_room_floor.png",
"verkleidung.png",},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:1st_class_smoking_room_floor_with_pine", {
description = "1st Class Smoking Room Floor with Pine",
paramtype2 = "facedir",
tiles = {"1st_class_smoking_room_floor_with_pine.png",
"verkleidung.png",},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:pine_extremly_small", {
description = "Pine extremly small",
tiles = {"pine.png",
"verkleidung.png",},
drawtype = "nodebox",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, -0.49375, 0.5}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:aussengelaender", {
description = "Aussengelaender",
tiles = {"reling_gelaender.png",
"reling_gelaender.png",
"reling_gelaender2.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.0625, 0.5, -0.4375, 0.5}, -- NodeBox1
{-0.0625, -0.5, 0.3125, 0.0625, 0.5, 0.4375}, -- NodeBox2
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:aussengelaender2", {
description = "Aussengelaender2",
tiles = {"reling_gelaender.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.0625, 0.5, -0.4375, 0.5}, -- NodeBox1
}
},
groups = {oddly_breakable_by_hand = 2},
})
minetest.register_node("titanic_mod:aussengelaender3", {
description = "Aussengelaender3",
tiles = {"reling_gelaender.png",},
use_texture_alpha = true,
drawtype = "nodebox","allfaces_optional",
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.0625, 0.5, -0.4375, 0.5}, -- NodeBox1
{-0.0625, -0.5, -0.5, 0.5, -0.4375, 0.5}, -- NodeBox3
}
},
groups = {oddly_breakable_by_hand = 2},
})