added a few more chats, changed the power core.
This commit is contained in:
parent
37933b4bbd
commit
df7faaf823
24
chats.lua
24
chats.lua
@ -3,13 +3,23 @@ illuminati.death_message_table = {
|
|||||||
'<Hissing voice> Assemble the brotherhood, we have fresh flesh.',
|
'<Hissing voice> Assemble the brotherhood, we have fresh flesh.',
|
||||||
'<Whisper> The Illuminati claimed another life',
|
'<Whisper> The Illuminati claimed another life',
|
||||||
'<Faint voices in the breeze> That was an easy one.',
|
'<Faint voices in the breeze> That was an easy one.',
|
||||||
|
"<GrimpReaper> Fret not, I see you. I'm waching.",
|
||||||
}
|
}
|
||||||
|
|
||||||
illuminati.core_message_table = {
|
illuminati.core_message_table = {
|
||||||
'Ah, a new convert.',
|
'<Reptillian> Ah, a new convert.',
|
||||||
'Every day we grow in numbers.',
|
'<Father> Every day we grow in numbers.',
|
||||||
'Has a mortal discovered our secret? Death to him!',
|
'<Saint> Has a mortal discovered our secret? Death to him!',
|
||||||
'Blocks are but temporal, we are forever.',
|
'<Block_breaker> Blocks are but temporal, we are forever.',
|
||||||
|
}
|
||||||
|
|
||||||
|
illuminati.triangle_message_table = {
|
||||||
|
"<Joe> this isn't good.",
|
||||||
|
'<square_man_max> oh, are squares not good enough?',
|
||||||
|
'<Joe> Three sides, three branches.',
|
||||||
|
'<Joe> Three sides, three nails.', --Really not sure on this one...
|
||||||
|
'<Joe> Heart, Brain, Body.',
|
||||||
|
'<Joe> 3 corners 180 degrees.',
|
||||||
}
|
}
|
||||||
|
|
||||||
function send_message(table)
|
function send_message(table)
|
||||||
@ -33,3 +43,9 @@ end
|
|||||||
minetest.register_on_dieplayer(function(player)
|
minetest.register_on_dieplayer(function(player)
|
||||||
select_player(player, illuminati.death_message_table)
|
select_player(player, illuminati.death_message_table)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
minetest.register_on_chat_message(function(name,message)
|
||||||
|
if string.match(message, 'triangle') then
|
||||||
|
minetest.chat_send_player(name, send_message(illuminati.triangle_message_table))
|
||||||
|
end
|
||||||
|
end)
|
||||||
|
46
nodes.lua
46
nodes.lua
@ -65,6 +65,12 @@ minetest.register_node('illuminati:core_off',{
|
|||||||
minetest.set_node(pw1,{name = 'illuminati:cone_on'})
|
minetest.set_node(pw1,{name = 'illuminati:cone_on'})
|
||||||
minetest.set_node(pn1,{name = 'illuminati:cone_on'})
|
minetest.set_node(pn1,{name = 'illuminati:cone_on'})
|
||||||
minetest.set_node(pe1,{name = 'illuminati:cone_on'})
|
minetest.set_node(pe1,{name = 'illuminati:cone_on'})
|
||||||
|
minetest.set_node(p1,{name = 'illuminati:diamondblock'})
|
||||||
|
minetest.set_node(p2,{name = 'illuminati:diamondblock'})
|
||||||
|
minetest.set_node(ps2,{name = 'illuminati:goldblock'})
|
||||||
|
minetest.set_node(pw2,{name = 'illuminati:goldblock'})
|
||||||
|
minetest.set_node(pn2,{name = 'illuminati:goldblock'})
|
||||||
|
minetest.set_node(pe2,{name = 'illuminati:goldblock'})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -117,14 +123,26 @@ minetest.register_node('illuminati:core_on',{
|
|||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
after_dig_node = function(pos)
|
after_dig_node = function(pos)
|
||||||
local ps1 = {x=pos.x-3, y=pos.y-1, z=pos.z}
|
local d1 = {x=pos.x, y=pos.y-1, z=pos.z}
|
||||||
local pw1 = {x=pos.x+3, y=pos.y-1, z=pos.z}
|
local d2 = {x=pos.x, y=pos.y-2, z=pos.z}
|
||||||
local pn1 = {x=pos.x, y=pos.y-1, z=pos.z-3}
|
local cs1 = {x=pos.x-3, y=pos.y-1, z=pos.z}
|
||||||
local pe1 = {x=pos.x, y=pos.y-1, z=pos.z+3}
|
local cw1 = {x=pos.x+3, y=pos.y-1, z=pos.z}
|
||||||
minetest.set_node(ps1,{name = 'illuminati:cone_off'})
|
local cn1 = {x=pos.x, y=pos.y-1, z=pos.z-3}
|
||||||
minetest.set_node(pw1,{name = 'illuminati:cone_off'})
|
local ce1 = {x=pos.x, y=pos.y-1, z=pos.z+3}
|
||||||
minetest.set_node(pn1,{name = 'illuminati:cone_off'})
|
local gs2 = {x=pos.x-3, y=pos.y-2, z=pos.z}
|
||||||
minetest.set_node(pe1,{name = 'illuminati:cone_off'})
|
local gw2 = {x=pos.x+3, y=pos.y-2, z=pos.z}
|
||||||
|
local gn2 = {x=pos.x, y=pos.y-2, z=pos.z-3}
|
||||||
|
local ge2 = {x=pos.x, y=pos.y-2, z=pos.z+3}
|
||||||
|
minetest.set_node(d1,{name = 'default:diamondblock'})
|
||||||
|
minetest.set_node(d2,{name = 'default:diamondblock'})
|
||||||
|
minetest.set_node(cs1,{name = 'illuminati:cone_off'})
|
||||||
|
minetest.set_node(cw1,{name = 'illuminati:cone_off'})
|
||||||
|
minetest.set_node(cn1,{name = 'illuminati:cone_off'})
|
||||||
|
minetest.set_node(ce1,{name = 'illuminati:cone_off'})
|
||||||
|
minetest.set_node(gs2,{name = 'default:goldblock'})
|
||||||
|
minetest.set_node(gw2,{name = 'default:goldblock'})
|
||||||
|
minetest.set_node(gn2,{name = 'default:goldblock'})
|
||||||
|
minetest.set_node(ge2,{name = 'default:goldblock'})
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -167,3 +185,15 @@ minetest.register_node('illuminati:cone_on',{
|
|||||||
fixed = {-.5, -.5, -.5, .5, .35, .5},
|
fixed = {-.5, -.5, -.5, .5, .35, .5},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("illuminati:goldblock", {
|
||||||
|
description = "hu?",
|
||||||
|
tiles = {"default_gold_block.png"},
|
||||||
|
groups = {not_in_creative_inventory=1},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("illuminati:diamondblock", {
|
||||||
|
description = "Not sure how you got this.",
|
||||||
|
tiles = {"default_diamond_block.png"},
|
||||||
|
groups = {not_in_creative_inventory=1},
|
||||||
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user