From b49fae2fdc1d7c25db9a3bcb8c27098d26e477fd Mon Sep 17 00:00:00 2001 From: Quentin BUISSON-DEBON Date: Sat, 7 May 2016 21:23:43 +0200 Subject: [PATCH] Increase the quests reward/RP description and... reduce the craft difficulty for blackmithril/reinforcedleather ! All of this for getting the server more easier. --- mods/3d_armor_classes/blackmithril/init.lua | 6 ++-- .../3d_armor_classes/hardenedleather/init.lua | 6 ++-- .../reinforcedleather/init.lua | 6 ++-- mods/mff/mff_quests/init.lua | 31 ++++++++++++------- worlds/minetestforfun/news.txt | 6 ++-- 5 files changed, 32 insertions(+), 23 deletions(-) diff --git a/mods/3d_armor_classes/blackmithril/init.lua b/mods/3d_armor_classes/blackmithril/init.lua index e6af160b..897a52ac 100755 --- a/mods/3d_armor_classes/blackmithril/init.lua +++ b/mods/3d_armor_classes/blackmithril/init.lua @@ -40,8 +40,8 @@ minetest.register_craftitem(":3d_armor:blackmithril_ingot", { minetest.register_craft({ output = "3d_armor:blackmithril_ingot", recipe = { - {"moreores:mithril_ingot","mobs:dungeon_master_blood" ,"default:obsidian" }, - { "", "mobs:dungeon_master_diamond" , "" }, - {"default:obsidian" , "mobs:dungeon_master_blood" ,"moreores:mithril_ingot"} + {"moreores:mithril_ingot", "mobs:dungeon_master_blood", ""}, + {"mobs:dungeon_master_diamond", "default:obsidian", ""}, + {"", "", ""} } }) diff --git a/mods/3d_armor_classes/hardenedleather/init.lua b/mods/3d_armor_classes/hardenedleather/init.lua index 71952754..134be255 100755 --- a/mods/3d_armor_classes/hardenedleather/init.lua +++ b/mods/3d_armor_classes/hardenedleather/init.lua @@ -39,8 +39,8 @@ minetest.register_craftitem(":3d_armor:hardenedleather", { minetest.register_craft({ output = "3d_armor:hardenedleather", recipe = { - {"default:steel_ingot", "mobs:leather", "default:bronze_ingot" }, - {"mobs:leather", "mobs:leather", "mobs:leather" }, - {"default:bronze_ingot", "mobs:leather", "default:steel_ingot" }, + {"default:steel_ingot", "mobs:leather", "default:bronze_ingot"}, + {"mobs:leather", "mobs:leather", "mobs:leather" }, + {"default:bronze_ingot", "mobs:leather", "default:steel_ingot" } } }) diff --git a/mods/3d_armor_classes/reinforcedleather/init.lua b/mods/3d_armor_classes/reinforcedleather/init.lua index 6d7316f1..4340f4be 100755 --- a/mods/3d_armor_classes/reinforcedleather/init.lua +++ b/mods/3d_armor_classes/reinforcedleather/init.lua @@ -39,8 +39,8 @@ minetest.register_craftitem(":3d_armor:reinforcedleather", { minetest.register_craft({ output = "3d_armor:reinforcedleather", recipe = { - {"technic:brass_ingot", "moreores:mithril_ingot", "darkage:chain" }, - {"mobs:leather", "mobs:minotaur_eye", "mobs:leather" }, - {"darkage:chain", "moreores:mithril_ingot", "technic:brass_ingot" }, + {"moreores:mithril_ingot", "technic:brass_ingot", ""}, + {"darkage:chain", "mobs:minotaur_eye", ""}, + {"", "", ""} } }) diff --git a/mods/mff/mff_quests/init.lua b/mods/mff/mff_quests/init.lua index bbc33e00..0f2fa3a6 100755 --- a/mods/mff/mff_quests/init.lua +++ b/mods/mff/mff_quests/init.lua @@ -8,13 +8,15 @@ quests.set_hud_offset(-200, 0) mff.quests.quests = { still_testing_quests = { title = "Stone digger", - description = "TEST QUEST!\nGet a Super Apple at the end!", + description = "DAILY QUEST!\nGet five Super Apple at the end!", repeating = 60*60*24, - awards = {["maptools:superapple"] = 1}, + awards = { + ["maptools:superapple"] = 5; + }, tasks = { diggy = { title = "Dig 100 stone", - description = "Show you can dig through stone", + description = "Old man : Show me you can dig through stone, and I will reward you.", max = 100, objective = { dig = {"default:stone"} @@ -24,14 +26,17 @@ mff.quests.quests = { }, still_testing_quests2 = { title = "Coal digger", - description = "TEST QUEST!\nGet a Diamond at the end!", + description = "DAILY QUEST!\nGet two Diamond and a Mese Crystal at the end!", repeating = 60*60*24, - awards = {["default:diamond"] = 1}, + awards = { + ["default:diamond"] = 2; + ["default:mese_crystal"] = 1 + }, tasks = { diggy = { - title = "Dig 20 coal", - description = "Get the fire mineral", - max = 20, + title = "Dig 25 coal", + description = "Natsu, the Pyromancer : I like fire more than anything in the world! Prove me it's also your case and I will reward you.", + max = 25, objective = { dig = {"default:stone_with_coal"} } @@ -40,13 +45,15 @@ mff.quests.quests = { }, still_testing_quests3 = { title = "Shiny diamonds", - description = "TEST QUEST!\nGet a mithril ingot at the end!", + description = "DAILY QUEST!\nGet two mithril ingot at the end!", repeating = 60*60*24, - awards = {["moreores:mithril_ingot"] = 1}, + awards = { + ["moreores:mithril_ingot"] = 2 + }, tasks = { diggy = { - title = "Dig 5 diamonds", - description = "Yarr harr fiddle dee-dee, being a pirate is alright with me! Do what you want 'cause a pirate is free, you are a pirate! Go get the precious booty... underground. Mine it :/", + title = "Dig 10 diamonds", + description = "Masamune, the Blachsmith : Hello little adventurer. Aaarrh, I hate diamonds ! I work only with strong materials, dig diamonds and I will reward you with my favorite mineral", max = 5, objective = { dig = {"default:stone_with_diamond"} diff --git a/worlds/minetestforfun/news.txt b/worlds/minetestforfun/news.txt index 366bea32..3064994a 100755 --- a/worlds/minetestforfun/news.txt +++ b/worlds/minetestforfun/news.txt @@ -9,8 +9,10 @@ Introduce the Ingineer class : do you like build and dig things ? ---Patch Notes--- ---??/05/2016--- (Thanks to : crabman77/crabman, farfadet46) -update of "hudbars" (fix wrong textures/positions) -update of "mobs" (Add the "Mese Dragon" Boss, need ot be improved, not available ingame for now, remove some unused textures/models, bugfix and reduce lags) +update of "mff_quests" (More rewards for all daily quests) +Update of "mff_classes" (BlackMithril & Reinforced Leather now more easily craftable) +Update of "hudbars" (fix wrong textures/positions) +Update of "mobs" (Add the "Mese Dragon" Boss, need ot be improved, not available ingame for now, remove some unused textures/models, bugfix and reduce lags) Update of "throwing" (Bows now does damages) ---04/05/2016--- (Thanks to : LeMagnesium/Mg)