summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-04-06 13:40:57 -0300
committerJesusaves <cpntb1@ymail.com>2022-04-06 13:40:57 -0300
commit96c7aa9ce70de6d36ba6065998881f4dc03bc11a (patch)
treef780360f0abc1199aa58f0e7d0f1fd0d998c5054
parent1b8d4f5c8b1fe42ec88748136d66404f70c188ff (diff)
downloadrenpy-96c7aa9ce70de6d36ba6065998881f4dc03bc11a.tar.gz
renpy-96c7aa9ce70de6d36ba6065998881f4dc03bc11a.tar.bz2
renpy-96c7aa9ce70de6d36ba6065998881f4dc03bc11a.tar.xz
renpy-96c7aa9ce70de6d36ba6065998881f4dc03bc11a.zip
Add prologues to the worlds (untested)
-rw-r--r--game/client.rpy9
-rw-r--r--game/mirrorlake.rpy84
2 files changed, 93 insertions, 0 deletions
diff --git a/game/client.rpy b/game/client.rpy
index efad89c..16bda5b 100644
--- a/game/client.rpy
+++ b/game/client.rpy
@@ -76,6 +76,15 @@ init 2 python:
return
########################################################################
+ ## If it is a new world, show a cutscene
+ try:
+ if auth2["new"]:
+ renpy.call_in_new_context("intro_"+persistent.serverlist[idx]["Name"].lower().replace(" ", "").replace('"','').replace("'","").replace(':','_'))
+ except:
+ traceback.print_exc()
+ pass
+
+ ########################################################################
## Loop
statusmsg=""
try:
diff --git a/game/mirrorlake.rpy b/game/mirrorlake.rpy
index fc65759..0a0ea6a 100644
--- a/game/mirrorlake.rpy
+++ b/game/mirrorlake.rpy
@@ -137,3 +137,87 @@ screen mirrorlake():
xalign 0.5
yalign 0.5
+#################################################################################
+label intro_moubootaurlegends:
+ show expression Text(_("In a boundless dimension, time didn't exist.\n\
+And in an azure color, lies Mana.\n\
+Peace. Quietude. The Mana is there, as it always have been.\n\
+\n\
+Until one day. Nobody knows who or what stirred this, but maybe you do.\n\
+Nonetheless, Mana started to move restlessy, as time and space formed around it.\n\
+\n\
+The peaceful azure was no more, infinite combinations all at once,\n\
+everything came to be and at same time, none of that ever happened.\n\
+\n\
+Reality starts defining itself, new spaces, new times,\n\
+new realities happening and vanishing forever.\n\
+Eventually, this reality broke into other minor ones, and story was rewritten.\n\
+\n\
+And in one of the minor realities which came to be from the bigger one...\n\
+Lies this small world, the last to appear...\n\
+\n\
+{b}Moubootaur Legends{/b}."), color="#fff") as intr:
+ xalign 0.5
+ yanchor 0.0
+ ypos 1.05
+ linear 30 ypos -0.7
+ pause 30
+ hide intr with dissolve
+ return
+#################################################################################
+label intro_themanaworld_evolved:
+ show expression Text(_("Before the universe existed as it is known,\n\
+There was only mana, and a sphere of energy to which mana was attracted.\n\
+Mana surrounded the sphere in all directions.\n\
+\n\
+Then, an anomaly. For a reason which perhaps you may know, the sphere expanded.\n\
+With great force in all directions, chaos ensued.\n\
+Sentient beings would be formed and dissolved soon after.\n\
+Eventually, one of these managed to grasp their own existence.\n\
+Soon after, the Great Dragons formed a society, and peace ensued.\n\
+\n\
+The Mana source formed, a tree expanding from it and stretching high.\n\
+Wars happened for the source, and soon, the Great Dragons were only four.\n\
+But the peace returned, and soon they forgot from each other.\n\
+\n\
+But then came greed, with greed a war, and one of them perished.\n\
+\n\
+This unleashed chaos again in the world, and in a call for adventurers,\n\
+many decided to risk their lives in a journey to Candor Island in...\n\
+\n\
+{b}The Mana World: Evolved{/b}."), color="#fff") as intr:
+ xalign 0.5
+ yanchor 0.0
+ ypos 1.05
+ linear 35 ypos -0.75
+ pause 35
+ hide intr with dissolve
+ return
+#################################################################################
+label intro_themanaworld_revolt:
+ show expression Text(_("Nobody knows how this world came to be.\n\
+The many wars have long destroyed any record worth consideration.\n\
+But everyone knows about one tree.\n\
+The Mana Tree.\n\
+And from it, life flows in the world.\n\
+\n\
+But one day, there was a war, and the tree was destroyed.\n\
+But life did not stop. So the tree must still exist.\n\
+Somewhere. Sometime. Beyond mortals' understanding.\n\
+\n\
+None realize, but this world came from another.\n\
+And in the another world, there was an enemy who destroyed many towns.\n\
+Adventurers were on pursuit, when something happened.\n\
+\n\
+Maybe you know, maybe you don't...\n\
+But these adventurers shall once again regroup, and finish what was started...\n\
+\n\
+{b}The Mana World: rEvolt{/b}."), color="#fff") as intr:
+ xalign 0.5
+ yanchor 0.0
+ ypos 1.05
+ linear 35 ypos -0.75
+ pause 35
+ hide intr with dissolve
+ return
+