Skip to content

Commit

Permalink
feat(story): show monster in basement
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Sep 8, 2024
1 parent cbe0e18 commit 1bbbd03
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
27 changes: 27 additions & 0 deletions game/story/inside/basement.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ label basement_door:

label basement_room:

$ basement_visit += 1

if basement_visit == 1:
jump basement_room_first_visit

scene bg basement light with dissolve

menu:
Expand All @@ -48,3 +53,25 @@ label basement_room:

"Go upstairs":
jump explore_inside_day

label basement_room_first_visit:

scene bg basement light with dissolve

player "What a creepy looking basement."

"{i}Crash."

player "What was that?"

scene bg basement dark with dissolve

player "..."

show penguin
with moveinbottom
with vpunch

pause 1

jump end
1 change: 1 addition & 0 deletions game/story/variables.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ default surname = "Kasper"
# rooms
default basement_key = False
default basement_locked = True
default basement_visit = 0
default necklace = False

# events
Expand Down

0 comments on commit 1bbbd03

Please sign in to comment.