VoxeLibre/mods/mcl_end/init.lua

255 lines
7.4 KiB
Lua
Raw Normal View History

2017-01-28 01:01:10 +01:00
-- Nodes
2017-01-07 04:09:18 +01:00
minetest.register_node("mcl_end:end_stone", {
description = "End Stone",
tiles = {"mcl_end_end_stone.png"},
stack_max = 64,
groups = {cracky=2,building_block=1},
2017-01-31 23:32:56 +01:00
sounds = mcl_core.node_sound_stone_defaults(),
2017-01-07 04:09:18 +01:00
})
minetest.register_node("mcl_end:end_bricks", {
description = "End Stone Bricks",
tiles = {"mcl_end_end_bricks.png"},
2017-01-07 04:09:18 +01:00
is_ground_content = false,
stack_max = 64,
groups = {cracky=3,building_block=1},
2017-01-31 23:32:56 +01:00
sounds = mcl_core.node_sound_stone_defaults(),
2017-01-07 04:09:18 +01:00
})
minetest.register_node("mcl_end:purpur_block", {
description = "Purpur Block",
tiles = {"mcl_end_purpur_block.png"},
is_ground_content = false,
stack_max = 64,
groups = {cracky=3,building_block=1},
2017-01-31 23:32:56 +01:00
sounds = mcl_core.node_sound_stone_defaults(),
2017-01-07 04:09:18 +01:00
})
minetest.register_node("mcl_end:purpur_pillar", {
description = "Purpur Pillar",
stack_max = 64,
paramtype2 = "facedir",
is_ground_content = false,
on_place = mcl_util.rotate_axis,
2017-01-07 04:09:18 +01:00
tiles = {"mcl_end_purpur_pillar_top.png", "mcl_end_purpur_pillar_top.png", "mcl_end_purpur_pillar.png"},
groups = {cracky=3,building_block=1},
2017-01-31 23:32:56 +01:00
sounds = mcl_core.node_sound_stone_defaults(),
2017-01-07 04:09:18 +01:00
})
2017-01-28 01:01:10 +01:00
local rod_box = {
type = "wallmounted",
wall_top = {-0.125, -0.5, -0.125, 0.125, 0.5, 0.125},
wall_side = {-0.5, -0.125, -0.125, 0.5, 0.125, 0.125},
wall_bottom = {-0.125, -0.5, -0.125, 0.125, 0.5, 0.125},
}
minetest.register_node("mcl_end:end_rod", {
description = "End Rod",
tiles = {
"mcl_end_end_rod_top.png",
"mcl_end_end_rod_bottom.png",
"mcl_end_end_rod_side.png",
"mcl_end_end_rod_side.png",
"mcl_end_end_rod_side.png",
"mcl_end_end_rod_side.png",
},
drawtype = "nodebox",
2017-01-28 01:58:17 +01:00
is_ground_content = false,
2017-01-28 01:01:10 +01:00
paramtype = "light",
paramtype2 = "wallmounted",
light_source = 14,
sunlight_propagates = true,
groups = { dig_immediate=3, deco_block=1 },
node_box = {
type = "fixed",
fixed = {
{-0.125, -0.5, -0.125, 0.125, -0.4375, 0.125}, -- Base
{-0.0625, -0.4375, -0.0625, 0.0625, 0.5, 0.0625}, -- Rod
},
},
selection_box = rod_box,
2017-01-28 01:30:58 +01:00
-- FIXME: Collision box does not seem to rotate correctly
2017-01-28 01:01:10 +01:00
collision_box = rod_box,
2017-01-31 23:32:56 +01:00
sounds = mcl_core.node_sound_glass_defaults(),
2017-01-28 01:01:10 +01:00
})
2017-01-28 00:08:10 +01:00
minetest.register_node("mcl_end:dragon_egg", {
description = "Dragon Egg",
tiles = {
"mcl_end_dragon_egg.png",
"mcl_end_dragon_egg.png",
"mcl_end_dragon_egg.png",
"mcl_end_dragon_egg.png",
"mcl_end_dragon_egg.png",
"mcl_end_dragon_egg.png",
},
drawtype = "nodebox",
2017-01-28 01:58:17 +01:00
is_ground_content = false,
2017-01-28 00:08:10 +01:00
paramtype = "light",
light_source = 1,
node_box = {
type = "fixed",
fixed = {
{-0.375, -0.5, -0.375, 0.375, -0.4375, 0.375},
{-0.5, -0.4375, -0.5, 0.5, -0.1875, 0.5},
{-0.4375, -0.1875, -0.4375, 0.4375, 0, 0.4375},
{-0.375, 0, -0.375, 0.375, 0.125, 0.375},
{-0.3125, 0.125, -0.3125, 0.3125, 0.25, 0.3125},
{-0.25, 0.25, -0.25, 0.25, 0.3125, 0.25},
{-0.1875, 0.3125, -0.1875, 0.1875, 0.375, 0.1875},
{-0.125, 0.375, -0.125, 0.125, 0.4375, 0.125},
{-0.0625, 0.4375, -0.0625, 0.0625, 0.5, 0.0625},
}
},
2017-01-28 11:58:57 +01:00
selection_box = {
type = "regular",
},
2017-01-28 00:08:10 +01:00
groups = { oddly_breakable_by_hand = 3, falling_node = 1, deco_block = 1, not_in_creative_inventory = 1 },
2017-01-31 23:32:56 +01:00
sounds = mcl_core.node_sound_stone_defaults(),
2017-01-28 00:08:10 +01:00
-- TODO: Make dragon egg teleport on punching
})
2017-02-10 02:04:01 +01:00
local chorus_flower_box = {
type = "fixed",
fixed = {
{-0.5, -0.375, -0.375, 0.5, 0.375, 0.375},
{-0.375, -0.375, 0.375, 0.375, 0.375, 0.5},
{-0.375, -0.375, -0.5, 0.375, 0.375, -0.375},
{-0.375, 0.375, -0.375, 0.375, 0.5, 0.375},
{-0.375, -0.5, -0.375, 0.375, -0.375, 0.375},
}
}
minetest.register_node("mcl_end:chorus_flower", {
description = "Chorus Flower",
tiles = {
"mcl_end_chorus_flower.png",
"mcl_end_chorus_flower.png",
"mcl_end_chorus_flower.png",
"mcl_end_chorus_flower.png",
"mcl_end_chorus_flower.png",
"mcl_end_chorus_flower.png",
},
drawtype = "nodebox",
paramtype = "light",
node_box = chorus_flower_box,
selection_box = { type = "regular" },
2017-02-10 02:04:01 +01:00
sounds = mcl_core.node_sound_wood_defaults(),
groups = { oddly_breakable_by_hand = 3, choppy = 3, deco_block = 1 },
})
minetest.register_node("mcl_end:chorus_flower_dead", {
description = "Dead Chorus Flower",
tiles = {
"mcl_end_chorus_flower_dead.png",
"mcl_end_chorus_flower_dead.png",
"mcl_end_chorus_flower_dead.png",
"mcl_end_chorus_flower_dead.png",
"mcl_end_chorus_flower_dead.png",
"mcl_end_chorus_flower_dead.png",
},
drawtype = "nodebox",
paramtype = "light",
node_box = chorus_flower_box,
selection_box = { type = "regular" },
2017-02-10 02:04:01 +01:00
sounds = mcl_core.node_sound_wood_defaults(),
2017-02-10 02:08:27 +01:00
drop = "mcl_end:chorus_flower",
2017-02-10 02:04:01 +01:00
groups = { oddly_breakable_by_hand = 3, choppy = 3, deco_block = 1},
})
2017-02-10 02:40:01 +01:00
minetest.register_node("mcl_end:chorus_plant", {
description = "Chorus Plant",
tiles = {
"mcl_end_chorus_plant.png",
"mcl_end_chorus_plant.png",
"mcl_end_chorus_plant.png",
"mcl_end_chorus_plant.png",
"mcl_end_chorus_plant.png",
"mcl_end_chorus_plant.png",
},
drawtype = "nodebox",
paramtype = "light",
-- TODO: Maybe improve nodebox a bit to look more “natural”
node_box = {
type = "connected",
fixed = { -0.25, -0.25, -0.25, 0.25, 0.25, 0.25 }, -- Core
connect_top = { -0.1875, 0.25, -0.1875, 0.1875, 0.5, 0.1875 },
connect_left = { -0.5, -0.1875, -0.1875, -0.25, 0.1875, 0.1875 },
connect_right = { 0.25, -0.1875, -0.1875, 0.5, 0.1875, 0.1875 },
connect_bottom = { -0.1875, -0.5, -0.25, 0.1875, -0.25, 0.25 },
connect_front = { -0.1875, -0.1875, -0.5, 0.1875, 0.1875, -0.25 },
connect_back = { -0.1875, -0.1875, 0.25, 0.1875, 0.1875, 0.5 },
},
connect_sides = { "top", "bottom", "front", "back", "left", "right" },
connects_to = {"mcl_end:chorus_plant", "mcl_end:chorus_flower", "mcl_end:chorus_flower_dead", "mcl_end:end_stone"},
sounds = mcl_core.node_sound_wood_defaults(),
-- TODO: Check drop probability
drop = { items = { {items = { "mcl_end:chorus_fruit", rarity = 4 } } } },
groups = { oddly_breakable_by_hand = 3, choppy = 3, not_in_creative_inventory = 1,},
})
2017-01-28 01:01:10 +01:00
-- Craftitems
2017-01-28 01:13:31 +01:00
minetest.register_craftitem("mcl_end:chorus_fruit", {
description = "Chorus Fruit",
wield_image = "mcl_end_chorus_fruit.png",
inventory_image = "mcl_end_chorus_fruit.png",
-- TODO: Teleport player
2017-01-28 01:13:31 +01:00
on_use = minetest.item_eat(4),
groups = { food = 2, eatable = 4 },
stack_max = 64,
})
minetest.register_craftitem("mcl_end:chorus_fruit_popped", {
description = "Popped Chorus Fruit",
wield_image = "mcl_end_chorus_fruit_popped.png",
inventory_image = "mcl_end_chorus_fruit_popped.png",
groups = { craftitem = 1 },
stack_max = 64,
})
2017-01-28 01:01:10 +01:00
minetest.register_craftitem("mcl_end:ender_eye", {
description = "Eye of Ender",
wield_image = "mcl_end_ender_eye.png",
inventory_image = "mcl_end_ender_eye.png",
stack_max = 64,
})
-- Crafting recipes
2017-01-07 04:09:18 +01:00
minetest.register_craft({
output = "mcl_end:end_bricks 4",
recipe = {
{"mcl_end:end_stone", "mcl_end:end_stone"},
{"mcl_end:end_stone", "mcl_end:end_stone"},
}
})
2017-01-12 03:04:58 +01:00
2017-01-28 01:13:31 +01:00
minetest.register_craft({
output = "mcl_end:purpur_block 4",
recipe = {
{"mcl_end:chorus_fruit_popped", "mcl_end:chorus_fruit_popped",},
{"mcl_end:chorus_fruit_popped", "mcl_end:chorus_fruit_popped",},
}
})
2017-01-28 01:01:10 +01:00
minetest.register_craft({
output = "mcl_end:end_rod 4",
recipe = {
{"mcl_mobitems:blaze_rod"},
{"mcl_end:chorus_fruit_popped"},
},
2017-01-12 03:04:58 +01:00
})
minetest.register_craft({
type = "shapeless",
output = "mcl_end:ender_eye",
2017-01-25 11:47:44 +01:00
recipe = {"mcl_mobitems:blaze_powder", "mcl_throwing:ender_pearl"},
2017-01-12 03:04:58 +01:00
})
2017-01-28 01:13:31 +01:00
minetest.register_craft({
type = "cooking",
output = "mcl_end:chorus_fruit_popped",
recipe = "mcl_end:chorus_fruit",
cooktime = 10,
})