Initial Commit, add base game files
This commit is contained in:
22
game/script.rpy
Normal file
22
game/script.rpy
Normal file
@@ -0,0 +1,22 @@
|
||||
# The script of the game goes in this file.
|
||||
|
||||
# Declare characters used by this game. The color argument colorizes the
|
||||
# name of the character.
|
||||
|
||||
define s = Character("Skylar")
|
||||
|
||||
|
||||
# The game starts here.
|
||||
|
||||
label start:
|
||||
|
||||
scene bg room
|
||||
|
||||
show Skylar bunny:
|
||||
zoom 0.35 xalign 0.5 yalign 1.0
|
||||
|
||||
s "You've created a new Ren'Py game."
|
||||
|
||||
s "Once you add a story, pictures, and music, you can release it to the world!"
|
||||
|
||||
return
|
||||
Reference in New Issue
Block a user