From f79aad484e598763850e8bda83c150dacbd4ccae Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Tue, 29 Dec 2020 21:56:21 -0300 Subject: Better calculation for new quests --- qeditor.rpy | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/qeditor.rpy b/qeditor.rpy index e8b9810..eb047de 100644 --- a/qeditor.rpy +++ b/qeditor.rpy @@ -240,15 +240,15 @@ init python: allquests.append({ "quest_id": qeid, - "difficulty": 0, - "requeriment": 0, + "difficulty": qeid*5, + "requeriment": qeid-1, "cost": qec, "flags": qefl, "music": "bgm03", "loot": [ - ["1010", 1000], - ["1020", 100], - ["1030", 10] + ["1010", 1000+(qeid/5*25)], + ["1020", 100+(qeid/5*10)], + ["1030", 10+(qeid/5)] ], "waves": []}) renpy.notify("New quest added: %d" % qeid) -- cgit v1.2.3-70-g09d2