Initial Commit, add base game files

This commit is contained in:
2026-03-08 19:14:42 +00:00
parent c897af735f
commit a141c34a3d
91 changed files with 4190 additions and 0 deletions

22
game/script.rpy Normal file
View 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