diff options
-rw-r--r-- | qeditor.rpy | 10 |
1 files 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) |