Skip to content

Commit

Permalink
feat(images): replace bg and sprite
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Sep 22, 2024
1 parent 87d1ca5 commit f23728c
Show file tree
Hide file tree
Showing 23 changed files with 10 additions and 23 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Play the game on:

## Credits

### Art

- [Uncle Mugen](https://lemmasoft.renai.us/forums/viewtopic.php?t=17302)

### Audio

- [Kenney Interface Sounds](https://kenney.nl/assets/interface-sounds)
Expand Down
Binary file removed game/images/bg/bg club.jpg
Binary file not shown.
Binary file removed game/images/bg/bg lecturehall.jpg
Binary file not shown.
Binary file removed game/images/bg/bg meadow.jpg
Binary file not shown.
Binary file added game/images/bg/bg plain.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed game/images/bg/bg uni.jpg
Binary file not shown.
Binary file removed game/images/eileen/eileen concerned.png
Binary file not shown.
Binary file removed game/images/eileen/eileen happy.png
Binary file not shown.
Binary file removed game/images/eileen/eileen vhappy.png
Binary file not shown.
Binary file removed game/images/lucy/lucy happy.png
Binary file not shown.
Binary file removed game/images/lucy/lucy mad.png
Binary file not shown.
Binary file modified game/images/placeholder/placeholder boy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified game/images/placeholder/placeholder girl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed game/images/sylvie/sylvie blue giggle.png
Binary file not shown.
Binary file removed game/images/sylvie/sylvie blue normal.png
Binary file not shown.
Binary file removed game/images/sylvie/sylvie blue smile.png
Binary file not shown.
Binary file removed game/images/sylvie/sylvie blue surprised.png
Binary file not shown.
Binary file removed game/images/sylvie/sylvie green giggle.png
Binary file not shown.
Binary file removed game/images/sylvie/sylvie green normal.png
Binary file not shown.
Binary file removed game/images/sylvie/sylvie green smile.png
Binary file not shown.
Binary file removed game/images/sylvie/sylvie green surprised.png
Binary file not shown.
5 changes: 1 addition & 4 deletions game/story/characters.rpy
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
# Declare characters used by this game. The color argument colorizes the
# name of the character.

define e = Character("Eileen")
define player = Character("Player")
24 changes: 5 additions & 19 deletions game/story/start.rpy
Original file line number Diff line number Diff line change
@@ -1,25 +1,11 @@
# The game starts here.
label start:

label start:
scene bg plain

# Show a background. This uses a placeholder by default, but you can
# add a file (named either "bg room.png" or "bg room.jpg") to the
# images directory to show it.
show placeholder boy

scene bg club
player "You've created a new Ren'Py game."

# This shows a character sprite. A placeholder is used, but you can
# replace it by adding a file named "eileen happy.png" to the images
# directory.

show eileen happy

# These display lines of dialogue.

e "You've created a new Ren'Py game."

e "Once you add a story, pictures, and music, you can release it to the world!"

# Jump to a label.
player "Once you add a story, pictures, and music, you can release it to the world!"

jump end

0 comments on commit f23728c

Please sign in to comment.