Skip to content

Instantly share code, notes, and snippets.

@renpytom
Forked from anonymous/gist:6034084
Last active December 19, 2015 23:19
Show Gist options
  • Save renpytom/6034086 to your computer and use it in GitHub Desktop.
Save renpytom/6034086 to your computer and use it in GitHub Desktop.
# You can place the script of your game in this file.
# Declare images below this line, using the image statement.
image Blackbox = "bg_Black.jpg" # (a jpg picture background -> bluesky)
image Lucy smile = "Lucysmiling.png" # (chara --> .png)
image bg Lucy house = "bg_lucyhouse.jpg" # (background -> .jpg)
# The game starts here.
define L = Character('Lucy', color="#add8e6",image = "Lucy", window_left_padding=160,)
image side Lucy smile = "side_lucy.png"
label start:
scene Blackbox with dissolve
"Text?."
"Text1131?"
"Text21231?"
play music "opening.mp3"
scene bg Lucy house with dissolve
show Lucy smile with dissolve
L "Text!"
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment