diff options
-rw-r--r-- | qeditor_adv.rpy | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qeditor_adv.rpy b/qeditor_adv.rpy index a199f59..45d6748 100644 --- a/qeditor_adv.rpy +++ b/qeditor_adv.rpy @@ -100,9 +100,12 @@ label qeditor_supernew: qeid = queid - 90000 qefl = 4 + # 2 then 3 + qdif = 2 + (qeid//2)*5 + (qeid%2)*3 + allquests.append({ "quest_id": queid, - "difficulty": qeid*5, # FIXME too steep + "difficulty": qdif, # FIXME too steep "requeriment": qeid-1, "cost": 1+(qeid / 5), "flags": qefl, |