summaryrefslogtreecommitdiff
path: root/qeditor_adv.rpy
diff options
context:
space:
mode:
Diffstat (limited to 'qeditor_adv.rpy')
-rw-r--r--qeditor_adv.rpy17
1 files changed, 12 insertions, 5 deletions
diff --git a/qeditor_adv.rpy b/qeditor_adv.rpy
index a531355..be86f04 100644
--- a/qeditor_adv.rpy
+++ b/qeditor_adv.rpy
@@ -61,14 +61,21 @@ label qeditor_supernew:
"Please select the theme"
"The Empire":
python:
- avail=[950001, 950002, 950003, 950004, 950005]
+ avail=[950000, 950001, 950002, 950003, 950004, 950005]
subid=renpy.random.choice(avail)
avail.remove(subid)
bosid=renpy.random.choice(avail)
avail.remove(bosid)
mobid=avail
#"The Bandits":
- #"The Elves":
+ "The Elves":
+ python:
+ avail=[950200, 950201, 950202, 950203, 950204, 950205, 950206, 950207, 950208, 950209, 950210]
+ subid=renpy.random.choice(avail)
+ avail.remove(subid)
+ bosid=renpy.random.choice(avail)
+ avail.remove(bosid)
+ mobid=avail
#"The Dark Horde":
#"The Darklanders":
#"The Rebels":
@@ -112,9 +119,9 @@ label qeditor_supernew:
"music": "bgm03",
"bg": "battle",
"loot": [
- ["1010", int(1000+(qeid/5*25))],
- ["1020", int(100+(qeid/5*10))],
- ["1030", int(10+(qeid/5))]
+ ["1010", int(1000+(qeid//5*25))],
+ ["1020", int(100+(qeid//5*10))],
+ ["1030", int(10+(qeid//5))]
],
"waves": []})