diff options
-rw-r--r-- | game/renpy.rpy | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/game/renpy.rpy b/game/renpy.rpy index d207b82..610fcee 100644 --- a/game/renpy.rpy +++ b/game/renpy.rpy @@ -133,6 +133,7 @@ label start_loop: ## Asked for The Void if _return < 0: $ stdout("V0id") + call thevoid jump start_loop ## Asked for any subworld scene black @@ -258,3 +259,14 @@ Soul Level remains constant regardless of the subworld you're at.{/color}{fast}" scene black return +################################################################################# +label thevoid: + # TODO: Launch thread requesting /soul data + scene DKBG + show expression (ManaSparkle().sm) as flare + with Dissolve(1.0) + pause + scene black with Dissolve(1.5) + pause 0.15 + return + |