1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-12-24 17:50:37 +01:00

Change quests award

This commit is contained in:
Ombridride 2015-07-30 00:48:46 +02:00
parent ac1d4e47b4
commit ad210ec59f

View File

@ -5,9 +5,9 @@ mff.QNOPREFIX = function(s) return s:sub(mff.QPREFIX:len()+1) end
mff.quests.quests = { mff.quests.quests = {
still_testing_quests = { still_testing_quests = {
title = "Stone digger", title = "Stone digger",
description = "TEST QUEST!\nGet a mithril ingot at the end!", description = "TEST QUEST!\nGet a Super Apple at the end!",
repeating = 60*60*24, repeating = 60*60*24,
awards = {["moreores:mithril_ingot"] = 1}, awards = {["maptools:superapple"] = 1},
tasks = { tasks = {
diggy = { diggy = {
title = "Dig 99 stone", title = "Dig 99 stone",
@ -30,9 +30,9 @@ mff.quests.quests = {
}, },
still_testing_quests2 = { still_testing_quests2 = {
title = "Coal digger", title = "Coal digger",
description = "TEST QUEST!\nGet a mithril ingot at the end!", description = "TEST QUEST!\nGet a Diamond at the end!",
repeating = 60*60*24, repeating = 60*60*24,
awards = {["moreores:mithril_ingot"] = 1}, awards = {["default:diamond"] = 1},
tasks = { tasks = {
diggy = { diggy = {
title = "Dig 19 coal", title = "Dig 19 coal",
@ -135,4 +135,4 @@ minetest.register_on_joinplayer(function (player)
mff.quests.start_quest(playername, qname) mff.quests.start_quest(playername, qname)
end end
end end
end) end)